From 31e30b7b1d5b7a76f8237144a89da73ec19747ed Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 30 Nov 2016 12:12:53 -0600 Subject: [PATCH 001/175] MAGETWO-61532: Remove usages of unserialize from \Magento\Framework\Model\ResourceModel\Db\AbstractDb Refactoring and updating unit test --- .../Model/ResourceModel/AbstractResource.php | 27 ++- .../ResourceModel/AbstractResourceStub.php | 6 + .../ResourceModel/AbstractResourceTest.php | 161 ++++++++++-------- 3 files changed, 123 insertions(+), 71 deletions(-) diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php b/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php index 3d90fc781bf..84ab759716e 100644 --- a/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php +++ b/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php @@ -7,6 +7,8 @@ namespace Magento\Framework\Model\ResourceModel; use Magento\Framework\DataObject; use Magento\Framework\Model\CallbackPool; +use Magento\Framework\Serialize\Serializer\Json; +use Magento\Framework\App\ObjectManager; /** * Abstract resource model @@ -14,7 +16,12 @@ use Magento\Framework\Model\CallbackPool; abstract class AbstractResource { /** - * Main constructor + * @var Json + */ + protected $serializer; + + /** + * Constructor */ public function __construct() { @@ -116,7 +123,7 @@ abstract class AbstractResource if (empty($value) && $unsetEmpty) { $object->unsetData($field); } else { - $object->setData($field, serialize($value ?: $defaultValue)); + $object->setData($field, $this->getSerializer()->serialize($value ?: $defaultValue)); } return $this; @@ -135,7 +142,7 @@ abstract class AbstractResource $value = $object->getData($field); if ($value) { - $unserializedValue = @unserialize($value); + $unserializedValue = $this->getSerializer()->unserialize($value); $value = $unserializedValue !== false || $value === 'b:0;' ? $unserializedValue : $value; } @@ -228,4 +235,18 @@ abstract class AbstractResource } return $columns; } + + /** + * Get serializer + * + * @return Json + * @deprecated + */ + private function getSerializer() + { + if (null === $this->serializer) { + $this->serializer = ObjectManager::getInstance()->get(Json::class); + } + return $this->serializer; + } } diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceStub.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceStub.php index 287e12e8abd..3a9505a7999 100644 --- a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceStub.php +++ b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceStub.php @@ -8,6 +8,7 @@ namespace Magento\Framework\Model\Test\Unit\ResourceModel; use Magento\Framework\DataObject; use Magento\Framework\DB\Adapter\AdapterInterface; use Magento\Framework\Model\ResourceModel\AbstractResource; +use Magento\Framework\Serialize\Serializer\Json; class AbstractResourceStub extends AbstractResource { @@ -16,6 +17,11 @@ class AbstractResourceStub extends AbstractResource */ private $connectionAdapter; + /** + * @var Json + */ + protected $serializer; + /** * Resource initialization * diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php index 217f5c82523..5f1b1021940 100644 --- a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php +++ b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php @@ -7,103 +7,131 @@ namespace Magento\Framework\Model\Test\Unit\ResourceModel; use Magento\Framework\DataObject; use Magento\Framework\DB\Adapter\AdapterInterface; +use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; +use Magento\Framework\Serialize\SerializerInterface; class AbstractResourceTest extends \PHPUnit_Framework_TestCase { + /** + * @var AbstractResourceStub + */ + private $abstractResource; + + /** + * @var SerializerInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $serializerMock; + + protected function setUp() + { + $objectManager = new ObjectManager($this); + $this->serializerMock = $this->getMock(SerializerInterface::class); + $this->abstractResource = $objectManager->getObject(AbstractResourceStub::class); + $objectManager->setBackwardCompatibleProperty( + $this->abstractResource, + 'serializer', + $this->serializerMock + ); + } + /** * @param array $arguments * @param string $expectation - * @dataProvider serializableFieldsDataProvider + * @param int $numSerializeCalled + * @dataProvider serializeFieldsDataProvider */ - public function testSerializeFields(array $arguments, $expectation) + public function testSerializeFields(array $arguments, $expectation, $numSerializeCalled = 1) { /** @var DataObject $dataObject */ list($dataObject, $field, $defaultValue, $unsetEmpty) = $arguments; - - $abstractResource = new AbstractResourceStub(); - - $abstractResource->_serializeField($dataObject, $field, $defaultValue, $unsetEmpty); - - static::assertEquals($expectation, $dataObject->getDataByKey($field)); + $this->serializerMock->expects($this->exactly($numSerializeCalled)) + ->method('serialize') + ->with($dataObject->getData($field)) + ->willReturn($expectation); + $this->abstractResource->_serializeField($dataObject, $field, $defaultValue, $unsetEmpty); + $this->assertEquals($expectation, $dataObject->getData($field)); } /** * @return array */ - public function serializableFieldsDataProvider() + public function serializeFieldsDataProvider() { $dataObject = new DataObject( [ - 'object' => new \stdClass(), 'array' => ['a', 'b', 'c'], 'string' => 'i am string', 'int' => 969, - 'serialized_object' => 'O:8:"stdClass":0:{}', 'empty_value' => '', 'empty_value_with_default' => '' ] ); - return [ - [[$dataObject, 'object', null, false], serialize($dataObject->getDataByKey('object'))], - [[$dataObject, 'array', null, false], serialize($dataObject->getDataByKey('array'))], - [[$dataObject, 'string', null, false], serialize($dataObject->getDataByKey('string'))], - [[$dataObject, 'int', null, false], serialize($dataObject->getDataByKey('int'))], [ - [$dataObject, 'serialized_object', null, false], - serialize($dataObject->getDataByKey('serialized_object')) + [$dataObject, 'array', null, false], + '["a","b","c"]' + ], + [ + [$dataObject, 'string', null, false], + '"i am string"' ], - [[$dataObject, 'empty_value', null, true], null], - [[$dataObject, 'empty_value_with_default', new \stdClass(), false], 'O:8:"stdClass":0:{}'], + [ + [$dataObject, 'int', null, false], + '969' + ], + [ + [$dataObject, 'empty_value', null, true], + null, + 0 + ] ]; } /** * @param array $arguments * @param mixed $expectation - * @dataProvider unserializableFieldsDataProvider + * @dataProvider unserializeFieldsDataProvider */ public function testUnserializeFields(array $arguments, $expectation) { /** @var DataObject $dataObject */ list($dataObject, $field, $defaultValue) = $arguments; - - $abstractResource = new AbstractResourceStub(); - - $abstractResource->_unserializeField($dataObject, $field, $defaultValue); - - static::assertEquals($expectation, $dataObject->getDataByKey($field)); + $this->serializerMock->expects($this->once()) + ->method('unserialize') + ->with($dataObject->getData($field)) + ->willReturn($expectation); + $this->abstractResource->_unserializeField($dataObject, $field, $defaultValue); + $this->assertEquals($expectation, $dataObject->getData($field)); } /** * @return array */ - public function unserializableFieldsDataProvider() + public function unserializeFieldsDataProvider() { $dataObject = new DataObject( [ - 'object' => serialize(new \stdClass()), - 'array' => serialize(['a', 'b', 'c']), - 'string' => serialize('i am string'), - 'int' => serialize(969), - 'serialized_object' => serialize('O:8:"stdClass":0:{}'), - 'empty_value_with_default' => serialize(''), + 'array' => '["a","b","c"]', + 'string' => '"i am string"', + 'int' => '969', + 'empty_value_with_default' => '""', 'not_serialized_string' => 'i am string', - 'serialized_boolean_false' => serialize(false) + 'serialized_boolean_false' => 'false' ] ); - - $defaultValue = new \stdClass(); - return [ - [[$dataObject, 'object', null], unserialize($dataObject->getDataByKey('object'))], - [[$dataObject, 'array', null], unserialize($dataObject->getDataByKey('array'))], - [[$dataObject, 'string', null], unserialize($dataObject->getDataByKey('string'))], - [[$dataObject, 'int', null], unserialize($dataObject->getDataByKey('int'))], - [[$dataObject, 'serialized_object', null], unserialize($dataObject->getDataByKey('serialized_object'))], - [[$dataObject, 'empty_value_with_default', $defaultValue], $defaultValue], - [[$dataObject, 'not_serialized_string', null], 'i am string'], - [[$dataObject, 'serialized_boolean_false', null], false] + [ + [$dataObject, 'array', null], + ['a', 'b', 'c'] + ], + [ + [$dataObject, 'string', null], + 'i am string' + ], + [ + [$dataObject, 'int', null], + 969 + ] ]; } @@ -116,32 +144,31 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $abstractResource = new AbstractResourceStub(); - $abstractResource->setConnection($connection); - $abstractResource->addCommitCallback( + $this->abstractResource->setConnection($connection); + $this->abstractResource->addCommitCallback( function () use ($closureExpectation) { $closureExpectation->setData(1); } ); - $abstractResource->addCommitCallback( + $this->abstractResource->addCommitCallback( function () use ($closureExpectation) { $closureExpectation->getData(); } ); - $connection->expects(static::once()) + $connection->expects($this->once()) ->method('commit'); - $connection->expects(static::once()) + $connection->expects($this->once()) ->method('getTransactionLevel') ->willReturn(0); - $closureExpectation->expects(static::once()) + $closureExpectation->expects($this->once()) ->method('setData') ->with(1); - $closureExpectation->expects(static::once()) + $closureExpectation->expects($this->once()) ->method('getData'); - $abstractResource->commit(); + $this->abstractResource->commit(); } /** @@ -152,21 +179,20 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase /** @var AdapterInterface|\PHPUnit_Framework_MockObject_MockObject $connection */ $connection = $this->getMock(AdapterInterface::class); - $abstractResource = new AbstractResourceStub(); - $abstractResource->setConnection($connection); - $abstractResource->addCommitCallback( + $this->abstractResource->setConnection($connection); + $this->abstractResource->addCommitCallback( function () { throw new \Exception(); } ); - $connection->expects(static::once()) + $connection->expects($this->once()) ->method('commit'); - $connection->expects(static::once()) + $connection->expects($this->once()) ->method('getTransactionLevel') ->willReturn(0); - $abstractResource->commit(); + $this->abstractResource->commit(); } public function testCommitNotCompletedTransaction() @@ -178,24 +204,23 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $abstractResource = new AbstractResourceStub(); - $abstractResource->setConnection($connection); - $abstractResource->addCommitCallback( + $this->abstractResource->setConnection($connection); + $this->abstractResource->addCommitCallback( function () use ($closureExpectation) { $closureExpectation->setData(1); } ); - $connection->expects(static::once()) + $connection->expects($this->once()) ->method('commit'); - $connection->expects(static::once()) + $connection->expects($this->once()) ->method('getTransactionLevel') ->willReturn(1); - $closureExpectation->expects(static::never()) + $closureExpectation->expects($this->never()) ->method('setData') ->with(1); - $abstractResource->commit(); + $this->abstractResource->commit(); } } -- GitLab From e9f34b0b104948b7dcfc8c32233adb73241ac5ad Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 30 Nov 2016 15:02:50 -0600 Subject: [PATCH 002/175] MAGETWO-61532: Remove usages of unserialize from \Magento\Framework\Model\ResourceModel\Db\AbstractDb Refactoring and updating unit test --- .../ResourceModel/AbstractResourceStub.php | 6 -- .../ResourceModel/AbstractResourceTest.php | 74 +++++++++++++------ 2 files changed, 53 insertions(+), 27 deletions(-) diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceStub.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceStub.php index 3a9505a7999..287e12e8abd 100644 --- a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceStub.php +++ b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceStub.php @@ -8,7 +8,6 @@ namespace Magento\Framework\Model\Test\Unit\ResourceModel; use Magento\Framework\DataObject; use Magento\Framework\DB\Adapter\AdapterInterface; use Magento\Framework\Model\ResourceModel\AbstractResource; -use Magento\Framework\Serialize\Serializer\Json; class AbstractResourceStub extends AbstractResource { @@ -17,11 +16,6 @@ class AbstractResourceStub extends AbstractResource */ private $connectionAdapter; - /** - * @var Json - */ - protected $serializer; - /** * Resource initialization * diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php index 5f1b1021940..84babd047bc 100644 --- a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php +++ b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php @@ -37,16 +37,21 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase /** * @param array $arguments * @param string $expectation + * @param array|string|int $serializeCalledWith * @param int $numSerializeCalled * @dataProvider serializeFieldsDataProvider */ - public function testSerializeFields(array $arguments, $expectation, $numSerializeCalled = 1) - { + public function testSerializeFields( + array $arguments, + $expectation, + $serializeCalledWith, + $numSerializeCalled = 1 + ) { /** @var DataObject $dataObject */ list($dataObject, $field, $defaultValue, $unsetEmpty) = $arguments; $this->serializerMock->expects($this->exactly($numSerializeCalled)) ->method('serialize') - ->with($dataObject->getData($field)) + ->with($serializeCalledWith) ->willReturn($expectation); $this->abstractResource->_serializeField($dataObject, $field, $defaultValue, $unsetEmpty); $this->assertEquals($expectation, $dataObject->getData($field)); @@ -57,46 +62,60 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase */ public function serializeFieldsDataProvider() { + $array = ['a', 'b', 'c']; + $string = 'i am string'; + $integer = 969; + $empty = ''; $dataObject = new DataObject( [ - 'array' => ['a', 'b', 'c'], - 'string' => 'i am string', - 'int' => 969, - 'empty_value' => '', - 'empty_value_with_default' => '' + 'array' => $array, + 'string' => $string, + 'integer' => $integer, + 'empty' => $empty, + 'empty_with_default' => '' ] ); return [ [ [$dataObject, 'array', null, false], - '["a","b","c"]' + '["a","b","c"]', + $array ], [ [$dataObject, 'string', null, false], - '"i am string"' + '"i am string"', + $string ], [ - [$dataObject, 'int', null, false], - '969' + [$dataObject, 'integer', null, false], + '969', + $integer ], [ - [$dataObject, 'empty_value', null, true], + [$dataObject, 'empty', null, true], null, + $empty, 0 + ], + [ + [$dataObject, 'empty_with_default', 'default', false], + '"default"', + 'default' ] ]; } /** * @param array $arguments - * @param mixed $expectation + * @param array|string|int|boolean $expectation + * @param int $numUnserializeCalled * @dataProvider unserializeFieldsDataProvider */ - public function testUnserializeFields(array $arguments, $expectation) + public function testUnserializeFields(array $arguments, $expectation, $numUnserializeCalled = 1) { /** @var DataObject $dataObject */ list($dataObject, $field, $defaultValue) = $arguments; - $this->serializerMock->expects($this->once()) + $this->serializerMock->expects($this->exactly($numUnserializeCalled)) ->method('unserialize') ->with($dataObject->getData($field)) ->willReturn($expectation); @@ -113,10 +132,10 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase [ 'array' => '["a","b","c"]', 'string' => '"i am string"', - 'int' => '969', - 'empty_value_with_default' => '""', + 'integer' => '969', + 'empty_with_default' => '""', 'not_serialized_string' => 'i am string', - 'serialized_boolean_false' => 'false' + 'serialized_boolean_false' => false ] ); return [ @@ -129,8 +148,21 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase 'i am string' ], [ - [$dataObject, 'int', null], + [$dataObject, 'integer', null], 969 + ], + [ + [$dataObject, 'empty_with_default', 'default', false], + 'default' + ], + [ + [$dataObject, 'not_serialized_string', null], + 'i am string' + ], + [ + [$dataObject, 'serialized_boolean_false', null], + false, + 0 ] ]; } @@ -194,7 +226,7 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase $this->abstractResource->commit(); } - + public function testCommitNotCompletedTransaction() { /** @var AdapterInterface|\PHPUnit_Framework_MockObject_MockObject $connection */ -- GitLab From 9cf85c9a0c79788084543d0d2b8de5d7d34929ee Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 30 Nov 2016 15:35:57 -0600 Subject: [PATCH 003/175] MAGETWO-61532: Remove usages of unserialize from \Magento\Framework\Model\ResourceModel\Db\AbstractDb Refactoring and updating unit test --- .../Model/ResourceModel/AbstractResource.php | 8 +------ .../ResourceModel/AbstractResourceTest.php | 22 +++++++++---------- 2 files changed, 11 insertions(+), 19 deletions(-) diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php b/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php index 84ab759716e..460c9759bb7 100644 --- a/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php +++ b/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php @@ -139,13 +139,7 @@ abstract class AbstractResource */ protected function _unserializeField(DataObject $object, $field, $defaultValue = null) { - $value = $object->getData($field); - - if ($value) { - $unserializedValue = $this->getSerializer()->unserialize($value); - $value = $unserializedValue !== false || $value === 'b:0;' ? $unserializedValue : $value; - } - + $value = $this->getSerializer()->unserialize($object->getData($field)); if (empty($value)) { $object->setData($field, $defaultValue); } else { diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php index 84babd047bc..0f6c46b5cde 100644 --- a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php +++ b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php @@ -36,14 +36,14 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase /** * @param array $arguments - * @param string $expectation + * @param string $expected * @param array|string|int $serializeCalledWith * @param int $numSerializeCalled * @dataProvider serializeFieldsDataProvider */ public function testSerializeFields( array $arguments, - $expectation, + $expected, $serializeCalledWith, $numSerializeCalled = 1 ) { @@ -52,9 +52,9 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase $this->serializerMock->expects($this->exactly($numSerializeCalled)) ->method('serialize') ->with($serializeCalledWith) - ->willReturn($expectation); + ->willReturn($expected); $this->abstractResource->_serializeField($dataObject, $field, $defaultValue, $unsetEmpty); - $this->assertEquals($expectation, $dataObject->getData($field)); + $this->assertEquals($expected, $dataObject->getData($field)); } /** @@ -107,20 +107,19 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase /** * @param array $arguments - * @param array|string|int|boolean $expectation - * @param int $numUnserializeCalled + * @param array|string|int|boolean $expected * @dataProvider unserializeFieldsDataProvider */ - public function testUnserializeFields(array $arguments, $expectation, $numUnserializeCalled = 1) + public function testUnserializeFields(array $arguments, $expected) { /** @var DataObject $dataObject */ list($dataObject, $field, $defaultValue) = $arguments; - $this->serializerMock->expects($this->exactly($numUnserializeCalled)) + $this->serializerMock->expects($this->once()) ->method('unserialize') ->with($dataObject->getData($field)) - ->willReturn($expectation); + ->willReturn($expected); $this->abstractResource->_unserializeField($dataObject, $field, $defaultValue); - $this->assertEquals($expectation, $dataObject->getData($field)); + $this->assertEquals($expected, $dataObject->getData($field)); } /** @@ -135,7 +134,7 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase 'integer' => '969', 'empty_with_default' => '""', 'not_serialized_string' => 'i am string', - 'serialized_boolean_false' => false + 'serialized_boolean_false' => 'false' ] ); return [ @@ -162,7 +161,6 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase [ [$dataObject, 'serialized_boolean_false', null], false, - 0 ] ]; } -- GitLab From ba230246f6a5e7ece520444e9331b552aff831ee Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 1 Dec 2016 13:36:08 +0200 Subject: [PATCH 004/175] MAGETWO-61652: Magento/Sales/Model/Order/Config.php and unit tests --- app/code/Magento/Sales/Model/Order/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Sales/Model/Order/Config.php b/app/code/Magento/Sales/Model/Order/Config.php index 535e2975ee1..0da26bdbbe2 100644 --- a/app/code/Magento/Sales/Model/Order/Config.php +++ b/app/code/Magento/Sales/Model/Order/Config.php @@ -192,7 +192,7 @@ class Config */ public function getStateStatuses($state, $addLabels = true) { - $key = md5(serialize([$state, $addLabels])); + $key = md5(json_encode([$state, $addLabels])); if (isset($this->stateStatuses[$key])) { return $this->stateStatuses[$key]; } -- GitLab From d98edc616ac6acfbf07f4143f1b5fbbd3fde83f9 Mon Sep 17 00:00:00 2001 From: Joan He <johe@magento.com> Date: Thu, 1 Dec 2016 09:11:37 -0600 Subject: [PATCH 005/175] MAGETWO-61524: Create upgrade script for sales_order_item table product_options field --- app/code/Magento/Sales/Setup/UpgradeData.php | 49 +++++++++++++++++++- app/code/Magento/Sales/etc/module.xml | 2 +- 2 files changed, 49 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 9580dd8a667..c98dbaff1ea 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -6,6 +6,7 @@ namespace Magento\Sales\Setup; +use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\Setup\UpgradeDataInterface; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; @@ -24,16 +25,24 @@ class UpgradeData implements UpgradeDataInterface */ protected $eavConfig; + /** + * @var Json + */ + private $serializer; + /** * @param SalesSetupFactory $salesSetupFactory * @param \Magento\Eav\Model\Config $eavConfig + * @param Json $serializer */ public function __construct( SalesSetupFactory $salesSetupFactory, - \Magento\Eav\Model\Config $eavConfig + \Magento\Eav\Model\Config $eavConfig, + Json $serializer ) { $this->salesSetupFactory = $salesSetupFactory; $this->eavConfig = $eavConfig; + $this->serializer = $serializer; } /** @@ -89,7 +98,45 @@ class UpgradeData implements UpgradeDataInterface \Magento\Eav\Model\Entity\Increment\NumericValue::class ); } + + if (version_compare($context->getVersion(), '2.0.5', '<')) { + $this->upgradeVersionTwoZeroFive($setup); + } + $this->eavConfig->clear(); $setup->endSetup(); } + + /** + * Upgrade version 2.0.5 + * + * @param ModuleDataSetupInterface $setup + */ + private function upgradeVersionTwoZeroFive(ModuleDataSetupInterface $setup) + { + $orderItemTable = $setup->getTable('sales_order_item'); + + $select = $setup->getConnection()->select()->from( + $orderItemTable, + ['item_id', 'product_options'] + )->where('product_options is not null'); + + $orderItems = $setup->getConnection()->fetchAll($select); + foreach ($orderItems as $orderItem) { + $bind = ['product_options' => $this->convertData($orderItem['product_options'])]; + $where = ['item_id = ?' => (int)$orderItem['item_id']]; + $setup->getConnection()->update($orderItemTable, $bind, $where); + } + } + + /** + * Convert serialized data to json string + * + * @param string $data + * @return string + */ + private function convertData($data) + { + return $this->serializer->serialize(unserialize($data)); + } } diff --git a/app/code/Magento/Sales/etc/module.xml b/app/code/Magento/Sales/etc/module.xml index 980395e965e..c0bef637833 100644 --- a/app/code/Magento/Sales/etc/module.xml +++ b/app/code/Magento/Sales/etc/module.xml @@ -6,7 +6,7 @@ */ --> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> - <module name="Magento_Sales" setup_version="2.0.4"> + <module name="Magento_Sales" setup_version="2.0.5"> <sequence> <module name="Magento_Rule"/> <module name="Magento_Catalog"/> -- GitLab From b499f91a2b314c4c411ecb5bf9da5d9f54393bcc Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Thu, 1 Dec 2016 17:53:52 -0600 Subject: [PATCH 006/175] MAGETWO-61526: Create upgrade script for quote_payment table additional_information field Refactoring upgrade script --- app/code/Magento/Sales/Setup/UpgradeData.php | 155 +++++++++++-------- 1 file changed, 88 insertions(+), 67 deletions(-) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index c98dbaff1ea..0ccc703734d 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -3,13 +3,13 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ - namespace Magento\Sales\Setup; use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\Setup\UpgradeDataInterface; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; +use Magento\Eav\Model\Config; class UpgradeData implements UpgradeDataInterface { @@ -18,12 +18,12 @@ class UpgradeData implements UpgradeDataInterface * * @var SalesSetupFactory */ - protected $salesSetupFactory; + private $salesSetupFactory; /** - * @var \Magento\Eav\Model\Config + * @var Config */ - protected $eavConfig; + private $eavConfig; /** * @var Json @@ -31,13 +31,15 @@ class UpgradeData implements UpgradeDataInterface private $serializer; /** + * Constructor + * * @param SalesSetupFactory $salesSetupFactory - * @param \Magento\Eav\Model\Config $eavConfig + * @param Config $eavConfig * @param Json $serializer */ public function __construct( SalesSetupFactory $salesSetupFactory, - \Magento\Eav\Model\Config $eavConfig, + Config $eavConfig, Json $serializer ) { $this->salesSetupFactory = $salesSetupFactory; @@ -47,90 +49,109 @@ class UpgradeData implements UpgradeDataInterface /** * {@inheritdoc} - * @SuppressWarnings(PHPMD.ExcessiveMethodLength) */ public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context) { $setup->startSetup(); - - /** @var SalesSetup $salesSetup */ $salesSetup = $this->salesSetupFactory->create(['setup' => $setup]); - if (version_compare($context->getVersion(), '2.0.1', '<')) { - $salesSetup->updateEntityType( - \Magento\Sales\Model\Order::ENTITY, - 'entity_model', - \Magento\Sales\Model\ResourceModel\Order::class - ); - $salesSetup->updateEntityType( - \Magento\Sales\Model\Order::ENTITY, - 'increment_model', - \Magento\Eav\Model\Entity\Increment\NumericValue::class - ); - $salesSetup->updateEntityType( - 'invoice', - 'entity_model', - \Magento\Sales\Model\ResourceModel\Order::class - ); - $salesSetup->updateEntityType( - 'invoice', - 'increment_model', - \Magento\Eav\Model\Entity\Increment\NumericValue::class - ); - $salesSetup->updateEntityType( - 'creditmemo', - 'entity_model', - \Magento\Sales\Model\ResourceModel\Order\Creditmemo::class - ); - $salesSetup->updateEntityType( - 'creditmemo', - 'increment_model', - \Magento\Eav\Model\Entity\Increment\NumericValue::class - ); - $salesSetup->updateEntityType( - 'shipment', - 'entity_model', - \Magento\Sales\Model\ResourceModel\Order\Shipment::class - ); - $salesSetup->updateEntityType( - 'shipment', - 'increment_model', - \Magento\Eav\Model\Entity\Increment\NumericValue::class - ); + $this->upgradeToTwoZeroOne($salesSetup); } - if (version_compare($context->getVersion(), '2.0.5', '<')) { - $this->upgradeVersionTwoZeroFive($setup); + $this->upgradeToVersionTwoZeroFive($setup); } - $this->eavConfig->clear(); $setup->endSetup(); } /** - * Upgrade version 2.0.5 + * Upgrade to version 2.0.1 * - * @param ModuleDataSetupInterface $setup + * @param SalesSetup $setup + * @return void */ - private function upgradeVersionTwoZeroFive(ModuleDataSetupInterface $setup) + private function upgradeToTwoZeroOne(SalesSetup $setup) { - $orderItemTable = $setup->getTable('sales_order_item'); + $setup->updateEntityType( + \Magento\Sales\Model\Order::ENTITY, + 'entity_model', + \Magento\Sales\Model\ResourceModel\Order::class + ); + $setup->updateEntityType( + \Magento\Sales\Model\Order::ENTITY, + 'increment_model', + \Magento\Eav\Model\Entity\Increment\NumericValue::class + ); + $setup->updateEntityType( + 'invoice', + 'entity_model', + \Magento\Sales\Model\ResourceModel\Order::class + ); + $setup->updateEntityType( + 'invoice', + 'increment_model', + \Magento\Eav\Model\Entity\Increment\NumericValue::class + ); + $setup->updateEntityType( + 'creditmemo', + 'entity_model', + \Magento\Sales\Model\ResourceModel\Order\Creditmemo::class + ); + $setup->updateEntityType( + 'creditmemo', + 'increment_model', + \Magento\Eav\Model\Entity\Increment\NumericValue::class + ); + $setup->updateEntityType( + 'shipment', + 'entity_model', + \Magento\Sales\Model\ResourceModel\Order\Shipment::class + ); + $setup->updateEntityType( + 'shipment', + 'increment_model', + \Magento\Eav\Model\Entity\Increment\NumericValue::class + ); + } - $select = $setup->getConnection()->select()->from( - $orderItemTable, - ['item_id', 'product_options'] - )->where('product_options is not null'); + /** + * Upgrade to version 2.0.5 + * + * @param ModuleDataSetupInterface $setup + * @return void + */ + private function upgradeToVersionTwoZeroFive(ModuleDataSetupInterface $setup) + { + $this->changeFieldFormat($setup, 'sales_order_item', 'item_id', 'product_options'); + $this->changeFieldFormat($setup, 'quote_payment', 'payment_id', 'additional_information'); + } - $orderItems = $setup->getConnection()->fetchAll($select); - foreach ($orderItems as $orderItem) { - $bind = ['product_options' => $this->convertData($orderItem['product_options'])]; - $where = ['item_id = ?' => (int)$orderItem['item_id']]; - $setup->getConnection()->update($orderItemTable, $bind, $where); + /** + * Change format of the field for the table + * + * @param ModuleDataSetupInterface $setup + * @param string $tableName + * @param string $identifier + * @param string $field + * @return void + */ + private function changeFieldFormat(ModuleDataSetupInterface $setup, $tableName, $identifier, $field) + { + $table = $setup->getTable($tableName); + $select = $setup->getConnection() + ->select() + ->from($table, [$identifier, $field]) + ->where($field . ' IS NOT NULL'); + $items = $setup->getConnection()->fetchAll($select); + foreach ($items as $item) { + $bind = [$field => $this->convertData($item[$field])]; + $where = [$identifier . ' = ?' => (int) $item[$identifier]]; + $setup->getConnection()->update($table, $bind, $where); } } /** - * Convert serialized data to json string + * Convert from serialized to json format * * @param string $data * @return string -- GitLab From 511d207e3021e450cd2b9fecd0d810d4cdfc9db8 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Fri, 2 Dec 2016 10:00:44 -0600 Subject: [PATCH 007/175] MAGETWO-61532: Remove usages of unserialize from \Magento\Framework\Model\ResourceModel\Db\AbstractDb Refactoring --- .../ResourceModel/Entity/Attribute/Set.php | 33 +++++++------------ .../Model/ResourceModel/AbstractResource.php | 28 +++++----------- .../ResourceModel/AbstractResourceTest.php | 16 ++++----- 3 files changed, 29 insertions(+), 48 deletions(-) diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php index b3e7bf2bc39..94f5558a011 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php @@ -5,7 +5,8 @@ */ namespace Magento\Eav\Model\ResourceModel\Entity\Attribute; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; +use Magento\Framework\App\ObjectManager; class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb { @@ -25,26 +26,31 @@ class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb protected $eavConfig; /** - * @var SerializerInterface + * @var Json */ private $serializer; /** + * Constructor + * * @param \Magento\Framework\Model\ResourceModel\Db\Context $context * @param GroupFactory $attrGroupFactory * @param \Magento\Eav\Model\Config $eavConfig - * @param string $connectionName + * @param string|null $connectionName + * @param Json|null $serializer * @codeCoverageIgnore */ public function __construct( \Magento\Framework\Model\ResourceModel\Db\Context $context, \Magento\Eav\Model\ResourceModel\Entity\Attribute\GroupFactory $attrGroupFactory, \Magento\Eav\Model\Config $eavConfig, - $connectionName = null + $connectionName = null, + Json $serializer = null ) { parent::__construct($context, $connectionName); $this->_attrGroupFactory = $attrGroupFactory; $this->eavConfig = $eavConfig; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); } /** @@ -154,7 +160,7 @@ class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb $cacheKey = self::ATTRIBUTES_CACHE_ID . $setId; if ($this->eavConfig->isCacheEnabled() && ($cache = $this->eavConfig->getCache()->load($cacheKey))) { - $setInfoData = $this->getSerializer()->unserialize($cache); + $setInfoData = $this->serializer->unserialize($cache); } else { $attributeSetData = $this->fetchAttributeSetData($setId); @@ -170,7 +176,7 @@ class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb if ($this->eavConfig->isCacheEnabled()) { $this->eavConfig->getCache()->save( - $this->getSerializer()->serialize($setInfoData), + $this->serializer->serialize($setInfoData), $cacheKey, [ \Magento\Eav\Model\Cache\Type::CACHE_TAG, @@ -235,19 +241,4 @@ class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb } return $connection->fetchAll($select, $bind); } - - /** - * Get serializer - * - * @return SerializerInterface - * @deprecated - */ - private function getSerializer() - { - if (null === $this->serializer) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() - ->get(SerializerInterface::class); - } - return $this->serializer; - } } diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php b/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php index 460c9759bb7..f82c461d313 100644 --- a/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php +++ b/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php @@ -18,13 +18,17 @@ abstract class AbstractResource /** * @var Json */ - protected $serializer; + private $serializer; /** * Constructor + * + * @param Json|null $serializer */ - public function __construct() - { + public function __construct( + Json $serializer = null + ) { + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); /** * Please override this one instead of overriding real __construct constructor */ @@ -123,7 +127,7 @@ abstract class AbstractResource if (empty($value) && $unsetEmpty) { $object->unsetData($field); } else { - $object->setData($field, $this->getSerializer()->serialize($value ?: $defaultValue)); + $object->setData($field, $this->serializer->serialize($value ?: $defaultValue)); } return $this; @@ -139,7 +143,7 @@ abstract class AbstractResource */ protected function _unserializeField(DataObject $object, $field, $defaultValue = null) { - $value = $this->getSerializer()->unserialize($object->getData($field)); + $value = $this->serializer->unserialize($object->getData($field)); if (empty($value)) { $object->setData($field, $defaultValue); } else { @@ -229,18 +233,4 @@ abstract class AbstractResource } return $columns; } - - /** - * Get serializer - * - * @return Json - * @deprecated - */ - private function getSerializer() - { - if (null === $this->serializer) { - $this->serializer = ObjectManager::getInstance()->get(Json::class); - } - return $this->serializer; - } } diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php index 0f6c46b5cde..575c8e21812 100644 --- a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php +++ b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php @@ -8,7 +8,7 @@ namespace Magento\Framework\Model\Test\Unit\ResourceModel; use Magento\Framework\DataObject; use Magento\Framework\DB\Adapter\AdapterInterface; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; class AbstractResourceTest extends \PHPUnit_Framework_TestCase { @@ -18,19 +18,19 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase private $abstractResource; /** - * @var SerializerInterface|\PHPUnit_Framework_MockObject_MockObject + * @var Json|\PHPUnit_Framework_MockObject_MockObject */ private $serializerMock; protected function setUp() { $objectManager = new ObjectManager($this); - $this->serializerMock = $this->getMock(SerializerInterface::class); - $this->abstractResource = $objectManager->getObject(AbstractResourceStub::class); - $objectManager->setBackwardCompatibleProperty( - $this->abstractResource, - 'serializer', - $this->serializerMock + $this->serializerMock = $this->getMock(Json::class); + $this->abstractResource = $objectManager->getObject( + AbstractResourceStub::class, + [ + 'serializer' => $this->serializerMock + ] ); } -- GitLab From 0c2fe68448c03a170b409bec4f14688608c7d2bc Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Fri, 2 Dec 2016 10:13:04 -0600 Subject: [PATCH 008/175] MAGETWO-61532: Remove usages of unserialize from \Magento\Framework\Model\ResourceModel\Db\AbstractDb Refactoring --- .../ResourceModel/Entity/Attribute/Set.php | 6 +++--- .../ResourceModel/Entity/Attribute/SetTest.php | 11 +++++------ .../Model/ResourceModel/Db/AbstractDb.php | 17 +++++++++++------ 3 files changed, 19 insertions(+), 15 deletions(-) diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php index 94f5558a011..03c53fb315d 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php @@ -11,7 +11,7 @@ use Magento\Framework\App\ObjectManager; class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb { /** - * EAV cache ids + * EAV cache id */ const ATTRIBUTES_CACHE_ID = 'EAV_ENTITY_ATTRIBUTES_BY_SET_ID'; @@ -47,10 +47,10 @@ class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb $connectionName = null, Json $serializer = null ) { - parent::__construct($context, $connectionName); + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); + parent::__construct($context, $connectionName, $serializer); $this->_attrGroupFactory = $attrGroupFactory; $this->eavConfig = $eavConfig; - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); } /** diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php index e00a8ee9764..6fdc9ece87f 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php @@ -7,7 +7,7 @@ namespace Magento\Eav\Test\Unit\Model\ResourceModel\Entity\Attribute; use Magento\Eav\Model\ResourceModel\Entity\Attribute\Set; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; /** * @SuppressWarnings(PHPMD.CouplingBetweenObjects) @@ -50,7 +50,7 @@ class SetTest extends \PHPUnit_Framework_TestCase protected $relationProcessor; /** - * @var SerializerInterface|\PHPUnit_Framework_MockObject_MockObject + * @var Json|\PHPUnit_Framework_MockObject_MockObject */ private $serializerMock; @@ -88,7 +88,7 @@ class SetTest extends \PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $this->serializerMock = $this->getMock(SerializerInterface::class); + $this->serializerMock = $this->getMock(Json::class); $attributeGroupFactoryMock = $this->getMock( \Magento\Eav\Model\ResourceModel\Entity\Attribute\GroupFactory::class, @@ -103,12 +103,11 @@ class SetTest extends \PHPUnit_Framework_TestCase [ 'context' => $contextMock, 'attrGroupFactory' => $attributeGroupFactoryMock, - 'eavConfig' => $this->eavConfigMock + 'eavConfig' => $this->eavConfigMock, + 'serializer' => $this->serializerMock ] ); - $objectManager->setBackwardCompatibleProperty($this->model, 'serializer', $this->serializerMock); - $this->typeMock = $this->getMock(\Magento\Eav\Model\Entity\Type::class, [], [], '', false); $this->objectMock = $this->getMock( \Magento\Framework\Model\AbstractModel::class, diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/AbstractDb.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/AbstractDb.php index 4cd88e356e9..867e59dd93c 100644 --- a/lib/internal/Magento/Framework/Model/ResourceModel/Db/AbstractDb.php +++ b/lib/internal/Magento/Framework/Model/ResourceModel/Db/AbstractDb.php @@ -3,7 +3,6 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ - namespace Magento\Framework\Model\ResourceModel\Db; use Magento\Framework\App\ResourceConnection; @@ -12,9 +11,11 @@ use Magento\Framework\Exception\LocalizedException; use Magento\Framework\Model\ResourceModel\AbstractResource; use Magento\Framework\DB\Adapter\DuplicateException; use Magento\Framework\Phrase; +use Magento\Framework\Serialize\Serializer\Json; /** - * Abstract resource model class + * Abstract resource model + * * @SuppressWarnings(PHPMD.NumberOfChildren) * @SuppressWarnings(PHPMD.CouplingBetweenObjects) * @SuppressWarnings(PHPMD.ExcessiveClassComplexity) @@ -133,20 +134,24 @@ abstract class AbstractDb extends AbstractResource protected $objectRelationProcessor; /** - * Class constructor + * Constructor * * @param \Magento\Framework\Model\ResourceModel\Db\Context $context * @param string $connectionName + * @param Json|null $serializer */ - public function __construct(\Magento\Framework\Model\ResourceModel\Db\Context $context, $connectionName = null) - { + public function __construct( + \Magento\Framework\Model\ResourceModel\Db\Context $context, + $connectionName = null, + Json $serializer = null + ) { $this->transactionManager = $context->getTransactionManager(); $this->_resources = $context->getResources(); $this->objectRelationProcessor = $context->getObjectRelationProcessor(); if ($connectionName !== null) { $this->connectionName = $connectionName; } - parent::__construct(); + parent::__construct($serializer); } /** -- GitLab From be86ac52a2a4b32f0f5eb0384ab01da4b3770bd3 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Fri, 2 Dec 2016 10:24:48 -0600 Subject: [PATCH 009/175] MAGETWO-61526: Create upgrade script for quote_payment table additional_information field Refactoring upgrade script --- app/code/Magento/Sales/Setup/UpgradeData.php | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 0ccc703734d..09eec684094 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -5,11 +5,9 @@ */ namespace Magento\Sales\Setup; -use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\Setup\UpgradeDataInterface; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; -use Magento\Eav\Model\Config; class UpgradeData implements UpgradeDataInterface { @@ -21,12 +19,12 @@ class UpgradeData implements UpgradeDataInterface private $salesSetupFactory; /** - * @var Config + * @var \Magento\Eav\Model\Config */ private $eavConfig; /** - * @var Json + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -34,13 +32,13 @@ class UpgradeData implements UpgradeDataInterface * Constructor * * @param SalesSetupFactory $salesSetupFactory - * @param Config $eavConfig - * @param Json $serializer + * @param \Magento\Eav\Model\Config $eavConfig + * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( SalesSetupFactory $salesSetupFactory, - Config $eavConfig, - Json $serializer + \Magento\Eav\Model\Config $eavConfig, + \Magento\Framework\Serialize\Serializer\Json $serializer ) { $this->salesSetupFactory = $salesSetupFactory; $this->eavConfig = $eavConfig; -- GitLab From 7da3d3b28c8909876389e97383b8481b07c55c27 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Fri, 2 Dec 2016 10:41:23 -0600 Subject: [PATCH 010/175] MAGETWO-61532: Remove usages of unserialize from \Magento\Framework\Model\ResourceModel\Db\AbstractDb Refactoring --- .../ResourceModel/Entity/Attribute/Set.php | 16 ++--------- .../Entity/Attribute/SetTest.php | 5 ++-- .../Model/ResourceModel/AbstractResource.php | 28 +++++++++++++------ .../Model/ResourceModel/Db/AbstractDb.php | 7 ++--- .../ResourceModel/AbstractResourceTest.php | 10 +++---- 5 files changed, 31 insertions(+), 35 deletions(-) diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php index 03c53fb315d..734648015a5 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php @@ -5,9 +5,6 @@ */ namespace Magento\Eav\Model\ResourceModel\Entity\Attribute; -use Magento\Framework\Serialize\Serializer\Json; -use Magento\Framework\App\ObjectManager; - class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb { /** @@ -25,11 +22,6 @@ class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb */ protected $eavConfig; - /** - * @var Json - */ - private $serializer; - /** * Constructor * @@ -37,18 +29,14 @@ class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb * @param GroupFactory $attrGroupFactory * @param \Magento\Eav\Model\Config $eavConfig * @param string|null $connectionName - * @param Json|null $serializer - * @codeCoverageIgnore */ public function __construct( \Magento\Framework\Model\ResourceModel\Db\Context $context, \Magento\Eav\Model\ResourceModel\Entity\Attribute\GroupFactory $attrGroupFactory, \Magento\Eav\Model\Config $eavConfig, - $connectionName = null, - Json $serializer = null + $connectionName = null ) { - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); - parent::__construct($context, $connectionName, $serializer); + parent::__construct($context, $connectionName); $this->_attrGroupFactory = $attrGroupFactory; $this->eavConfig = $eavConfig; } diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php index 6fdc9ece87f..8a588a6cbe7 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php @@ -103,11 +103,12 @@ class SetTest extends \PHPUnit_Framework_TestCase [ 'context' => $contextMock, 'attrGroupFactory' => $attributeGroupFactoryMock, - 'eavConfig' => $this->eavConfigMock, - 'serializer' => $this->serializerMock + 'eavConfig' => $this->eavConfigMock ] ); + $objectManager->setBackwardCompatibleProperty($this->model, 'serializer', $this->serializerMock); + $this->typeMock = $this->getMock(\Magento\Eav\Model\Entity\Type::class, [], [], '', false); $this->objectMock = $this->getMock( \Magento\Framework\Model\AbstractModel::class, diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php b/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php index f82c461d313..c87a07eaab3 100644 --- a/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php +++ b/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php @@ -18,17 +18,13 @@ abstract class AbstractResource /** * @var Json */ - private $serializer; + protected $serializer; /** * Constructor - * - * @param Json|null $serializer */ - public function __construct( - Json $serializer = null - ) { - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); + public function __construct() + { /** * Please override this one instead of overriding real __construct constructor */ @@ -127,7 +123,7 @@ abstract class AbstractResource if (empty($value) && $unsetEmpty) { $object->unsetData($field); } else { - $object->setData($field, $this->serializer->serialize($value ?: $defaultValue)); + $object->setData($field, $this->getSerializer()->serialize($value ?: $defaultValue)); } return $this; @@ -143,7 +139,7 @@ abstract class AbstractResource */ protected function _unserializeField(DataObject $object, $field, $defaultValue = null) { - $value = $this->serializer->unserialize($object->getData($field)); + $value = $this->getSerializer()->unserialize($object->getData($field)); if (empty($value)) { $object->setData($field, $defaultValue); } else { @@ -233,4 +229,18 @@ abstract class AbstractResource } return $columns; } + + /** + * Get serializer + * + * @return Json + * @deprecated + */ + protected function getSerializer() + { + if (null === $this->serializer) { + $this->serializer = ObjectManager::getInstance()->get(Json::class); + } + return $this->serializer; + } } diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/AbstractDb.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/AbstractDb.php index 867e59dd93c..12e2da6d4eb 100644 --- a/lib/internal/Magento/Framework/Model/ResourceModel/Db/AbstractDb.php +++ b/lib/internal/Magento/Framework/Model/ResourceModel/Db/AbstractDb.php @@ -11,7 +11,6 @@ use Magento\Framework\Exception\LocalizedException; use Magento\Framework\Model\ResourceModel\AbstractResource; use Magento\Framework\DB\Adapter\DuplicateException; use Magento\Framework\Phrase; -use Magento\Framework\Serialize\Serializer\Json; /** * Abstract resource model @@ -138,12 +137,10 @@ abstract class AbstractDb extends AbstractResource * * @param \Magento\Framework\Model\ResourceModel\Db\Context $context * @param string $connectionName - * @param Json|null $serializer */ public function __construct( \Magento\Framework\Model\ResourceModel\Db\Context $context, - $connectionName = null, - Json $serializer = null + $connectionName = null ) { $this->transactionManager = $context->getTransactionManager(); $this->_resources = $context->getResources(); @@ -151,7 +148,7 @@ abstract class AbstractDb extends AbstractResource if ($connectionName !== null) { $this->connectionName = $connectionName; } - parent::__construct($serializer); + parent::__construct(); } /** diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php index 575c8e21812..85696221bee 100644 --- a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php +++ b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php @@ -26,11 +26,11 @@ class AbstractResourceTest extends \PHPUnit_Framework_TestCase { $objectManager = new ObjectManager($this); $this->serializerMock = $this->getMock(Json::class); - $this->abstractResource = $objectManager->getObject( - AbstractResourceStub::class, - [ - 'serializer' => $this->serializerMock - ] + $this->abstractResource = $objectManager->getObject(AbstractResourceStub::class); + $objectManager->setBackwardCompatibleProperty( + $this->abstractResource, + 'serializer', + $this->serializerMock ); } -- GitLab From e5ac4e40721b944800b15698df5bae4c30195722 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Fri, 2 Dec 2016 10:49:55 -0600 Subject: [PATCH 011/175] MAGETWO-61532: Remove usages of unserialize from \Magento\Framework\Model\ResourceModel\Db\AbstractDb Refactoring --- .../Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php index 734648015a5..9b3a4ef42fc 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php @@ -148,7 +148,7 @@ class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb $cacheKey = self::ATTRIBUTES_CACHE_ID . $setId; if ($this->eavConfig->isCacheEnabled() && ($cache = $this->eavConfig->getCache()->load($cacheKey))) { - $setInfoData = $this->serializer->unserialize($cache); + $setInfoData = $this->getSerializer()->unserialize($cache); } else { $attributeSetData = $this->fetchAttributeSetData($setId); @@ -164,7 +164,7 @@ class Set extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb if ($this->eavConfig->isCacheEnabled()) { $this->eavConfig->getCache()->save( - $this->serializer->serialize($setInfoData), + $this->getSerializer()->serialize($setInfoData), $cacheKey, [ \Magento\Eav\Model\Cache\Type::CACHE_TAG, -- GitLab From 32d079c19a1c0382e8a420d69b3a6bf775e5a5b9 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Fri, 2 Dec 2016 14:04:55 +0200 Subject: [PATCH 012/175] MAGETWO-61651: Remove uses of serialize and unserialize in Magento/Sales/Model/AdminOrder/Create.php --- .../Catalog/Helper/Product/Configuration.php | 14 ++++- .../Magento/Sales/Model/AdminOrder/Create.php | 17 +++++- ...adable_product_with_additional_options.php | 61 +++++++++++++++++++ .../Sales/Model/AdminOrder/CreateTest.php | 56 +++++++++++++++++ 4 files changed, 143 insertions(+), 5 deletions(-) create mode 100644 dev/tests/integration/testsuite/Magento/Downloadable/_files/order_with_downloadable_product_with_additional_options.php diff --git a/app/code/Magento/Catalog/Helper/Product/Configuration.php b/app/code/Magento/Catalog/Helper/Product/Configuration.php index eb9e84afa84..c8b720d0f5c 100644 --- a/app/code/Magento/Catalog/Helper/Product/Configuration.php +++ b/app/code/Magento/Catalog/Helper/Product/Configuration.php @@ -5,6 +5,8 @@ */ namespace Magento\Catalog\Helper\Product; +use Magento\Framework\App\ObjectManager; +use Magento\Framework\Serialize\SerializerInterface; use Magento\Catalog\Helper\Product\Configuration\ConfigurationInterface; use Magento\Framework\App\Helper\AbstractHelper; @@ -36,21 +38,29 @@ class Configuration extends AbstractHelper implements ConfigurationInterface */ protected $string; + /** + * @var SerializerInterface + */ + private $serializer; + /** * @param \Magento\Framework\App\Helper\Context $context * @param \Magento\Catalog\Model\Product\OptionFactory $productOptionFactory * @param \Magento\Framework\Filter\FilterManager $filter * @param \Magento\Framework\Stdlib\StringUtils $string + * @param SerializerInterface $serializer */ public function __construct( \Magento\Framework\App\Helper\Context $context, \Magento\Catalog\Model\Product\OptionFactory $productOptionFactory, \Magento\Framework\Filter\FilterManager $filter, - \Magento\Framework\Stdlib\StringUtils $string + \Magento\Framework\Stdlib\StringUtils $string, + SerializerInterface $serializer = null ) { $this->_productOptionFactory = $productOptionFactory; $this->filter = $filter; $this->string = $string; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); parent::__construct($context); } @@ -105,7 +115,7 @@ class Configuration extends AbstractHelper implements ConfigurationInterface $addOptions = $item->getOptionByCode('additional_options'); if ($addOptions) { - $options = array_merge($options, unserialize($addOptions->getValue())); + $options = array_merge($options, $this->serializer->unserialize($addOptions->getValue())); } return $options; diff --git a/app/code/Magento/Sales/Model/AdminOrder/Create.php b/app/code/Magento/Sales/Model/AdminOrder/Create.php index 3715c02357a..a8a92ca1f26 100644 --- a/app/code/Magento/Sales/Model/AdminOrder/Create.php +++ b/app/code/Magento/Sales/Model/AdminOrder/Create.php @@ -8,6 +8,7 @@ namespace Magento\Sales\Model\AdminOrder; +use Magento\Framework\Serialize\SerializerInterface; use Magento\Customer\Api\AddressMetadataInterface; use Magento\Customer\Model\Metadata\Form as CustomerForm; use Magento\Quote\Model\Quote\Item; @@ -224,6 +225,11 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ */ protected $quoteFactory; + /** + * @var SerializerInterface + */ + private $serializer; + /** * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param \Magento\Framework\Event\ManagerInterface $eventManager @@ -252,6 +258,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ * @param \Magento\Framework\Api\DataObjectHelper $dataObjectHelper * @param \Magento\Sales\Api\OrderManagementInterface $orderManagement * @param \Magento\Quote\Model\QuoteFactory $quoteFactory + * @param SerializerInterface $serializer * @param array $data * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ @@ -283,6 +290,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ \Magento\Framework\Api\DataObjectHelper $dataObjectHelper, \Magento\Sales\Api\OrderManagementInterface $orderManagement, \Magento\Quote\Model\QuoteFactory $quoteFactory, + SerializerInterface $serializer = null, array $data = [] ) { $this->_objectManager = $objectManager; @@ -312,6 +320,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ $this->dataObjectHelper = $dataObjectHelper; $this->orderManagement = $orderManagement; $this->quoteFactory = $quoteFactory; + $this->serializer = $serializer ?: $objectManager->get(SerializerInterface::class); parent::__construct($data); } @@ -632,7 +641,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ [ 'product' => $item->getProduct(), 'code' => 'additional_options', - 'value' => serialize($additionalOptions) + 'value' => $this->serializer->serialize($additionalOptions) ] ) ); @@ -1166,6 +1175,8 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ * @param \Magento\Quote\Model\Quote\Item $item * @param array $options * @return $this + * + * @deprecated */ protected function _assignOptionsToItem(\Magento\Quote\Model\Quote\Item $item, $options) { @@ -1209,7 +1220,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ [ 'product' => $item->getProduct(), 'code' => 'additional_options', - 'value' => serialize($options['additional_options']) + 'value' => $this->serializer->serialize($options['additional_options']) ] ) ); @@ -1844,7 +1855,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ } $addOptions = $item->getOptionByCode('additional_options'); if ($addOptions) { - $options['additional_options'] = unserialize($addOptions->getValue()); + $options['additional_options'] = $this->serializer->unserialize($addOptions->getValue()); } $item->setProductOrderOptions($options); } diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/order_with_downloadable_product_with_additional_options.php b/dev/tests/integration/testsuite/Magento/Downloadable/_files/order_with_downloadable_product_with_additional_options.php new file mode 100644 index 00000000000..46caf347a09 --- /dev/null +++ b/dev/tests/integration/testsuite/Magento/Downloadable/_files/order_with_downloadable_product_with_additional_options.php @@ -0,0 +1,61 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +// @codingStandardsIgnoreFile + +$billingAddress = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( + \Magento\Sales\Model\Order\Address::class, + [ + 'data' => [ + 'firstname' => 'guest', + 'lastname' => 'guest', + 'email' => 'customer@example.com', + 'street' => 'street', + 'city' => 'Los Angeles', + 'region' => 'CA', + 'postcode' => '1', + 'country_id' => 'US', + 'telephone' => '1', + ] + ] +); +$billingAddress->setAddressType('billing'); + +$payment = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( + \Magento\Sales\Model\Order\Payment::class); +$payment->setMethod('checkmo'); + +$orderItem = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( + \Magento\Sales\Model\Order\Item::class); +$orderItem->setProductId( + 1 +)->setProductType( + \Magento\Downloadable\Model\Product\Type::TYPE_DOWNLOADABLE +)->setBasePrice( + 100 +)->setQtyOrdered( + 1 +); +$orderItem->setProductOptions(['additional_options' => ['additional_option_key' => 'additional_option_value']]); + +$order = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(\Magento\Sales\Model\Order::class); +$order->setCustomerEmail('mail@to.co') + ->addItem( + $orderItem +)->setIncrementId( + '100000001' +)->setCustomerIsGuest( + true +)->setStoreId( + 1 +)->setEmailSent( + 1 +)->setBillingAddress( + $billingAddress +)->setPayment( + $payment +); +$order->save(); diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php index f8ca1929df9..0714423cff4 100644 --- a/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php +++ b/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php @@ -52,6 +52,62 @@ class CreateTest extends \PHPUnit_Framework_TestCase $this->assertNull($order->getShippingAddress()); } + /** + * @magentoDataFixture Magento/Customer/_files/customer.php + * @magentoDataFixture Magento/Downloadable/_files/product_downloadable.php + * @magentoDataFixture Magento/Downloadable/_files/order_with_downloadable_product_with_additional_options.php + * @magentoDbIsolation enabled + * @magentoAppIsolation enabled + */ + public function testInitFromOrderAndCreateOrderFromQuoteWithAdditionalOptions() + { + /** @var $serializer \Magento\Framework\Serialize\SerializerInterface */ + $serializer = Bootstrap::getObjectManager()->create(\Magento\Framework\Serialize\SerializerInterface::class); + + /** @var $order \Magento\Sales\Model\Order */ + $order = Bootstrap::getObjectManager()->create(\Magento\Sales\Model\Order::class); + $order->loadByIncrementId('100000001'); + + /** @var $orderCreate \Magento\Sales\Model\AdminOrder\Create */ + $orderCreate = $this->_model->initFromOrder($order); + + $quoteItems = $orderCreate->getQuote()->getItemsCollection(); + + $this->assertEquals(1, $quoteItems->count()); + + $quoteItem = $quoteItems->getFirstItem(); + $quoteItemOptions = $quoteItem->getOptionsByCode(); + + $this->assertEquals( + $serializer->serialize(['additional_option_key' => 'additional_option_value']), + $quoteItemOptions['additional_options']->getValue() + ); + + $session = Bootstrap::getObjectManager()->get(\Magento\Backend\Model\Session\Quote::class); + $session->setCustomerId(1); + + $customer = Bootstrap::getObjectManager()->create(\Magento\Customer\Model\Customer::class); + $customer->load(1)->setDefaultBilling(null)->setDefaultShipping(null)->save(); + + $rate = Bootstrap::getObjectManager()->create(\Magento\Quote\Model\Quote\Address\Rate::class); + $rate->setCode('freeshipping_freeshipping'); + + $this->_model->getQuote()->getShippingAddress()->addShippingRate($rate); + $this->_model->setShippingAsBilling(0); + $this->_model->setPaymentData(['method' => 'checkmo']); + + $newOrder = $this->_model->createOrder(); + $newOrderItems = $newOrder->getItemsCollection(); + + $this->assertEquals(1, $newOrderItems->count()); + + $newOrderItem = $newOrderItems->getFirstItem(); + + $this->assertEquals( + ['additional_option_key' => 'additional_option_value'], + $newOrderItem->getProductOptionByCode('additional_options') + ); + } /** * @magentoDataFixture Magento/Downloadable/_files/product_downloadable.php * @magentoDataFixture Magento/Downloadable/_files/order_with_downloadable_product.php -- GitLab From b3085b843adad127e0f1462996c372a4e1c84664 Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Fri, 2 Dec 2016 20:33:48 +0200 Subject: [PATCH 013/175] MAGETWO-61653: Magento/Sales/Model/Order/CreditmemoFactory.php, remove \Magento\Framework\Unserialize\Unserialize and fix unit tests --- .../Sales/Model/Order/CreditmemoFactory.php | 12 +-- .../Model/Order/CreditmemoFactoryTest.php | 100 ++++++++++++++++++ .../order_with_dummy_item_and_invoiced.php | 73 +++++++++++++ 3 files changed, 179 insertions(+), 6 deletions(-) create mode 100644 dev/tests/integration/testsuite/Magento/Sales/Model/Order/CreditmemoFactoryTest.php create mode 100644 dev/tests/integration/testsuite/Magento/Sales/_files/order_with_dummy_item_and_invoiced.php diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php index ff687074e4a..1a78bb4f27b 100644 --- a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php +++ b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php @@ -262,7 +262,7 @@ class CreditmemoFactory /** * @param \Magento\Sales\Api\Data\OrderItemInterface $orderItem - * @param array $qtys + * @param int $parentQty * @return int */ private function calculateProductOptions(\Magento\Sales\Api\Data\OrderItemInterface $orderItem, $parentQty) @@ -270,7 +270,7 @@ class CreditmemoFactory $qty = $parentQty; $productOptions = $orderItem->getProductOptions(); if (isset($productOptions['bundle_selection_attributes'])) { - $bundleSelectionAttributes = $this->getUnserialize() + $bundleSelectionAttributes = $this->getSerializer() ->unserialize($productOptions['bundle_selection_attributes']); if ($bundleSelectionAttributes) { $qty = $bundleSelectionAttributes['qty'] * $parentQty; @@ -280,16 +280,16 @@ class CreditmemoFactory } /** - * Get Unserialize + * Get instance of Serializer. * - * @return \Magento\Framework\Unserialize\Unserialize + * @return \Magento\Framework\Serialize\SerializerInterface * @deprecated */ - private function getUnserialize() + private function getSerializer() { if (!$this->unserialize) { $this->unserialize = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Unserialize\Unserialize::class); + ->get(\Magento\Framework\Serialize\SerializerInterface::class); } return $this->unserialize; } diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/CreditmemoFactoryTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/CreditmemoFactoryTest.php new file mode 100644 index 00000000000..64de21811dd --- /dev/null +++ b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/CreditmemoFactoryTest.php @@ -0,0 +1,100 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Sales\Model\Order; + +/** + * Test for CreditmemoFactory class. + * @magentoDbIsolation enabled + */ +class CreditmemoFactoryTest extends \PHPUnit_Framework_TestCase +{ + /** + * Placeholder for order item id field. + */ + const ORDER_ITEM_ID_PLACEHOLDER = 'id_item_'; + + /** + * @var \Magento\Framework\ObjectManagerInterface + */ + private $objectManager; + + /** + * {@inheritdoc} + */ + protected function setUp() + { + $this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager(); + } + + /** + * @magentoDataFixture Magento/Sales/_files/order_with_dummy_item_and_invoiced.php + * @dataProvider createByOrderDataProvider + * @param array $creditmemoData + * @param int $expectedQty + */ + public function testCreateByOrder(array $creditmemoData, $expectedQty) + { + /** @var \Magento\Sales\Model\Order $order */ + $order = $this->objectManager->create(\Magento\Sales\Model\Order::class); + $order->loadByIncrementId('100000001'); + /** @var \Magento\Sales\Model\Order\CreditmemoFactory $creditmemoFactory */ + $creditmemoFactory = $this->objectManager->create(\Magento\Sales\Model\Order\CreditmemoFactory::class); + $creditmemoData = $this->prepareCreditMemoData($order, $creditmemoData); + $creditmemo = $creditmemoFactory->createByOrder($order, $creditmemoData); + $this->assertEquals($expectedQty, $creditmemo->getTotalQty(), 'Creditmemo has wrong total qty.'); + } + + /** + * Prepare Creditmemo data. + * + * @param \Magento\Sales\Model\Order $order + * @param array $creditmemoData + * @return array + */ + private function prepareCreditMemoData(\Magento\Sales\Model\Order $order, array $creditmemoData) + { + $result = []; + $orderItems = $order->getAllItems(); + foreach ($creditmemoData['qtys'] as $key => $item) { + $result[$orderItems[$this->prepareOrderItemKey($key)]->getId()] = $item; + } + $creditmemoData['qtys'] = $result; + + return $creditmemoData; + } + + /** + * Prepare order item key. + * + * @param string $key + * @return int + */ + private function prepareOrderItemKey($key) + { + return str_replace(self::ORDER_ITEM_ID_PLACEHOLDER, '', $key) - 1; + } + + /** + * @return array + */ + public function createByOrderDataProvider() + { + return [ + // Variation #1 + [ + //$creditmemoData + [ + 'qtys' => [ + self::ORDER_ITEM_ID_PLACEHOLDER . '1' => 1, + self::ORDER_ITEM_ID_PLACEHOLDER . '2' => 1, + ] + ], + //$expectedQty + 4 + ] + ]; + } +} diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_dummy_item_and_invoiced.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_dummy_item_and_invoiced.php new file mode 100644 index 00000000000..65389e13564 --- /dev/null +++ b/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_dummy_item_and_invoiced.php @@ -0,0 +1,73 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +require 'order.php'; +/** @var \Magento\Sales\Model\Order $order */ + +$orderItems = [ + [ + \Magento\Sales\Api\Data\OrderItemInterface::PRODUCT_ID => 2, + \Magento\Sales\Api\Data\OrderItemInterface::BASE_PRICE => 100, + \Magento\Sales\Api\Data\OrderItemInterface::ORDER_ID => $order->getId(), + \Magento\Sales\Api\Data\OrderItemInterface::QTY_ORDERED => 2, + \Magento\Sales\Api\Data\OrderItemInterface::QTY_INVOICED => 2, + \Magento\Sales\Api\Data\OrderItemInterface::PRICE => 100, + \Magento\Sales\Api\Data\OrderItemInterface::ROW_TOTAL => 102, + \Magento\Sales\Api\Data\OrderItemInterface::PRODUCT_TYPE => 'bundle', + 'children' => [ + [ + \Magento\Sales\Api\Data\OrderItemInterface::PRODUCT_ID => 13, + \Magento\Sales\Api\Data\OrderItemInterface::ORDER_ID => $order->getId(), + \Magento\Sales\Api\Data\OrderItemInterface::QTY_ORDERED => 2, + \Magento\Sales\Api\Data\OrderItemInterface::QTY_INVOICED => 2, + \Magento\Sales\Api\Data\OrderItemInterface::BASE_PRICE => 90, + \Magento\Sales\Api\Data\OrderItemInterface::PRICE => 90, + \Magento\Sales\Api\Data\OrderItemInterface::ROW_TOTAL => 92, + \Magento\Sales\Api\Data\OrderItemInterface::PRODUCT_TYPE => 'simple', + 'product_options' => [ + 'bundle_selection_attributes' => '{"qty":2}', + ], + ] + ], + ] +]; + +// Invoiced all existing order items. +foreach ($order->getAllItems() as $item) { + $item->setQtyInvoiced(1); + $item->save(); +} + +saveOrderItems($orderItems); + + +/** + * Save Order Items. + * + * @param array $orderItems + * @param \Magento\Sales\Model\Order\Item|null $parentOrderItem [optional] + * @return void + */ +function saveOrderItems(array $orderItems, $parentOrderItem = null) +{ + /** @var array $orderItemData */ + foreach ($orderItems as $orderItemData) { + /** @var $orderItem \Magento\Sales\Model\Order\Item */ + $orderItem = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( + \Magento\Sales\Model\Order\Item::class + ); + if (null !== $parentOrderItem) { + $orderItemData['parent_item'] = $parentOrderItem; + } + $orderItem + ->setData($orderItemData) + ->save(); + + if (isset($orderItemData['children'])) { + saveOrderItems($orderItemData['children'], $orderItem); + } + } +} \ No newline at end of file -- GitLab From 63ea11de87d0f89318c699b90f8bddfe4379835f Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Mon, 5 Dec 2016 12:17:02 +0200 Subject: [PATCH 014/175] MAGETWO-61651: Remove uses of serialize and unserialize in Magento/Sales/Model/AdminOrder/Create.php --- .../Unit/Helper/Product/ConfigurationTest.php | 81 +++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php new file mode 100644 index 00000000000..f2b57ce0431 --- /dev/null +++ b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php @@ -0,0 +1,81 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Catalog\Test\Unit\Helper\Product; + +class ConfigurationTest extends \PHPUnit_Framework_TestCase +{ + /** + * @var \Magento\Framework\Serialize\SerializerInterface | \PHPUnit_Framework_MockObject_MockObject + */ + protected $serializer; + + /** + * @var \Magento\Catalog\Helper\Product\Configuration + */ + protected $helper; + + protected function setUp() + { + $contextMock = $this->getMock(\Magento\Framework\App\Helper\Context::class, [], [], '', false); + $optionFactoryMock = $this->getMock(\Magento\Catalog\Model\Product\OptionFactory::class, [], [], '', false); + $filterManagerMock = $this->getMock(\Magento\Framework\Filter\FilterManager::class, [], [], '', false); + $stringUtilsMock = $this->getMock(\Magento\Framework\Stdlib\StringUtils::class, [], [], '', false); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class, [], [], '', false); + + $this->helper = new \Magento\Catalog\Helper\Product\Configuration( + $contextMock, + $optionFactoryMock, + $filterManagerMock, + $stringUtilsMock, + $this->serializer + ); + } + + /** + * Retrieves product additional options + */ + public function testGetAdditionalOptionOnly() + { + $additional_option_result = ['additional_option' => 1]; + + $itemMock = $this->getMock( + \Magento\Catalog\Model\Product\Configuration\Item\ItemInterface::class, + [], + [], + '', + false + ); + $optionMock = $this->getMock( + \Magento\Catalog\Model\Product\Configuration\Item\Option\OptionInterface::class, + [], + [], + '', + false + ); + $additionalOptionMock = $this->getMock( + \Magento\Catalog\Model\Product\Configuration\Item\Option\OptionInterface::class, + [], + [], + '', + false + ); + $productMock = $this->getMock(\Magento\Catalog\Model\Product::class, [], [], '', false); + + $this->serializer->expects($this->once())->method('unserialize')->willReturn($additional_option_result); + $optionMock->expects($this->once())->method('getValue')->willReturn(null); + $additionalOptionMock->expects($this->once())->method('getValue'); + + $itemMock->expects($this->once())->method('getProduct')->willReturn($productMock); + $itemMock->expects($this->any())->method('getOptionByCode')->will($this->returnValueMap( + [ + ['option_ids', $optionMock], + ['additional_options', $additionalOptionMock] + ] + )); + + $this->assertEquals($additional_option_result, $this->helper->getCustomOptions($itemMock)); + } +} -- GitLab From 6447324bd406e811b13f7d942c6401ddddab1205 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Mon, 5 Dec 2016 12:40:03 +0200 Subject: [PATCH 015/175] MAGETWO-61652: Magento/Sales/Model/Order/Config.php and unit tests --- .../Test/Unit/Model/Order/ConfigTest.php | 112 ++++++++++++++++-- 1 file changed, 104 insertions(+), 8 deletions(-) diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php index 7ee4f745cde..efb43ff9032 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php @@ -4,6 +4,8 @@ * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; +use Magento\Framework\DataObject; +use Magento\Sales\Model\ResourceModel\Order\Status\Collection; /** * Class ConfigTest @@ -44,28 +46,28 @@ class ConfigTest extends \PHPUnit_Framework_TestCase public function testGetInvisibleOnFrontStatuses() { $statuses = [ - new \Magento\Framework\DataObject( + new DataObject( [ 'status' => 'canceled', 'is_default' => 1, 'visible_on_front' => 1, ] ), - new \Magento\Framework\DataObject( + new DataObject( [ 'status' => 'complete', 'is_default' => 1, 'visible_on_front' => 0, ] ), - new \Magento\Framework\DataObject( + new DataObject( [ 'status' => 'processing', 'is_default' => 1, 'visible_on_front' => 1, ] ), - new \Magento\Framework\DataObject( + new DataObject( [ 'status' => 'pending_payment', 'is_default' => 1, @@ -76,7 +78,7 @@ class ConfigTest extends \PHPUnit_Framework_TestCase $expectedResult = ['complete', 'pending_payment']; $collectionMock = $this->getMock( - \Magento\Sales\Model\ResourceModel\Order\Status\Collection::class, + Collection::class, ['create', 'joinStates'], [], '', @@ -97,14 +99,14 @@ class ConfigTest extends \PHPUnit_Framework_TestCase public function testGetStateLabelByStateAndStatus() { $statuses = [ - new \Magento\Framework\DataObject( + new DataObject( [ 'status' => 'fraud', 'state' => 'processing', 'label' => 'Suspected Fraud', ] ), - new \Magento\Framework\DataObject( + new DataObject( [ 'status' => 'processing', 'state' => 'processing', @@ -113,7 +115,7 @@ class ConfigTest extends \PHPUnit_Framework_TestCase ) ]; $collectionMock = $this->getMock( - \Magento\Sales\Model\ResourceModel\Order\Status\Collection::class, + Collection::class, ['create', 'joinStates'], [], '', @@ -129,4 +131,98 @@ class ConfigTest extends \PHPUnit_Framework_TestCase $result = $this->salesConfig->getStateLabelByStateAndStatus('processing', 'fraud'); $this->assertSame('Suspected Fraud', $result->getText()); } + + /** + * Test get statuses + * + * @dataProvider getStatusesDataProvider + * + * @param string $state + * @param bool $joinLabels + * @param DataObject[] $collectionData + * @param array $expectedResult + */ + public function testGetStatuses($state, $joinLabels, $collectionData, $expectedResult) + { + $collectionMock = $this->getMock( + Collection::class, + ['create', 'joinStates', 'addStateFilter', 'orderByLabel'], + [], + '', + false, + false + ); + $this->orderStatusCollectionFactoryMock->expects($this->any()) + ->method('create') + ->will($this->returnValue($collectionMock)); + + $collectionMock->expects($this->once()) + ->method('addStateFilter') + ->will($this->returnSelf()); + + $collectionMock->expects($this->once()) + ->method('orderByLabel') + ->will($this->returnValue($collectionData)); + + $collectionMock->expects($this->once()) + ->method('joinStates') + ->will($this->returnValue($collectionData)); + + $result = $this->salesConfig->getStateStatuses($state, $joinLabels); + $this->assertSame($expectedResult, $result); + + // checking data cached in private property + $this->assertSame($result, $this->salesConfig->getStateStatuses($state, $joinLabels)); + } + + /** + * Data provider for testGetStatuses + * + * @return array + */ + public function getStatusesDataProvider() + { + return [ + 'processing state' => [ + 'state' => 'processing', + 'joinLabels' => false, + 'collectionData' => [ + new DataObject( + [ + 'status' => 'fraud', + 'state' => 'processing', + 'store_label' => 'Suspected Fraud', + ] + ), + new DataObject( + [ + 'status' => 'processing', + 'state' => 'processing', + 'store_label' => 'Processing', + ] + ), + ], + 'expectedResult' => [ + 0 => 'fraud', + 1 => 'processing' + ], + ], + 'pending state' => [ + 'state' => 'pending', + 'joinLabels' => true, + 'collectionData' => [ + new DataObject( + [ + 'status' => 'pending_status', + 'state' => 'pending', + 'store_label' => 'Pending label', + ] + ), + ], + 'expectedResult' => [ + 'pending_status' => 'Pending label' + ], + ], + ]; + } } -- GitLab From cba9332f912d863913d9824e296530d2caaca6eb Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Mon, 5 Dec 2016 15:16:05 +0200 Subject: [PATCH 016/175] MAGETWO-61652: Magento/Sales/Model/Order/Config.php and unit tests - fixed satic test notices - changed hash in key preparation from md5 as it is treated as unsecure --- app/code/Magento/Sales/Model/Order/Config.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/Sales/Model/Order/Config.php b/app/code/Magento/Sales/Model/Order/Config.php index 0da26bdbbe2..48021fedc03 100644 --- a/app/code/Magento/Sales/Model/Order/Config.php +++ b/app/code/Magento/Sales/Model/Order/Config.php @@ -192,7 +192,7 @@ class Config */ public function getStateStatuses($state, $addLabels = true) { - $key = md5(json_encode([$state, $addLabels])); + $key = sha1(json_encode([$state, $addLabels])); if (isset($this->stateStatuses[$key])) { return $this->stateStatuses[$key]; } diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php index efb43ff9032..e0aae72555c 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php @@ -4,6 +4,7 @@ * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; + use Magento\Framework\DataObject; use Magento\Sales\Model\ResourceModel\Order\Status\Collection; -- GitLab From e5be730d0d156e657bc64621dad16ccff2eddfb9 Mon Sep 17 00:00:00 2001 From: Joan He <johe@magento.com> Date: Mon, 5 Dec 2016 10:49:40 -0600 Subject: [PATCH 017/175] MAGETWO-61535: Create upgrade script for sales_shipment table packages field --- app/code/Magento/Sales/Setup/UpgradeData.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 09eec684094..f26975972a1 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -122,6 +122,7 @@ class UpgradeData implements UpgradeDataInterface { $this->changeFieldFormat($setup, 'sales_order_item', 'item_id', 'product_options'); $this->changeFieldFormat($setup, 'quote_payment', 'payment_id', 'additional_information'); + $this->changeFieldFormat($setup, 'sales_shipment', 'entity_id', 'packages'); } /** -- GitLab From 87b66cc1506aec2a135d55cda40c4bc43660d540 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Mon, 5 Dec 2016 10:49:54 -0600 Subject: [PATCH 018/175] MAGETWO-61533: Create upgrade script for sales_order_payment table additional_information field Changing format from serialized to json of additional_information field in sales_order_payment table --- app/code/Magento/Sales/Setup/UpgradeData.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 09eec684094..395f30e508f 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -122,6 +122,7 @@ class UpgradeData implements UpgradeDataInterface { $this->changeFieldFormat($setup, 'sales_order_item', 'item_id', 'product_options'); $this->changeFieldFormat($setup, 'quote_payment', 'payment_id', 'additional_information'); + $this->changeFieldFormat($setup, 'sales_order_payment', 'entity_id', 'additional_information'); } /** -- GitLab From 36f83c17fd64c02838aa2e0b019430c0851b3326 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Mon, 5 Dec 2016 11:55:39 -0600 Subject: [PATCH 019/175] MAGETWO-61537: Create upgrade script for sales_payment_transaction table additional_information field Changing format from serialized to json of additional_information field in sales_payment_transaction table --- app/code/Magento/Sales/Setup/UpgradeData.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 9322921c482..a32c6941bee 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -124,6 +124,7 @@ class UpgradeData implements UpgradeDataInterface $this->changeFieldFormat($setup, 'quote_payment', 'payment_id', 'additional_information'); $this->changeFieldFormat($setup, 'sales_order_payment', 'entity_id', 'additional_information'); $this->changeFieldFormat($setup, 'sales_shipment', 'entity_id', 'packages'); + $this->changeFieldFormat($setup, 'sales_payment_transaction', 'transaction_id', 'packages'); } /** -- GitLab From 871aa37053968fae7256765b1d2b8579d5a1fc53 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Mon, 5 Dec 2016 11:56:05 -0600 Subject: [PATCH 020/175] MAGETWO-61537: Create upgrade script for sales_payment_transaction table additional_information field Changing format from serialized to json of additional_information field in sales_payment_transaction table --- app/code/Magento/Sales/Setup/UpgradeData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index a32c6941bee..6dedb2ea847 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -124,7 +124,7 @@ class UpgradeData implements UpgradeDataInterface $this->changeFieldFormat($setup, 'quote_payment', 'payment_id', 'additional_information'); $this->changeFieldFormat($setup, 'sales_order_payment', 'entity_id', 'additional_information'); $this->changeFieldFormat($setup, 'sales_shipment', 'entity_id', 'packages'); - $this->changeFieldFormat($setup, 'sales_payment_transaction', 'transaction_id', 'packages'); + $this->changeFieldFormat($setup, 'sales_payment_transaction', 'transaction_id', 'additional_information'); } /** -- GitLab From 3cc51336b93eeca9a7045dc26459546440e9b319 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Tue, 6 Dec 2016 10:09:46 +0200 Subject: [PATCH 021/175] MAGETWO-61654: Update serialization in Magento/Sales/Model/Order/Item.php and unit tests --- app/code/Magento/Sales/Model/Order/Item.php | 22 +++++++- .../Sales/Test/Unit/Model/Order/ItemTest.php | 55 ++++++++++++++++++- 2 files changed, 75 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Sales/Model/Order/Item.php b/app/code/Magento/Sales/Model/Order/Item.php index 10ba1e16621..b48921ac7b6 100644 --- a/app/code/Magento/Sales/Model/Order/Item.php +++ b/app/code/Magento/Sales/Model/Order/Item.php @@ -6,6 +6,8 @@ namespace Magento\Sales\Model\Order; use Magento\Framework\Api\AttributeValueFactory; +use Magento\Framework\App\ObjectManager; +use Magento\Framework\Serialize\SerializerInterface; use Magento\Sales\Model\AbstractModel; use Magento\Sales\Api\Data\OrderItemInterface; @@ -95,6 +97,11 @@ class Item extends AbstractModel implements OrderItemInterface */ protected $_storeManager; + /** + * @var SerializerInterface + */ + private $serializer; + /** * Initialize dependencies. * @@ -458,6 +465,19 @@ class Item extends AbstractModel implements OrderItemInterface return $this; } + /** + * Get serializer instance + * + * @return SerializerInterface + */ + private function getSerializer() + { + if (!$this->serializer) { + $this->serializer = ObjectManager::getInstance()->get(SerializerInterface::class); + } + return $this->serializer; + } + /** * Get product options array * @@ -466,7 +486,7 @@ class Item extends AbstractModel implements OrderItemInterface public function getProductOptions() { $data = $this->_getData('product_options'); - return is_string($data) ? unserialize($data) : $data; + return is_string($data) ? $this->getSerializer()->unserialize($data) : $data; } /** diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php index 3d6ba772618..6006f5234b1 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php @@ -6,6 +6,7 @@ namespace Magento\Sales\Test\Unit\Model\Order; +use Magento\Framework\Serialize\SerializerInterface; use Magento\Sales\Model\ResourceModel\OrderFactory; use \Magento\Sales\Model\Order; @@ -118,7 +119,8 @@ class ItemTest extends \PHPUnit_Framework_TestCase $qtyRefunded, $qtyShipped, $expectedStatus - ) { + ) + { $this->model->setQtyBackordered($qtyBackOrdered); $this->model->setQtyCanceled($qtyCanceled); $this->model->setQtyInvoiced($qtyInvoiced); @@ -173,4 +175,55 @@ class ItemTest extends \PHPUnit_Framework_TestCase $this->model->setData(\Magento\Sales\Api\Data\OrderItemInterface::ORIGINAL_PRICE, $originalPrice); $this->assertEquals($originalPrice, $this->model->getOriginalPrice()); } + + /** + * Test get product options with serialization + * + * @param array|string $options + * @param array $expectedResult + * + * @dataProvider getProductOptionsDataProvider + */ + public function testGetProductOptions($options, $expectedResult) + { + $serializerMock = $this->getMock(SerializerInterface::class, [], ['unserialize'], '', false); + if (is_string($options)) { + $serializerMock->expects($this->once())->method('unserialize')->will($this->returnValue($expectedResult)); + } + $this->objectManager->setBackwardCompatibleProperty($this->model, 'serializer', $serializerMock); + $this->model->setData('product_options', $options); + $result = $this->model->getProductOptions(); + $this->assertSame($result, $expectedResult); + } + + /** + * Data provider for testGetProductOptions + * + * @return array + */ + public function getProductOptionsDataProvider() + { + return [ + 'array' => [ + 'options' => [ + 'option1' => 'option 1 value', + 'option2' => 'option 2 value', + ], + 'expectedResult' => [ + 'option1' => 'option 1 value', + 'option2' => 'option 2 value', + ] + ], + 'serialized' => [ + 'options' => json_encode([ + 'option1' => 'option 1 value', + 'option2' => 'option 2 value', + ]), + 'expectedResult' => [ + 'option1' => 'option 1 value', + 'option2' => 'option 2 value', + ] + ] + ]; + } } -- GitLab From 0ab0d2fc847c86cc29cc6f35c24bbc7db645753a Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Tue, 6 Dec 2016 10:13:05 +0200 Subject: [PATCH 022/175] MAGETWO-61654: Update serialization in Magento/Sales/Model/Order/Item.php and unit tests - added deprecation tag to deprecated method --- app/code/Magento/Sales/Model/Order/Item.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/code/Magento/Sales/Model/Order/Item.php b/app/code/Magento/Sales/Model/Order/Item.php index b48921ac7b6..757c4f673d3 100644 --- a/app/code/Magento/Sales/Model/Order/Item.php +++ b/app/code/Magento/Sales/Model/Order/Item.php @@ -469,6 +469,7 @@ class Item extends AbstractModel implements OrderItemInterface * Get serializer instance * * @return SerializerInterface + * @deprecated */ private function getSerializer() { -- GitLab From 2e920bd5dc703e1685bba92062aa847c8363928e Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Tue, 6 Dec 2016 16:06:56 +0200 Subject: [PATCH 023/175] MAGETWO-61651: Remove uses of serialize and unserialize in Magento/Sales/Model/AdminOrder/Create.php --- .../Catalog/Test/Unit/Helper/Product/ConfigurationTest.php | 6 +++--- .../testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php index f2b57ce0431..9a2e46776c6 100644 --- a/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php @@ -39,7 +39,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase */ public function testGetAdditionalOptionOnly() { - $additional_option_result = ['additional_option' => 1]; + $additionalOptionResult = ['additional_option' => 1]; $itemMock = $this->getMock( \Magento\Catalog\Model\Product\Configuration\Item\ItemInterface::class, @@ -64,7 +64,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase ); $productMock = $this->getMock(\Magento\Catalog\Model\Product::class, [], [], '', false); - $this->serializer->expects($this->once())->method('unserialize')->willReturn($additional_option_result); + $this->serializer->expects($this->once())->method('unserialize')->willReturn($additionalOptionResult); $optionMock->expects($this->once())->method('getValue')->willReturn(null); $additionalOptionMock->expects($this->once())->method('getValue'); @@ -76,6 +76,6 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase ] )); - $this->assertEquals($additional_option_result, $this->helper->getCustomOptions($itemMock)); + $this->assertEquals($additionalOptionResult, $this->helper->getCustomOptions($itemMock)); } } diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php index 0714423cff4..040ab446222 100644 --- a/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php +++ b/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php @@ -108,6 +108,7 @@ class CreateTest extends \PHPUnit_Framework_TestCase $newOrderItem->getProductOptionByCode('additional_options') ); } + /** * @magentoDataFixture Magento/Downloadable/_files/product_downloadable.php * @magentoDataFixture Magento/Downloadable/_files/order_with_downloadable_product.php -- GitLab From a07910d8ffaa3db9bfd511db505a1691399dabc6 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Tue, 6 Dec 2016 14:03:45 -0600 Subject: [PATCH 024/175] MAGETWO-61872: Create FieldDataConverter Implementing FieldDataConverter --- .../DataConverter/DataConverterInterface.php | 20 ++++++ .../Setup/DataConverter/SerializedToJson.php | 50 +++++++++++++ .../Framework/Setup/FieldDataConverter.php | 72 +++++++++++++++++++ .../Setup/FieldDataConverterFactory.php | 55 ++++++++++++++ .../DataConverter/SerializedToJsonTest.php | 59 +++++++++++++++ 5 files changed, 256 insertions(+) create mode 100644 lib/internal/Magento/Framework/Setup/DataConverter/DataConverterInterface.php create mode 100644 lib/internal/Magento/Framework/Setup/DataConverter/SerializedToJson.php create mode 100644 lib/internal/Magento/Framework/Setup/FieldDataConverter.php create mode 100644 lib/internal/Magento/Framework/Setup/FieldDataConverterFactory.php create mode 100644 lib/internal/Magento/Framework/Setup/Test/Unit/DataConverter/SerializedToJsonTest.php diff --git a/lib/internal/Magento/Framework/Setup/DataConverter/DataConverterInterface.php b/lib/internal/Magento/Framework/Setup/DataConverter/DataConverterInterface.php new file mode 100644 index 00000000000..0ddab69cb9c --- /dev/null +++ b/lib/internal/Magento/Framework/Setup/DataConverter/DataConverterInterface.php @@ -0,0 +1,20 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Framework\Setup\DataConverter; + +/** + * Convert from one format to another + */ +interface DataConverterInterface +{ + /** + * Convert from one format to another + * + * @param string $string + * @return string + */ + public function convert($string); +} diff --git a/lib/internal/Magento/Framework/Setup/DataConverter/SerializedToJson.php b/lib/internal/Magento/Framework/Setup/DataConverter/SerializedToJson.php new file mode 100644 index 00000000000..08b076be944 --- /dev/null +++ b/lib/internal/Magento/Framework/Setup/DataConverter/SerializedToJson.php @@ -0,0 +1,50 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Framework\Setup\DataConverter; + +use Magento\Framework\Serialize\Serializer\Serialize; +use Magento\Framework\Serialize\Serializer\Json; + +/** + * Convert from serialized to JSON format + */ +class SerializedToJson implements DataConverterInterface +{ + /** + * @var Serialize + */ + private $serialize; + + /** + * @var Json + */ + private $json; + + /** + * Constructor + * + * @param Serialize $serialize + * @param Json $json + */ + public function __construct( + Serialize $serialize, + Json $json + ) { + $this->serialize = $serialize; + $this->json = $json; + } + + /** + * Convert from serialized to JSON format + * + * @param string $string + * @return string + */ + public function convert($string) + { + return $this->json->serialize($this->serialize->unserialize($string)); + } +} diff --git a/lib/internal/Magento/Framework/Setup/FieldDataConverter.php b/lib/internal/Magento/Framework/Setup/FieldDataConverter.php new file mode 100644 index 00000000000..c14fefad735 --- /dev/null +++ b/lib/internal/Magento/Framework/Setup/FieldDataConverter.php @@ -0,0 +1,72 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Framework\Setup; + +use Magento\Framework\DB\Adapter\AdapterInterface; +use Magento\Framework\DB\Query\Generator; +use Magento\Framework\Setup\DataConverter\DataConverterInterface; + +/** + * Convert field data from one representation to another + */ +class FieldDataConverter +{ + /** + * @var AdapterInterface + */ + private $connection; + + /** + * @var Generator + */ + private $queryGenerator; + + /** + * @var DataConverterInterface + */ + private $dataConverter; + + /** + * Constructor + * + * @param AdapterInterface $connection + * @param Generator $queryGenerator + * @param DataConverterInterface $dataConverter + */ + public function __construct( + AdapterInterface $connection, + Generator $queryGenerator, + DataConverterInterface $dataConverter + ) { + $this->connection = $connection; + $this->queryGenerator = $queryGenerator; + $this->dataConverter = $dataConverter; + } + + /** + * Convert field data from one representation to another + * + * @param string $table + * @param string $identifier + * @param string $field + * @return void + */ + public function convert($table, $identifier, $field) + { + $select = $this->connection->select() + ->from($table, [$identifier, $field]) + ->where($field . ' IS NOT NULL'); + $iterator = $this->queryGenerator->generate($identifier, $select); + foreach ($iterator as $selectByRange) { + $rows = $this->connection->fetchAll($selectByRange); + foreach ($rows as $row) { + $bind = [$field => $this->dataConverter->convert($row[$field])]; + $where = [$identifier . ' = ?' => (int) $row[$identifier]]; + $this->connection->update($table, $bind, $where); + } + } + } +} diff --git a/lib/internal/Magento/Framework/Setup/FieldDataConverterFactory.php b/lib/internal/Magento/Framework/Setup/FieldDataConverterFactory.php new file mode 100644 index 00000000000..e5776550151 --- /dev/null +++ b/lib/internal/Magento/Framework/Setup/FieldDataConverterFactory.php @@ -0,0 +1,55 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Framework\Setup; + +use Magento\Framework\ObjectManagerInterface; +use Magento\Framework\DB\Adapter\AdapterInterface; +use Magento\Framework\Setup\DataConverter\DataConverterInterface; + +/** + * Create instance of FieldDataConverter with concrete implementation of DataConverterInterface + */ +class FieldDataConverterFactory +{ + /** + * FieldDataConverter class name + */ + const CLASS_NAME = FieldDataConverter::class; + + /** + * @var ObjectManagerInterface + */ + private $objectManager; + + /** + * Constructor + * + * @param ObjectManagerInterface $objectManager + */ + public function __construct( + ObjectManagerInterface $objectManager + ) { + $this->objectManager = $objectManager; + } + + /** + * Create instance of FieldDataConverter + * + * @param AdapterInterface $connection + * @param DataConverterInterface $dataConverterClassName + * @return FieldDataConverter + */ + public function create(AdapterInterface $connection, DataConverterInterface $dataConverterClassName) + { + return $this->objectManager->create( + self::CLASS_NAME, + [ + 'connection' => $connection, + 'dataConverter' => $this->objectManager->get($dataConverterClassName) + ] + ); + } +} diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/DataConverter/SerializedToJsonTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/DataConverter/SerializedToJsonTest.php new file mode 100644 index 00000000000..e7119040e02 --- /dev/null +++ b/lib/internal/Magento/Framework/Setup/Test/Unit/DataConverter/SerializedToJsonTest.php @@ -0,0 +1,59 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Framework\Setup\Test\Unit\DataConverter; + +use Magento\Framework\Serialize\Serializer\Serialize; +use Magento\Framework\Serialize\Serializer\Json; +use Magento\Framework\Setup\DataConverter\SerializedToJson; +use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; + +class SerializedToJsonTest extends \PHPUnit_Framework_TestCase +{ + /** + * @var Serialize|\PHPUnit_Framework_MockObject_MockObject + */ + private $serializeMock; + + /** + * @var Json|\PHPUnit_Framework_MockObject_MockObject + */ + private $jsonMock; + + /** + * @var SerializedToJson + */ + private $serializedToJson; + + protected function setUp() + { + $objectManager = new ObjectManager($this); + $this->serializeMock = $this->getMock(Serialize::class, [], [], '', false); + $this->jsonMock = $this->getMock(Json::class, [], [], '', false); + $this->serializedToJson = $objectManager->getObject( + SerializedToJson::class, + [ + 'serialize' => $this->serializeMock, + 'json' => $this->jsonMock + ] + ); + } + + public function testConvert() + { + $serializedData = 'serialized data'; + $jsonData = 'json data'; + $unserializedData = 'unserialized data'; + $this->serializeMock->expects($this->once()) + ->method('unserialize') + ->with($serializedData) + ->willReturn($unserializedData); + $this->jsonMock->expects($this->once()) + ->method('serialize') + ->with($unserializedData) + ->willReturn($jsonData); + $this->assertEquals($jsonData, $this->serializedToJson->convert($serializedData)); + } +} -- GitLab From d3ee7fc9a4f1a9f6f24abd98ded544de600c8864 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Tue, 6 Dec 2016 14:17:11 -0600 Subject: [PATCH 025/175] MAGETWO-61537: Create upgrade script for sales_payment_transaction table additional_information field Refactoring to use FieldDataConverter --- app/code/Magento/Sales/Setup/UpgradeData.php | 74 ++++++++------------ 1 file changed, 29 insertions(+), 45 deletions(-) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 6dedb2ea847..912c891079e 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -24,25 +24,25 @@ class UpgradeData implements UpgradeDataInterface private $eavConfig; /** - * @var \Magento\Framework\Serialize\Serializer\Json + * @var \Magento\Framework\Setup\FieldDataConverterFactory */ - private $serializer; + private $fieldDataConverterFactory; /** * Constructor * * @param SalesSetupFactory $salesSetupFactory * @param \Magento\Eav\Model\Config $eavConfig - * @param \Magento\Framework\Serialize\Serializer\Json $serializer + * @param \Magento\Framework\Setup\FieldDataConverterFactory $fieldDataConverterFactory */ public function __construct( SalesSetupFactory $salesSetupFactory, \Magento\Eav\Model\Config $eavConfig, - \Magento\Framework\Serialize\Serializer\Json $serializer + \Magento\Framework\Setup\FieldDataConverterFactory $fieldDataConverterFactory ) { $this->salesSetupFactory = $salesSetupFactory; $this->eavConfig = $eavConfig; - $this->serializer = $serializer; + $this->fieldDataConverterFactory = $fieldDataConverterFactory; } /** @@ -120,45 +120,29 @@ class UpgradeData implements UpgradeDataInterface */ private function upgradeToVersionTwoZeroFive(ModuleDataSetupInterface $setup) { - $this->changeFieldFormat($setup, 'sales_order_item', 'item_id', 'product_options'); - $this->changeFieldFormat($setup, 'quote_payment', 'payment_id', 'additional_information'); - $this->changeFieldFormat($setup, 'sales_order_payment', 'entity_id', 'additional_information'); - $this->changeFieldFormat($setup, 'sales_shipment', 'entity_id', 'packages'); - $this->changeFieldFormat($setup, 'sales_payment_transaction', 'transaction_id', 'additional_information'); - } - - /** - * Change format of the field for the table - * - * @param ModuleDataSetupInterface $setup - * @param string $tableName - * @param string $identifier - * @param string $field - * @return void - */ - private function changeFieldFormat(ModuleDataSetupInterface $setup, $tableName, $identifier, $field) - { - $table = $setup->getTable($tableName); - $select = $setup->getConnection() - ->select() - ->from($table, [$identifier, $field]) - ->where($field . ' IS NOT NULL'); - $items = $setup->getConnection()->fetchAll($select); - foreach ($items as $item) { - $bind = [$field => $this->convertData($item[$field])]; - $where = [$identifier . ' = ?' => (int) $item[$identifier]]; - $setup->getConnection()->update($table, $bind, $where); - } - } - - /** - * Convert from serialized to json format - * - * @param string $data - * @return string - */ - private function convertData($data) - { - return $this->serializer->serialize(unserialize($data)); + $fieldDataConverter = $this->fieldDataConverterFactory->create( + $setup->getConnection(), + \Magento\Framework\Setup\DataConverter\SerializedToJson::class + ); + $fieldDataConverter->convert( + $setup->getTable('quote_payment'), + 'payment_id', + 'additional_information' + ); + $fieldDataConverter->convert( + $setup->getTable('sales_order_payment'), + 'entity_id', + 'additional_information' + ); + $fieldDataConverter->convert( + $setup->getTable('sales_shipment'), + 'entity_id', + 'packages' + ); + $fieldDataConverter->convert( + $setup->getTable('sales_payment_transaction'), + 'transaction_id', + 'additional_information' + ); } } -- GitLab From b3e81eab3945f64df17bea7a06fea4bdeee2eaf2 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Tue, 6 Dec 2016 15:08:45 -0600 Subject: [PATCH 026/175] MAGETWO-61537: Create upgrade script for sales_payment_transaction table additional_information field Refactoring to use FieldDataConverter --- app/code/Magento/Sales/Setup/UpgradeData.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 912c891079e..ea40a4d7624 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -125,19 +125,19 @@ class UpgradeData implements UpgradeDataInterface \Magento\Framework\Setup\DataConverter\SerializedToJson::class ); $fieldDataConverter->convert( - $setup->getTable('quote_payment'), - 'payment_id', - 'additional_information' + $setup->getTable('sales_order_item'), + 'item_id', + 'product_options' ); $fieldDataConverter->convert( - $setup->getTable('sales_order_payment'), + $setup->getTable('sales_shipment'), 'entity_id', - 'additional_information' + 'packages' ); $fieldDataConverter->convert( - $setup->getTable('sales_shipment'), + $setup->getTable('sales_order_payment'), 'entity_id', - 'packages' + 'additional_information' ); $fieldDataConverter->convert( $setup->getTable('sales_payment_transaction'), -- GitLab From 3dd81a20071237fb2abaf2f49c616c5547f3a880 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Tue, 6 Dec 2016 15:24:15 -0600 Subject: [PATCH 027/175] MAGETWO-61526: Create upgrade script for quote_payment table additional_information field Changing format from serialized to json of additional_information field in quote_payment table --- app/code/Magento/Quote/Setup/UpgradeData.php | 69 ++++++++++++++++++++ app/code/Magento/Quote/etc/module.xml | 2 +- 2 files changed, 70 insertions(+), 1 deletion(-) create mode 100644 app/code/Magento/Quote/Setup/UpgradeData.php diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php new file mode 100644 index 00000000000..e93ed2bb055 --- /dev/null +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -0,0 +1,69 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Quote\Setup; + +use Magento\Framework\Setup\UpgradeDataInterface; +use Magento\Framework\Setup\ModuleContextInterface; +use Magento\Framework\Setup\ModuleDataSetupInterface; + +class UpgradeData implements UpgradeDataInterface +{ + /** + * @var \Magento\Eav\Model\Config + */ + private $eavConfig; + + /** + * @var \Magento\Framework\Setup\FieldDataConverterFactory + */ + private $fieldDataConverterFactory; + + /** + * Constructor + * + * @param \Magento\Eav\Model\Config $eavConfig + * @param \Magento\Framework\Setup\FieldDataConverterFactory $fieldDataConverterFactory + */ + public function __construct( + \Magento\Eav\Model\Config $eavConfig, + \Magento\Framework\Setup\FieldDataConverterFactory $fieldDataConverterFactory + ) { + $this->eavConfig = $eavConfig; + $this->fieldDataConverterFactory = $fieldDataConverterFactory; + } + + /** + * {@inheritdoc} + */ + public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context) + { + $setup->startSetup(); + if (version_compare($context->getVersion(), '2.0.4', '<')) { + $this->upgradeToVersionTwoZeroFour($setup); + } + $this->eavConfig->clear(); + $setup->endSetup(); + } + + /** + * Upgrade to version 2.0.4 + * + * @param ModuleDataSetupInterface $setup + * @return void + */ + private function upgradeToVersionTwoZeroFour(ModuleDataSetupInterface $setup) + { + $fieldDataConverter = $this->fieldDataConverterFactory->create( + $setup->getConnection(), + \Magento\Framework\Setup\DataConverter\SerializedToJson::class + ); + $fieldDataConverter->convert( + $setup->getTable('quote_payment'), + 'payment_id', + 'additional_information' + ); + } +} diff --git a/app/code/Magento/Quote/etc/module.xml b/app/code/Magento/Quote/etc/module.xml index 281cde9eeb9..52c92cf2d91 100644 --- a/app/code/Magento/Quote/etc/module.xml +++ b/app/code/Magento/Quote/etc/module.xml @@ -6,6 +6,6 @@ */ --> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> - <module name="Magento_Quote" setup_version="2.0.3"> + <module name="Magento_Quote" setup_version="2.0.4"> </module> </config> -- GitLab From a552b2f90f2a40df08a22d85e3e8a31e355bd1ae Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Tue, 6 Dec 2016 16:23:13 -0600 Subject: [PATCH 028/175] MAGETWO-61872: Create FieldDataConverter Implementing FieldDataConverter --- .../Setup/FieldDataConverterFactory.php | 11 +- .../Unit/FieldDataConverterFactoryTest.php | 74 ++++++++++++ .../Test/Unit/FieldDataConverterTest.php | 108 ++++++++++++++++++ 3 files changed, 185 insertions(+), 8 deletions(-) create mode 100644 lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterFactoryTest.php create mode 100644 lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterTest.php diff --git a/lib/internal/Magento/Framework/Setup/FieldDataConverterFactory.php b/lib/internal/Magento/Framework/Setup/FieldDataConverterFactory.php index e5776550151..911ec637066 100644 --- a/lib/internal/Magento/Framework/Setup/FieldDataConverterFactory.php +++ b/lib/internal/Magento/Framework/Setup/FieldDataConverterFactory.php @@ -14,11 +14,6 @@ use Magento\Framework\Setup\DataConverter\DataConverterInterface; */ class FieldDataConverterFactory { - /** - * FieldDataConverter class name - */ - const CLASS_NAME = FieldDataConverter::class; - /** * @var ObjectManagerInterface */ @@ -39,13 +34,13 @@ class FieldDataConverterFactory * Create instance of FieldDataConverter * * @param AdapterInterface $connection - * @param DataConverterInterface $dataConverterClassName + * @param string $dataConverterClassName * @return FieldDataConverter */ - public function create(AdapterInterface $connection, DataConverterInterface $dataConverterClassName) + public function create(AdapterInterface $connection, $dataConverterClassName) { return $this->objectManager->create( - self::CLASS_NAME, + FieldDataConverter::class, [ 'connection' => $connection, 'dataConverter' => $this->objectManager->get($dataConverterClassName) diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterFactoryTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterFactoryTest.php new file mode 100644 index 00000000000..e08e1ee7496 --- /dev/null +++ b/lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterFactoryTest.php @@ -0,0 +1,74 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Framework\Setup\Test\Unit; + +use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; +use Magento\Framework\Setup\FieldDataConverterFactory; +use Magento\Framework\ObjectManagerInterface; +use Magento\Framework\DB\Adapter\AdapterInterface; +use Magento\Framework\Setup\FieldDataConverter; +use Magento\Framework\Setup\DataConverter\DataConverterInterface; + +class FieldDataConverterFactoryTest extends \PHPUnit_Framework_TestCase +{ + /** + * @var ObjectManagerInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $objectManagerMock; + + /** + * @var AdapterInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $connectionMock; + + /** + * @var DataConverterInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $dataConverterMock; + + /** + * @var FieldDataConverterFactory + */ + private $fieldDataConverterFactory; + + protected function setUp() + { + $objectManager = new ObjectManager($this); + $this->objectManagerMock = $this->getMock(ObjectManagerInterface::class); + $this->connectionMock = $this->getMock(AdapterInterface::class); + $this->dataConverterMock = $this->getMock(DataConverterInterface::class); + $this->fieldDataConverterFactory = $objectManager->getObject( + FieldDataConverterFactory::class, + [ + 'objectManager' => $this->objectManagerMock + ] + ); + } + + public function testCreate() + { + $dataConverterClassName = 'ClassName'; + $fieldDataConverterInstance = 'field data converter instance'; + $this->objectManagerMock->expects($this->once()) + ->method('get') + ->with($dataConverterClassName) + ->willReturn($this->dataConverterMock); + $this->objectManagerMock->expects($this->once()) + ->method('create') + ->with( + FieldDataConverter::class, + [ + 'connection' => $this->connectionMock, + 'dataConverter' => $this->dataConverterMock + ] + ) + ->willReturn($fieldDataConverterInstance); + $this->assertEquals( + $fieldDataConverterInstance, + $this->fieldDataConverterFactory->create($this->connectionMock, $dataConverterClassName) + ); + } +} diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterTest.php new file mode 100644 index 00000000000..9c16d1ea012 --- /dev/null +++ b/lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterTest.php @@ -0,0 +1,108 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Framework\Setup\Test\Unit; + +use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; +use Magento\Framework\DB\Query\Generator; +use Magento\Framework\DB\Adapter\AdapterInterface; +use Magento\Framework\Setup\FieldDataConverter; +use Magento\Framework\Setup\DataConverter\DataConverterInterface; +use Magento\Framework\DB\Select; + +class FieldDataConverterTest extends \PHPUnit_Framework_TestCase +{ + /** + * @var AdapterInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $connectionMock; + + /** + * @var Generator|\PHPUnit_Framework_MockObject_MockObject + */ + private $queryGeneratorMock; + + /** + * @var DataConverterInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $dataConverterMock; + + /** + * @var Select|\PHPUnit_Framework_MockObject_MockObject + */ + private $selectMock; + + /** + * @var FieldDataConverter + */ + private $fieldDataConverter; + + protected function setUp() + { + $objectManager = new ObjectManager($this); + $this->connectionMock = $this->getMock(AdapterInterface::class); + $this->queryGeneratorMock = $this->getMock(Generator::class, [], [], '', false); + $this->dataConverterMock = $this->getMock(DataConverterInterface::class); + $this->selectMock = $this->getMock(Select::class, [], [], '', false); + $this->fieldDataConverter = $objectManager->getObject( + FieldDataConverter::class, + [ + 'connection' => $this->connectionMock, + 'queryGenerator' => $this->queryGeneratorMock, + 'dataConverter' => $this->dataConverterMock + ] + ); + } + + public function testConvert() + { + $table = 'table'; + $identifier = 'id'; + $field = 'field'; + $where = $field . ' IS NOT NULL'; + $iterator = ['query 1']; + $rows = [ + [ + $identifier => 1, + $field => 'value' + ] + ]; + $convertedValue = 'converted value'; + $this->connectionMock->expects($this->once()) + ->method('select') + ->willReturn($this->selectMock); + $this->selectMock->expects($this->once()) + ->method('from') + ->with( + $table, + [$identifier, $field] + ) + ->willReturnSelf(); + $this->selectMock->expects($this->once()) + ->method('where') + ->with($where) + ->willReturnSelf(); + $this->queryGeneratorMock->expects($this->once()) + ->method('generate') + ->with($identifier, $this->selectMock) + ->willReturn($iterator); + $this->connectionMock->expects($this->once()) + ->method('fetchAll') + ->with($iterator[0]) + ->willReturn($rows); + $this->dataConverterMock->expects($this->once()) + ->method('convert') + ->with($rows[0][$field]) + ->willReturn($convertedValue); + $this->connectionMock->expects($this->once()) + ->method('update') + ->with( + $table, + [$field => $convertedValue], + [$identifier . ' = ?' => $rows[0][$identifier]] + ); + $this->fieldDataConverter->convert($table, $identifier, $field); + } +} -- GitLab From d1c056a9655ed663f21e9d87558520edbf93cb35 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Wed, 7 Dec 2016 11:44:35 +0200 Subject: [PATCH 029/175] MAGETWO-61674: Fix seralization in Module Downloadable --- .../Downloadable/Model/Product/Type.php | 30 +++- .../Test/Unit/Model/Product/TypeTest.php | 137 +++++++++++++++++- 2 files changed, 159 insertions(+), 8 deletions(-) diff --git a/app/code/Magento/Downloadable/Model/Product/Type.php b/app/code/Magento/Downloadable/Model/Product/Type.php index 64c00d208b8..f5e63153f2a 100644 --- a/app/code/Magento/Downloadable/Model/Product/Type.php +++ b/app/code/Magento/Downloadable/Model/Product/Type.php @@ -7,6 +7,8 @@ namespace Magento\Downloadable\Model\Product; use Magento\Catalog\Api\ProductRepositoryInterface; use Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface; +use Magento\Framework\App\ObjectManager; +use Magento\Framework\Serialize\SerializerInterface; /** * Downloadable product type model @@ -65,6 +67,11 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual */ private $extensionAttributesJoinProcessor; + /** + * @var SerializerInterface + */ + private $serializer; + /** * Construct * @@ -249,14 +256,19 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual parent::checkProductBuyState($product); $option = $product->getCustomOption('info_buyRequest'); if ($option instanceof \Magento\Quote\Model\Quote\Item\Option) { - $buyRequest = new \Magento\Framework\DataObject(unserialize($option->getValue())); + $buyRequest = new \Magento\Framework\DataObject( + $this->getSerializer()->unserialize($option->getValue()) + ); if (!$buyRequest->hasLinks()) { if (!$product->getLinksPurchasedSeparately()) { $allLinksIds = $this->_linksFactory->create()->addProductToFilter( $product->getEntityId() )->getAllIds(); $buyRequest->setLinks($allLinksIds); - $product->addCustomOption('info_buyRequest', serialize($buyRequest->getData())); + $product->addCustomOption( + 'info_buyRequest', + $this->getSerializer()->serialize($buyRequest->getData()) + ); } else { throw new \Magento\Framework\Exception\LocalizedException(__('Please specify product link(s).')); } @@ -265,6 +277,20 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual return $this; } + /** + * Get serializer instance + * + * @return SerializerInterface + * @deprecated + */ + private function getSerializer() + { + if (!$this->serializer) { + $this->serializer = ObjectManager::getInstance()->get(SerializerInterface::class); + } + return $this->serializer; + } + /** * Prepare additional options/information for order item which will be * created from this product diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php index 61d66d47bc2..6cc2e4dafdc 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php @@ -6,6 +6,8 @@ namespace Magento\Downloadable\Test\Unit\Model\Product; use Magento\Downloadable\Model\Product\TypeHandler\TypeHandlerInterface; +use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; /** * Class TypeTest @@ -30,12 +32,27 @@ class TypeTest extends \PHPUnit_Framework_TestCase */ private $product; + /** + * @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $serializerMock; + + /** + * @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager + */ + private $objectManager; + + /** + * @var \Magento\Downloadable\Model\ResourceModel\Link\CollectionFactory|\PHPUnit_Framework_MockObject_MockObject + */ + private $linksFactory; + /** * @SuppressWarnings(PHPMD.ExcessiveMethodLength) */ protected function setUp() { - $objectHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); + $this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $eventManager = $this->getMock(\Magento\Framework\Event\ManagerInterface::class, [], [], '', false); $fileStorageDb = $this->getMockBuilder( \Magento\MediaStorage\Helper\File\Storage\Database::class @@ -54,7 +71,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase false ); $linkResource = $this->getMock(\Magento\Downloadable\Model\ResourceModel\Link::class, [], [], '', false); - $linksFactory = $this->getMock( + $this->linksFactory = $this->getMock( \Magento\Downloadable\Model\ResourceModel\Link\CollectionFactory::class, [], [], @@ -94,6 +111,9 @@ class TypeTest extends \PHPUnit_Framework_TestCase 'setLinksExist', 'getDownloadableLinks', '__wakeup', + 'getCustomOption', + 'addCustomOption', + 'getEntityId' ], [], '', @@ -109,8 +129,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase $this->product->expects($this->any())->method('setTypeHasOptions')->with($this->equalTo(false)); $this->product->expects($this->any())->method('setLinksExist')->with($this->equalTo(false)); $this->product->expects($this->any())->method('canAffectOptions')->with($this->equalTo(true)); - $this->product->expects($this->any())->method('getLinksPurchasedSeparately')->will($this->returnValue(true)); - $this->product->expects($this->any())->method('getLinksPurchasedSeparately')->will($this->returnValue(true)); + $eavConfigMock = $this->getMock(\Magento\Eav\Model\Config::class, ['getEntityAttributeCodes'], [], '', false); $eavConfigMock->expects($this->any()) @@ -123,7 +142,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase ->setMethods(['save']) ->getMock(); - $this->target = $objectHelper->getObject( + $this->target = $this->objectManager->getObject( \Magento\Downloadable\Model\Product\Type::class, [ 'eventManager' => $eventManager, @@ -134,7 +153,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase 'productFactory' => $productFactoryMock, 'sampleResFactory' => $sampleResFactory, 'linkResource' => $linkResource, - 'linksFactory' => $linksFactory, + 'linksFactory' => $this->linksFactory, 'samplesFactory' => $samplesFactory, 'sampleFactory' => $sampleFactory, 'linkFactory' => $linkFactory, @@ -157,9 +176,115 @@ class TypeTest extends \PHPUnit_Framework_TestCase public function testHasLinks() { + $this->product->expects($this->any())->method('getLinksPurchasedSeparately')->will($this->returnValue(true)); $this->product->expects($this->exactly(2)) ->method('getDownloadableLinks') ->willReturn(['link1', 'link2']); $this->assertTrue($this->target->hasLinks($this->product)); } + + public function testCheckProductBuyState() + { + $optionMock = $this->getMock(\Magento\Quote\Model\Quote\Item\Option::class, [], ['getValue'], '', false); + + $optionMock->expects($this->any())->method('getValue')->will($this->returnValue('{}')); + + $this->product->expects($this->any()) + ->method('getCustomOption') + ->with('info_buyRequest') + ->will($this->returnValue($optionMock)); + + $this->product->expects($this->any()) + ->method('getLinksPurchasedSeparately') + ->will($this->returnValue(false)); + + $this->product->expects($this->any()) + ->method('getEntityId') + ->will($this->returnValue(123)); + + $this->initSerializerMock(); + + $linksCollectionMock = $this->getMock( + \Magento\Downloadable\Model\ResourceModel\Link\Collection::class, + [], + ['addProductToFilter', 'getAllIds'], + '', + false + ); + + $linksCollectionMock->expects($this->once()) + ->method('addProductToFilter') + ->with(123) + ->will($this->returnSelf()); + + $linksCollectionMock->expects($this->once()) + ->method('getAllIds') + ->will($this->returnValue([1, 2, 3])); + + $this->linksFactory->expects($this->any()) + ->method('create') + ->will($this->returnValue($linksCollectionMock)); + + $this->product->expects($this->once()) + ->method('addCustomOption') + ->with('info_buyRequest', '{"links":[1,2,3]}'); + + $this->target->checkProductBuyState($this->product); + } + + /** + * @expectedException \Magento\Framework\Exception\LocalizedException + * @expectedExceptionMessage Please specify product link(s). + */ + public function testCheckProductBuyStateException() + { + $optionMock = $this->getMock(\Magento\Quote\Model\Quote\Item\Option::class, [], ['getValue'], '', false); + + $optionMock->expects($this->any())->method('getValue')->will($this->returnValue('{}')); + + $this->product->expects($this->any()) + ->method('getCustomOption') + ->with('info_buyRequest') + ->will($this->returnValue($optionMock)); + + $this->product->expects($this->any()) + ->method('getLinksPurchasedSeparately') + ->will($this->returnValue(true)); + + $this->initSerializerMock(); + + $this->target->checkProductBuyState($this->product); + } + + /** + * Initialize serializer mock + */ + private function initSerializerMock() + { + $this->serializerMock = $this->getMock( + SerializerInterface::class, + [], + ['serialize', 'unserialize'], + '', + false + ); + + $this->serializerMock->expects($this->any()) + ->method('serialize') + ->willReturnCallback( + function ($value) { + return json_encode($value); + } + ); + + $this->serializerMock->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); + + $this->objectManager->setBackwardCompatibleProperty($this->target, 'serializer', $this->serializerMock); + } } -- GitLab From 6be316b9e96e76b40b1d821a66bff559015dcc5e Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Tue, 6 Dec 2016 16:00:04 +0200 Subject: [PATCH 030/175] MAGETWO-61673: Remove uses of serialize and unserialize in ConfigurableProduct --- .../Model/Product/Type/Configurable.php | 61 +-- .../Model/Product/Type/ConfigurableTest.php | 517 +++++++----------- 2 files changed, 220 insertions(+), 358 deletions(-) diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php index 0bd2f234182..7e426eee139 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php @@ -5,6 +5,7 @@ */ namespace Magento\ConfigurableProduct\Model\Product\Type; +use Magento\Framework\Serialize\SerializerInterface; use Magento\Catalog\Api\Data\ProductAttributeInterface; use Magento\Catalog\Api\Data\ProductInterface; use Magento\Catalog\Api\ProductRepositoryInterface; @@ -163,6 +164,11 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType */ private $customerSession; + /** + * @var SerializerInterface + */ + private $serializer; + /** * @codingStandardsIgnoreStart/End * @@ -183,6 +189,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType * @param \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable $catalogProductTypeConfigurable * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig * @param \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor + * @param SerializerInterface $serializer * * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ @@ -205,7 +212,8 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor, \Magento\Framework\Cache\FrontendInterface $cache = null, - \Magento\Customer\Model\Session $customerSession = null + \Magento\Customer\Model\Session $customerSession = null, + SerializerInterface $serializer = null ) { $this->typeConfigurableFactory = $typeConfigurableFactory; $this->_eavAttributeFactory = $eavAttributeFactory; @@ -217,6 +225,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType $this->extensionAttributesJoinProcessor = $extensionAttributesJoinProcessor; $this->cache = $cache; $this->customerSession = $customerSession; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); parent::__construct( $catalogProductOption, $eavConfig, @@ -414,47 +423,15 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType ['group' => 'CONFIGURABLE', 'method' => __METHOD__] ); if (!$product->hasData($this->_configurableAttributes)) { - $metadata = $this->getMetadataPool()->getMetadata(ProductInterface::class); - $productId = $product->getData($metadata->getLinkField()); - $cacheId = __CLASS__ . $productId . '_' . $product->getStoreId(); - $configurableAttributes = $this->getCache()->load($cacheId); - $configurableAttributes = $this->hasCacheData($configurableAttributes); - if ($configurableAttributes) { - $configurableAttributes->setProductFilter($product); - } else { - $configurableAttributes = $this->getConfigurableAttributeCollection($product); - $this->extensionAttributesJoinProcessor->process($configurableAttributes); - $configurableAttributes->orderByPosition()->load(); - $this->getCache()->save( - serialize($configurableAttributes), - $cacheId, - array_merge($product->getIdentities(), [self::TYPE_CODE . '_' . $productId]) - ); - } + $configurableAttributes = $this->getConfigurableAttributeCollection($product); + $this->extensionAttributesJoinProcessor->process($configurableAttributes); + $configurableAttributes->orderByPosition()->load(); $product->setData($this->_configurableAttributes, $configurableAttributes); } \Magento\Framework\Profiler::stop('CONFIGURABLE:' . __METHOD__); return $product->getData($this->_configurableAttributes); } - /** - * @param mixed $configurableAttributes - * @return bool - */ - protected function hasCacheData($configurableAttributes) - { - $configurableAttributes = $configurableAttributes ?: unserialize($configurableAttributes); - if (is_array($configurableAttributes) && count($configurableAttributes)) { - foreach ($configurableAttributes as $attribute) { - /** @var \Magento\ConfigurableProduct\Model\Product\Type\Configurable\Attribute $attribute */ - if ($attribute->getData('options')) { - return $configurableAttributes; - } - } - } - return false; - } - /** * Reset the cached configurable attributes of a product * @@ -463,13 +440,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType */ public function resetConfigurableAttributes($product) { - $metadata = $this->getMetadataPool()->getMetadata(ProductInterface::class); - $productId = $product->getData($metadata->getLinkField()); $product->unsetData($this->_configurableAttributes); - $cacheId = __CLASS__ . $productId . '_' . $product->getStoreId(); - $this->getCache()->remove($cacheId); - $this->getCache()->clean(\Zend_Cache::CLEANING_MODE_MATCHING_TAG, [self::TYPE_CODE . '_' . $productId]); - return $this; } @@ -566,7 +537,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType ) ); $collection = $this->getUsedProductCollection($product); - $data = unserialize($this->getCache()->load($key)); + $data = $this->serializer->unserialize($this->getCache()->load($key)); if (!empty($data)) { $usedProducts = []; foreach ($data as $item) { @@ -592,7 +563,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType $usedProducts = $collection->getItems(); $this->getCache()->save( - serialize(array_map( + $this->serializer->serialize(array_map( function ($item) { return $item->getData(); }, @@ -906,7 +877,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType 'value' => $value, 'option_id' => $attributeId, 'option_value' => $attributeValue - ]; + ]; } } } diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php index 4f7ae98cc11..cd36c03e7e9 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php @@ -15,7 +15,15 @@ use Magento\ConfigurableProduct\Model\Product\Type\Configurable; use Magento\Framework\EntityManager\EntityMetadata; use Magento\Framework\EntityManager\MetadataPool; use Magento\Customer\Model\Session; -use Magento\Framework\Cache\FrontendInterface; +use Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Attribute\CollectionFactory; +use Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Attribute\Collection; +use Magento\Catalog\Model\Product\Configuration\Item\Option\OptionInterface; +use Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface; +use Magento\ConfigurableProduct\Model\Product\Type\Configurable\AttributeFactory; +use Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\ConfigurableFactory; +use Magento\Eav\Model\Entity\Attribute\Frontend\AbstractFrontend; +use Magento\Eav\Model\Entity\Attribute\Source\AbstractSource; +use Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Product\Collection as ProductCollection; /** * Class \Magento\ConfigurableProduct\Test\Unit\Model\Product\Type\ConfigurableTest @@ -94,6 +102,9 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase /** @var \PHPUnit_Framework_MockObject_MockObject */ private $cache; + /** @var \PHPUnit_Framework_MockObject_MockObject */ + private $serializer; + /** * @var Config */ @@ -105,76 +116,67 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase protected function setUp() { $this->_objectHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $eventManager = $this->getMock(\Magento\Framework\Event\ManagerInterface::class, [], [], '', false); - $fileStorageDbMock = $this->getMock( - \Magento\MediaStorage\Helper\File\Storage\Database::class, - [], - [], - '', - false - ); + $eventManager = $this->getMockBuilder(\Magento\Framework\Event\ManagerInterface::class) + ->disableOriginalConstructor() + ->getMock(); + $fileStorageDbMock = $this->getMockBuilder(\Magento\MediaStorage\Helper\File\Storage\Database::class) + ->disableOriginalConstructor() + ->getMock(); $filesystem = $this->getMockBuilder(\Magento\Framework\Filesystem::class) ->disableOriginalConstructor() ->getMock(); - $coreRegistry = $this->getMock(\Magento\Framework\Registry::class, [], [], '', false); + $coreRegistry = $this->getMockBuilder(\Magento\Framework\Registry::class) + ->disableOriginalConstructor() + ->getMock(); $logger = $this->getMockBuilder(\Psr\Log\LoggerInterface::class) ->disableOriginalConstructor() - ->setMethods([]) - ->getMockForAbstractClass(); - $this->_typeConfigurableFactory = $this->getMock( - \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\ConfigurableFactory::class, - ['create', 'saveProducts'], - [], - '', - false - ); - $this->_configurableAttributeFactoryMock = $this->getMock( - \Magento\ConfigurableProduct\Model\Product\Type\Configurable\AttributeFactory::class, - ['create'], - [], - '', - false - ); - $this->_productCollectionFactory = $this->getMock( - \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Product\CollectionFactory::class, - ['create'], - [], - '', - false - ); - $this->_attributeCollectionFactory = $this->getMock( - \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Attribute\CollectionFactory::class, - ['create'], - [], - '', - false - ); - $this->productRepository = $this->getMock(\Magento\Catalog\Api\ProductRepositoryInterface::class); - $this->extensionAttributesJoinProcessorMock = $this->getMock( - \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface::class, - [], - [], - '', - false - ); + ->getMock(); + $this->_typeConfigurableFactory = $this->getMockBuilder(ConfigurableFactory::class) + ->disableOriginalConstructor() + ->setMethods(['create', 'saveProducts']) + ->getMock(); + $this->_configurableAttributeFactoryMock = $this->getMockBuilder(AttributeFactory::class) + ->disableOriginalConstructor() + ->setMethods(['create']) + ->getMock(); + $this->_productCollectionFactory = $this->getMockBuilder( + \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Product\CollectionFactory::class) + ->disableOriginalConstructor() + ->setMethods(['create']) + ->getMock(); + $this->_attributeCollectionFactory = $this->getMockBuilder(CollectionFactory::class) + ->disableOriginalConstructor() + ->setMethods(['create']) + ->getMock(); + $this->productRepository = $this->getMockBuilder(\Magento\Catalog\Api\ProductRepositoryInterface::class) + ->disableOriginalConstructor() + ->getMock(); + $this->extensionAttributesJoinProcessorMock = $this->getMockBuilder(JoinProcessorInterface::class) + ->disableOriginalConstructor() + ->getMock(); $this->entityMetadata = $this->getMockBuilder(EntityMetadata::class) ->disableOriginalConstructor() ->getMock(); $this->metadataPool = $this->getMockBuilder(MetadataPool::class) ->disableOriginalConstructor() ->getMock(); - $this->metadataPool->expects($this->any()) - ->method('getMetadata') - ->with(ProductInterface::class) - ->willReturn($this->entityMetadata); $this->cache = $this->getMockBuilder(\Magento\Framework\Cache\FrontendInterface::class) - ->getMockForAbstractClass(); + ->disableOriginalConstructor() + ->getMock(); $this->catalogConfig = $this->getMockBuilder(Config::class) ->disableOriginalConstructor() ->getMock(); - - $this->eavConfig = $this->getMockBuilder(\Magento\Eav\Model\Config::class)->disableOriginalConstructor() + $this->eavConfig = $this->getMockBuilder(\Magento\Eav\Model\Config::class) + ->disableOriginalConstructor() ->getMock(); + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->disableOriginalConstructor() + ->getMock(); + + $this->metadataPool->expects($this->any()) + ->method('getMetadata') + ->with(ProductInterface::class) + ->willReturn($this->entityMetadata); $this->_model = $this->_objectHelper->getObject( Configurable::class, @@ -194,6 +196,7 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase 'customerSession' => $this->getMockBuilder(Session::class)->disableOriginalConstructor()->getMock(), 'cache' => $this->cache, 'catalogConfig' => $this->catalogConfig, + 'serializer' => $this->serializer, ] ); $refClass = new \ReflectionClass(Configurable::class); @@ -223,19 +226,20 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase 'getData', 'hasData', 'getAssociatedProductIds', - '__wakeup', - '__sleep', ] )->disableOriginalConstructor() ->getMock(); - $product->expects($this->any())->method('dataHasChangedFor')->will($this->returnValue('false')); - $product->expects($this->any())->method('getConfigurableAttributesData') - ->will($this->returnValue($this->attributeData)); - $product->expects($this->once())->method('getIsDuplicate')->will($this->returnValue(true)); - $product->expects($this->any())->method('getStoreId')->will($this->returnValue(1)); - $product->expects($this->any())->method('getAssociatedProductIds')->will($this->returnValue([2])); - $product->expects($this->any())->method('hasData')->with('_cache_instance_used_product_attribute_ids') - ->will($this->returnValue(true)); + $product->expects($this->once())->method('dataHasChangedFor')->willReturn('false'); + $product->expects($this->once()) + ->method('getConfigurableAttributesData') + ->willReturn($this->attributeData); + $product->expects($this->once())->method('getIsDuplicate')->willReturn(true); + $product->expects($this->atLeastOnce())->method('getStoreId')->willReturn(1); + $product->expects($this->once())->method('getAssociatedProductIds')->willReturn([2]); + $product->expects($this->once()) + ->method('hasData') + ->with('_cache_instance_used_product_attribute_ids') + ->willReturn(true); $extensionAttributes = $this->getMockBuilder(ProductExtensionInterface::class) ->setMethods([ 'getConfigurableProductOptions', @@ -250,7 +254,7 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ['_cache_instance_used_product_attribute_ids', null, 1], ['link', null, 1], ]; - $product->expects($this->any()) + $product->expects($this->atLeastOnce()) ->method('getData') ->willReturnMap($dataMap); $attribute = $this->getMockBuilder( @@ -260,24 +264,26 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ->getMock(); $expectedAttributeData = $this->attributeData[1]; unset($expectedAttributeData['id']); - $attribute->expects($this->once())->method('addData')->with($expectedAttributeData)->will($this->returnSelf()); - $attribute->expects($this->once())->method('setStoreId')->with(1)->will($this->returnSelf()); - $attribute->expects($this->once())->method('setProductId')->with(1)->will($this->returnSelf()); - $attribute->expects($this->once())->method('save')->will($this->returnSelf()); - - $this->_configurableAttributeFactoryMock->expects($this->any())->method('create') - ->will($this->returnValue($attribute)); - - $attributeCollection = $this->getMockBuilder( - \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Attribute\Collection::class - )->setMethods(['setProductFilter', 'addFieldToFilter', 'walk'])->disableOriginalConstructor() - ->getMock(); - $this->_attributeCollectionFactory->expects($this->any())->method('create') - ->will($this->returnValue($attributeCollection)); - - $this->_typeConfigurableFactory->expects($this->once())->method('create')->will($this->returnSelf()); - $this->_typeConfigurableFactory->expects($this->once())->method('saveProducts')->withAnyParameters() - ->will($this->returnSelf()); + $attribute->expects($this->once())->method('addData')->with($expectedAttributeData)->willReturnSelf(); + $attribute->expects($this->once())->method('setStoreId')->with(1)->willReturnSelf(); + $attribute->expects($this->once())->method('setProductId')->with(1)->willReturnSelf(); + $attribute->expects($this->once())->method('save')->willReturnSelf(); + + $this->_configurableAttributeFactoryMock->expects($this->once()) + ->method('create') + ->willReturn($attribute); + $attributeCollection = $this->getMockBuilder(Collection::class) + ->disableOriginalConstructor() + ->getMock(); + $this->_attributeCollectionFactory->expects($this->once()) + ->method('create') + ->willReturn($attributeCollection); + $this->_typeConfigurableFactory->expects($this->once()) + ->method('create') + ->willReturnSelf(); + $this->_typeConfigurableFactory->expects($this->once()) + ->method('saveProducts') + ->willReturnSelf(); $this->_model->save($product); } @@ -293,174 +299,117 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase public function testCanUseAttribute() { - $attribute = $this->getMock( - \Magento\Catalog\Model\ResourceModel\Eav\Attribute::class, - [ - 'getIsGlobal', - 'getIsVisible', - 'usesSource', - 'getIsUserDefined', - '__wakeup', - '__sleep' - ], - [], - '', - false - ); + $attribute = $this->getMockBuilder(\Magento\Catalog\Model\ResourceModel\Eav\Attribute::class) + ->disableOriginalConstructor() + ->getMock(); $attribute->expects($this->once()) ->method('getIsGlobal') - ->will($this->returnValue(1)); + ->willReturn(1); $attribute->expects($this->once()) ->method('getIsVisible') - ->will($this->returnValue(1)); + ->willReturn(1); $attribute->expects($this->once()) ->method('usesSource') - ->will($this->returnValue(1)); + ->willReturn(1); $attribute->expects($this->once()) ->method('getIsUserDefined') - ->will($this->returnValue(1)); + ->willReturn(1); $this->assertTrue($this->_model->canUseAttribute($attribute)); } public function testGetUsedProducts() { - $attributeCollection = $this->getMockBuilder( - \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Attribute\Collection::class - )->setMethods(['setProductFilter', 'addFieldToFilter', 'walk'])->disableOriginalConstructor() + $productCollectionItemData = ['array']; + + $productCollectionItem = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->disableOriginalConstructor() + ->getMock(); + $attributeCollection = $this->getMockBuilder(Collection::class) + ->disableOriginalConstructor() ->getMock(); - $attributeCollection->expects($this->any())->method('setProductFilter')->will($this->returnSelf()); - $this->_attributeCollectionFactory->expects($this->any())->method('create') - ->will($this->returnValue($attributeCollection)); $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods( - [ - 'dataHasChangedFor', - 'getConfigurableAttributesData', - 'getStoreId', - 'getId', - 'getData', - 'hasData', - 'getAssociatedProductIds', - 'getIdentities', - '__wakeup', - '__sleep', - ] - )->disableOriginalConstructor() + ->disableOriginalConstructor() + ->getMock(); + $productCollection = $this->getMockBuilder(ProductCollection::class) + ->disableOriginalConstructor() ->getMock(); - $product->expects($this->any())->method('getConfigurableAttributesData') - ->will($this->returnValue($this->attributeData)); - $product->expects($this->any())->method('getStoreId')->will($this->returnValue(5)); - $product->expects($this->any())->method('getId')->will($this->returnValue(1)); - $product->expects($this->any())->method('getIdentities')->willReturn(['123']); - $product->expects($this->any())->method('getAssociatedProductIds')->will($this->returnValue([2])); - $product->expects($this->any())->method('hasData') - ->will( - $this->returnValueMap( - [ - ['_cache_instance_used_product_attribute_ids', 1], - ['_cache_instance_products', 0], - ['_cache_instance_configurable_attributes', 1], - ['_cache_instance_used_product_attributes', 1], - ] - ) + $productCollectionItem->expects($this->once())->method('getData')->willReturn($productCollectionItemData); + $attributeCollection->expects($this->any())->method('setProductFilter')->willReturnSelf(); + $product->expects($this->atLeastOnce())->method('getStoreId')->willReturn(5); + $product->expects($this->once())->method('getIdentities')->willReturn(['123']); + + $product->expects($this->exactly(2)) + ->method('hasData') + ->willReturnMap( + [ + ['_cache_instance_products', null], + ['_cache_instance_used_product_attributes', 1], + ] ); - $product->expects($this->any())->method('getData') - ->will($this->returnValueMap( + $product->expects($this->any()) + ->method('getData') + ->willReturnMap( [ - ['_cache_instance_used_product_attributes', null, []], + ['_cache_instance_used_product_attributes', null, []] ] - )); - - - $productCollection = $this->getMockBuilder( - \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Product\Collection::class - )->setMethods( - [ - 'setFlag', - 'setProductFilter', - 'addStoreFilter', - 'addAttributeToSelect', - 'addFilterByRequiredOptions', - 'setStoreId', - 'addTierPriceData', - 'getIterator', - 'load', - ] - )->disableOriginalConstructor() - ->getMock(); - $productCollection->expects($this->any())->method('addAttributeToSelect')->will($this->returnSelf()); - $productCollection->expects($this->any())->method('setProductFilter')->will($this->returnSelf()); - $productCollection->expects($this->any())->method('setFlag')->will($this->returnSelf()); - $productCollection->expects($this->any())->method('addTierPriceData')->will($this->returnSelf()); - $productCollection->expects($this->any())->method('addFilterByRequiredOptions')->will($this->returnSelf()); - $productCollection->expects($this->any())->method('setStoreId')->with(5)->will($this->returnValue([])); - $productCollection->expects($this->any())->method('getIterator')->willReturn( - new \ArrayIterator([]) - ); - + ); - $this->_productCollectionFactory->expects($this->any())->method('create') - ->will($this->returnValue($productCollection)); + $productCollection->expects($this->atLeastOnce())->method('addAttributeToSelect')->willReturnSelf(); + $productCollection->expects($this->once())->method('setProductFilter')->willReturnSelf(); + $productCollection->expects($this->atLeastOnce())->method('setFlag')->willReturnSelf(); + $productCollection->expects($this->once())->method('addTierPriceData')->willReturnSelf(); + $productCollection->expects($this->once())->method('addFilterByRequiredOptions')->willReturnSelf(); + $productCollection->expects($this->once())->method('setStoreId')->with(5)->willReturn([]); + $productCollection->expects($this->once())->method('getItems')->willReturn([$productCollectionItem]); + + $this->serializer->expects($this->once())->method('unserialize')->willReturn([]); + $this->serializer->expects($this->once()) + ->method('serialize') + ->with([$productCollectionItemData]) + ->willReturn('result'); + + $this->_productCollectionFactory->expects($this->any())->method('create')->willReturn($productCollection); $this->_model->getUsedProducts($product); } /** * @param int $productStore - * @param int $attributeStore * * @dataProvider getConfigurableAttributesAsArrayDataProvider */ - public function testGetConfigurableAttributesAsArray($productStore, $attributeStore) + public function testGetConfigurableAttributesAsArray($productStore) { - $attributeSource = $this->getMockForAbstractClass( - \Magento\Eav\Model\Entity\Attribute\Source\AbstractSource::class, - [], - '', - false, - true, - true, - ['getAllOptions'] - ); - $attributeSource->expects($this->any())->method('getAllOptions')->will($this->returnValue([])); - - $attributeFrontend = $this->getMockForAbstractClass( - \Magento\Eav\Model\Entity\Attribute\Frontend\AbstractFrontend::class, - [], - '', - false, - true, - true, - ['getLabel'] - ); - $attributeFrontend->expects($this->any())->method('getLabel')->will($this->returnValue('Label')); - - $eavAttribute = $this->getMock( - \Magento\Catalog\Model\ResourceModel\Eav\Attribute::class, - ['getFrontend', 'getSource', 'getStoreLabel', '__wakeup', 'setStoreId', '__sleep'], - [], - '', - false - ); - $eavAttribute->expects($this->any())->method('getFrontend')->will($this->returnValue($attributeFrontend)); - $eavAttribute->expects($this->any())->method('getSource')->will($this->returnValue($attributeSource)); - $eavAttribute->expects($this->any())->method('getStoreLabel')->will($this->returnValue('Store Label')); - $eavAttribute->expects($this->any())->method('setStoreId')->with($attributeStore); + $attributeSource = $this->getMockBuilder(AbstractSource::class) + ->disableOriginalConstructor() + ->getMock(); + $attributeFrontend = $this->getMockBuilder(AbstractFrontend::class) + ->disableOriginalConstructor() + ->getMock(); + $eavAttribute = $this->getMockBuilder(\Magento\Catalog\Model\ResourceModel\Eav\Attribute::class) + ->disableOriginalConstructor() + ->getMock(); + + $attributeSource->expects($this->once())->method('getAllOptions')->willReturn([]); + $attributeFrontend->expects($this->once())->method('getLabel')->willReturn('Label'); + $eavAttribute->expects($this->once())->method('getFrontend')->willReturn($attributeFrontend); + $eavAttribute->expects($this->once())->method('getSource')->willReturn($attributeSource); + $eavAttribute->expects($this->atLeastOnce())->method('getStoreLabel')->willReturn('Store Label'); $attribute = $this->getMockBuilder( \Magento\ConfigurableProduct\Model\Product\Type\Configurable\Attribute::class) ->disableOriginalConstructor() ->setMethods(['getProductAttribute', '__wakeup', '__sleep']) ->getMock(); - $attribute->expects($this->any())->method('getProductAttribute')->will($this->returnValue($eavAttribute)); + $attribute->expects($this->any())->method('getProductAttribute')->willReturn($eavAttribute); $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) ->setMethods(['getStoreId', 'getData', 'hasData', '__wakeup', '__sleep']) ->disableOriginalConstructor() ->getMock(); - $product->expects($this->any())->method('getStoreId')->will($this->returnValue($productStore)); - $product->expects($this->any())->method('hasData') + $product->expects($this->atLeastOnce())->method('getStoreId')->willReturn($productStore); + $product->expects($this->atLeastOnce())->method('hasData') ->will( $this->returnValueMap( [ @@ -487,69 +436,56 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase public function getConfigurableAttributesAsArrayDataProvider() { return [ - [5, 5], - [null, 0], + [5], + [null], ]; } public function testGetConfigurableAttributes() { - $expectedData = [1]; $configurableAttributes = '_cache_instance_configurable_attributes'; /** @var \Magento\Catalog\Model\Product|\PHPUnit_Framework_MockObject_MockObject $product */ $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['getData', 'hasData', 'setData', 'getIdentities', 'getId', 'getStoreId']) + ->setMethods(['getData', 'hasData', 'setData']) ->disableOriginalConstructor() ->getMock(); - $product->expects($this->once())->method('hasData')->with($configurableAttributes)->willReturn(false); - $product->expects($this->once())->method('getStoreId')->willReturn(0); - $product->expects($this->any())->method('getId')->willReturn(0); - $product->expects($this->any())->method('getIdentities')->willReturn(['123']); - $product->expects($this->once())->method('setData')->willReturnSelf(); - $product->expects($this->exactly(2)) - ->method('getData') - ->willReturnMap( - [ - [$configurableAttributes, null, $expectedData], - ['link', null, 1], - ] - ); - $product->expects($this->once())->method('getIdentities')->willReturn([1,2,3]); - $this->entityMetadata->expects($this->once()) - ->method('getLinkField') - ->willReturn('link'); + $product->expects($this->once())->method('hasData')->with($configurableAttributes)->willReturn(false); - $attributeCollection = $this->getMockBuilder( - \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Attribute\Collection::class - ) + $attributeCollection = $this->getMockBuilder(Collection::class) ->setMethods(['setProductFilter', 'orderByPosition', 'load']) ->disableOriginalConstructor() ->getMock(); - $attributeCollection->expects($this->any())->method('setProductFilter')->will($this->returnSelf()); - $attributeCollection->expects($this->any())->method('orderByPosition')->will($this->returnSelf()); - $this->_attributeCollectionFactory->expects($this->any())->method('create')->willReturn($attributeCollection); + $attributeCollection->expects($this->once())->method('setProductFilter')->willReturnSelf(); + $attributeCollection->expects($this->once())->method('orderByPosition')->willReturnSelf(); + $attributeCollection->expects($this->once())->method('load')->willReturnSelf(); - $this->extensionAttributesJoinProcessorMock->expects($this->once()) - ->method('process') - ->with( - $this->isInstanceOf(\Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Attribute\Collection::class - ) - ); + $this->_attributeCollectionFactory->expects($this->once())->method('create')->willReturn($attributeCollection); - $this->assertEquals($expectedData, $this->_model->getConfigurableAttributes($product)); + $product->expects($this->once()) + ->method('setData') + ->with($configurableAttributes, $attributeCollection) + ->willReturnSelf(); + + $product->expects($this->once()) + ->method('getData') + ->with($configurableAttributes) + ->willReturn($attributeCollection); + + $this->assertEquals($attributeCollection, $this->_model->getConfigurableAttributes($product)); } public function testResetConfigurableAttributes() { $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['unsetData', '__wakeup', '__sleep', 'getStoreId', 'getId']) + ->setMethods(['unsetData']) ->disableOriginalConstructor() ->getMock(); - $product->expects($this->any())->method('unsetData') + $product->expects($this->once()) + ->method('unsetData') ->with('_cache_instance_configurable_attributes') - ->will($this->returnSelf()); + ->willReturnSelf(); $this->assertEquals($this->_model, $this->_model->resetConfigurableAttributes($product)); } @@ -630,12 +566,9 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase public function testGetSelectedAttributesInfo() { $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getCustomOption', 'hasData', 'getData']) ->disableOriginalConstructor() ->getMock(); - $optionMock = $this->getMockBuilder( - \Magento\Catalog\Model\Product\Configuration\Item\Option\OptionInterface::class) - ->setMethods(['getValue']) + $optionMock = $this->getMockBuilder(OptionInterface::class) ->disableOriginalConstructor() ->getMock(); $usedAttributeMock = $this->getMockBuilder( @@ -645,7 +578,6 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); $attributeMock = $this->getMockBuilder(\Magento\Catalog\Model\ResourceModel\Eav\Attribute::class) - ->setMethods(['getStoreLabel', 'getSourceModel']) ->disableOriginalConstructor() ->getMock(); @@ -662,10 +594,10 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase $this->_model->getSelectedAttributesInfo($productMock), [ [ - 'label' => 'attr_store_label', - 'value' => '', - 'option_id' => 1, - 'option_value' => '' + 'label' => 'attr_store_label', + 'value' => '', + 'option_id' => 1, + 'option_value' => '' ] ] ); @@ -675,11 +607,9 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase { $this->markTestIncomplete('checkProductBuyState() method is not complete in parent class'); $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getCustomOption', 'getSkipCheckRequiredOption']) ->disableOriginalConstructor() ->getMock(); $optionMock = $this->getMockBuilder(\Magento\Quote\Model\Quote\Item\Option::class) - ->setMethods(['getValue']) ->disableOriginalConstructor() ->getMock(); @@ -703,11 +633,9 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase { $this->markTestIncomplete('checkProductBuyState() method is not complete in parent class'); $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getCustomOption', 'getSkipCheckRequiredOption']) ->disableOriginalConstructor() ->getMock(); $optionMock = $this->getMockBuilder(\Magento\Quote\Model\Quote\Item\Option::class) - ->setMethods(['getValue']) ->disableOriginalConstructor() ->getMock(); @@ -724,47 +652,29 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase public function testGetProductByAttributesReturnUsedProduct() { $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'hasData', 'getData', 'getResource', 'getAttributeSetId']) ->disableOriginalConstructor() ->getMock(); $firstItemMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getId']) ->disableOriginalConstructor() ->getMock(); $usedProductMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getData']) ->disableOriginalConstructor() ->getMock(); $eavAttributeMock = $this->getMockBuilder(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute::class) - ->setMethods(['__wakeup', 'getId', 'getAttributeCode']) ->disableOriginalConstructor() ->getMock(); - $productCollection = $this->getMockBuilder( - \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Product\Collection::class - ) - ->setMethods( - [ - 'setFlag', - 'setProductFilter', - 'addStoreFilter', - 'addAttributeToSelect', - 'addAttributeToFilter', - 'getFirstItem', - 'getIterator' - ] - ) + $productCollection = $this->getMockBuilder(ProductCollection::class) ->disableOriginalConstructor() ->getMock(); - $this->_productCollectionFactory->expects($this->any())->method('create') - ->will($this->returnValue($productCollection)); - $productCollection->expects($this->any())->method('setProductFilter')->will($this->returnSelf()); - $productCollection->expects($this->any())->method('setFlag')->will($this->returnSelf()); - $productCollection->expects($this->any())->method('addAttributeToSelect')->will($this->returnSelf()); - $productCollection->expects($this->any())->method('addAttributeToFilter')->will($this->returnSelf()); + $this->_productCollectionFactory->expects($this->once())->method('create')->willReturn($productCollection); + $productCollection->expects($this->once())->method('setProductFilter')->willReturnSelf(); + $productCollection->expects($this->once())->method('setFlag')->willReturnSelf(); + $productCollection->expects($this->once())->method('addAttributeToSelect')->willReturnSelf(); + $productCollection->expects($this->once())->method('addAttributeToFilter')->willReturnSelf(); $productCollection->expects($this->once())->method('getFirstItem')->willReturn($firstItemMock); - $productCollection->expects($this->any())->method('getIterator')->willReturn( - new \ArrayIterator([$usedProductMock]) + $productCollection->expects($this->once())->method('getIterator')->willReturn( + new \ArrayIterator([$usedProductMock]) ); $firstItemMock->expects($this->once())->method('getId')->willReturn(false); @@ -789,42 +699,24 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase public function testGetProductByAttributesReturnFirstItem() { $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'hasData', 'getData', 'getResource', 'getAttributeSetId']) ->disableOriginalConstructor() ->getMock(); $firstItemMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getId']) ->disableOriginalConstructor() ->getMock(); - $productCollection = $this->getMockBuilder( - \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Product\Collection::class - ) - ->setMethods( - [ - 'setFlag', - 'setProductFilter', - 'addStoreFilter', - 'addAttributeToSelect', - 'addAttributeToFilter', - 'getFirstItem', - ] - ) + $productCollection = $this->getMockBuilder(ProductCollection::class) ->disableOriginalConstructor() ->getMock(); - $this->_productCollectionFactory->expects($this->any())->method('create') - ->will($this->returnValue($productCollection)); - $productCollection->expects($this->any())->method('setProductFilter')->will($this->returnSelf()); - $productCollection->expects($this->any())->method('setFlag')->will($this->returnSelf()); - $productCollection->expects($this->any())->method('addAttributeToSelect')->will($this->returnSelf()); - $productCollection->expects($this->any())->method('addAttributeToFilter')->will($this->returnSelf()); + $this->_productCollectionFactory->expects($this->any())->method('create')->willReturn($productCollection); + $productCollection->expects($this->once())->method('setProductFilter')->willReturnSelf(); + $productCollection->expects($this->once())->method('setFlag')->willReturnSelf(); + $productCollection->expects($this->once())->method('addAttributeToSelect')->willReturnSelf(); + $productCollection->expects($this->once())->method('addAttributeToFilter')->willReturnSelf(); $productCollection->expects($this->once())->method('getFirstItem')->willReturn($firstItemMock); - $firstItemMock->expects(static::once()) - ->method('getId') - ->willReturn(3); + $firstItemMock->expects($this->once())->method('getId')->willReturn(3); $this->productRepository->expects($this->once())->method('getById')->with(3)->willReturn($firstItemMock); - $this->assertEquals( $firstItemMock, $this->_model->getProductByAttributes($this->attributeData, $productMock) @@ -834,11 +726,10 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase public function testSetImageFromChildProduct() { $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'hasData', 'getData', 'setImage']) + ->setMethods(['hasData', 'getData', 'setImage']) ->disableOriginalConstructor() ->getMock(); $childProductMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getData']) ->disableOriginalConstructor() ->getMock(); -- GitLab From 92b98ac544382f8ee8190bb6832127ba0e8aff71 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 09:56:32 -0600 Subject: [PATCH 031/175] MAGETWO-61872: Create FieldDataConverter Implementing FieldDataConverter --- .../DataConverter/DataConverterInterface.php | 6 +++--- .../{Setup => DB}/DataConverter/SerializedToJson.php | 2 +- .../Framework/{Setup => DB}/FieldDataConverter.php | 4 ++-- .../Framework/{Setup => DB}/FieldDataConverterFactory.php | 4 ++-- .../Test/Unit/DataConverter/SerializedToJsonTest.php | 2 +- .../Test/Unit/FieldDataConverterFactoryTest.php | 8 ++++---- .../{Setup => DB}/Test/Unit/FieldDataConverterTest.php | 6 +++--- 7 files changed, 16 insertions(+), 16 deletions(-) rename lib/internal/Magento/Framework/{Setup => DB}/DataConverter/DataConverterInterface.php (70%) rename lib/internal/Magento/Framework/{Setup => DB}/DataConverter/SerializedToJson.php (95%) rename lib/internal/Magento/Framework/{Setup => DB}/FieldDataConverter.php (94%) rename lib/internal/Magento/Framework/{Setup => DB}/FieldDataConverterFactory.php (92%) rename lib/internal/Magento/Framework/{Setup => DB}/Test/Unit/DataConverter/SerializedToJsonTest.php (96%) rename lib/internal/Magento/Framework/{Setup => DB}/Test/Unit/FieldDataConverterFactoryTest.php (91%) rename lib/internal/Magento/Framework/{Setup => DB}/Test/Unit/FieldDataConverterTest.php (95%) diff --git a/lib/internal/Magento/Framework/Setup/DataConverter/DataConverterInterface.php b/lib/internal/Magento/Framework/DB/DataConverter/DataConverterInterface.php similarity index 70% rename from lib/internal/Magento/Framework/Setup/DataConverter/DataConverterInterface.php rename to lib/internal/Magento/Framework/DB/DataConverter/DataConverterInterface.php index 0ddab69cb9c..a2ca45ea638 100644 --- a/lib/internal/Magento/Framework/Setup/DataConverter/DataConverterInterface.php +++ b/lib/internal/Magento/Framework/DB/DataConverter/DataConverterInterface.php @@ -3,7 +3,7 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ -namespace Magento\Framework\Setup\DataConverter; +namespace Magento\Framework\DB\DataConverter; /** * Convert from one format to another @@ -13,8 +13,8 @@ interface DataConverterInterface /** * Convert from one format to another * - * @param string $string + * @param string $value * @return string */ - public function convert($string); + public function convert($value); } diff --git a/lib/internal/Magento/Framework/Setup/DataConverter/SerializedToJson.php b/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php similarity index 95% rename from lib/internal/Magento/Framework/Setup/DataConverter/SerializedToJson.php rename to lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php index 08b076be944..05416a49ff8 100644 --- a/lib/internal/Magento/Framework/Setup/DataConverter/SerializedToJson.php +++ b/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php @@ -3,7 +3,7 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ -namespace Magento\Framework\Setup\DataConverter; +namespace Magento\Framework\DB\DataConverter; use Magento\Framework\Serialize\Serializer\Serialize; use Magento\Framework\Serialize\Serializer\Json; diff --git a/lib/internal/Magento/Framework/Setup/FieldDataConverter.php b/lib/internal/Magento/Framework/DB/FieldDataConverter.php similarity index 94% rename from lib/internal/Magento/Framework/Setup/FieldDataConverter.php rename to lib/internal/Magento/Framework/DB/FieldDataConverter.php index c14fefad735..b9841a3cc90 100644 --- a/lib/internal/Magento/Framework/Setup/FieldDataConverter.php +++ b/lib/internal/Magento/Framework/DB/FieldDataConverter.php @@ -3,11 +3,11 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ -namespace Magento\Framework\Setup; +namespace Magento\Framework\DB; use Magento\Framework\DB\Adapter\AdapterInterface; use Magento\Framework\DB\Query\Generator; -use Magento\Framework\Setup\DataConverter\DataConverterInterface; +use Magento\Framework\DB\DataConverter\DataConverterInterface; /** * Convert field data from one representation to another diff --git a/lib/internal/Magento/Framework/Setup/FieldDataConverterFactory.php b/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php similarity index 92% rename from lib/internal/Magento/Framework/Setup/FieldDataConverterFactory.php rename to lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php index 911ec637066..0c7c339e76e 100644 --- a/lib/internal/Magento/Framework/Setup/FieldDataConverterFactory.php +++ b/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php @@ -3,11 +3,11 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ -namespace Magento\Framework\Setup; +namespace Magento\Framework\DB; use Magento\Framework\ObjectManagerInterface; use Magento\Framework\DB\Adapter\AdapterInterface; -use Magento\Framework\Setup\DataConverter\DataConverterInterface; +use Magento\Framework\DB\DataConverter\DataConverterInterface; /** * Create instance of FieldDataConverter with concrete implementation of DataConverterInterface diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/DataConverter/SerializedToJsonTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/DataConverter/SerializedToJsonTest.php similarity index 96% rename from lib/internal/Magento/Framework/Setup/Test/Unit/DataConverter/SerializedToJsonTest.php rename to lib/internal/Magento/Framework/DB/Test/Unit/DataConverter/SerializedToJsonTest.php index e7119040e02..bd7a1632101 100644 --- a/lib/internal/Magento/Framework/Setup/Test/Unit/DataConverter/SerializedToJsonTest.php +++ b/lib/internal/Magento/Framework/DB/Test/Unit/DataConverter/SerializedToJsonTest.php @@ -7,7 +7,7 @@ namespace Magento\Framework\Setup\Test\Unit\DataConverter; use Magento\Framework\Serialize\Serializer\Serialize; use Magento\Framework\Serialize\Serializer\Json; -use Magento\Framework\Setup\DataConverter\SerializedToJson; +use Magento\Framework\DB\DataConverter\SerializedToJson; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; class SerializedToJsonTest extends \PHPUnit_Framework_TestCase diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterFactoryTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterFactoryTest.php similarity index 91% rename from lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterFactoryTest.php rename to lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterFactoryTest.php index e08e1ee7496..9518bddeff6 100644 --- a/lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterFactoryTest.php +++ b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterFactoryTest.php @@ -3,14 +3,14 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ -namespace Magento\Framework\Setup\Test\Unit; +namespace Magento\Framework\DB\Test\Unit; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; -use Magento\Framework\Setup\FieldDataConverterFactory; +use Magento\Framework\DB\FieldDataConverterFactory; use Magento\Framework\ObjectManagerInterface; use Magento\Framework\DB\Adapter\AdapterInterface; -use Magento\Framework\Setup\FieldDataConverter; -use Magento\Framework\Setup\DataConverter\DataConverterInterface; +use Magento\Framework\DB\FieldDataConverter; +use Magento\Framework\DB\DataConverter\DataConverterInterface; class FieldDataConverterFactoryTest extends \PHPUnit_Framework_TestCase { diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php similarity index 95% rename from lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterTest.php rename to lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php index 9c16d1ea012..b2fd4e987fb 100644 --- a/lib/internal/Magento/Framework/Setup/Test/Unit/FieldDataConverterTest.php +++ b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php @@ -3,13 +3,13 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ -namespace Magento\Framework\Setup\Test\Unit; +namespace Magento\Framework\DB\Test\Unit; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Framework\DB\Query\Generator; use Magento\Framework\DB\Adapter\AdapterInterface; -use Magento\Framework\Setup\FieldDataConverter; -use Magento\Framework\Setup\DataConverter\DataConverterInterface; +use Magento\Framework\DB\FieldDataConverter; +use Magento\Framework\DB\DataConverter\DataConverterInterface; use Magento\Framework\DB\Select; class FieldDataConverterTest extends \PHPUnit_Framework_TestCase -- GitLab From 357882074567a096305e44359c8c5d385160d43d Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 10:25:06 -0600 Subject: [PATCH 032/175] MAGETWO-61872: Create FieldDataConverter Removing dependency on connection from constructor --- .../Magento/Framework/DB/FieldDataConverter.php | 17 +++++------------ .../Framework/DB/FieldDataConverterFactory.php | 5 +---- .../Test/Unit/FieldDataConverterFactoryTest.php | 10 +--------- .../DB/Test/Unit/FieldDataConverterTest.php | 3 +-- 4 files changed, 8 insertions(+), 27 deletions(-) diff --git a/lib/internal/Magento/Framework/DB/FieldDataConverter.php b/lib/internal/Magento/Framework/DB/FieldDataConverter.php index b9841a3cc90..55bd6ae0d18 100644 --- a/lib/internal/Magento/Framework/DB/FieldDataConverter.php +++ b/lib/internal/Magento/Framework/DB/FieldDataConverter.php @@ -14,11 +14,6 @@ use Magento\Framework\DB\DataConverter\DataConverterInterface; */ class FieldDataConverter { - /** - * @var AdapterInterface - */ - private $connection; - /** * @var Generator */ @@ -32,16 +27,13 @@ class FieldDataConverter /** * Constructor * - * @param AdapterInterface $connection * @param Generator $queryGenerator * @param DataConverterInterface $dataConverter */ public function __construct( - AdapterInterface $connection, Generator $queryGenerator, DataConverterInterface $dataConverter ) { - $this->connection = $connection; $this->queryGenerator = $queryGenerator; $this->dataConverter = $dataConverter; } @@ -49,23 +41,24 @@ class FieldDataConverter /** * Convert field data from one representation to another * + * @param AdapterInterface $connection * @param string $table * @param string $identifier * @param string $field * @return void */ - public function convert($table, $identifier, $field) + public function convert(AdapterInterface $connection, $table, $identifier, $field) { - $select = $this->connection->select() + $select = $connection->select() ->from($table, [$identifier, $field]) ->where($field . ' IS NOT NULL'); $iterator = $this->queryGenerator->generate($identifier, $select); foreach ($iterator as $selectByRange) { - $rows = $this->connection->fetchAll($selectByRange); + $rows = $connection->fetchAll($selectByRange); foreach ($rows as $row) { $bind = [$field => $this->dataConverter->convert($row[$field])]; $where = [$identifier . ' = ?' => (int) $row[$identifier]]; - $this->connection->update($table, $bind, $where); + $connection->update($table, $bind, $where); } } } diff --git a/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php b/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php index 0c7c339e76e..cff9cd8d04a 100644 --- a/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php +++ b/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php @@ -6,7 +6,6 @@ namespace Magento\Framework\DB; use Magento\Framework\ObjectManagerInterface; -use Magento\Framework\DB\Adapter\AdapterInterface; use Magento\Framework\DB\DataConverter\DataConverterInterface; /** @@ -33,16 +32,14 @@ class FieldDataConverterFactory /** * Create instance of FieldDataConverter * - * @param AdapterInterface $connection * @param string $dataConverterClassName * @return FieldDataConverter */ - public function create(AdapterInterface $connection, $dataConverterClassName) + public function create($dataConverterClassName) { return $this->objectManager->create( FieldDataConverter::class, [ - 'connection' => $connection, 'dataConverter' => $this->objectManager->get($dataConverterClassName) ] ); diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterFactoryTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterFactoryTest.php index 9518bddeff6..266f9e9cece 100644 --- a/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterFactoryTest.php +++ b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterFactoryTest.php @@ -8,7 +8,6 @@ namespace Magento\Framework\DB\Test\Unit; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Framework\DB\FieldDataConverterFactory; use Magento\Framework\ObjectManagerInterface; -use Magento\Framework\DB\Adapter\AdapterInterface; use Magento\Framework\DB\FieldDataConverter; use Magento\Framework\DB\DataConverter\DataConverterInterface; @@ -19,11 +18,6 @@ class FieldDataConverterFactoryTest extends \PHPUnit_Framework_TestCase */ private $objectManagerMock; - /** - * @var AdapterInterface|\PHPUnit_Framework_MockObject_MockObject - */ - private $connectionMock; - /** * @var DataConverterInterface|\PHPUnit_Framework_MockObject_MockObject */ @@ -38,7 +32,6 @@ class FieldDataConverterFactoryTest extends \PHPUnit_Framework_TestCase { $objectManager = new ObjectManager($this); $this->objectManagerMock = $this->getMock(ObjectManagerInterface::class); - $this->connectionMock = $this->getMock(AdapterInterface::class); $this->dataConverterMock = $this->getMock(DataConverterInterface::class); $this->fieldDataConverterFactory = $objectManager->getObject( FieldDataConverterFactory::class, @@ -61,14 +54,13 @@ class FieldDataConverterFactoryTest extends \PHPUnit_Framework_TestCase ->with( FieldDataConverter::class, [ - 'connection' => $this->connectionMock, 'dataConverter' => $this->dataConverterMock ] ) ->willReturn($fieldDataConverterInstance); $this->assertEquals( $fieldDataConverterInstance, - $this->fieldDataConverterFactory->create($this->connectionMock, $dataConverterClassName) + $this->fieldDataConverterFactory->create($dataConverterClassName) ); } } diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php index b2fd4e987fb..f30dc4d1a38 100644 --- a/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php +++ b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php @@ -49,7 +49,6 @@ class FieldDataConverterTest extends \PHPUnit_Framework_TestCase $this->fieldDataConverter = $objectManager->getObject( FieldDataConverter::class, [ - 'connection' => $this->connectionMock, 'queryGenerator' => $this->queryGeneratorMock, 'dataConverter' => $this->dataConverterMock ] @@ -103,6 +102,6 @@ class FieldDataConverterTest extends \PHPUnit_Framework_TestCase [$field => $convertedValue], [$identifier . ' = ?' => $rows[0][$identifier]] ); - $this->fieldDataConverter->convert($table, $identifier, $field); + $this->fieldDataConverter->convert($this->connectionMock, $table, $identifier, $field); } } -- GitLab From 539c5f62b6e8db4e90980dcba69339f89c857848 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 10:36:17 -0600 Subject: [PATCH 033/175] MAGETWO-61537: Create upgrade script for sales_payment_transaction table additional_information field Refactoring after changes to FieldDataConverter --- app/code/Magento/Sales/Setup/UpgradeData.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index ea40a4d7624..081c713a785 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -24,7 +24,7 @@ class UpgradeData implements UpgradeDataInterface private $eavConfig; /** - * @var \Magento\Framework\Setup\FieldDataConverterFactory + * @var \Magento\Framework\DB\FieldDataConverterFactory */ private $fieldDataConverterFactory; @@ -33,12 +33,12 @@ class UpgradeData implements UpgradeDataInterface * * @param SalesSetupFactory $salesSetupFactory * @param \Magento\Eav\Model\Config $eavConfig - * @param \Magento\Framework\Setup\FieldDataConverterFactory $fieldDataConverterFactory + * @param \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory */ public function __construct( SalesSetupFactory $salesSetupFactory, \Magento\Eav\Model\Config $eavConfig, - \Magento\Framework\Setup\FieldDataConverterFactory $fieldDataConverterFactory + \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory ) { $this->salesSetupFactory = $salesSetupFactory; $this->eavConfig = $eavConfig; @@ -121,25 +121,28 @@ class UpgradeData implements UpgradeDataInterface private function upgradeToVersionTwoZeroFive(ModuleDataSetupInterface $setup) { $fieldDataConverter = $this->fieldDataConverterFactory->create( - $setup->getConnection(), - \Magento\Framework\Setup\DataConverter\SerializedToJson::class + \Magento\Framework\DB\DataConverter\SerializedToJson::class ); $fieldDataConverter->convert( + $setup->getConnection(), $setup->getTable('sales_order_item'), 'item_id', 'product_options' ); $fieldDataConverter->convert( + $setup->getConnection(), $setup->getTable('sales_shipment'), 'entity_id', 'packages' ); $fieldDataConverter->convert( + $setup->getConnection(), $setup->getTable('sales_order_payment'), 'entity_id', 'additional_information' ); $fieldDataConverter->convert( + $setup->getConnection(), $setup->getTable('sales_payment_transaction'), 'transaction_id', 'additional_information' -- GitLab From e946717cdcf987a3df37edbd9468dcc319f8b601 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 10:45:33 -0600 Subject: [PATCH 034/175] MAGETWO-61526: Create upgrade script for quote_payment table additional_information field Refactoring after changes to FieldDataConverter --- app/code/Magento/Quote/Setup/UpgradeData.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index e93ed2bb055..5442355e6c3 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -17,7 +17,7 @@ class UpgradeData implements UpgradeDataInterface private $eavConfig; /** - * @var \Magento\Framework\Setup\FieldDataConverterFactory + * @var \Magento\Framework\DB\FieldDataConverterFactory */ private $fieldDataConverterFactory; @@ -25,11 +25,11 @@ class UpgradeData implements UpgradeDataInterface * Constructor * * @param \Magento\Eav\Model\Config $eavConfig - * @param \Magento\Framework\Setup\FieldDataConverterFactory $fieldDataConverterFactory + * @param \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory */ public function __construct( \Magento\Eav\Model\Config $eavConfig, - \Magento\Framework\Setup\FieldDataConverterFactory $fieldDataConverterFactory + \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory ) { $this->eavConfig = $eavConfig; $this->fieldDataConverterFactory = $fieldDataConverterFactory; @@ -57,10 +57,10 @@ class UpgradeData implements UpgradeDataInterface private function upgradeToVersionTwoZeroFour(ModuleDataSetupInterface $setup) { $fieldDataConverter = $this->fieldDataConverterFactory->create( - $setup->getConnection(), - \Magento\Framework\Setup\DataConverter\SerializedToJson::class + \Magento\Framework\DB\DataConverter\SerializedToJson::class ); $fieldDataConverter->convert( + $setup->getConnection(), $setup->getTable('quote_payment'), 'payment_id', 'additional_information' -- GitLab From e94d2af5cf8c4c20e16d605435f5d6be34319b2b Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 10:55:05 -0600 Subject: [PATCH 035/175] MAGETWO-61872: Create FieldDataConverter Renaming variable --- .../Magento/Framework/DB/DataConverter/SerializedToJson.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php b/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php index 05416a49ff8..ae675784021 100644 --- a/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php +++ b/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php @@ -40,11 +40,11 @@ class SerializedToJson implements DataConverterInterface /** * Convert from serialized to JSON format * - * @param string $string + * @param string $value * @return string */ - public function convert($string) + public function convert($value) { - return $this->json->serialize($this->serialize->unserialize($string)); + return $this->json->serialize($this->serialize->unserialize($value)); } } -- GitLab From 1179992f35239cd1070ecf2cfc3776a7bf2e758f Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 11:36:01 -0600 Subject: [PATCH 036/175] MAGETWO-61872: Create FieldDataConverter Fixing namespace --- .../DB/Test/Unit/DataConverter/SerializedToJsonTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/DataConverter/SerializedToJsonTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/DataConverter/SerializedToJsonTest.php index bd7a1632101..c84929f90c2 100644 --- a/lib/internal/Magento/Framework/DB/Test/Unit/DataConverter/SerializedToJsonTest.php +++ b/lib/internal/Magento/Framework/DB/Test/Unit/DataConverter/SerializedToJsonTest.php @@ -3,7 +3,7 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ -namespace Magento\Framework\Setup\Test\Unit\DataConverter; +namespace Magento\Framework\DB\Test\Unit\DataConverter; use Magento\Framework\Serialize\Serializer\Serialize; use Magento\Framework\Serialize\Serializer\Json; -- GitLab From 4f148b660855f105794515b9eba05c347326b7a5 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 13:50:59 -0600 Subject: [PATCH 037/175] MAGETWO-61537: Create upgrade script for sales_payment_transaction table additional_information field Refactoring to use fully qualified names --- app/code/Magento/Sales/Setup/UpgradeData.php | 26 +++++++++----------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 081c713a785..9a42d07c588 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -5,16 +5,12 @@ */ namespace Magento\Sales\Setup; -use Magento\Framework\Setup\UpgradeDataInterface; -use Magento\Framework\Setup\ModuleContextInterface; -use Magento\Framework\Setup\ModuleDataSetupInterface; - -class UpgradeData implements UpgradeDataInterface +class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface { /** * Sales setup factory * - * @var SalesSetupFactory + * @var \Magento\Sales\Setup\SalesSetupFactory */ private $salesSetupFactory; @@ -31,12 +27,12 @@ class UpgradeData implements UpgradeDataInterface /** * Constructor * - * @param SalesSetupFactory $salesSetupFactory + * @param \Magento\Sales\Setup\SalesSetupFactory $salesSetupFactory * @param \Magento\Eav\Model\Config $eavConfig * @param \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory */ public function __construct( - SalesSetupFactory $salesSetupFactory, + \Magento\Sales\Setup\SalesSetupFactory $salesSetupFactory, \Magento\Eav\Model\Config $eavConfig, \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory ) { @@ -48,8 +44,10 @@ class UpgradeData implements UpgradeDataInterface /** * {@inheritdoc} */ - public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context) - { + public function upgrade( + \Magento\Framework\Setup\ModuleDataSetupInterface $setup, + \Magento\Framework\Setup\ModuleContextInterface $context + ) { $setup->startSetup(); $salesSetup = $this->salesSetupFactory->create(['setup' => $setup]); if (version_compare($context->getVersion(), '2.0.1', '<')) { @@ -65,10 +63,10 @@ class UpgradeData implements UpgradeDataInterface /** * Upgrade to version 2.0.1 * - * @param SalesSetup $setup + * @param \Magento\Sales\Setup\SalesSetup $setup * @return void */ - private function upgradeToTwoZeroOne(SalesSetup $setup) + private function upgradeToTwoZeroOne(\Magento\Sales\Setup\SalesSetup $setup) { $setup->updateEntityType( \Magento\Sales\Model\Order::ENTITY, @@ -115,10 +113,10 @@ class UpgradeData implements UpgradeDataInterface /** * Upgrade to version 2.0.5 * - * @param ModuleDataSetupInterface $setup + * @param \Magento\Framework\Setup\ModuleDataSetupInterface $setup * @return void */ - private function upgradeToVersionTwoZeroFive(ModuleDataSetupInterface $setup) + private function upgradeToVersionTwoZeroFive(\Magento\Framework\Setup\ModuleDataSetupInterface $setup) { $fieldDataConverter = $this->fieldDataConverterFactory->create( \Magento\Framework\DB\DataConverter\SerializedToJson::class -- GitLab From d40256427033f8e409696d8f9d1354b129a9a6ac Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 14:23:57 -0600 Subject: [PATCH 038/175] MAGETWO-61526: Create upgrade script for quote_payment table additional_information field Removing unnecessary code --- app/code/Magento/Quote/Setup/UpgradeData.php | 23 ++++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index 5442355e6c3..e6b8f9eba8b 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -8,28 +8,31 @@ namespace Magento\Quote\Setup; use Magento\Framework\Setup\UpgradeDataInterface; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; +use Magento\Eav\Model\Config; +use Magento\Framework\DB\FieldDataConverterFactory; +use Magento\Framework\DB\DataConverter\SerializedToJson; class UpgradeData implements UpgradeDataInterface { /** - * @var \Magento\Eav\Model\Config + * @var Config */ private $eavConfig; /** - * @var \Magento\Framework\DB\FieldDataConverterFactory + * @var FieldDataConverterFactory */ private $fieldDataConverterFactory; /** * Constructor * - * @param \Magento\Eav\Model\Config $eavConfig - * @param \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory + * @param Config $eavConfig + * @param FieldDataConverterFactory $fieldDataConverterFactory */ public function __construct( - \Magento\Eav\Model\Config $eavConfig, - \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory + Config $eavConfig, + FieldDataConverterFactory $fieldDataConverterFactory ) { $this->eavConfig = $eavConfig; $this->fieldDataConverterFactory = $fieldDataConverterFactory; @@ -40,25 +43,21 @@ class UpgradeData implements UpgradeDataInterface */ public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context) { - $setup->startSetup(); if (version_compare($context->getVersion(), '2.0.4', '<')) { $this->upgradeToVersionTwoZeroFour($setup); } $this->eavConfig->clear(); - $setup->endSetup(); } /** - * Upgrade to version 2.0.4 + * Convert data for additional_information field in quote_payment table from serialized to JSON format * * @param ModuleDataSetupInterface $setup * @return void */ private function upgradeToVersionTwoZeroFour(ModuleDataSetupInterface $setup) { - $fieldDataConverter = $this->fieldDataConverterFactory->create( - \Magento\Framework\DB\DataConverter\SerializedToJson::class - ); + $fieldDataConverter = $this->fieldDataConverterFactory->create(SerializedToJson::class); $fieldDataConverter->convert( $setup->getConnection(), $setup->getTable('quote_payment'), -- GitLab From 8f82cf5f24dddf4506f14c436da1b5a5abe4c0b5 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 14:44:41 -0600 Subject: [PATCH 039/175] MAGETWO-61526: Create upgrade script for quote_payment table additional_information field Changing method description --- app/code/Magento/Quote/Setup/UpgradeData.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index e6b8f9eba8b..1a4245686d2 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -50,7 +50,8 @@ class UpgradeData implements UpgradeDataInterface } /** - * Convert data for additional_information field in quote_payment table from serialized to JSON format + * Upgrade to version 2.0.4, convert data for additional_information field in quote_payment table from serialized + * to JSON format * * @param ModuleDataSetupInterface $setup * @return void -- GitLab From 003d19b2e0e77fc327a3af12d8dcb14833d7dc5a Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 14:49:57 -0600 Subject: [PATCH 040/175] MAGETWO-61872: Create FieldDataConverter Whitelisting SerializedToJson data converter --- .../Test/Legacy/_files/restricted_classes.php | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php index 683449d4e5e..c22e51647fc 100644 --- a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php +++ b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php @@ -45,11 +45,6 @@ return [ 'Magento\Framework\Serialize\Serializer\Serialize' => [ 'replacement' => 'Magento\Framework\Serialize\SerializerInterface', 'exclude' => [ - [ - 'type' => 'library', - 'name' => 'magento/framework', - 'path' => 'DB/Adapter/Pdo/Mysql.php' - ], [ 'type' => 'library', 'name' => 'magento/framework', @@ -69,6 +64,16 @@ return [ 'name' => 'magento/framework', 'path' => 'App/ObjectManager/ConfigLoader.php' ], + [ + 'type' => 'library', + 'name' => 'magento/framework', + 'path' => 'DB/Adapter/Pdo/Mysql.php' + ], + [ + 'type' => 'library', + 'name' => 'magento/framework', + 'path' => 'DB/DataConverter/SerializedToJson.php' + ], [ 'type' => 'library', 'name' => 'magento/framework', -- GitLab From 81284fd24263532c0b4188ff93d7558bb2e10264 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 15:19:03 -0600 Subject: [PATCH 041/175] MAGETWO-61526: Create upgrade script for quote_payment table additional_information field Removing unnecessary code --- app/code/Magento/Quote/Setup/UpgradeData.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index 1a4245686d2..19873352c33 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -14,11 +14,6 @@ use Magento\Framework\DB\DataConverter\SerializedToJson; class UpgradeData implements UpgradeDataInterface { - /** - * @var Config - */ - private $eavConfig; - /** * @var FieldDataConverterFactory */ @@ -27,14 +22,11 @@ class UpgradeData implements UpgradeDataInterface /** * Constructor * - * @param Config $eavConfig * @param FieldDataConverterFactory $fieldDataConverterFactory */ public function __construct( - Config $eavConfig, FieldDataConverterFactory $fieldDataConverterFactory ) { - $this->eavConfig = $eavConfig; $this->fieldDataConverterFactory = $fieldDataConverterFactory; } @@ -46,7 +38,6 @@ class UpgradeData implements UpgradeDataInterface if (version_compare($context->getVersion(), '2.0.4', '<')) { $this->upgradeToVersionTwoZeroFour($setup); } - $this->eavConfig->clear(); } /** -- GitLab From 8267343ef386de0502cfbd70a263db241e3fd94e Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 15:31:11 -0600 Subject: [PATCH 042/175] MAGETWO-61537: Create upgrade script for sales_payment_transaction table additional_information field Removing unnecessary code --- app/code/Magento/Sales/Setup/UpgradeData.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 9a42d07c588..0c33dff5b5d 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -48,7 +48,6 @@ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface \Magento\Framework\Setup\ModuleDataSetupInterface $setup, \Magento\Framework\Setup\ModuleContextInterface $context ) { - $setup->startSetup(); $salesSetup = $this->salesSetupFactory->create(['setup' => $setup]); if (version_compare($context->getVersion(), '2.0.1', '<')) { $this->upgradeToTwoZeroOne($salesSetup); @@ -57,7 +56,6 @@ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface $this->upgradeToVersionTwoZeroFive($setup); } $this->eavConfig->clear(); - $setup->endSetup(); } /** -- GitLab From 11b754e7865edb5a5646a2f384dfbf93c8f25875 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 15:38:13 -0600 Subject: [PATCH 043/175] MAGETWO-61537: Create upgrade script for sales_payment_transaction table additional_information field Changing method description --- app/code/Magento/Sales/Setup/UpgradeData.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 0c33dff5b5d..a4a38f5cdcb 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -109,7 +109,11 @@ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface } /** - * Upgrade to version 2.0.5 + * Upgrade to version 2.0.5, convert data for the following fields from serialized to JSON format: + * sales_order_item.product_options + * sales_shipment.packages + * sales_order_payment.additional_information + * sales_payment_transaction.additional_information * * @param \Magento\Framework\Setup\ModuleDataSetupInterface $setup * @return void -- GitLab From f44c92c4b4fde86266d67640913c7f56d7e5e364 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 7 Dec 2016 16:34:19 -0600 Subject: [PATCH 044/175] MAGETWO-61872: Create FieldDataConverter Whitelisting SerializedToJsonTest --- .../Magento/Test/Legacy/_files/restricted_classes.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php index c22e51647fc..196112e4379 100644 --- a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php +++ b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php @@ -74,6 +74,11 @@ return [ 'name' => 'magento/framework', 'path' => 'DB/DataConverter/SerializedToJson.php' ], + [ + 'type' => 'library', + 'name' => 'magento/framework', + 'path' => 'DB/Test/Unit/DataConverter/SerializedToJsonTest.php' + ], [ 'type' => 'library', 'name' => 'magento/framework', -- GitLab From 7365ffae2df4979b0f31650f0c54a83bcbaa051f Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 8 Dec 2016 10:01:25 +0200 Subject: [PATCH 045/175] MAGETWO-61654: Update serialization in Magento/Sales/Model/Order/Item.php and unit tests - CR changes --- app/code/Magento/Sales/Model/Order/Item.php | 21 +++++-------------- .../Sales/Test/Unit/Model/Order/ItemTest.php | 15 ++++++++----- 2 files changed, 15 insertions(+), 21 deletions(-) diff --git a/app/code/Magento/Sales/Model/Order/Item.php b/app/code/Magento/Sales/Model/Order/Item.php index 757c4f673d3..ae1d9042ea6 100644 --- a/app/code/Magento/Sales/Model/Order/Item.php +++ b/app/code/Magento/Sales/Model/Order/Item.php @@ -115,6 +115,7 @@ class Item extends AbstractModel implements OrderItemInterface * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data + * @param SerializerInterface $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -127,7 +128,8 @@ class Item extends AbstractModel implements OrderItemInterface \Magento\Catalog\Api\ProductRepositoryInterface $productRepository, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] + array $data = [], + SerializerInterface $serializer ) { parent::__construct( $context, @@ -141,6 +143,7 @@ class Item extends AbstractModel implements OrderItemInterface $this->_orderFactory = $orderFactory; $this->_storeManager = $storeManager; $this->productRepository = $productRepository; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); } /** @@ -465,20 +468,6 @@ class Item extends AbstractModel implements OrderItemInterface return $this; } - /** - * Get serializer instance - * - * @return SerializerInterface - * @deprecated - */ - private function getSerializer() - { - if (!$this->serializer) { - $this->serializer = ObjectManager::getInstance()->get(SerializerInterface::class); - } - return $this->serializer; - } - /** * Get product options array * @@ -487,7 +476,7 @@ class Item extends AbstractModel implements OrderItemInterface public function getProductOptions() { $data = $this->_getData('product_options'); - return is_string($data) ? $this->getSerializer()->unserialize($data) : $data; + return is_string($data) ? $this->serializer->unserialize($data) : $data; } /** diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php index 6006f5234b1..a9b965a6e83 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php @@ -32,14 +32,22 @@ class ItemTest extends \PHPUnit_Framework_TestCase */ protected $orderFactory; + /** + * @var SerializerInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $serializerMock; + protected function setUp() { $this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->orderFactory = $this->getMock(\Magento\Sales\Model\OrderFactory::class, ['create'], [], '', false); + $this->serializerMock = $this->getMock(SerializerInterface::class, [], ['unserialize'], '', false); + $arguments = [ 'orderFactory' => $this->orderFactory, + 'serializer' => $this->serializerMock ]; $this->model = $this->objectManager->getObject(\Magento\Sales\Model\Order\Item::class, $arguments); } @@ -119,8 +127,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase $qtyRefunded, $qtyShipped, $expectedStatus - ) - { + ) { $this->model->setQtyBackordered($qtyBackOrdered); $this->model->setQtyCanceled($qtyCanceled); $this->model->setQtyInvoiced($qtyInvoiced); @@ -186,11 +193,9 @@ class ItemTest extends \PHPUnit_Framework_TestCase */ public function testGetProductOptions($options, $expectedResult) { - $serializerMock = $this->getMock(SerializerInterface::class, [], ['unserialize'], '', false); if (is_string($options)) { - $serializerMock->expects($this->once())->method('unserialize')->will($this->returnValue($expectedResult)); + $this->serializerMock->expects($this->once())->method('unserialize')->will($this->returnValue($expectedResult)); } - $this->objectManager->setBackwardCompatibleProperty($this->model, 'serializer', $serializerMock); $this->model->setData('product_options', $options); $result = $this->model->getProductOptions(); $this->assertSame($result, $expectedResult); -- GitLab From a29777b9d4e81e6d2e46b2432cec03b2a6e12243 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 8 Dec 2016 10:06:19 +0200 Subject: [PATCH 046/175] MAGETWO-61654: Update serialization in Magento/Sales/Model/Order/Item.php and unit tests - CR changes --- app/code/Magento/Sales/Model/Order/Item.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Sales/Model/Order/Item.php b/app/code/Magento/Sales/Model/Order/Item.php index ae1d9042ea6..ec0d30d1214 100644 --- a/app/code/Magento/Sales/Model/Order/Item.php +++ b/app/code/Magento/Sales/Model/Order/Item.php @@ -129,7 +129,7 @@ class Item extends AbstractModel implements OrderItemInterface \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], - SerializerInterface $serializer + SerializerInterface $serializer = null ) { parent::__construct( $context, -- GitLab From 87b396dcf8da47862d623e40a55f85fb013d3847 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 8 Dec 2016 10:07:17 +0200 Subject: [PATCH 047/175] MAGETWO-61654: Update serialization in Magento/Sales/Model/Order/Item.php and unit tests - CR changes --- app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php index a9b965a6e83..78e0127b9a4 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php @@ -194,7 +194,9 @@ class ItemTest extends \PHPUnit_Framework_TestCase public function testGetProductOptions($options, $expectedResult) { if (is_string($options)) { - $this->serializerMock->expects($this->once())->method('unserialize')->will($this->returnValue($expectedResult)); + $this->serializerMock->expects($this->once()) + ->method('unserialize') + ->will($this->returnValue($expectedResult)); } $this->model->setData('product_options', $options); $result = $this->model->getProductOptions(); -- GitLab From bfd7e060e2f5c592b76cda3c3c946782dbe06bb9 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 8 Dec 2016 10:20:02 +0200 Subject: [PATCH 048/175] MAGETWO-61674: Fix seralization in Module Downloadable --- .../Downloadable/Model/Product/Type.php | 22 ++----- .../Test/Unit/Model/Product/TypeTest.php | 62 ++++++++----------- 2 files changed, 30 insertions(+), 54 deletions(-) diff --git a/app/code/Magento/Downloadable/Model/Product/Type.php b/app/code/Magento/Downloadable/Model/Product/Type.php index f5e63153f2a..8b37777f79c 100644 --- a/app/code/Magento/Downloadable/Model/Product/Type.php +++ b/app/code/Magento/Downloadable/Model/Product/Type.php @@ -111,7 +111,8 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual \Magento\Downloadable\Model\SampleFactory $sampleFactory, \Magento\Downloadable\Model\LinkFactory $linkFactory, \Magento\Downloadable\Model\Product\TypeHandler\TypeHandlerInterface $typeHandler, - JoinProcessorInterface $extensionAttributesJoinProcessor + JoinProcessorInterface $extensionAttributesJoinProcessor, + SerializerInterface $serializer = null ) { $this->_sampleResFactory = $sampleResFactory; $this->_linkResource = $linkResource; @@ -121,6 +122,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual $this->_linkFactory = $linkFactory; $this->typeHandler = $typeHandler; $this->extensionAttributesJoinProcessor = $extensionAttributesJoinProcessor; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); parent::__construct( $catalogProductOption, $eavConfig, @@ -257,7 +259,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual $option = $product->getCustomOption('info_buyRequest'); if ($option instanceof \Magento\Quote\Model\Quote\Item\Option) { $buyRequest = new \Magento\Framework\DataObject( - $this->getSerializer()->unserialize($option->getValue()) + $this->serializer->unserialize($option->getValue()) ); if (!$buyRequest->hasLinks()) { if (!$product->getLinksPurchasedSeparately()) { @@ -267,7 +269,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual $buyRequest->setLinks($allLinksIds); $product->addCustomOption( 'info_buyRequest', - $this->getSerializer()->serialize($buyRequest->getData()) + $this->serializer->serialize($buyRequest->getData()) ); } else { throw new \Magento\Framework\Exception\LocalizedException(__('Please specify product link(s).')); @@ -277,20 +279,6 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual return $this; } - /** - * Get serializer instance - * - * @return SerializerInterface - * @deprecated - */ - private function getSerializer() - { - if (!$this->serializer) { - $this->serializer = ObjectManager::getInstance()->get(SerializerInterface::class); - } - return $this->serializer; - } - /** * Prepare additional options/information for order item which will be * created from this product diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php index 6cc2e4dafdc..a8c4cda54d2 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php @@ -98,6 +98,30 @@ class TypeTest extends \PHPUnit_Framework_TestCase ); $resourceProductMock->expects($this->any())->method('getEntityType')->will($this->returnValue($entityTypeMock)); + $this->serializerMock = $this->getMock( + SerializerInterface::class, + [], + ['serialize', 'unserialize'], + '', + false + ); + + $this->serializerMock->expects($this->any()) + ->method('serialize') + ->willReturnCallback( + function ($value) { + return json_encode($value); + } + ); + + $this->serializerMock->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); + $this->product = $this->getMock( \Magento\Catalog\Model\Product::class, [ @@ -159,7 +183,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase 'linkFactory' => $linkFactory, 'eavConfig' => $eavConfigMock, 'typeHandler' => $this->typeHandler, - + 'serializer' => $this->serializerMock ] ); } @@ -202,8 +226,6 @@ class TypeTest extends \PHPUnit_Framework_TestCase ->method('getEntityId') ->will($this->returnValue(123)); - $this->initSerializerMock(); - $linksCollectionMock = $this->getMock( \Magento\Downloadable\Model\ResourceModel\Link\Collection::class, [], @@ -251,40 +273,6 @@ class TypeTest extends \PHPUnit_Framework_TestCase ->method('getLinksPurchasedSeparately') ->will($this->returnValue(true)); - $this->initSerializerMock(); - $this->target->checkProductBuyState($this->product); } - - /** - * Initialize serializer mock - */ - private function initSerializerMock() - { - $this->serializerMock = $this->getMock( - SerializerInterface::class, - [], - ['serialize', 'unserialize'], - '', - false - ); - - $this->serializerMock->expects($this->any()) - ->method('serialize') - ->willReturnCallback( - function ($value) { - return json_encode($value); - } - ); - - $this->serializerMock->expects($this->any()) - ->method('unserialize') - ->willReturnCallback( - function ($value) { - return json_decode($value, true); - } - ); - - $this->objectManager->setBackwardCompatibleProperty($this->target, 'serializer', $this->serializerMock); - } } -- GitLab From 18b9a66df59f268a0b277655861be0ba494c565d Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 8 Dec 2016 10:25:15 +0200 Subject: [PATCH 049/175] MAGETWO-61674: Fix seralization in Module Downloadable - CR changes --- app/code/Magento/Downloadable/Model/Product/Type.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/code/Magento/Downloadable/Model/Product/Type.php b/app/code/Magento/Downloadable/Model/Product/Type.php index 8b37777f79c..c88e93f0a9f 100644 --- a/app/code/Magento/Downloadable/Model/Product/Type.php +++ b/app/code/Magento/Downloadable/Model/Product/Type.php @@ -92,6 +92,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual * @param \Magento\Downloadable\Model\LinkFactory $linkFactory * @param TypeHandler\TypeHandlerInterface $typeHandler * @param JoinProcessorInterface $extensionAttributesJoinProcessor + * @param SerializerInterface $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( -- GitLab From 16a8920339883f34712231343051cd7ef60f95ab Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Thu, 8 Dec 2016 13:55:44 +0200 Subject: [PATCH 050/175] MAGETWO-61647: Detailed investigation for info_buyrequest field and extension points for its modifications --- .../CustomOptions/CustomOptionProcessor.php | 25 +++- .../Model/Product/Option/Type/Date.php | 25 +++- .../Model/Product/Type/AbstractType.php | 28 ++++- .../CustomOptionProcessorTest.php | 15 ++- .../Model/Product/Type/Configurable.php | 4 +- .../Model/Product/Type/ConfigurableTest.php | 36 +++++- .../Downloadable/Model/Product/Type.php | 7 +- .../Model/Product/Type/Grouped.php | 4 +- app/code/Magento/Quote/Model/Quote/Item.php | 26 +++- .../Quote/Model/Quote/Item/Updater.php | 27 ++++- .../Unit/Model/Quote/Item/UpdaterTest.php | 27 ++++- .../Quote/Test/Unit/Model/Quote/ItemTest.php | 11 +- .../Magento/Sales/Model/AdminOrder/Create.php | 27 ++++- app/code/Magento/Sales/Model/Order/Item.php | 25 +++- app/code/Magento/Wishlist/Model/Item.php | 29 ++++- .../Model/Product/Option/Type/DateTest.php | 112 ++++++++++++++++++ .../Downloadable/Model/Product/TypeTest.php | 41 ++++++- .../Model/Product/Type/GroupedTest.php | 48 ++++++++ .../Sales/Model/AdminOrder/CreateTest.php | 27 +++++ .../Magento/Sales/Model/Order/ItemTest.php | 56 +++++++++ .../Magento/Wishlist/Model/ItemTest.php | 84 +++++++++++++ 21 files changed, 652 insertions(+), 32 deletions(-) create mode 100644 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php create mode 100644 dev/tests/integration/testsuite/Magento/Sales/Model/Order/ItemTest.php create mode 100644 dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php diff --git a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php index 5b55f9cb66c..cd4db2bb335 100644 --- a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php +++ b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php @@ -28,6 +28,13 @@ class CustomOptionProcessor implements CartItemProcessorInterface /** @var \Magento\Catalog\Model\Product\Option\UrlBuilder */ private $urlBuilder; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * @param DataObject\Factory $objectFactory * @param ProductOptionFactory $productOptionFactory @@ -99,13 +106,29 @@ class CustomOptionProcessor implements CartItemProcessorInterface protected function getOptions(CartItemInterface $cartItem) { $buyRequest = !empty($cartItem->getOptionByCode('info_buyRequest')) - ? unserialize($cartItem->getOptionByCode('info_buyRequest')->getValue()) + ? $this->getSerializer()->unserialize($cartItem->getOptionByCode('info_buyRequest')->getValue()) : null; return is_array($buyRequest) && isset($buyRequest['options']) ? $buyRequest['options'] : []; } + /** + * Get Serializer interface. + * + * @return \Magento\Framework\Serialize\SerializerInterface + * @deprecated + */ + private function getSerializer() + { + if (!$this->serializer) { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); + } + + return $this->serializer; + } + /** * Update options values * diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php index afa44c42d87..9b7ff1dff29 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php @@ -22,6 +22,13 @@ class Date extends \Magento\Catalog\Model\Product\Option\Type\DefaultType */ protected $_localeDate; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * @param \Magento\Checkout\Model\Session $checkoutSession * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig @@ -269,7 +276,7 @@ class Date extends \Magento\Catalog\Model\Product\Option\Type\DefaultType $confItem = $this->getConfigurationItem(); $infoBuyRequest = $confItem->getOptionByCode('info_buyRequest'); try { - $value = unserialize($infoBuyRequest->getValue()); + $value = $this->getSerializer()->unserialize($infoBuyRequest->getValue()); if (is_array($value) && isset($value['options']) && isset($value['options'][$this->getOption()->getId()]) ) { return $value['options'][$this->getOption()->getId()]; @@ -281,6 +288,22 @@ class Date extends \Magento\Catalog\Model\Product\Option\Type\DefaultType } } + /** + * Get Serializer interface. + * + * @return \Magento\Framework\Serialize\SerializerInterface + * @deprecated + */ + private function getSerializer() + { + if (!$this->serializer) { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); + } + + return $this->serializer; + } + /** * Use Calendar on frontend or not * diff --git a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php index 11b8d03fc7e..aaceedbe076 100644 --- a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php +++ b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php @@ -161,6 +161,13 @@ abstract class AbstractType */ protected $productRepository; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + protected $serializer; + /** * Construct * @@ -394,8 +401,7 @@ abstract class AbstractType $product->prepareCustomOptions(); $buyRequest->unsetData('_processing_params'); // One-time params only - $product->addCustomOption('info_buyRequest', serialize($buyRequest->getData())); - + $product->addCustomOption('info_buyRequest', $this->getSerializer()->serialize($buyRequest->getData())); if ($options) { $optionIds = array_keys($options); $product->addCustomOption('option_ids', implode(',', $optionIds)); @@ -413,6 +419,22 @@ abstract class AbstractType return [$product]; } + /** + * Get Serializer interface. + * + * @return \Magento\Framework\Serialize\SerializerInterface + * @deprecated + */ + protected function getSerializer() + { + if (!$this->serializer) { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); + } + + return $this->serializer; + } + /** * Process product configuration * @@ -645,7 +667,7 @@ abstract class AbstractType $optionArr = []; $info = $product->getCustomOption('info_buyRequest'); if ($info) { - $optionArr['info_buyRequest'] = unserialize($info->getValue()); + $optionArr['info_buyRequest'] = $this->getSerializer()->unserialize($info->getValue()); } $optionIds = $product->getCustomOption('option_ids'); diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php index e3bdffbf5ae..f302f569431 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php @@ -126,6 +126,9 @@ class CustomOptionProcessorTest extends \PHPUnit_Framework_TestCase $this->assertSame($this->buyRequest, $this->processor->convertToBuyRequest($this->cartItem)); } + /** + * @covers \Magento\Catalog\Model\CustomOptions\CustomOptionProcessor::getOptions() + */ public function testProcessCustomOptions() { $optionId = 23; @@ -136,9 +139,17 @@ class CustomOptionProcessorTest extends \PHPUnit_Framework_TestCase ->method('getOptionByCode') ->with('info_buyRequest') ->willReturn($quoteItemOption); - $quoteItemOption->expects($this->once()) + $quoteItemOption->expects($this->any()) ->method('getValue') - ->willReturn('a:1:{s:7:"options";a:1:{i:' . $optionId . ';a:2:{i:0;s:1:"5";i:1;s:1:"6";}}} '); + ->willReturn('{"options":{"' . $optionId . '":["5","6"]}}'); + $objectHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['unserialize']) + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('unserialize') + ->willReturn(json_decode($quoteItemOption->getValue(), true)); + $objectHelper->setBackwardCompatibleProperty($this->processor, 'serializer', $serializer); $this->customOptionFactory->expects($this->once()) ->method('create') ->willReturn($this->customOption); diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php index 0bd2f234182..79bfa1c3434 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php @@ -883,7 +883,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType ['group' => 'CONFIGURABLE', 'method' => __METHOD__] ); if ($attributesOption = $product->getCustomOption('attributes')) { - $data = unserialize($attributesOption->getValue()); + $data = $this->getSerializer()->unserialize($attributesOption->getValue()); $this->getUsedProductAttributeIds($product); $usedAttributes = $product->getData($this->_usedAttributes); @@ -1026,7 +1026,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType parent::checkProductBuyState($product); $option = $product->getCustomOption('info_buyRequest'); if ($option instanceof \Magento\Quote\Model\Quote\Item\Option) { - $buyRequest = new \Magento\Framework\DataObject(unserialize($option->getValue())); + $buyRequest = new \Magento\Framework\DataObject($this->getSerializer()->unserialize($option->getValue())); $attributes = $buyRequest->getSuperAttribute(); if (is_array($attributes)) { foreach ($attributes as $key => $val) { diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php index 4f7ae98cc11..9e27966ff8c 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php @@ -649,7 +649,14 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $optionMock->expects($this->once())->method('getValue')->willReturn(serialize($this->attributeData)); + $optionMock->expects($this->any())->method('getValue')->willReturn(json_encode($this->attributeData, true)); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['unserialize']) + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('unserialize') + ->willReturn(json_decode($optionMock->getValue(), true)); + $this->_objectHelper->setBackwardCompatibleProperty($this->_model, 'serializer', $serializer); $productMock->expects($this->once())->method('getCustomOption')->with('attributes')->willReturn($optionMock); $productMock->expects($this->once())->method('hasData')->willReturn(true); $productMock->expects($this->at(2))->method('getData')->willReturn(true); @@ -671,9 +678,11 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ); } + /** + * @covers \Magento\ConfigurableProduct\Model\Product\Type\Configurable::checkProductBuyState() + */ public function testCheckProductBuyState() { - $this->markTestIncomplete('checkProductBuyState() method is not complete in parent class'); $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) ->setMethods(['__wakeup', 'getCustomOption', 'getSkipCheckRequiredOption']) ->disableOriginalConstructor() @@ -688,20 +697,28 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ->method('getCustomOption') ->with('info_buyRequest') ->willReturn($optionMock); - $optionMock->expects($this->once()) + $optionMock->expects($this->any()) ->method('getValue') - ->willReturn(serialize(['super_attribute' => ['test_key' => 'test_value', 'empty_key' => '']])); + ->willReturn(json_encode(['super_attribute' => ['test_key' => 'test_value', 'empty_key' => '']], true)); + + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['unserialize']) + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('unserialize') + ->willReturn(json_decode($optionMock->getValue(), true)); + $this->_objectHelper->setBackwardCompatibleProperty($this->_model, 'serializer', $serializer); $this->assertEquals($this->_model, $this->_model->checkProductBuyState($productMock)); } /** + * @covers \Magento\ConfigurableProduct\Model\Product\Type\Configurable::checkProductBuyState() * @expectedException \Magento\Framework\Exception\LocalizedException * @expectedExceptionMessage You need to choose options for your item. */ public function testCheckProductBuyStateException() { - $this->markTestIncomplete('checkProductBuyState() method is not complete in parent class'); $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) ->setMethods(['__wakeup', 'getCustomOption', 'getSkipCheckRequiredOption']) ->disableOriginalConstructor() @@ -716,7 +733,14 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ->method('getCustomOption') ->with('info_buyRequest') ->willReturn($optionMock); - $optionMock->expects($this->once())->method('getValue')->willReturn(serialize([])); + $optionMock->expects($this->any())->method('getValue')->willReturn('{}'); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['unserialize']) + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('unserialize') + ->willReturn(json_decode($optionMock->getValue(), true)); + $this->_objectHelper->setBackwardCompatibleProperty($this->_model, 'serializer', $serializer); $this->_model->checkProductBuyState($productMock); } diff --git a/app/code/Magento/Downloadable/Model/Product/Type.php b/app/code/Magento/Downloadable/Model/Product/Type.php index 64c00d208b8..66ca9c82b00 100644 --- a/app/code/Magento/Downloadable/Model/Product/Type.php +++ b/app/code/Magento/Downloadable/Model/Product/Type.php @@ -249,14 +249,17 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual parent::checkProductBuyState($product); $option = $product->getCustomOption('info_buyRequest'); if ($option instanceof \Magento\Quote\Model\Quote\Item\Option) { - $buyRequest = new \Magento\Framework\DataObject(unserialize($option->getValue())); + $buyRequest = new \Magento\Framework\DataObject($this->getSerializer()->unserialize($option->getValue())); if (!$buyRequest->hasLinks()) { if (!$product->getLinksPurchasedSeparately()) { $allLinksIds = $this->_linksFactory->create()->addProductToFilter( $product->getEntityId() )->getAllIds(); $buyRequest->setLinks($allLinksIds); - $product->addCustomOption('info_buyRequest', serialize($buyRequest->getData())); + $product->addCustomOption( + 'info_buyRequest', + $this->getSerializer()->serialize($buyRequest->getData()) + ); } else { throw new \Magento\Framework\Exception\LocalizedException(__('Please specify product link(s).')); } diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php index 02ff894df7c..f1319775123 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php @@ -384,7 +384,7 @@ class Grouped extends \Magento\Catalog\Model\Product\Type\AbstractType $_result[0]->addCustomOption('product_type', self::TYPE_CODE, $product); $_result[0]->addCustomOption( 'info_buyRequest', - serialize( + $this->getSerializer()->serialize( [ 'super_product_config' => [ 'product_type' => self::TYPE_CODE, @@ -402,7 +402,7 @@ class Grouped extends \Magento\Catalog\Model\Product\Type\AbstractType if (!$isStrictProcessMode || count($associatedProductsInfo)) { $product->addCustomOption('product_type', self::TYPE_CODE, $product); - $product->addCustomOption('info_buyRequest', serialize($buyRequest->getData())); + $product->addCustomOption('info_buyRequest', $this->getSerializer()->serialize($buyRequest->getData())); $products[] = $product; } diff --git a/app/code/Magento/Quote/Model/Quote/Item.php b/app/code/Magento/Quote/Model/Quote/Item.php index ac3a1109d71..6e69ce84131 100644 --- a/app/code/Magento/Quote/Model/Quote/Item.php +++ b/app/code/Magento/Quote/Model/Quote/Item.php @@ -175,6 +175,13 @@ class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Mage */ protected $stockRegistry; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry @@ -808,7 +815,8 @@ class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Mage public function getBuyRequest() { $option = $this->getOptionByCode('info_buyRequest'); - $buyRequest = new \Magento\Framework\DataObject($option ? unserialize($option->getValue()) : []); + $data = $option ? $this->getSerializer()->unserialize($option->getValue()) : []; + $buyRequest = new \Magento\Framework\DataObject($data); // Overwrite standard buy request qty, because item qty could have changed since adding to quote $buyRequest->setOriginalQty($buyRequest->getQty())->setQty($this->getQty() * 1); @@ -816,6 +824,22 @@ class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Mage return $buyRequest; } + /** + * Get Serializer interface. + * + * @return \Magento\Framework\Serialize\SerializerInterface + * @deprecated + */ + private function getSerializer() + { + if (!$this->serializer) { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); + } + + return $this->serializer; + } + /** * Sets flag, whether this quote item has some error associated with it. * diff --git a/app/code/Magento/Quote/Model/Quote/Item/Updater.php b/app/code/Magento/Quote/Model/Quote/Item/Updater.php index 45f9d3d90e3..103dd8acfb9 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Updater.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Updater.php @@ -32,6 +32,13 @@ class Updater */ protected $objectFactory; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * @param ProductFactory $productFactory * @param FormatInterface $localeFormat @@ -104,7 +111,7 @@ class Updater if ($infoBuyRequest) { $infoBuyRequest->setCustomPrice($itemPrice); - $infoBuyRequest->setValue(serialize($infoBuyRequest->getData())); + $infoBuyRequest->setValue($this->getSerializer()->serialize($infoBuyRequest->getData())); $infoBuyRequest->setCode('info_buyRequest'); $infoBuyRequest->setProduct($item->getProduct()); @@ -128,7 +135,7 @@ class Updater if ($infoBuyRequest->hasData('custom_price')) { $infoBuyRequest->unsetData('custom_price'); - $infoBuyRequest->setValue(serialize($infoBuyRequest->getData())); + $infoBuyRequest->setValue($this->getSerializer()->serialize($infoBuyRequest->getData())); $infoBuyRequest->setCode('info_buyRequest'); $infoBuyRequest->setProduct($item->getProduct()); $item->addOption($infoBuyRequest); @@ -138,6 +145,22 @@ class Updater $item->unsetData('original_custom_price'); } + /** + * Get Serializer interface. + * + * @return \Magento\Framework\Serialize\SerializerInterface + * @deprecated + */ + private function getSerializer() + { + if (!$this->serializer) { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); + } + + return $this->serializer; + } + /** * Return formatted price * diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php index fc86df0819e..1d817ccfbe8 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php @@ -226,6 +226,9 @@ class UpdaterTest extends \PHPUnit_Framework_TestCase $this->object->update($this->itemMock, ['qty' => 3, 'use_discount' => true]); } + /** + * @covers \Magento\Quote\Model\Quote\Item\Updater::setCustomPrice() + */ public function testUpdateCustomPrice() { $customPrice = 9.99; @@ -250,9 +253,18 @@ class UpdaterTest extends \PHPUnit_Framework_TestCase ->method('getData') ->will($this->returnValue(['custom_price' => $customPrice])); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['serialize']) + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('serialize') + ->willReturn(json_encode($buyRequestMock->getData())); + $objectManagerHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); + $objectManagerHelper->setBackwardCompatibleProperty($this->object, 'serializer', $serializer); + $buyRequestMock->expects($this->any()) ->method('setValue') - ->with($this->equalTo(serialize(['custom_price' => $customPrice]))); + ->with($this->equalTo('{"custom_price":' . $customPrice . '}')); $buyRequestMock->expects($this->any()) ->method('setCode') ->with($this->equalTo('info_buyRequest')); @@ -293,6 +305,9 @@ class UpdaterTest extends \PHPUnit_Framework_TestCase $this->object->update($this->itemMock, ['qty' => $qty, 'custom_price' => $customPrice]); } + /** + * @covers \Magento\Quote\Model\Quote\Item\Updater::unsetCustomPrice() + */ public function testUpdateUnsetCustomPrice() { $qty = 3; @@ -313,6 +328,14 @@ class UpdaterTest extends \PHPUnit_Framework_TestCase ); $buyRequestMock->expects($this->never())->method('setCustomPrice'); $buyRequestMock->expects($this->once())->method('getData')->will($this->returnValue([])); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['serialize']) + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('serialize') + ->willReturn('{}'); + $objectManagerHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); + $objectManagerHelper->setBackwardCompatibleProperty($this->object, 'serializer', $serializer); $buyRequestMock->expects($this->once())->method('unsetData')->with($this->equalTo('custom_price')); $buyRequestMock->expects($this->once()) ->method('hasData') @@ -321,7 +344,7 @@ class UpdaterTest extends \PHPUnit_Framework_TestCase $buyRequestMock->expects($this->any()) ->method('setValue') - ->with($this->equalTo(serialize([]))); + ->with($this->equalTo('{}')); $buyRequestMock->expects($this->any()) ->method('setCode') ->with($this->equalTo('info_buyRequest')); diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php index 7e07fcddf4a..ec5ff92982f 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php @@ -1058,9 +1058,9 @@ class ItemTest extends \PHPUnit_Framework_TestCase $optionMock->expects($this->exactly(3)) ->method('getCode') ->will($this->returnValue($optionCode)); - $optionMock->expects($this->once()) + $optionMock->expects($this->any()) ->method('getValue') - ->will($this->returnValue(serialize(['qty' => $buyRequestQuantity]))); + ->will($this->returnValue('{"qty":23}')); $this->model->addOption($optionMock); @@ -1071,6 +1071,13 @@ class ItemTest extends \PHPUnit_Framework_TestCase ->will($this->returnValue($quantity)); $this->model->setQty($quantity); $this->assertEquals($quantity, $this->model->getQty()); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['unserialize']) + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('unserialize') + ->willReturn(json_decode($optionMock->getValue(), true)); + $this->objectManagerHelper->setBackwardCompatibleProperty($this->model, 'serializer', $serializer); $buyRequest = $this->model->getBuyRequest(); $this->assertEquals($buyRequestQuantity, $buyRequest->getOriginalQty()); $this->assertEquals($quantity, $buyRequest->getQty()); diff --git a/app/code/Magento/Sales/Model/AdminOrder/Create.php b/app/code/Magento/Sales/Model/AdminOrder/Create.php index 3715c02357a..767c35f3a07 100644 --- a/app/code/Magento/Sales/Model/AdminOrder/Create.php +++ b/app/code/Magento/Sales/Model/AdminOrder/Create.php @@ -224,6 +224,13 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ */ protected $quoteFactory; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param \Magento\Framework\Event\ManagerInterface $eventManager @@ -794,7 +801,9 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ $info = $item->getOptionByCode('info_buyRequest'); if ($info) { - $info = new \Magento\Framework\DataObject(unserialize($info->getValue())); + $info = new \Magento\Framework\DataObject( + $this->getSerializer()->unserialize($info->getValue()) + ); $info->setQty($qty); $info->setOptions($this->_prepareOptionsForRequest($item)); } else { @@ -872,6 +881,22 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ return $this; } + /** + * Get Serializer interface. + * + * @return \Magento\Framework\Serialize\SerializerInterface + * @deprecated + */ + private function getSerializer() + { + if (!$this->serializer) { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); + } + + return $this->serializer; + } + /** * Handle data sent from sidebar * diff --git a/app/code/Magento/Sales/Model/Order/Item.php b/app/code/Magento/Sales/Model/Order/Item.php index 10ba1e16621..2492ce1980a 100644 --- a/app/code/Magento/Sales/Model/Order/Item.php +++ b/app/code/Magento/Sales/Model/Order/Item.php @@ -95,6 +95,13 @@ class Item extends AbstractModel implements OrderItemInterface */ protected $_storeManager; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * Initialize dependencies. * @@ -466,7 +473,23 @@ class Item extends AbstractModel implements OrderItemInterface public function getProductOptions() { $data = $this->_getData('product_options'); - return is_string($data) ? unserialize($data) : $data; + return is_string($data) ? $this->getSerializer()->unserialize($data) : $data; + } + + /** + * Get Serializer interface. + * + * @return \Magento\Framework\Serialize\SerializerInterface + * @deprecated + */ + private function getSerializer() + { + if (!$this->serializer) { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); + } + + return $this->serializer; } /** diff --git a/app/code/Magento/Wishlist/Model/Item.php b/app/code/Magento/Wishlist/Model/Item.php index c68eb5572cf..f9cba6712eb 100644 --- a/app/code/Magento/Wishlist/Model/Item.php +++ b/app/code/Magento/Wishlist/Model/Item.php @@ -120,6 +120,13 @@ class Item extends AbstractModel implements ItemInterface */ protected $productRepository; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry @@ -472,7 +479,7 @@ class Item extends AbstractModel implements ItemInterface public function getBuyRequest() { $option = $this->getOptionByCode('info_buyRequest'); - $initialData = $option ? unserialize($option->getValue()) : null; + $initialData = $option ? $this->getSerializer()->unserialize($option->getValue()) : null; if ($initialData instanceof \Magento\Framework\DataObject) { $initialData = $initialData->getData(); @@ -500,7 +507,7 @@ class Item extends AbstractModel implements ItemInterface } $oldBuyRequest = $this->getBuyRequest()->getData(); - $sBuyRequest = serialize($buyRequest + $oldBuyRequest); + $sBuyRequest = $this->getSerializer()->serialize($buyRequest + $oldBuyRequest); $option = $this->getOptionByCode('info_buyRequest'); if ($option) { @@ -523,11 +530,27 @@ class Item extends AbstractModel implements ItemInterface { $buyRequest->setId($this->getId()); - $_buyRequest = serialize($buyRequest->getData()); + $_buyRequest = $this->getSerializer()->serialize($buyRequest->getData()); $this->setData('buy_request', $_buyRequest); return $this; } + /** + * Get Serializer interface. + * + * @return \Magento\Framework\Serialize\SerializerInterface + * @deprecated + */ + private function getSerializer() + { + if (!$this->serializer) { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); + } + + return $this->serializer; + } + /** * Check product representation in item * diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php new file mode 100644 index 00000000000..93af50480c8 --- /dev/null +++ b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php @@ -0,0 +1,112 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Model\Product; + +/** + * Test for \Magento\Catalog\Model\Product\Option\Type\Date + */ +class DateTest extends \PHPUnit_Framework_TestCase +{ + /** + * @var \Magento\Catalog\Model\Product\Option\Type\Date + */ + protected $model; + + /** + * @var \Magento\Framework\ObjectManagerInterface + */ + private $objectManager; + + /** + * {@inheritDoc} + */ + protected function setUp() + { + $this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager(); + $this->model = $this->objectManager->create( + \Magento\Catalog\Model\Product\Option\Type\Date::class + ); + } + + /** + * @covers \Magento\Catalog\Model\Product\Option\Type\Date::prepareOptionValueForRequest() + * @dataProvider prepareOptionValueForRequestDataProvider + * @param array $optionValue + * @param array $infoBuyRequest + * @param array $expectedOptionValueForRequest + * @param array $productOptionData + */ + public function testPrepareOptionValueForRequest( + array $optionValue, + array $infoBuyRequest, + array $productOptionData, + array $expectedOptionValueForRequest + ) { + /** @var \Magento\Quote\Model\Quote\Item\Option $option */ + $option = $this->objectManager->create( + \Magento\Quote\Model\Quote\Item\Option::class, + ['data' => $infoBuyRequest] + ); + /** @var \Magento\Quote\Model\Quote\Item $item */ + $item = $this->objectManager->create(\Magento\Quote\Model\Quote\Item::class); + $item->addOption($option); + /** @var \Magento\Catalog\Model\Product\Option|null $productOption */ + $productOption = $productOptionData + ? $this->objectManager->create( + \Magento\Catalog\Model\Product\Option::class, + ['data' => $productOptionData] + ) + : null; + $this->model->setData('quote_item', $item); + $this->model->setOption($productOption); + + $actualOptionValueForRequest = $this->model->prepareOptionValueForRequest($optionValue); + $this->assertSame($expectedOptionValueForRequest, $actualOptionValueForRequest); + } + + /** + * @return array + */ + public function prepareOptionValueForRequestDataProvider() + { + return [ + // Variation 1 + [ + // $optionValue + ['field1' => 'value1', 'field2' => 'value2'], + // $infoBuyRequest + ['code' => 'info_buyRequest', 'value' => '{"qty":23}'], + // $productOptionData + ['id' => '11', 'value' => '{"qty":12}'], + // $expectedOptionValueForRequest + ['date_internal' => ['field1' => 'value1', 'field2' => 'value2']] + ], + // Variation 2 + [ + // $optionValue + ['field1' => 'value1', 'field2' => 'value2'], + // $infoBuyRequest + ['code' => 'info_buyRequest', 'value' => '{"options":{"11":{"qty":23}}}'], + // $productOptionData + ['id' => '11', 'value' => '{"qty":12}'], + // $expectedOptionValueForRequest + ['qty' => 23] + ], + // Variation 3 + [ + // $optionValue + ['field1' => 'value1', 'field2' => 'value2'], + // $infoBuyRequest + ['code' => 'info_buyRequest', 'value' => '{"options":{"11":{"qty":23}}}'], + // $productOptionData + [], + // $expectedOptionValueForRequest + ['date_internal' => ['field1' => 'value1', 'field2' => 'value2']] + ], + ]; + } +} diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/Model/Product/TypeTest.php b/dev/tests/integration/testsuite/Magento/Downloadable/Model/Product/TypeTest.php index c9c9109ac95..c3b6d668fda 100644 --- a/dev/tests/integration/testsuite/Magento/Downloadable/Model/Product/TypeTest.php +++ b/dev/tests/integration/testsuite/Magento/Downloadable/Model/Product/TypeTest.php @@ -19,9 +19,15 @@ class TypeTest extends \PHPUnit_Framework_TestCase */ protected $_model; + /** + * @var \Magento\Framework\ObjectManagerInterface + */ + private $objectManager; + protected function setUp() { - $this->_model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( + $this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager(); + $this->_model = $this->objectManager->create( \Magento\Downloadable\Model\Product\Type::class ); } @@ -216,4 +222,37 @@ class TypeTest extends \PHPUnit_Framework_TestCase $this->assertEquals($value, $sample[$key]); } } + + /** + * @magentoAppIsolation enabled + * @magentoDbIsolation enabled + * @magentoDataFixture Magento/Downloadable/_files/product_downloadable.php + * @covers \Magento\Downloadable\Model\Product\Type::checkProductBuyState() + */ + public function testCheckProductBuyState() + { + /** @var \Magento\Catalog\Api\ProductRepositoryInterface $productRepository */ + $productRepository =$this->objectManager->create( + \Magento\Catalog\Api\ProductRepositoryInterface::class + ); + $product = $productRepository->get('downloadable-product'); + $product->setLinksPurchasedSeparately(false); + $productRepository->save($product); + /** @var \Magento\Quote\Model\Quote\Item\Option $option */ + $option = $this->objectManager->create( + \Magento\Quote\Model\Quote\Item\Option::class, + ['data' => ['code' => 'info_buyRequest', 'value' => '{"qty":23}']] + ); + $option->setProduct($product); + $product->setCustomOptions(['info_buyRequest' => $option]); + + $this->_model->checkProductBuyState($product); + $linksFactory = $this->objectManager + ->get(\Magento\Downloadable\Model\ResourceModel\Link\CollectionFactory::class); + $allLinksIds = $linksFactory->create()->addProductToFilter($product->getEntityId())->getAllIds(); + $this->assertEquals( + '{"qty":23,"links":["' . implode('","', $allLinksIds). '"]}', + $product->getCustomOption('info_buyRequest')->getValue() + ); + } } diff --git a/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/Product/Type/GroupedTest.php b/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/Product/Type/GroupedTest.php index dfff15995ec..87e015a0a52 100644 --- a/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/Product/Type/GroupedTest.php +++ b/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/Product/Type/GroupedTest.php @@ -80,4 +80,52 @@ class GroupedTest extends \PHPUnit_Framework_TestCase $this->assertEquals($data[$productId]['qty'], $product->getQty()); $this->assertEquals($data[$productId]['position'], $product->getPosition()); } + + /** + * @magentoAppIsolation enabled + * @magentoDbIsolation disabled + * @covers \Magento\GroupedProduct\Model\Product\Type\Grouped::_prepareProduct() + * @magentoDataFixture Magento/GroupedProduct/_files/product_grouped.php + */ + public function testPrepareProduct() + { + $buyRequest = $this->objectManager->create( + \Magento\Framework\DataObject::class, + ['data' => ['value' => ['qty' => 2]]] + ); + /** @var \Magento\Catalog\Api\ProductRepositoryInterface $productRepository */ + $productRepository = $this->objectManager->get(\Magento\Catalog\Api\ProductRepositoryInterface::class); + $product = $productRepository->get('grouped-product'); + + /** @var \Magento\GroupedProduct\Model\Product\Type\Grouped $type */ + $type = $this->objectManager->get(\Magento\GroupedProduct\Model\Product\Type\Grouped::class); + + $processModes = [ + \Magento\GroupedProduct\Model\Product\Type\Grouped::PROCESS_MODE_FULL, + \Magento\GroupedProduct\Model\Product\Type\Grouped::PROCESS_MODE_LITE + ]; + $expectedData = [ + \Magento\GroupedProduct\Model\Product\Type\Grouped::PROCESS_MODE_FULL => [ + 1 => '{"super_product_config":{"product_type":"grouped","product_id":"' + . $product->getId() . '"}}', + 21 => '{"super_product_config":{"product_type":"grouped","product_id":"' + . $product->getId() . '"}}', + ], + \Magento\GroupedProduct\Model\Product\Type\Grouped::PROCESS_MODE_LITE => [ + $product->getId() => '{"value":{"qty":2}}', + ] + ]; + + foreach ($processModes as $processMode) { + $products = $type->processConfiguration($buyRequest, $product, $processMode); + foreach ($products as $item) { + $productId = $item->getId(); + $this->assertEquals( + $expectedData[$processMode][$productId], + $item->getCustomOptions()['info_buyRequest']->getValue(), + "Wrong info_buyRequest data for product with id: $productId" + ); + } + } + } } diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php index f8ca1929df9..687532cc5bf 100644 --- a/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php +++ b/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php @@ -477,6 +477,33 @@ class CreateTest extends \PHPUnit_Framework_TestCase $this->assertSame($customerQuote, $customerQuoteFromCache, 'Customer quote caching does not work correctly.'); } + /** + * @covers \Magento\Sales\Model\AdminOrder\Create::moveQuoteItem() + * @magentoAppIsolation enabled + * @magentoDataFixture Magento/Sales/_files/quote.php + * @magentoDataFixture Magento/Customer/_files/customer.php + */ + public function testMoveQuoteItemToCart() + { + $fixtureCustomerId = 1; + + /** Preconditions */ + /** @var \Magento\Backend\Model\Session\Quote $session */ + $session = Bootstrap::getObjectManager()->create(\Magento\Backend\Model\Session\Quote::class); + $session->setCustomerId($fixtureCustomerId); + /** @var $quoteFixture \Magento\Quote\Model\Quote */ + $quoteFixture = Bootstrap::getObjectManager()->create(\Magento\Quote\Model\Quote::class); + $quoteFixture->load('test01', 'reserved_order_id'); + $quoteFixture->setCustomerIsGuest(false)->setCustomerId($fixtureCustomerId)->save(); + + $customerQuote = $this->_model->getCustomerCart(); + $item = $customerQuote->getAllVisibleItems()[0]; + + $this->_model->moveQuoteItem($item, 'cart', 3); + $this->assertEquals(4, $item->getQty(), 'Number of Qty isn\'t correct for Quote item.'); + $this->assertEquals(3, $item->getQtyToAdd(), 'Number of added qty isn\'t correct for Quote item.'); + } + /** * @magentoAppIsolation enabled * @magentoDbIsolation enabled diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/ItemTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/ItemTest.php new file mode 100644 index 00000000000..c05d0747973 --- /dev/null +++ b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/ItemTest.php @@ -0,0 +1,56 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Sales\Model\Order; + +/** + * Item test class. + */ +class ItemTest extends \PHPUnit_Framework_TestCase +{ + /** + * @covers \Magento\Sales\Model\Order\Item::getProductOptions + * @dataProvider getProductOptionsDataProvider + * @param string $options + * @param array $expectedData + */ + public function testGetProductOptions($options, $expectedData) + { + $model = \Magento\Framework\App\ObjectManager::getInstance()->get(\Magento\Sales\Model\Order\Item::class); + $model->setData('product_options', $options); + $this->assertEquals($expectedData, $model->getProductOptions()); + } + + /** + * @return array + */ + public function getProductOptionsDataProvider() + { + return [ + // Variation #1 + [ + // $options + '{"option1":1,"option2":2}', + //$expectedData + ["option1" => 1, "option2" => 2] + ], + // Variation #2 + [ + // $options + 'a:2:{s:7:"option1";i:1;s:7:"option2";i:2;}', + //$expectedData + null + ], + // Variation #3 + [ + // $options + ["option1" => 1, "option2" => 2], + //$expectedData + ["option1" => 1, "option2" => 2] + ], + ]; + } +} diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php new file mode 100644 index 00000000000..411ac4421f8 --- /dev/null +++ b/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php @@ -0,0 +1,84 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Wishlist\Model; + +/** + * Item test class. + */ +class ItemTest extends \PHPUnit_Framework_TestCase +{ + /** + * @var \Magento\Framework\App\ObjectManager + */ + private $objectManager; + + /** + * @var \Magento\Wishlist\Model\Item + */ + private $model; + + /** + * {@inheritDoc} + */ + public function setUp() + { + $this->objectManager = \Magento\Framework\App\ObjectManager::getInstance(); + $this->model = $this->objectManager->get(\Magento\Wishlist\Model\Item::class); + } + + /** + * @magentoAppIsolation enabled + * @magentoDbIsolation enabled + * @magentoDataFixture Magento/Catalog/_files/product_simple.php + * @covers \Magento\Wishlist\Model\Item::getBuyRequest() + * @covers \Magento\Wishlist\Model\Item::mergeBuyRequest() + */ + public function testBuyRequest() + { + /** @var \Magento\Catalog\Api\ProductRepositoryInterface $productRepository */ + $productRepository = $this->objectManager->get(\Magento\Catalog\Api\ProductRepositoryInterface::class); + $product = $productRepository->getById(1); + + /** @var \Magento\Wishlist\Model\Item\Option $option */ + $option = $this->objectManager->create( + \Magento\Wishlist\Model\Item\Option::class, + ['data' => ['code' => 'info_buyRequest', 'value' => '{"qty":23}']] + ); + $option->setProduct($product); + $this->model->addOption($option); + + // Assert getBuyRequest method + $buyRequest = $this->model->getBuyRequest(); + $this->assertEquals($buyRequest->getOriginalQty(), 23); + + // Assert mergeBuyRequest method + $this->model->mergeBuyRequest(['qty' => 11, 'additional_data' => 'some value']); + $buyRequest = $this->model->getBuyRequest(); + $this->assertEquals( + ['additional_data' => 'some value', 'qty' => 0, 'original_qty' => 11], + $buyRequest->getData() + ); + } + + /** + * @covers \Magento\Wishlist\Model\Item::setBuyRequest() + */ + public function testSetBuyRequest() + { + $buyRequest = $this->objectManager->create( + \Magento\Framework\DataObject::class, + ['data' => ['field_1' => 'some data', 'field_2' => 234]] + ); + + $this->model->setBuyRequest($buyRequest); + + $this->assertEquals( + '{"field_1":"some data","field_2":234,"id":null}', + $this->model->getData('buy_request') + ); + } +} -- GitLab From 9082053bd5cd4154dc5618341f5d0cf6aa3325a0 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Thu, 8 Dec 2016 14:27:54 +0200 Subject: [PATCH 051/175] MAGETWO-62041: Remove uses of attributes serialize and unserialize in ConfigurableProduct --- .../Model/Product/Type/Configurable.php | 4 +-- .../Model/Quote/Item/CartItemProcessor.php | 14 ++++++-- .../Model/Product/Type/ConfigurableTest.php | 22 ++++++++++-- .../Quote/Item/CartItemProcessorTest.php | 34 +++++++++++++++++-- 4 files changed, 64 insertions(+), 10 deletions(-) diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php index 7e426eee139..4d9a7f582d3 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php @@ -854,7 +854,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType ['group' => 'CONFIGURABLE', 'method' => __METHOD__] ); if ($attributesOption = $product->getCustomOption('attributes')) { - $data = unserialize($attributesOption->getValue()); + $data = $this->serializer->unserialize($attributesOption->getValue()); $this->getUsedProductAttributeIds($product); $usedAttributes = $product->getData($this->_usedAttributes); @@ -936,7 +936,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType if ($subProduct) { $subProductLinkFieldId = $subProduct->getId(); - $product->addCustomOption('attributes', serialize($attributes)); + $product->addCustomOption('attributes', $this->serializer->serialize($attributes)); $product->addCustomOption('product_qty_' . $subProductLinkFieldId, 1, $subProduct); $product->addCustomOption('simple_product', $subProductLinkFieldId, $subProduct); diff --git a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php index 8e661f99c52..6e9d439ade6 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php +++ b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php @@ -7,6 +7,8 @@ namespace Magento\ConfigurableProduct\Model\Quote\Item; use Magento\Quote\Model\Quote\Item\CartItemProcessorInterface; use Magento\Quote\Api\Data\CartItemInterface; +use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\App\ObjectManager; class CartItemProcessor implements CartItemProcessorInterface { @@ -30,22 +32,30 @@ class CartItemProcessor implements CartItemProcessorInterface */ protected $itemOptionValueFactory; + /** + * @var SerializerInterface + */ + private $serializer; + /** * @param \Magento\Framework\DataObject\Factory $objectFactory * @param \Magento\Quote\Model\Quote\ProductOptionFactory $productOptionFactory * @param \Magento\Quote\Api\Data\ProductOptionExtensionFactory $extensionFactory * @param \Magento\ConfigurableProduct\Model\Quote\Item\ConfigurableItemOptionValueFactory $itemOptionValueFactory + * @param SerializerInterface $serializer */ public function __construct( \Magento\Framework\DataObject\Factory $objectFactory, \Magento\Quote\Model\Quote\ProductOptionFactory $productOptionFactory, \Magento\Quote\Api\Data\ProductOptionExtensionFactory $extensionFactory, - \Magento\ConfigurableProduct\Model\Quote\Item\ConfigurableItemOptionValueFactory $itemOptionValueFactory + \Magento\ConfigurableProduct\Model\Quote\Item\ConfigurableItemOptionValueFactory $itemOptionValueFactory, + SerializerInterface $serializer = null ) { $this->objectFactory = $objectFactory; $this->productOptionFactory = $productOptionFactory; $this->extensionFactory = $extensionFactory; $this->itemOptionValueFactory = $itemOptionValueFactory; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); } /** @@ -73,7 +83,7 @@ class CartItemProcessor implements CartItemProcessorInterface public function processOptions(CartItemInterface $cartItem) { $attributesOption = $cartItem->getProduct()->getCustomOption('attributes'); - $selectedConfigurableOptions = unserialize($attributesOption->getValue()); + $selectedConfigurableOptions = $this->serializer->unserialize($attributesOption->getValue()); if (is_array($selectedConfigurableOptions)) { $configurableOptions = []; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php index cd36c03e7e9..6231bfdee8d 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php @@ -565,6 +565,22 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase public function testGetSelectedAttributesInfo() { + $this->serializer->expects($this->any()) + ->method('serialize') + ->willReturnCallback( + function ($value) { + return json_encode($value); + } + ); + + $this->serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); + $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) ->disableOriginalConstructor() ->getMock(); @@ -581,7 +597,7 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $optionMock->expects($this->once())->method('getValue')->willReturn(serialize($this->attributeData)); + $optionMock->expects($this->once())->method('getValue')->willReturn(json_encode($this->attributeData)); $productMock->expects($this->once())->method('getCustomOption')->with('attributes')->willReturn($optionMock); $productMock->expects($this->once())->method('hasData')->willReturn(true); $productMock->expects($this->at(2))->method('getData')->willReturn(true); @@ -620,7 +636,7 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ->willReturn($optionMock); $optionMock->expects($this->once()) ->method('getValue') - ->willReturn(serialize(['super_attribute' => ['test_key' => 'test_value', 'empty_key' => '']])); + ->willReturn(json_encode(['super_attribute' => ['test_key' => 'test_value', 'empty_key' => '']])); $this->assertEquals($this->_model, $this->_model->checkProductBuyState($productMock)); } @@ -644,7 +660,7 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ->method('getCustomOption') ->with('info_buyRequest') ->willReturn($optionMock); - $optionMock->expects($this->once())->method('getValue')->willReturn(serialize([])); + $optionMock->expects($this->once())->method('getValue')->willReturn(json_encode([])); $this->_model->checkProductBuyState($productMock); } diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php index ab4f5e3be7c..271787eead2 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php @@ -43,6 +43,9 @@ class CartItemProcessorTest extends \PHPUnit_Framework_TestCase */ private $productOptionExtensionAttributes; + /** @var \PHPUnit_Framework_MockObject_MockObject */ + private $serializer; + protected function setUp() { $this->objectFactoryMock = $this->getMock( @@ -84,11 +87,36 @@ class CartItemProcessorTest extends \PHPUnit_Framework_TestCase ['setConfigurableItemOptions'] ); + $this->serializer = $this->getMock( + \Magento\Framework\Serialize\SerializerInterface::class, + [], + [], + '', + false + ); + + $this->serializer->expects($this->any()) + ->method('serialize') + ->willReturnCallback( + function ($value) { + return json_encode($value); + } + ); + + $this->serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); + $this->model = new \Magento\ConfigurableProduct\Model\Quote\Item\CartItemProcessor( $this->objectFactoryMock, $this->optionFactoryMock, $this->optionExtensionFactoryMock, - $this->optionValueFactoryMock + $this->optionValueFactoryMock, + $this->serializer ); } @@ -174,7 +202,7 @@ class CartItemProcessorTest extends \PHPUnit_Framework_TestCase '', false ); - $customOption->expects($this->once())->method('getValue')->willReturn(serialize([$optionId => $optionValue])); + $customOption->expects($this->once())->method('getValue')->willReturn(json_encode([$optionId => $optionValue])); $productMock = $this->getMock(\Magento\Catalog\Model\Product::class, [], [], '', false); $productMock->expects($this->once())->method('getCustomOption')->with('attributes')->willReturn($customOption); @@ -227,7 +255,7 @@ class CartItemProcessorTest extends \PHPUnit_Framework_TestCase '', false ); - $customOption->expects($this->once())->method('getValue')->willReturn(serialize([$optionId => $optionValue])); + $customOption->expects($this->once())->method('getValue')->willReturn(json_encode([$optionId => $optionValue])); $productMock = $this->getMock(\Magento\Catalog\Model\Product::class, [], [], '', false); $productMock->expects($this->once())->method('getCustomOption')->with('attributes')->willReturn($customOption); -- GitLab From 6e4b6258822b472e6028150eea845b8308f9a110 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Thu, 8 Dec 2016 14:36:05 +0200 Subject: [PATCH 052/175] MAGETWO-61651: Remove uses of serialize and unserialize in Magento/Sales/Model/AdminOrder/Create.php --- app/code/Magento/Sales/Model/AdminOrder/Create.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/code/Magento/Sales/Model/AdminOrder/Create.php b/app/code/Magento/Sales/Model/AdminOrder/Create.php index a8a92ca1f26..6bfc2cd8664 100644 --- a/app/code/Magento/Sales/Model/AdminOrder/Create.php +++ b/app/code/Magento/Sales/Model/AdminOrder/Create.php @@ -258,8 +258,8 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ * @param \Magento\Framework\Api\DataObjectHelper $dataObjectHelper * @param \Magento\Sales\Api\OrderManagementInterface $orderManagement * @param \Magento\Quote\Model\QuoteFactory $quoteFactory - * @param SerializerInterface $serializer * @param array $data + * @param SerializerInterface $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -290,8 +290,8 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ \Magento\Framework\Api\DataObjectHelper $dataObjectHelper, \Magento\Sales\Api\OrderManagementInterface $orderManagement, \Magento\Quote\Model\QuoteFactory $quoteFactory, - SerializerInterface $serializer = null, - array $data = [] + array $data = [], + SerializerInterface $serializer = null ) { $this->_objectManager = $objectManager; $this->_eventManager = $eventManager; -- GitLab From acf59dd72fdd239d530b9b54e01b6b5cd182bd05 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Thu, 8 Dec 2016 14:52:21 +0200 Subject: [PATCH 053/175] MAGETWO-62041: Remove uses of attributes serialize and unserialize in ConfigurableProduct --- .../Model/Product/Type/ConfigurableTest.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php index 59d828baa2d..b559fb84628 100644 --- a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php +++ b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php @@ -294,12 +294,18 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase */ public function testGetSelectedAttributesInfo() { + /** @var $serializer \Magento\Framework\Serialize\SerializerInterface */ + $serializer = Bootstrap::getObjectManager()->create(\Magento\Framework\Serialize\SerializerInterface::class); + $product = $this->productRepository->getById(1, true); $attributes = $this->model->getConfigurableAttributesAsArray($product); $attribute = reset($attributes); $optionValueId = $attribute['values'][0]['value_index']; - $product->addCustomOption('attributes', serialize([$attribute['attribute_id'] => $optionValueId])); + $product->addCustomOption('attributes', + $serializer->serialize([$attribute['attribute_id'] => $optionValueId]) + ); + $info = $this->model->getSelectedAttributesInfo($product); $this->assertEquals('Test Configurable', $info[0]['label']); $this->assertEquals('Option 1', $info[0]['value']); @@ -311,12 +317,18 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase */ public function testGetSelectedAttributesInfoForStore() { + /** @var $serializer \Magento\Framework\Serialize\SerializerInterface */ + $serializer = Bootstrap::getObjectManager()->create(\Magento\Framework\Serialize\SerializerInterface::class); + $attributes = $this->model->getConfigurableAttributesAsArray($this->product); $attribute = reset($attributes); $optionValueId = $attribute['values'][0]['value_index']; - $this->product->addCustomOption('attributes', serialize([$attribute['attribute_id'] => $optionValueId])); + $this->product->addCustomOption( + 'attributes', + $serializer->serialize([$attribute['attribute_id'] => $optionValueId]) + ); $configurableAttr = $this->model->getConfigurableAttributes($this->product); $attribute = $configurableAttr->getFirstItem(); -- GitLab From 8c60f93789c468939d0cf2b8d8bb58c3bad23eba Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 8 Dec 2016 15:08:12 +0200 Subject: [PATCH 054/175] MAGETWO-61674: Fix seralization in Module Downloadable --- .../Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php index a8c4cda54d2..6c8d817a900 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php @@ -7,7 +7,6 @@ namespace Magento\Downloadable\Test\Unit\Model\Product; use Magento\Downloadable\Model\Product\TypeHandler\TypeHandlerInterface; use Magento\Framework\Serialize\SerializerInterface; -use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; /** * Class TypeTest @@ -73,7 +72,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase $linkResource = $this->getMock(\Magento\Downloadable\Model\ResourceModel\Link::class, [], [], '', false); $this->linksFactory = $this->getMock( \Magento\Downloadable\Model\ResourceModel\Link\CollectionFactory::class, - [], + ['create'], [], '', false -- GitLab From c2dd85dbbeb98d291da2e13fe8b87f9d808e4f87 Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Thu, 8 Dec 2016 15:17:26 +0200 Subject: [PATCH 055/175] MAGETWO-61653: Magento/Sales/Model/Order/CreditmemoFactory.php, remove \Magento\Framework\Unserialize\Unserialize and fix unit tests - changes after CR --- app/code/Magento/Sales/Model/Order/CreditmemoFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php index 1a78bb4f27b..e222d3de5bd 100644 --- a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php +++ b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php @@ -23,7 +23,7 @@ class CreditmemoFactory protected $taxConfig; /** - * @var \Magento\Framework\Unserialize\Unserialize + * @var \Magento\Framework\Serialize\SerializerInterface */ protected $unserialize; -- GitLab From 77cf5ea71fcb84a111dd8a37727df0964edf03cb Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Thu, 8 Dec 2016 07:55:52 -0600 Subject: [PATCH 056/175] MAGETWO-61872: Create FieldDataConverter Removing unnecessary code --- lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php b/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php index cff9cd8d04a..c5caca06b28 100644 --- a/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php +++ b/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php @@ -6,7 +6,6 @@ namespace Magento\Framework\DB; use Magento\Framework\ObjectManagerInterface; -use Magento\Framework\DB\DataConverter\DataConverterInterface; /** * Create instance of FieldDataConverter with concrete implementation of DataConverterInterface -- GitLab From 3b155cccdc70a1792fee50087230e7ae5ed1c0cd Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 8 Dec 2016 17:30:15 +0200 Subject: [PATCH 057/175] MAGETWO-61670: Fix serialization in module Sales (other) and unit tests --- .../Controller/Download/DownloadCustomOption.php | 15 +++++++++++++-- .../Download/DownloadCustomOptionTest.php | 15 +++++++++------ 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php b/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php index a2dcebe8440..1e034228fec 100644 --- a/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php +++ b/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php @@ -6,6 +6,8 @@ */ namespace Magento\Sales\Controller\Download; +use Magento\Framework\App\ObjectManager; +use Magento\Framework\Serialize\SerializerInterface; use Magento\Sales\Model\Download; use Magento\Framework\App\Action\Context; use Magento\Catalog\Model\Product\Type\AbstractType; @@ -26,25 +28,34 @@ class DownloadCustomOption extends \Magento\Framework\App\Action\Action /** * @var Unserialize + * @deprecated */ protected $unserialize; + /** + * @var SerializerInterface + */ + private $serializer; + /** * @param Context $context * @param ForwardFactory $resultForwardFactory * @param Download $download * @param Unserialize $unserialize + * @param SerializerInterface $serializer */ public function __construct( Context $context, ForwardFactory $resultForwardFactory, Download $download, - Unserialize $unserialize + Unserialize $unserialize, + SerializerInterface $serializer = null ) { parent::__construct($context); $this->resultForwardFactory = $resultForwardFactory; $this->download = $download; $this->unserialize = $unserialize; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); } /** @@ -88,7 +99,7 @@ class DownloadCustomOption extends \Magento\Framework\App\Action\Action } try { - $info = $this->unserialize->unserialize($option->getValue()); + $info = $this->serializer->unserialize($option->getValue()); if ($this->getRequest()->getParam('key') != $info['secret_key']) { return $resultForward->forward('noroute'); } diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php index 387fc3b782b..cbb4adce24a 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php @@ -5,6 +5,8 @@ */ namespace Magento\Sales\Test\Unit\Controller\Download; +use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Unserialize\Unserialize; /** * Class DownloadCustomOptionTest @@ -55,7 +57,7 @@ class DownloadCustomOptionTest extends \PHPUnit_Framework_TestCase /** * @var \Magento\Framework\Unserialize\Unserialize|\PHPUnit_Framework_MockObject_MockObject */ - protected $unserializeMock; + protected $serializerMock; /** * @var \Magento\Framework\Controller\Result\Forward|\PHPUnit_Framework_MockObject_MockObject @@ -89,9 +91,9 @@ class DownloadCustomOptionTest extends \PHPUnit_Framework_TestCase ->setMethods(['downloadFile']) ->getMock(); - $this->unserializeMock = $this->getMockBuilder(\Magento\Framework\Unserialize\Unserialize::class) + $this->serializerMock = $this->getMockBuilder(SerializerInterface::class) ->disableOriginalConstructor() - ->setMethods(['unserialize']) + ->setMethods(['serialize', 'unserialize']) ->getMock(); $requestMock = $this->getMockBuilder(\Magento\Framework\App\Request\Http::class) @@ -151,7 +153,8 @@ class DownloadCustomOptionTest extends \PHPUnit_Framework_TestCase 'context' => $contextMock, 'resultForwardFactory' => $resultForwardFactoryMock, 'download' => $this->downloadMock, - 'unserialize' => $this->unserializeMock + 'unserialize' => $this->getMock(Unserialize::class, [], [], '', false), + 'serializer' => $this->serializerMock ] ) ->getMock(); @@ -197,7 +200,7 @@ class DownloadCustomOptionTest extends \PHPUnit_Framework_TestCase } else { $unserializeResult = [self::SECRET_KEY => self::SECRET_KEY]; - $this->unserializeMock->expects($this->once()) + $this->serializerMock->expects($this->once()) ->method('unserialize') ->with($itemOptionValues[self::OPTION_VALUE]) ->willReturn($unserializeResult); @@ -321,7 +324,7 @@ class DownloadCustomOptionTest extends \PHPUnit_Framework_TestCase $this->productOptionMock->expects($this->any())->method('getProductId')->willReturn(self::OPTION_PRODUCT_ID); $this->productOptionMock->expects($this->any())->method('getType')->willReturn(self::OPTION_TYPE); - $this->unserializeMock->expects($this->once()) + $this->serializerMock->expects($this->once()) ->method('unserialize') ->with(self::OPTION_VALUE) ->willReturn([self::SECRET_KEY => 'bad_test_secret_key']); -- GitLab From b4c4e762353b8ae3007b2c0289b8598538cc8970 Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Thu, 8 Dec 2016 19:21:41 +0200 Subject: [PATCH 058/175] MAGETWO-61647: Detailed investigation for info_buyrequest field and extension points for its modifications - stabilization bamboo builds --- .../Magento/Bundle/Model/Product/Type.php | 8 +++--- .../CustomOptions/CustomOptionProcessor.php | 23 ++++------------- .../Attribute/Source/Countryofmanufacture.php | 24 +++++------------- .../Model/Product/Type/AbstractType.php | 25 +++++-------------- .../Model/Product/Type/Configurable.php | 16 +++++++----- .../Downloadable/Model/Product/Type.php | 11 +++++--- .../Model/Product/Type/Grouped.php | 14 ++++++----- .../Unit/Model/Product/Type/GroupedTest.php | 23 +++++++++++++++++ .../Quote/Model/Quote/Item/Updater.php | 25 +++++-------------- .../Model/Product/Option/Type/DateTest.php | 2 +- .../Model/Product/Type/AbstractTypeTest.php | 2 +- .../Model/Product/Type/ConfigurableTest.php | 5 ++-- 12 files changed, 81 insertions(+), 97 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php index 4cfdf27fd0e..ff66bd6d32a 100644 --- a/app/code/Magento/Bundle/Model/Product/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Type.php @@ -168,7 +168,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType * @param PriceCurrencyInterface $priceCurrency * @param \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry * @param \Magento\CatalogInventory\Api\StockStateInterface $stockState - * + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -192,7 +192,8 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType \Magento\Store\Model\StoreManagerInterface $storeManager, PriceCurrencyInterface $priceCurrency, \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry, - \Magento\CatalogInventory\Api\StockStateInterface $stockState + \Magento\CatalogInventory\Api\StockStateInterface $stockState, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->_catalogProduct = $catalogProduct; $this->_catalogData = $catalogData; @@ -215,7 +216,8 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $filesystem, $coreRegistry, $logger, - $productRepository + $productRepository, + $serializer ); } diff --git a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php index cd4db2bb335..e127aa0970e 100644 --- a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php +++ b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php @@ -40,17 +40,20 @@ class CustomOptionProcessor implements CartItemProcessorInterface * @param ProductOptionFactory $productOptionFactory * @param ProductOptionExtensionFactory $extensionFactory * @param CustomOptionFactory $customOptionFactory + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] */ public function __construct( \Magento\Framework\DataObject\Factory $objectFactory, \Magento\Quote\Model\Quote\ProductOptionFactory $productOptionFactory, \Magento\Quote\Api\Data\ProductOptionExtensionFactory $extensionFactory, - \Magento\Catalog\Model\CustomOptions\CustomOptionFactory $customOptionFactory + \Magento\Catalog\Model\CustomOptions\CustomOptionFactory $customOptionFactory, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->objectFactory = $objectFactory; $this->productOptionFactory = $productOptionFactory; $this->extensionFactory = $extensionFactory; $this->customOptionFactory = $customOptionFactory; + $this->serializer = $serializer; } /** @@ -106,29 +109,13 @@ class CustomOptionProcessor implements CartItemProcessorInterface protected function getOptions(CartItemInterface $cartItem) { $buyRequest = !empty($cartItem->getOptionByCode('info_buyRequest')) - ? $this->getSerializer()->unserialize($cartItem->getOptionByCode('info_buyRequest')->getValue()) + ? $this->serializer->unserialize($cartItem->getOptionByCode('info_buyRequest')->getValue()) : null; return is_array($buyRequest) && isset($buyRequest['options']) ? $buyRequest['options'] : []; } - /** - * Get Serializer interface. - * - * @return \Magento\Framework\Serialize\SerializerInterface - * @deprecated - */ - private function getSerializer() - { - if (!$this->serializer) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); - } - - return $this->serializer; - } - /** * Update options values * diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php index 8bcf01ba3db..2e21a6d8890 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php @@ -46,15 +46,18 @@ class Countryofmanufacture extends AbstractSource implements OptionSourceInterfa * @param \Magento\Directory\Model\CountryFactory $countryFactory * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Framework\App\Cache\Type\Config $configCacheType + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] */ public function __construct( \Magento\Directory\Model\CountryFactory $countryFactory, \Magento\Store\Model\StoreManagerInterface $storeManager, - \Magento\Framework\App\Cache\Type\Config $configCacheType + \Magento\Framework\App\Cache\Type\Config $configCacheType, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->_countryFactory = $countryFactory; $this->_storeManager = $storeManager; $this->_configCacheType = $configCacheType; + $this->serializer = $serializer; } /** @@ -66,30 +69,15 @@ class Countryofmanufacture extends AbstractSource implements OptionSourceInterfa { $cacheKey = 'COUNTRYOFMANUFACTURE_SELECT_STORE_' . $this->_storeManager->getStore()->getCode(); if ($cache = $this->_configCacheType->load($cacheKey)) { - $options = $this->getSerializer()->unserialize($cache); + $options = $this->serializer->unserialize($cache); } else { /** @var \Magento\Directory\Model\Country $country */ $country = $this->_countryFactory->create(); /** @var \Magento\Directory\Model\ResourceModel\Country\Collection $collection */ $collection = $country->getResourceCollection(); $options = $collection->load()->toOptionArray(); - $this->_configCacheType->save($this->getSerializer()->serialize($options), $cacheKey); + $this->_configCacheType->save($this->serializer->serialize($options), $cacheKey); } return $options; } - - /** - * Get serializer - * - * @return \Magento\Framework\Serialize\SerializerInterface - * @deprecated - */ - private function getSerializer() - { - if ($this->serializer === null) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); - } - return $this->serializer; - } } diff --git a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php index aaceedbe076..6f2cb2ccf14 100644 --- a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php +++ b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php @@ -180,6 +180,7 @@ abstract class AbstractType * @param \Magento\Framework\Registry $coreRegistry * @param \Psr\Log\LoggerInterface $logger * @param ProductRepositoryInterface $productRepository + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -191,7 +192,8 @@ abstract class AbstractType \Magento\Framework\Filesystem $filesystem, \Magento\Framework\Registry $coreRegistry, \Psr\Log\LoggerInterface $logger, - ProductRepositoryInterface $productRepository + ProductRepositoryInterface $productRepository, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->_catalogProductOption = $catalogProductOption; $this->_eavConfig = $eavConfig; @@ -202,6 +204,7 @@ abstract class AbstractType $this->_filesystem = $filesystem; $this->_logger = $logger; $this->productRepository = $productRepository; + $this->serializer = $serializer; } /** @@ -401,7 +404,7 @@ abstract class AbstractType $product->prepareCustomOptions(); $buyRequest->unsetData('_processing_params'); // One-time params only - $product->addCustomOption('info_buyRequest', $this->getSerializer()->serialize($buyRequest->getData())); + $product->addCustomOption('info_buyRequest', $this->serializer->serialize($buyRequest->getData())); if ($options) { $optionIds = array_keys($options); $product->addCustomOption('option_ids', implode(',', $optionIds)); @@ -419,22 +422,6 @@ abstract class AbstractType return [$product]; } - /** - * Get Serializer interface. - * - * @return \Magento\Framework\Serialize\SerializerInterface - * @deprecated - */ - protected function getSerializer() - { - if (!$this->serializer) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); - } - - return $this->serializer; - } - /** * Process product configuration * @@ -667,7 +654,7 @@ abstract class AbstractType $optionArr = []; $info = $product->getCustomOption('info_buyRequest'); if ($info) { - $optionArr['info_buyRequest'] = $this->getSerializer()->unserialize($info->getValue()); + $optionArr['info_buyRequest'] = $this->serializer->unserialize($info->getValue()); } $optionIds = $product->getCustomOption('option_ids'); diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php index 79bfa1c3434..6d0351b373d 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php @@ -183,7 +183,9 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType * @param \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable $catalogProductTypeConfigurable * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig * @param \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor - * + * @param \Magento\Framework\Cache\FrontendInterface $cache [optional] + * @param \Magento\Customer\Model\Session $customerSession [optional] + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -205,7 +207,8 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor, \Magento\Framework\Cache\FrontendInterface $cache = null, - \Magento\Customer\Model\Session $customerSession = null + \Magento\Customer\Model\Session $customerSession = null, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->typeConfigurableFactory = $typeConfigurableFactory; $this->_eavAttributeFactory = $eavAttributeFactory; @@ -226,7 +229,8 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType $filesystem, $coreRegistry, $logger, - $productRepository + $productRepository, + $serializer ); } @@ -883,7 +887,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType ['group' => 'CONFIGURABLE', 'method' => __METHOD__] ); if ($attributesOption = $product->getCustomOption('attributes')) { - $data = $this->getSerializer()->unserialize($attributesOption->getValue()); + $data = $this->serializer->unserialize($attributesOption->getValue()); $this->getUsedProductAttributeIds($product); $usedAttributes = $product->getData($this->_usedAttributes); @@ -965,7 +969,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType if ($subProduct) { $subProductLinkFieldId = $subProduct->getId(); - $product->addCustomOption('attributes', serialize($attributes)); + $product->addCustomOption('attributes', $this->serializer->serialize($attributes)); $product->addCustomOption('product_qty_' . $subProductLinkFieldId, 1, $subProduct); $product->addCustomOption('simple_product', $subProductLinkFieldId, $subProduct); @@ -1026,7 +1030,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType parent::checkProductBuyState($product); $option = $product->getCustomOption('info_buyRequest'); if ($option instanceof \Magento\Quote\Model\Quote\Item\Option) { - $buyRequest = new \Magento\Framework\DataObject($this->getSerializer()->unserialize($option->getValue())); + $buyRequest = new \Magento\Framework\DataObject($this->serializer->unserialize($option->getValue())); $attributes = $buyRequest->getSuperAttribute(); if (is_array($attributes)) { foreach ($attributes as $key => $val) { diff --git a/app/code/Magento/Downloadable/Model/Product/Type.php b/app/code/Magento/Downloadable/Model/Product/Type.php index 66ca9c82b00..5c5807f66b2 100644 --- a/app/code/Magento/Downloadable/Model/Product/Type.php +++ b/app/code/Magento/Downloadable/Model/Product/Type.php @@ -85,6 +85,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual * @param \Magento\Downloadable\Model\LinkFactory $linkFactory * @param TypeHandler\TypeHandlerInterface $typeHandler * @param JoinProcessorInterface $extensionAttributesJoinProcessor + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -104,7 +105,8 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual \Magento\Downloadable\Model\SampleFactory $sampleFactory, \Magento\Downloadable\Model\LinkFactory $linkFactory, \Magento\Downloadable\Model\Product\TypeHandler\TypeHandlerInterface $typeHandler, - JoinProcessorInterface $extensionAttributesJoinProcessor + JoinProcessorInterface $extensionAttributesJoinProcessor, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->_sampleResFactory = $sampleResFactory; $this->_linkResource = $linkResource; @@ -123,7 +125,8 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual $filesystem, $coreRegistry, $logger, - $productRepository + $productRepository, + $serializer ); } @@ -249,7 +252,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual parent::checkProductBuyState($product); $option = $product->getCustomOption('info_buyRequest'); if ($option instanceof \Magento\Quote\Model\Quote\Item\Option) { - $buyRequest = new \Magento\Framework\DataObject($this->getSerializer()->unserialize($option->getValue())); + $buyRequest = new \Magento\Framework\DataObject($this->serializer->unserialize($option->getValue())); if (!$buyRequest->hasLinks()) { if (!$product->getLinksPurchasedSeparately()) { $allLinksIds = $this->_linksFactory->create()->addProductToFilter( @@ -258,7 +261,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual $buyRequest->setLinks($allLinksIds); $product->addCustomOption( 'info_buyRequest', - $this->getSerializer()->serialize($buyRequest->getData()) + $this->serializer->serialize($buyRequest->getData()) ); } else { throw new \Magento\Framework\Exception\LocalizedException(__('Please specify product link(s).')); diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php index f1319775123..83983cecb4a 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php @@ -95,7 +95,7 @@ class Grouped extends \Magento\Catalog\Model\Product\Type\AbstractType * @param \Magento\Catalog\Model\Product\Attribute\Source\Status $catalogProductStatus * @param \Magento\Framework\App\State $appState * @param \Magento\Msrp\Helper\Data $msrpData - * + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -112,7 +112,8 @@ class Grouped extends \Magento\Catalog\Model\Product\Type\AbstractType \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Catalog\Model\Product\Attribute\Source\Status $catalogProductStatus, \Magento\Framework\App\State $appState, - \Magento\Msrp\Helper\Data $msrpData + \Magento\Msrp\Helper\Data $msrpData, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->productLinks = $catalogProductLink; $this->_storeManager = $storeManager; @@ -128,7 +129,8 @@ class Grouped extends \Magento\Catalog\Model\Product\Type\AbstractType $filesystem, $coreRegistry, $logger, - $productRepository + $productRepository, + $serializer ); } @@ -202,7 +204,7 @@ class Grouped extends \Magento\Catalog\Model\Product\Type\AbstractType $collection = $this->getAssociatedProductCollection( $product )->addAttributeToSelect( - ['name', 'price', 'special_price', 'special_from_date', 'special_to_date'] + ['name', 'price', 'special_price', 'special_from_date', 'special_to_date'] )->addFilterByRequiredOptions()->setPositionOrder()->addStoreFilter( $this->getStoreFilter($product) )->addAttributeToFilter( @@ -384,7 +386,7 @@ class Grouped extends \Magento\Catalog\Model\Product\Type\AbstractType $_result[0]->addCustomOption('product_type', self::TYPE_CODE, $product); $_result[0]->addCustomOption( 'info_buyRequest', - $this->getSerializer()->serialize( + $this->serializer->serialize( [ 'super_product_config' => [ 'product_type' => self::TYPE_CODE, @@ -402,7 +404,7 @@ class Grouped extends \Magento\Catalog\Model\Product\Type\AbstractType if (!$isStrictProcessMode || count($associatedProductsInfo)) { $product->addCustomOption('product_type', self::TYPE_CODE, $product); - $product->addCustomOption('info_buyRequest', $this->getSerializer()->serialize($buyRequest->getData())); + $product->addCustomOption('info_buyRequest', $this->serializer->serialize($buyRequest->getData())); $products[] = $product; } diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php index 3efc0b7058b..803165fe6c8 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php @@ -429,6 +429,13 @@ class GroupedTest extends \PHPUnit_Framework_TestCase ->expects($this->atLeastOnce()) ->method('getData') ->will($this->returnValue($associatedProducts)); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['serialize']) + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('serialize') + ->willReturn(json_encode($buyRequest->getData())); + $this->objectHelper->setBackwardCompatibleProperty($this->_model, 'serializer', $serializer); $this->assertEquals( [0 => $this->product], @@ -540,6 +547,14 @@ class GroupedTest extends \PHPUnit_Framework_TestCase $buyRequest = new \Magento\Framework\DataObject(); $buyRequest->setSuperGroup([$associatedId => 1]); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['serialize']) + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('serialize') + ->willReturn(json_encode($buyRequest->getData())); + $this->objectHelper->setBackwardCompatibleProperty($this->_model, 'serializer', $serializer); + $cached = true; $this->product ->expects($this->atLeastOnce()) @@ -583,6 +598,14 @@ class GroupedTest extends \PHPUnit_Framework_TestCase $buyRequest = new \Magento\Framework\DataObject(); $buyRequest->setSuperGroup([$associatedId => 1]); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['serialize']) + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('serialize') + ->willReturn(json_encode($buyRequest->getData())); + $this->objectHelper->setBackwardCompatibleProperty($this->_model, 'serializer', $serializer); + $cached = true; $this->product ->expects($this->atLeastOnce()) diff --git a/app/code/Magento/Quote/Model/Quote/Item/Updater.php b/app/code/Magento/Quote/Model/Quote/Item/Updater.php index 103dd8acfb9..556ec5035e3 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Updater.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Updater.php @@ -43,15 +43,18 @@ class Updater * @param ProductFactory $productFactory * @param FormatInterface $localeFormat * @param ObjectFactory $objectFactory + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] */ public function __construct( ProductFactory $productFactory, FormatInterface $localeFormat, - ObjectFactory $objectFactory + ObjectFactory $objectFactory, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->productFactory = $productFactory; $this->localeFormat = $localeFormat; $this->objectFactory = $objectFactory; + $this->serializer = $serializer; } /** @@ -111,7 +114,7 @@ class Updater if ($infoBuyRequest) { $infoBuyRequest->setCustomPrice($itemPrice); - $infoBuyRequest->setValue($this->getSerializer()->serialize($infoBuyRequest->getData())); + $infoBuyRequest->setValue($this->serializer->serialize($infoBuyRequest->getData())); $infoBuyRequest->setCode('info_buyRequest'); $infoBuyRequest->setProduct($item->getProduct()); @@ -135,7 +138,7 @@ class Updater if ($infoBuyRequest->hasData('custom_price')) { $infoBuyRequest->unsetData('custom_price'); - $infoBuyRequest->setValue($this->getSerializer()->serialize($infoBuyRequest->getData())); + $infoBuyRequest->setValue($this->serializer->serialize($infoBuyRequest->getData())); $infoBuyRequest->setCode('info_buyRequest'); $infoBuyRequest->setProduct($item->getProduct()); $item->addOption($infoBuyRequest); @@ -145,22 +148,6 @@ class Updater $item->unsetData('original_custom_price'); } - /** - * Get Serializer interface. - * - * @return \Magento\Framework\Serialize\SerializerInterface - * @deprecated - */ - private function getSerializer() - { - if (!$this->serializer) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); - } - - return $this->serializer; - } - /** * Return formatted price * diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php index 93af50480c8..280996a81d7 100644 --- a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php +++ b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php @@ -4,7 +4,7 @@ * See COPYING.txt for license details. */ -namespace Magento\Catalog\Model\Product; +namespace Magento\Catalog\Model\Product\Option\Type; /** * Test for \Magento\Catalog\Model\Product\Option\Type\Date diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php index 6f98f0f413b..20d40abd618 100644 --- a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php +++ b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php @@ -186,7 +186,7 @@ class AbstractTypeTest extends \PHPUnit_Framework_TestCase $this->assertInstanceOf(\Magento\Framework\DataObject::class, $buyRequest); $this->assertEquals($product->getId(), $buyRequest->getProductId()); $this->assertSame($product, $buyRequest->getProduct()); - $this->assertEquals(serialize($requestData), $buyRequest->getValue()); + $this->assertEquals(json_encode($requestData), $buyRequest->getValue()); } /** diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php index 59d828baa2d..a3f84ab95ab 100644 --- a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php +++ b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php @@ -299,13 +299,14 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase $attribute = reset($attributes); $optionValueId = $attribute['values'][0]['value_index']; - $product->addCustomOption('attributes', serialize([$attribute['attribute_id'] => $optionValueId])); + $product->addCustomOption('attributes', json_encode([$attribute['attribute_id'] => $optionValueId])); $info = $this->model->getSelectedAttributesInfo($product); $this->assertEquals('Test Configurable', $info[0]['label']); $this->assertEquals('Option 1', $info[0]['value']); } /** + * @covers \Magento\ConfigurableProduct\Model\Product\Type\Configurable::getConfigurableAttributes() * @magentoDataFixture Magento/ConfigurableProduct/_files/product_configurable.php * @magentoAppIsolation enabled */ @@ -316,7 +317,7 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase $attribute = reset($attributes); $optionValueId = $attribute['values'][0]['value_index']; - $this->product->addCustomOption('attributes', serialize([$attribute['attribute_id'] => $optionValueId])); + $this->product->addCustomOption('attributes', json_encode([$attribute['attribute_id'] => $optionValueId])); $configurableAttr = $this->model->getConfigurableAttributes($this->product); $attribute = $configurableAttr->getFirstItem(); -- GitLab From 10bf550dae0fcaba726476113149126c45449959 Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Thu, 8 Dec 2016 19:28:20 +0200 Subject: [PATCH 059/175] MAGETWO-61653: Magento/Sales/Model/Order/CreditmemoFactory.php, remove \Magento\Framework\Unserialize\Unserialize and fix unit tests - stabilization bamboo builds --- .../Magento/Sales/_files/order_with_dummy_item_and_invoiced.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_dummy_item_and_invoiced.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_dummy_item_and_invoiced.php index 65389e13564..49671242a67 100644 --- a/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_dummy_item_and_invoiced.php +++ b/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_dummy_item_and_invoiced.php @@ -70,4 +70,4 @@ function saveOrderItems(array $orderItems, $parentOrderItem = null) saveOrderItems($orderItemData['children'], $orderItem); } } -} \ No newline at end of file +} -- GitLab From 6709b3cfff2973168d9255a41f4caf04886fe0e1 Mon Sep 17 00:00:00 2001 From: Mykola Palamar <mpalamar@magento.com> Date: Thu, 8 Dec 2016 18:44:16 +0200 Subject: [PATCH 060/175] MAGETWO-61647: Detailed investigation for info_buyrequest field and extension points for its modifications Conflicts: app/code/Magento/Bundle/Model/Product/Type.php --- .../Magento/Bundle/Model/Product/Type.php | 7 +- .../Test/Unit/Model/Product/TypeTest.php | 2500 +---------------- 2 files changed, 139 insertions(+), 2368 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php index ff66bd6d32a..fcf61a96725 100644 --- a/app/code/Magento/Bundle/Model/Product/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Type.php @@ -11,6 +11,7 @@ namespace Magento\Bundle\Model\Product; use Magento\Catalog\Api\ProductRepositoryInterface; use Magento\Framework\App\ObjectManager; use Magento\Framework\Pricing\PriceCurrencyInterface; +use Magento\Framework\Serialize\SerializerInterface; /** * Bundle Type Model @@ -169,6 +170,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType * @param \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry * @param \Magento\CatalogInventory\Api\StockStateInterface $stockState * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -207,6 +209,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $this->priceCurrency = $priceCurrency; $this->_stockRegistry = $stockRegistry; $this->_stockState = $stockState; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); parent::__construct( $catalogProductOption, $eavConfig, @@ -1011,9 +1014,9 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $productOptionIds = $this->getOptionsIds($product); $productSelections = $this->getSelectionsCollection($productOptionIds, $product); $selectionIds = $product->getCustomOption('bundle_selection_ids'); - $selectionIds = unserialize($selectionIds->getValue()); + $selectionIds = $this->serializer->unserialize($selectionIds->getValue()); $buyRequest = $product->getCustomOption('info_buyRequest'); - $buyRequest = new \Magento\Framework\DataObject(unserialize($buyRequest->getValue())); + $buyRequest = new \Magento\Framework\DataObject($this->serializer->unserialize($buyRequest->getValue())); $bundleOption = $buyRequest->getBundleOption(); if (empty($bundleOption)) { diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php index 2be68359909..4084813c7cd 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php @@ -9,6 +9,10 @@ use Magento\Bundle\Model\ResourceModel\Option\Collection; use Magento\Bundle\Model\ResourceModel\Selection\Collection as SelectionCollection; use Magento\Catalog\Model\Product\Option\Type\DefaultType; use Magento\Framework\Exception\LocalizedException; +use Magento\Framework\DataObject; +use Magento\Framework\Serialize\Serializer\Json; +use Magento\Bundle\Model\Selection; +use Magento\Catalog\Model\Product; /** * Class TypeTest @@ -78,7 +82,19 @@ class TypeTest extends \PHPUnit_Framework_TestCase { $this->bundleCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\CollectionFactory::class) - ->setMethods(['create']) + ->setMethods( + [ + 'create', + 'addAttributeToSelect', + 'setFlag', + 'setPositionOrder', + 'addStoreFilter', + 'setStoreId', + 'addFilterByRequiredOptions', + 'setOptionIdsFilter', + 'getItemById' + ] + ) ->disableOriginalConstructor() ->getMock(); $this->catalogData = $this->getMockBuilder(\Magento\Catalog\Helper\Data::class) @@ -135,2420 +151,172 @@ class TypeTest extends \PHPUnit_Framework_TestCase 'stockState' => $this->stockState, 'catalogProduct' => $this->catalogProduct, 'priceCurrency' => $this->priceCurrency, - + 'serializer' => new Json() ] ); } /** - * @return void - * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + * Bundle product without options should not be possible to buy. + * + * @expectedException \Magento\Framework\Exception\LocalizedException + * @expectedExceptionMessage Please specify product option */ - public function testPrepareForCartAdvancedWithoutOptions() + public function testCheckProductBuyStateEmptyOptionsException() { - /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ - $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) - ->setMethods( - ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - ['__wakeup', 'getOptions', 'getSuperProductConfig', 'unsetData', 'getData', 'getQty', 'getBundleOption'] - ) - ->disableOriginalConstructor() - ->getMock(); - /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ - $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) - ->setMethods(['groupFactory', 'getType', 'getId', 'getRequired', 'isMultiSelection']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ - $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) - ->setMethods(['getItems']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods( - [ - 'getOptions', - 'getHasOptions', - 'prepareCustomOptions', - 'addCustomOption', - 'setCartQty', - 'setQty', - 'getSkipCheckRequiredOption', - 'getTypeInstance', - 'getStoreId', - 'hasData', - 'getData' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ - $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) - ->setMethods(['setStoreFilter', 'getOptionsCollection', 'getOptionsIds', 'getSelectionsCollection']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ - $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) - ->setMethods(['getItems', 'getItemById', 'appendSelections']) - ->disableOriginalConstructor() - ->getMock(); - - $this->parentClass($group, $option, $buyRequest, $product); + $this->mockBundleCollection(); + $product = $this->getProductMock(); + $product->method('getCustomOption')->willReturnMap([ + ['bundle_selection_ids', new DataObject(['value' => ''])], + ['info_buyRequest', new DataObject(['value' => json_encode(['bundle_option' => ''])])], + ]); + $product->setCustomOption(json_encode([])); - $product->expects($this->any()) - ->method('getSkipCheckRequiredOption') - ->willReturn(true); - $product->expects($this->any()) - ->method('getTypeInstance') - ->willReturn($productType); - $optionCollection->expects($this->any()) - ->method('appendSelections') - ->willReturn([$option]); - $productType->expects($this->once()) - ->method('setStoreFilter'); - $productType->expects($this->once()) - ->method('getOptionsCollection') - ->willReturn($optionCollection); - $productType->expects($this->once()) - ->method('getOptionsIds') - ->willReturn([1, 2, 3]); - $productType->expects($this->once()) - ->method('getSelectionsCollection') - ->willReturn($selectionCollection); - $buyRequest->expects($this->once()) - ->method('getBundleOption') - ->willReturn('options'); - $option->expects($this->at(3)) - ->method('getId') - ->willReturn(3); - $option->expects($this->once()) - ->method('getRequired') - ->willReturn(true); - - $result = $this->model->prepareForCartAdvanced($buyRequest, $product); - $this->assertEquals('Please specify product option(s).', $result); + $this->model->checkProductBuyState($product); } /** - * @return void - * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + * Previously selected options are not more available for buying. + * + * @param object $element + * @param string $expectedMessage + * @param bool $check + * + * @throws LocalizedException + * + * @expectedException \Magento\Framework\Exception\LocalizedException + * @dataProvider notAvailableOptionProvider */ - public function testPrepareForCartAdvancedWithShoppingCart() + public function testCheckProductBuyStateMissedOptionException($element, $expectedMessage, $check) { - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Type\Price $priceModel */ - $priceModel = $this->getMockBuilder(\Magento\Catalog\Model\Product\Type\Price::class) - ->setMethods(['getSelectionFinalTotalPrice']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ - $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) - ->setMethods( - ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - [ - '__wakeup', - 'getOptions', - 'getSuperProductConfig', - 'unsetData', - 'getData', - 'getQty', - 'getBundleOption', - 'getBundleOptionQty' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ - $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) - ->setMethods( - [ - 'groupFactory', - 'getType', - 'getId', - 'getRequired', - 'isMultiSelection', - 'getProduct', - 'getValue', - 'getTitle' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ - $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) - ->setMethods(['getItems']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $selection = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - [ - '__wakeup', - 'isSalable', - 'getOptionId', - 'getSelectionCanChangeQty', - 'getSelectionId', - 'addCustomOption', - 'getId', - 'getOption', - 'getTypeInstance' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods( - [ - 'getOptions', - 'getHasOptions', - 'prepareCustomOptions', - 'addCustomOption', - 'setCartQty', - 'setQty', - 'getSkipCheckRequiredOption', - 'getTypeInstance', - 'getStoreId', - 'hasData', - 'getData', - 'getId', - 'getCustomOption', - 'getPriceModel' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ - $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) - ->setMethods( - [ - 'setStoreFilter', - 'prepareForCart', - 'setParentProductId', - 'addCustomOption', - 'setCartQty', - 'getSelectionId' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ - $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) - ->setMethods(['getItems', 'getItemById', 'appendSelections']) - ->disableOriginalConstructor() - ->getMock(); + $this->mockBundleCollection(); + $product = $this->getProductMock(); + $product->method('getCustomOption')->willReturnMap([ + ['bundle_selection_ids', new DataObject(['value' => json_encode([1])])], + ['info_buyRequest', new DataObject(['value' => json_encode(['bundle_option' => [1]])])], + ]); + $product->setCustomOption(json_encode([])); - $this->parentClass($group, $option, $buyRequest, $product); + $this->bundleCollection->method('getItemById')->willReturn($element); + $this->catalogProduct->setSkipSaleableCheck($check); - $product->expects($this->any()) - ->method('getSkipCheckRequiredOption') - ->willReturn(true); - $product->expects($this->once()) - ->method('getTypeInstance') - ->willReturn($productType); - $product->expects($this->once()) - ->method('hasData') - ->willReturn(true); - $product->expects($this->any()) - ->method('getData') - ->willReturnCallback( - function ($key) use ($optionCollection, $selectionCollection) { - $resultValue = null; - switch ($key) { - case '_cache_instance_options_collection': - $resultValue = $optionCollection; - break; - case '_cache_instance_used_selections': - $resultValue = $selectionCollection; - break; - case '_cache_instance_used_selections_ids': - $resultValue = [5]; - break; - } - - return $resultValue; - } + try { + $this->model->checkProductBuyState($product); + } catch (LocalizedException $e) { + $this->assertContains( + $expectedMessage, + $e->getMessage() ); - $product->expects($this->any()) - ->method('getId') - ->willReturn(333); - $product->expects($this->once()) - ->method('getCustomOption') - ->willReturn($option); - $product->expects($this->once()) - ->method('getPriceModel') - ->willReturn($priceModel); - $optionCollection->expects($this->once()) - ->method('getItemById') - ->willReturn($option); - $optionCollection->expects($this->once()) - ->method('appendSelections'); - $productType->expects($this->once()) - ->method('setStoreFilter'); - $buyRequest->expects($this->once()) - ->method('getBundleOption') - ->willReturn([3 => 5]); - $selectionCollection->expects($this->any()) - ->method('getItems') - ->willReturn([$selection]); - $selection->expects($this->once()) - ->method('isSalable') - ->willReturn(false); - $selection->expects($this->any()) - ->method('getOptionId') - ->willReturn(3); - $selection->expects($this->any()) - ->method('getOption') - ->willReturn($option); - $selection->expects($this->once()) - ->method('getSelectionCanChangeQty') - ->willReturn(true); - $selection->expects($this->once()) - ->method('getSelectionId'); - $selection->expects($this->once()) - ->method('addCustomOption') - ->willReturnSelf(); - $selection->expects($this->any()) - ->method('getId') - ->willReturn(333); - $selection->expects($this->once()) - ->method('getTypeInstance') - ->willReturn($productType); - $option->expects($this->at(3)) - ->method('getId') - ->willReturn(3); - $option->expects($this->at(9)) - ->method('getId') - ->willReturn(3); - $option->expects($this->once()) - ->method('getRequired') - ->willReturn(false); - $option->expects($this->once()) - ->method('isMultiSelection') - ->willReturn(true); - $option->expects($this->once()) - ->method('getProduct') - ->willReturn($product); - $option->expects($this->once()) - ->method('getValue') - ->willReturn(4); - $option->expects($this->once()) - ->method('getTitle') - ->willReturn('Title for option'); - $buyRequest->expects($this->once()) - ->method('getBundleOptionQty') - ->willReturn([3 => 5]); - $priceModel->expects($this->once()) - ->method('getSelectionFinalTotalPrice') - ->willReturnSelf(); - $productType->expects($this->once()) - ->method('prepareForCart') - ->willReturn([$productType]); - $productType->expects($this->once()) - ->method('setParentProductId') - ->willReturnSelf(); - $productType->expects($this->any()) - ->method('addCustomOption') - ->willReturnSelf(); - $productType->expects($this->once()) - ->method('setCartQty') - ->willReturnSelf(); - $productType->expects($this->once()) - ->method('getSelectionId') - ->willReturn(314); - - $this->priceCurrency->expects($this->once()) - ->method('convert') - ->willReturn(3.14); - - $result = $this->model->prepareForCartAdvanced($buyRequest, $product); - $this->assertEquals([$product, $productType], $result); + throw $e; + } } /** - * @return void - * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + * In case of missed selection for required options, bundle product should be not able to buy. + * + * @expectedException \Magento\Framework\Exception\LocalizedException */ - public function testPrepareForCartAdvancedEmptyShoppingCart() + public function testCheckProductBuyStateRequiredOptionException() { - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Type\Price $priceModel */ - $priceModel = $this->getMockBuilder(\Magento\Catalog\Model\Product\Type\Price::class) - ->setMethods(['getSelectionFinalTotalPrice']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ - $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) - ->setMethods( - ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - [ - '__wakeup', - 'getOptions', - 'getSuperProductConfig', - 'unsetData', - 'getData', - 'getQty', - 'getBundleOption', - 'getBundleOptionQty' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ - $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) - ->setMethods( - [ - 'groupFactory', - 'getType', - 'getId', - 'getRequired', - 'isMultiSelection', - 'getProduct', - 'getValue', - 'getTitle' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ - $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) - ->setMethods(['getItems']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $selection = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - [ - '__wakeup', - 'isSalable', - 'getOptionId', - 'getSelectionCanChangeQty', - 'getSelectionId', - 'addCustomOption', - 'getId', - 'getOption', - 'getTypeInstance' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods( - [ - 'getOptions', - 'getHasOptions', - 'prepareCustomOptions', - 'addCustomOption', - 'setCartQty', - 'setQty', - 'getSkipCheckRequiredOption', - 'getTypeInstance', - 'getStoreId', - 'hasData', - 'getData', - 'getId', - 'getCustomOption', - 'getPriceModel' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ - $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) - ->setMethods(['setStoreFilter', 'prepareForCart']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ - $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) - ->setMethods(['getItems', 'getItemById', 'appendSelections']) - ->disableOriginalConstructor() - ->getMock(); - - $this->parentClass($group, $option, $buyRequest, $product); + $this->mockBundleCollection(); + $product = $this->getProductMock(); + $product->method('getCustomOption')->willReturnMap([ + ['bundle_selection_ids', new DataObject(['value' => json_encode([])])], + ['info_buyRequest', new DataObject(['value' => json_encode(['bundle_option' => [1]])])], + ]); + $product->setCustomOption(json_encode([])); - $product->expects($this->any()) - ->method('getSkipCheckRequiredOption') - ->willReturn(true); - $product->expects($this->once()) - ->method('getTypeInstance') - ->willReturn($productType); - $product->expects($this->once()) - ->method('hasData') - ->willReturn(true); - $product->expects($this->any()) - ->method('getData') - ->willReturnCallback( - function ($key) use ($optionCollection, $selectionCollection) { - $resultValue = null; - switch ($key) { - case '_cache_instance_options_collection': - $resultValue = $optionCollection; - break; - case '_cache_instance_used_selections': - $resultValue = $selectionCollection; - break; - case '_cache_instance_used_selections_ids': - $resultValue = [5]; - break; - } - - return $resultValue; - } - ); - $product->expects($this->any()) - ->method('getId') - ->willReturn(333); - $product->expects($this->once()) - ->method('getCustomOption') - ->willReturn($option); - $product->expects($this->once()) - ->method('getPriceModel') - ->willReturn($priceModel); - $optionCollection->expects($this->once()) - ->method('getItemById') - ->willReturn($option); - $optionCollection->expects($this->once()) - ->method('appendSelections'); - $productType->expects($this->once()) - ->method('setStoreFilter'); - $buyRequest->expects($this->once()) - ->method('getBundleOption') - ->willReturn([3 => 5]); - $selectionCollection->expects($this->any()) - ->method('getItems') - ->willReturn([$selection]); - $selection->expects($this->once()) - ->method('isSalable') - ->willReturn(false); - $selection->expects($this->any()) - ->method('getOptionId') - ->willReturn(3); - $selection->expects($this->any()) - ->method('getOption') - ->willReturn($option); - $selection->expects($this->once()) - ->method('getSelectionCanChangeQty') - ->willReturn(true); - $selection->expects($this->once()) - ->method('getSelectionId'); - $selection->expects($this->once()) - ->method('addCustomOption') - ->willReturnSelf(); - $selection->expects($this->any()) - ->method('getId') - ->willReturn(333); - $selection->expects($this->once()) - ->method('getTypeInstance') - ->willReturn($productType); - $option->expects($this->at(3)) - ->method('getId') - ->willReturn(3); - $option->expects($this->at(9)) - ->method('getId') - ->willReturn(3); - $option->expects($this->once()) - ->method('getRequired') - ->willReturn(false); - $option->expects($this->once()) - ->method('isMultiSelection') - ->willReturn(true); - $option->expects($this->once()) - ->method('getProduct') - ->willReturn($product); - $option->expects($this->once()) - ->method('getValue') - ->willReturn(4); - $option->expects($this->once()) - ->method('getTitle') - ->willReturn('Title for option'); - $buyRequest->expects($this->once()) - ->method('getBundleOptionQty') - ->willReturn([3 => 5]); - $priceModel->expects($this->once()) - ->method('getSelectionFinalTotalPrice') - ->willReturnSelf(); - $productType->expects($this->once()) - ->method('prepareForCart') - ->willReturn([]); - - $this->priceCurrency->expects($this->once()) - ->method('convert') - ->willReturn(3.14); - - $result = $this->model->prepareForCartAdvanced($buyRequest, $product); - $this->assertEquals('We can\'t add this item to your shopping cart right now.', $result); - } - - /** - * @return void - * @SuppressWarnings(PHPMD.ExcessiveMethodLength) - */ - public function testPrepareForCartAdvancedStringInResult() - { - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Type\Price $priceModel */ - $priceModel = $this->getMockBuilder(\Magento\Catalog\Model\Product\Type\Price::class) - ->setMethods(['getSelectionFinalTotalPrice']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ - $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) - ->setMethods( - ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - [ - '__wakeup', - 'getOptions', - 'getSuperProductConfig', - 'unsetData', - 'getData', - 'getQty', - 'getBundleOption', - 'getBundleOptionQty' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ - $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) - ->setMethods( - [ - 'groupFactory', - 'getType', - 'getId', - 'getRequired', - 'isMultiSelection', - 'getProduct', - 'getValue', - 'getTitle' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ - $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) - ->setMethods(['getItems']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $selection = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - [ - '__wakeup', - 'isSalable', - 'getOptionId', - 'getSelectionCanChangeQty', - 'getSelectionId', - 'addCustomOption', - 'getId', - 'getOption', - 'getTypeInstance' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods( - [ - 'getOptions', - 'getHasOptions', - 'prepareCustomOptions', - 'addCustomOption', - 'setCartQty', - 'setQty', - 'getSkipCheckRequiredOption', - 'getTypeInstance', - 'getStoreId', - 'hasData', - 'getData', - 'getId', - 'getCustomOption', - 'getPriceModel' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ - $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) - ->setMethods(['setStoreFilter', 'prepareForCart']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ - $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) - ->setMethods(['getItems', 'getItemById', 'appendSelections']) + $falseSelection = $this->getMockBuilder(Selection::class) ->disableOriginalConstructor() + ->setMethods(['isSalable']) ->getMock(); + $falseSelection->method('isSalable')->willReturn(false); - $this->parentClass($group, $option, $buyRequest, $product); + $this->bundleCollection->method('getItemById')->willReturn($falseSelection); + $this->catalogProduct->setSkipSaleableCheck(false); - $product->expects($this->any()) - ->method('getSkipCheckRequiredOption') - ->willReturn(true); - $product->expects($this->once()) - ->method('getTypeInstance') - ->willReturn($productType); - $product->expects($this->once()) - ->method('hasData') - ->willReturn(true); - $product->expects($this->any()) - ->method('getData') - ->willReturnCallback( - function ($key) use ($optionCollection, $selectionCollection) { - $resultValue = null; - switch ($key) { - case '_cache_instance_options_collection': - $resultValue = $optionCollection; - break; - case '_cache_instance_used_selections': - $resultValue = $selectionCollection; - break; - case '_cache_instance_used_selections_ids': - $resultValue = [5]; - break; - } - - return $resultValue; - } + try { + $this->model->checkProductBuyState($product); + } catch (LocalizedException $e) { + $this->assertContains( + 'Please select all required options', + $e->getMessage() ); - $product->expects($this->any()) - ->method('getId') - ->willReturn(333); - $product->expects($this->once()) - ->method('getCustomOption') - ->willReturn($option); - $product->expects($this->once()) - ->method('getPriceModel') - ->willReturn($priceModel); - $optionCollection->expects($this->once()) - ->method('getItemById') - ->willReturn($option); - $optionCollection->expects($this->once()) - ->method('appendSelections'); - $productType->expects($this->once()) - ->method('setStoreFilter'); - $buyRequest->expects($this->once()) - ->method('getBundleOption') - ->willReturn([3 => 5]); - $selectionCollection->expects($this->any()) - ->method('getItems') - ->willReturn([$selection]); - $selection->expects($this->once()) - ->method('isSalable') - ->willReturn(false); - $selection->expects($this->any()) - ->method('getOptionId') - ->willReturn(3); - $selection->expects($this->any()) - ->method('getOption') - ->willReturn($option); - $selection->expects($this->once()) - ->method('getSelectionCanChangeQty') - ->willReturn(true); - $selection->expects($this->once()) - ->method('getSelectionId'); - $selection->expects($this->once()) - ->method('addCustomOption') - ->willReturnSelf(); - $selection->expects($this->any()) - ->method('getId') - ->willReturn(333); - $selection->expects($this->once()) - ->method('getTypeInstance') - ->willReturn($productType); - $option->expects($this->at(3)) - ->method('getId') - ->willReturn(3); - $option->expects($this->at(9)) - ->method('getId') - ->willReturn(3); - $option->expects($this->once()) - ->method('getRequired') - ->willReturn(false); - $option->expects($this->once()) - ->method('isMultiSelection') - ->willReturn(true); - $option->expects($this->once()) - ->method('getProduct') - ->willReturn($product); - $option->expects($this->once()) - ->method('getValue') - ->willReturn(4); - $option->expects($this->once()) - ->method('getTitle') - ->willReturn('Title for option'); - $buyRequest->expects($this->once()) - ->method('getBundleOptionQty') - ->willReturn([3 => 5]); - $priceModel->expects($this->once()) - ->method('getSelectionFinalTotalPrice') - ->willReturnSelf(); - $productType->expects($this->once()) - ->method('prepareForCart') - ->willReturn('string'); - - $this->priceCurrency->expects($this->once()) - ->method('convert') - ->willReturn(3.14); - $result = $this->model->prepareForCartAdvanced($buyRequest, $product); - $this->assertEquals('string', $result); + throw $e; + } } /** - * @return void - * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + * Prepare product mock for testing. + * + * @return \PHPUnit_Framework_MockObject_MockObject */ - public function testPrepareForCartAdvancedWithoutSelections() + public function getProductMock() { - /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ - $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) - ->setMethods( - ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - [ - '__wakeup', - 'getOptions', - 'getSuperProductConfig', - 'unsetData', - 'getData', - 'getQty', - 'getBundleOption', - 'getBundleOptionQty' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ - $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) - ->setMethods(['groupFactory', 'getType', 'getId', 'getRequired', 'isMultiSelection']) - ->disableOriginalConstructor() - ->getMock(); - - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods( - [ - 'getOptions', - 'getHasOptions', - 'prepareCustomOptions', - 'addCustomOption', - 'setCartQty', - 'setQty', - 'getSkipCheckRequiredOption', - 'getTypeInstance', - 'getStoreId', - 'hasData', - 'getData', - 'getId' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ - $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) - ->setMethods(['setStoreFilter']) + $product = $this->getMockBuilder(Product::class) ->disableOriginalConstructor() + ->setMethods([ + '_wakeup', + 'getHasOptions', + 'getId', + 'getStoreId', + 'getCustomOption', + 'getTypeInstance', + 'setStoreFilter', + ]) ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ - $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) - ->setMethods(['getItems', 'getItemById', 'appendSelections']) - ->disableOriginalConstructor() - ->getMock(); - - $this->parentClass($group, $option, $buyRequest, $product); - - $product->expects($this->any()) - ->method('getSkipCheckRequiredOption') - ->willReturn(true); - $product->expects($this->once()) - ->method('getTypeInstance') - ->willReturn($productType); - $product->expects($this->once()) - ->method('hasData') - ->willReturn(true); - $product->expects($this->any()) - ->method('getData') - ->willReturnCallback( - function ($key) use ($optionCollection) { - $resultValue = null; - switch ($key) { - case '_cache_instance_options_collection': - $resultValue = $optionCollection; - break; - } - - return $resultValue; - } - ); - $product->expects($this->once()) - ->method('getId') - ->willReturn(333); - $productType->expects($this->once()) - ->method('setStoreFilter'); - $buyRequest->expects($this->once()) - ->method('getBundleOption') - ->willReturn([]); - $buyRequest->expects($this->once()) - ->method('getBundleOptionQty') - ->willReturn([3 => 5]); - - $result = $this->model->prepareForCartAdvanced($buyRequest, $product, 'single'); - $this->assertEquals([$product], $result); + $product->method('getTypeInstance')->willReturn($product); + $product->method('setStoreFilter')->willReturn($product); + $optionCollectionCache = new DataObject(); + $optionCollectionCache->setAllIds([]); + $optionCollectionCache->setItems([ + new DataObject([ + 'required' => true, + 'id' => 1 + ]), + ]); + $product->setData('_cache_instance_options_collection', $optionCollectionCache); + return $product; } /** - * @return void - * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + * Preparation mocks for checkProductsBuyState. */ - public function testPrepareForCartAdvancedSelectionsSelectionIdsExists() + public function mockBundleCollection() { - /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ - $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) - ->setMethods( - ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - ['__wakeup', 'getOptions', 'getSuperProductConfig', 'unsetData', 'getData', 'getQty', 'getBundleOption'] - ) - ->disableOriginalConstructor() - ->getMock(); - /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ - $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) - ->setMethods(['groupFactory', 'getType', 'getId', 'getRequired', 'isMultiSelection']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ - $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) - ->setMethods(['getItems']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $selection = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods(['__wakeup', 'isSalable', 'getOptionId']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods( - [ - 'getOptions', - 'getHasOptions', - 'prepareCustomOptions', - 'addCustomOption', - 'setCartQty', - 'setQty', - 'getSkipCheckRequiredOption', - 'getTypeInstance', - 'getStoreId', - 'hasData', - 'getData' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ - $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) - ->setMethods(['setStoreFilter']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ - $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) - ->setMethods(['getItems', 'getItemById', 'appendSelections']) - ->disableOriginalConstructor() - ->getMock(); - - $this->parentClass($group, $option, $buyRequest, $product); - - $product->expects($this->any()) - ->method('getSkipCheckRequiredOption') - ->willReturn(true); - $product->expects($this->once()) - ->method('getTypeInstance') - ->willReturn($productType); - $product->expects($this->once()) - ->method('hasData') - ->willReturn(true); - $product->expects($this->any()) - ->method('getData') - ->willReturnCallback( - function ($key) use ($optionCollection, $selectionCollection) { - $resultValue = null; - switch ($key) { - case '_cache_instance_options_collection': - $resultValue = $optionCollection; - break; - case '_cache_instance_used_selections': - $resultValue = $selectionCollection; - break; - case '_cache_instance_used_selections_ids': - $resultValue = [5]; - break; - } - - return $resultValue; - } - ); - $optionCollection->expects($this->once()) - ->method('appendSelections'); - $productType->expects($this->once()) - ->method('setStoreFilter'); - $buyRequest->expects($this->once()) - ->method('getBundleOption') - ->willReturn([3 => 5]); - $selectionCollection->expects($this->at(0)) - ->method('getItems') - ->willReturn([$selection]); - $selectionCollection->expects($this->at(1)) - ->method('getItems') - ->willReturn([]); - $option->expects($this->any()) - ->method('getId') - ->willReturn(3); - - $result = $this->model->prepareForCartAdvanced($buyRequest, $product); - $this->assertEquals('Please specify product option(s).', $result); + $this->bundleCollection->method('create')->willReturn($this->bundleCollection); + $this->bundleCollection->method('addAttributeToSelect')->willReturn($this->bundleCollection); + $this->bundleCollection->method('setFlag')->willReturn($this->bundleCollection); + $this->bundleCollection->method('setPositionOrder')->willReturn($this->bundleCollection); + $this->bundleCollection->method('addStoreFilter')->willReturn($this->bundleCollection); + $this->bundleCollection->method('setStoreId')->willReturn($this->bundleCollection); + $this->bundleCollection->method('addFilterByRequiredOptions')->willReturn($this->bundleCollection); + $this->bundleCollection->method('setOptionIdsFilter')->willReturn($this->bundleCollection); } /** - * @return void - * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + * Data provider for not available option. + * @return array */ - public function testPrepareForCartAdvancedSelectRequiredOptions() + public function notAvailableOptionProvider() { - /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ - $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) - ->setMethods( - ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - ['__wakeup', 'getOptions', 'getSuperProductConfig', 'unsetData', 'getData', 'getQty', 'getBundleOption'] - ) - ->disableOriginalConstructor() - ->getMock(); - /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ - $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) - ->setMethods(['groupFactory', 'getType', 'getId', 'getRequired', 'isMultiSelection']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ - $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) - ->setMethods(['getItems']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $selection = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods(['__wakeup', 'isSalable', 'getOptionId']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods( - [ - 'getOptions', - 'getHasOptions', - 'prepareCustomOptions', - 'addCustomOption', - 'setCartQty', - 'setQty', - 'getSkipCheckRequiredOption', - 'getTypeInstance', - 'getStoreId', - 'hasData', - 'getData' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ - $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) - ->setMethods(['setStoreFilter']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ - $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) - ->setMethods(['getItems', 'getItemById']) + $falseSelection = $this->getMockBuilder(Selection::class) ->disableOriginalConstructor() + ->setMethods(['isSalable']) ->getMock(); - - $this->parentClass($group, $option, $buyRequest, $product); - - $product->expects($this->any()) - ->method('getSkipCheckRequiredOption') - ->willReturn(true); - $product->expects($this->once()) - ->method('getTypeInstance') - ->willReturn($productType); - $product->expects($this->once()) - ->method('hasData') - ->willReturn(true); - $product->expects($this->any()) - ->method('getData') - ->willReturnCallback( - function ($key) use ($optionCollection, $selectionCollection) { - $resultValue = null; - switch ($key) { - case '_cache_instance_options_collection': - $resultValue = $optionCollection; - break; - case '_cache_instance_used_selections': - $resultValue = $selectionCollection; - break; - case '_cache_instance_used_selections_ids': - $resultValue = [0 => 5]; - break; - } - - return $resultValue; - } - ); - $optionCollection->expects($this->once()) - ->method('getItemById') - ->willReturn($option); - $productType->expects($this->once()) - ->method('setStoreFilter'); - $buyRequest->expects($this->once()) - ->method('getBundleOption') - ->willReturn([3 => 5]); - $selectionCollection->expects($this->any()) - ->method('getItems') - ->willReturn([$selection]); - $selection->expects($this->once()) - ->method('isSalable') - ->willReturn(false); - $option->expects($this->at(3)) - ->method('getId') - ->willReturn(3); - $option->expects($this->once()) - ->method('getRequired') - ->willReturn(true); - $option->expects($this->once()) - ->method('isMultiSelection') - ->willReturn(true); - - $result = $this->model->prepareForCartAdvanced($buyRequest, $product); - $this->assertEquals('The required options you selected are not available.', $result); - } - - /** - * @return void - */ - public function testPrepareForCartAdvancedParentClassReturnString() - { - $exceptedResult = 'String message'; - - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods(['getItems', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods( - [ - 'getOptions', - 'getHasOptions' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - $product->expects($this->any()) - ->method('getOptions') - ->willThrowException(new LocalizedException(__($exceptedResult))); - $product->expects($this->once()) - ->method('getHasOptions') - ->willReturn(true); - - $result = $this->model->prepareForCartAdvanced($buyRequest, $product); - - $this->assertEquals($exceptedResult, $result); - } - - /** - * @return void - */ - public function testPrepareForCartAdvancedAllrequiredOption() - { - /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ - $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) - ->setMethods( - ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - ['__wakeup', 'getOptions', 'getSuperProductConfig', 'unsetData', 'getData', 'getQty', 'getBundleOption'] - ) - ->disableOriginalConstructor() - ->getMock(); - /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ - $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) - ->setMethods(['groupFactory', 'getType', 'getId', 'getRequired']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods( - [ - 'getOptions', - 'getHasOptions', - 'prepareCustomOptions', - 'addCustomOption', - 'setCartQty', - 'setQty', - 'getSkipCheckRequiredOption', - 'getTypeInstance', - 'getStoreId', - 'hasData', - 'getData' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ - $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) - ->setMethods(['setStoreFilter']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ - $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) - ->setMethods(['getItems']) - ->disableOriginalConstructor() - ->getMock(); - - $this->parentClass($group, $option, $buyRequest, $product); - - $product->expects($this->any()) - ->method('getSkipCheckRequiredOption') - ->willReturn(false); - $product->expects($this->once()) - ->method('getTypeInstance') - ->willReturn($productType); - $product->expects($this->once()) - ->method('hasData') - ->willReturn(true); - $product->expects($this->any()) - ->method('getData') - ->willReturnCallback( - function ($key) use ($optionCollection) { - $resultValue = null; - switch ($key) { - case '_cache_instance_options_collection': - $resultValue = $optionCollection; - break; - case '_cache_instance_used_selections_ids': - $resultValue = [0 => 5]; - break; - } - - return $resultValue; - } - ); - $optionCollection->expects($this->once()) - ->method('getItems') - ->willReturn([$option]); - $productType->expects($this->once()) - ->method('setStoreFilter'); - $buyRequest->expects($this->once()) - ->method('getBundleOption') - ->willReturn([3 => 5]); - $option->expects($this->at(3)) - ->method('getId') - ->willReturn(3); - $option->expects($this->once()) - ->method('getRequired') - ->willReturn(true); - - $result = $this->model->prepareForCartAdvanced($buyRequest, $product); - $this->assertEquals('Please select all required options.', $result); - } - - /** - * @return void - */ - public function testPrepareForCartAdvancedSpecifyProductOptions() - { - /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ - $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) - ->setMethods( - ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] - ) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ - $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods( - ['__wakeup', 'getOptions', 'getSuperProductConfig', 'unsetData', 'getData', 'getQty', 'getBundleOption'] - ) - ->disableOriginalConstructor() - ->getMock(); - /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ - $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) - ->setMethods(['groupFactory', 'getType', 'getId']) - ->disableOriginalConstructor() - ->getMock(); - /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods( - [ - 'getOptions', - 'getHasOptions', - 'prepareCustomOptions', - 'addCustomOption', - 'setCartQty', - 'setQty', - 'getSkipCheckRequiredOption' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - - $this->parentClass($group, $option, $buyRequest, $product); - - $product->expects($this->once()) - ->method('getSkipCheckRequiredOption') - ->willReturn(true); - $buyRequest->expects($this->once()) - ->method('getBundleOption') - ->willReturn([0, '', 'str']); - - $result = $this->model->prepareForCartAdvanced($buyRequest, $product); - $this->assertEquals('Please specify product option(s).', $result); - } - - /** - * @return void - */ - public function testHasWeightTrue() - { - $this->assertTrue($this->model->hasWeight(), 'This product has no weight, but it should'); - } - - /** - * @return void - */ - public function testGetIdentities() - { - $identities = ['id1', 'id2']; - $productMock = $this->getMock(\Magento\Catalog\Model\Product::class, [], [], '', false); - $optionMock = $this->getMock( - \Magento\Bundle\Model\Option::class, - ['getSelections', '__wakeup'], - [], - '', - false - ); - $optionCollectionMock = $this->getMock( - \Magento\Bundle\Model\ResourceModel\Option\Collection::class, - [], - [], - '', - false - ); - $cacheKey = '_cache_instance_options_collection'; - $productMock->expects($this->once()) - ->method('getIdentities') - ->will($this->returnValue($identities)); - $productMock->expects($this->once()) - ->method('hasData') - ->with($cacheKey) - ->will($this->returnValue(true)); - $productMock->expects($this->once()) - ->method('getData') - ->with($cacheKey) - ->will($this->returnValue($optionCollectionMock)); - $optionCollectionMock - ->expects($this->once()) - ->method('getItems') - ->will($this->returnValue([$optionMock])); - $optionMock - ->expects($this->exactly(2)) - ->method('getSelections') - ->will($this->returnValue([$productMock])); - $this->assertEquals($identities, $this->model->getIdentities($productMock)); - } - - /** - * @return void - */ - public function testGetSkuWithType() - { - $sku = 'sku'; - $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->disableOriginalConstructor() - ->getMock(); - $productMock->expects($this->at(0)) - ->method('getData') - ->with('sku') - ->will($this->returnValue($sku)); - $productMock->expects($this->at(2)) - ->method('getData') - ->with('sku_type') - ->will($this->returnValue('some_data')); - - $this->assertEquals($sku, $this->model->getSku($productMock)); - } - - /** - * @return void - */ - public function testGetSkuWithoutType() - { - $sku = 'sku'; - $itemSku = 'item'; - $selectionIds = [1, 2, 3]; - $serializeIds = serialize($selectionIds); - $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getData', 'hasCustomOptions', 'getCustomOption']) - ->disableOriginalConstructor() - ->getMock(); - $customOptionMock = $this->getMockBuilder(\Magento\Catalog\Model\Product\Configuration\Item\Option::class) - ->setMethods(['getValue', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - $selectionItemMock = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods(['getSku', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - - $productMock->expects($this->at(0)) - ->method('getData') - ->with('sku') - ->will($this->returnValue($sku)); - $productMock->expects($this->at(1)) - ->method('getCustomOption') - ->with('option_ids') - ->will($this->returnValue(false)); - $productMock->expects($this->at(2)) - ->method('getData') - ->with('sku_type') - ->will($this->returnValue(null)); - $productMock->expects($this->once()) - ->method('hasCustomOptions') - ->will($this->returnValue(true)); - $productMock->expects($this->at(4)) - ->method('getCustomOption') - ->with('bundle_selection_ids') - ->will($this->returnValue($customOptionMock)); - $customOptionMock->expects($this->any()) - ->method('getValue') - ->will($this->returnValue($serializeIds)); - $selectionMock = $this->getSelectionsByIdsMock($selectionIds, $productMock, 5, 6); - $selectionMock->expects(($this->any())) - ->method('getItems') - ->will($this->returnValue([$selectionItemMock])); - $selectionItemMock->expects($this->any()) - ->method('getSku') - ->will($this->returnValue($itemSku)); - - $this->assertEquals($sku . '-' . $itemSku, $this->model->getSku($productMock)); - } - - /** - * @return void - */ - public function testGetWeightWithoutCustomOption() - { - $weight = 5; - $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getData']) - ->disableOriginalConstructor() - ->getMock(); - - $productMock->expects($this->at(0)) - ->method('getData') - ->with('weight_type') - ->will($this->returnValue(true)); - $productMock->expects($this->at(1)) - ->method('getData') - ->with('weight') - ->will($this->returnValue($weight)); - - $this->assertEquals($weight, $this->model->getWeight($productMock)); - } - - /** - * @return void - */ - public function testGetWeightWithCustomOption() - { - $weight = 5; - $selectionIds = [1, 2, 3]; - $serializeIds = serialize($selectionIds); - $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getData', 'hasCustomOptions', 'getCustomOption']) - ->disableOriginalConstructor() - ->getMock(); - $customOptionMock = $this->getMockBuilder(\Magento\Catalog\Model\Product\Configuration\Item\Option::class) - ->setMethods(['getValue', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - $selectionItemMock = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods(['getSelectionId', 'getWeight', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - - $productMock->expects($this->at(0)) - ->method('getData') - ->with('weight_type') - ->will($this->returnValue(false)); - $productMock->expects($this->once()) - ->method('hasCustomOptions') - ->will($this->returnValue(true)); - $productMock->expects($this->at(2)) - ->method('getCustomOption') - ->with('bundle_selection_ids') - ->will($this->returnValue($customOptionMock)); - $customOptionMock->expects($this->once()) - ->method('getValue') - ->will($this->returnValue($serializeIds)); - $selectionMock = $this->getSelectionsByIdsMock($selectionIds, $productMock, 3, 4); - $selectionMock->expects($this->once()) - ->method('getItems') - ->will($this->returnValue([$selectionItemMock])); - $selectionItemMock->expects($this->any()) - ->method('getSelectionId') - ->will($this->returnValue('id')); - $productMock->expects($this->at(5)) - ->method('getCustomOption') - ->with('selection_qty_' . 'id') - ->will($this->returnValue(null)); - $selectionItemMock->expects($this->once()) - ->method('getWeight') - ->will($this->returnValue($weight)); - - $this->assertEquals($weight, $this->model->getWeight($productMock)); - } - - /** - * @return void - */ - public function testGetWeightWithSeveralCustomOption() - { - $weight = 5; - $qtyOption = 5; - $selectionIds = [1, 2, 3]; - $serializeIds = serialize($selectionIds); - $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getData', 'hasCustomOptions', 'getCustomOption']) - ->disableOriginalConstructor() - ->getMock(); - $customOptionMock = $this->getMockBuilder(\Magento\Catalog\Model\Product\Configuration\Item\Option::class) - ->setMethods(['getValue', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - $qtyOptionMock = $this->getMockBuilder(\Magento\Catalog\Model\Product\Configuration\Item\Option::class) - ->setMethods(['getValue', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - $selectionItemMock = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods(['getSelectionId', 'getWeight', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - - $productMock->expects($this->at(0)) - ->method('getData') - ->with('weight_type') - ->will($this->returnValue(false)); - $productMock->expects($this->once()) - ->method('hasCustomOptions') - ->will($this->returnValue(true)); - $productMock->expects($this->at(2)) - ->method('getCustomOption') - ->with('bundle_selection_ids') - ->will($this->returnValue($customOptionMock)); - $customOptionMock->expects($this->once()) - ->method('getValue') - ->will($this->returnValue($serializeIds)); - $selectionMock = $this->getSelectionsByIdsMock($selectionIds, $productMock, 3, 4); - $selectionMock->expects($this->once()) - ->method('getItems') - ->will($this->returnValue([$selectionItemMock])); - $selectionItemMock->expects($this->any()) - ->method('getSelectionId') - ->will($this->returnValue('id')); - $productMock->expects($this->at(5)) - ->method('getCustomOption') - ->with('selection_qty_' . 'id') - ->will($this->returnValue($qtyOptionMock)); - $qtyOptionMock->expects($this->once()) - ->method('getValue') - ->will($this->returnValue($qtyOption)); - $selectionItemMock->expects($this->once()) - ->method('getWeight') - ->will($this->returnValue($weight)); - - $this->assertEquals($weight * $qtyOption, $this->model->getWeight($productMock)); - } - - /** - * @return void - */ - public function testIsVirtualWithoutCustomOption() - { - $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->disableOriginalConstructor() - ->getMock(); - - $productMock->expects($this->once()) - ->method('hasCustomOptions') - ->will($this->returnValue(false)); - - $this->assertFalse($this->model->isVirtual($productMock)); - } - - /** - * @return void - */ - public function testIsVirtual() - { - $selectionIds = [1, 2, 3]; - $serializeIds = serialize($selectionIds); - - $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->disableOriginalConstructor() - ->getMock(); - $customOptionMock = $this->getMockBuilder(\Magento\Catalog\Model\Product\Configuration\Item\Option::class) - ->setMethods(['getValue', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - $selectionItemMock = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->setMethods(['isVirtual', 'getItems', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - - $productMock->expects($this->once()) - ->method('hasCustomOptions') - ->will($this->returnValue(true)); - $productMock->expects($this->once()) - ->method('getCustomOption') - ->with('bundle_selection_ids') - ->will($this->returnValue($customOptionMock)); - $customOptionMock->expects($this->once()) - ->method('getValue') - ->will($this->returnValue($serializeIds)); - $selectionMock = $this->getSelectionsByIdsMock($selectionIds, $productMock, 2, 3); - $selectionMock->expects($this->once()) - ->method('getItems') - ->will($this->returnValue([$selectionItemMock])); - $selectionItemMock->expects($this->once()) - ->method('isVirtual') - ->will($this->returnValue(true)); - $selectionItemMock->expects($this->once()) - ->method('isVirtual') - ->will($this->returnValue(true)); - $selectionMock->expects($this->once()) - ->method('count') - ->will($this->returnValue(1)); - - $this->assertTrue($this->model->isVirtual($productMock)); - } - - /** - * @param array $selectionIds - * @param \PHPUnit_Framework_MockObject_MockObject $productMock - * @param int $getSelectionsIndex - * @param int $getSelectionsIdsIndex - * @return \PHPUnit_Framework_MockObject_MockObject - */ - - protected function getSelectionsByIdsMock($selectionIds, $productMock, $getSelectionsIndex, $getSelectionsIdsIndex) - { - $usedSelectionsMock = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) - ->disableOriginalConstructor() - ->getMock(); - - $productMock->expects($this->at($getSelectionsIndex)) - ->method('getData') - ->with('_cache_instance_used_selections') - ->will($this->returnValue($usedSelectionsMock)); - $productMock->expects($this->at($getSelectionsIdsIndex)) - ->method('getData') - ->with('_cache_instance_used_selections_ids') - ->will($this->returnValue($selectionIds)); - - return $usedSelectionsMock; - } - - /** - * @param int $expected - * @param int $firstId - * @param int $secondId - * @return void - * @dataProvider shakeSelectionsDataProvider - */ - public function testShakeSelections($expected, $firstId, $secondId) - { - $firstItemMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getOption', 'getOptionId', 'getPosition', 'getSelectionId']) - ->disableOriginalConstructor() - ->getMock(); - $secondItemMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->setMethods(['__wakeup', 'getOption', 'getOptionId', 'getPosition', 'getSelectionId']) - ->disableOriginalConstructor() - ->getMock(); - $optionFirstMock = $this->getMockBuilder(\Magento\Bundle\Model\Option::class) - ->setMethods(['getPosition', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - $optionSecondMock = $this->getMockBuilder(\Magento\Bundle\Model\Option::class) - ->setMethods(['getPosition', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - - $firstItemMock->expects($this->once()) - ->method('getOption') - ->will($this->returnValue($optionFirstMock)); - $optionFirstMock->expects($this->once()) - ->method('getPosition') - ->will($this->returnValue('option_position')); - $firstItemMock->expects($this->once()) - ->method('getOptionId') - ->will($this->returnValue('option_id')); - $firstItemMock->expects($this->once()) - ->method('getPosition') - ->will($this->returnValue('position')); - $firstItemMock->expects($this->once()) - ->method('getSelectionId') - ->will($this->returnValue($firstId)); - $secondItemMock->expects($this->once()) - ->method('getOption') - ->will($this->returnValue($optionSecondMock)); - $optionSecondMock->expects($this->any()) - ->method('getPosition') - ->will($this->returnValue('option_position')); - $secondItemMock->expects($this->once()) - ->method('getOptionId') - ->will($this->returnValue('option_id')); - $secondItemMock->expects($this->once()) - ->method('getPosition') - ->will($this->returnValue('position')); - $secondItemMock->expects($this->once()) - ->method('getSelectionId') - ->will($this->returnValue($secondId)); - - $this->assertEquals($expected, $this->model->shakeSelections($firstItemMock, $secondItemMock)); - } - - /** - * @return array - */ - public function shakeSelectionsDataProvider() - { + $falseSelection->method('isSalable')->willReturn(false); return [ - [0, 0, 0], - [1, 1, 0], - [-1, 0, 1] - ]; - } - - /** - * @return void - * @SuppressWarnings(PHPMD.ExcessiveMethodLength) - */ - public function testGetSelectionsByIds() - { - $selectionIds = [1, 2, 3]; - $usedSelectionsIds = [4, 5, 6]; - $storeId = 2; - $websiteId = 1; - $storeFilter = 'store_filter'; - $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->disableOriginalConstructor() - ->getMock(); - $usedSelectionsMock = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) - ->setMethods( - [ - 'addAttributeToSelect', - 'setFlag', - 'addStoreFilter', - 'setStoreId', - 'setPositionOrder', - 'addFilterByRequiredOptions', - 'setSelectionIdsFilter', - 'joinPrices' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - $productGetMap = [ - ['_cache_instance_used_selections', null, null], - ['_cache_instance_used_selections_ids', null, $usedSelectionsIds], - ['_cache_instance_store_filter', null, $storeFilter], - ]; - $productMock->expects($this->any()) - ->method('getData') - ->will($this->returnValueMap($productGetMap)); - $productSetMap = [ - ['_cache_instance_used_selections', $usedSelectionsMock, $productMock], - ['_cache_instance_used_selections_ids', $selectionIds, $productMock], - ]; - $productMock->expects($this->any()) - ->method('setData') - ->will($this->returnValueMap($productSetMap)); - $productMock->expects($this->once()) - ->method('getStoreId') - ->will($this->returnValue($storeId)); - - $storeMock = $this->getMockBuilder(\Magento\Store\Model\Store::class) - ->setMethods(['getWebsiteId', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - $this->storeManager->expects($this->once()) - ->method('getStore') - ->with($storeId) - ->will($this->returnValue($storeMock)); - $storeMock->expects($this->once()) - ->method('getWebsiteId') - ->will($this->returnValue($websiteId)); - - $this->bundleCollection->expects($this->once()) - ->method('create') - ->will($this->returnValue($usedSelectionsMock)); - - $usedSelectionsMock->expects($this->once()) - ->method('addAttributeToSelect') - ->with('*') - ->will($this->returnSelf()); - $flagMap = [ - ['product_children', true, $usedSelectionsMock], - ]; - $usedSelectionsMock->expects($this->any()) - ->method('setFlag') - ->will($this->returnValueMap($flagMap)); - $usedSelectionsMock->expects($this->once()) - ->method('addStoreFilter') - ->with($storeFilter) - ->will($this->returnSelf()); - $usedSelectionsMock->expects($this->once()) - ->method('setStoreId') - ->with($storeId) - ->will($this->returnSelf()); - $usedSelectionsMock->expects($this->once()) - ->method('setPositionOrder') - ->will($this->returnSelf()); - $usedSelectionsMock->expects($this->once()) - ->method('addFilterByRequiredOptions') - ->will($this->returnSelf()); - $usedSelectionsMock->expects($this->once()) - ->method('setSelectionIdsFilter') - ->with($selectionIds) - ->will($this->returnSelf()); - - $usedSelectionsMock->expects($this->once()) - ->method('joinPrices') - ->with($websiteId) - ->will($this->returnSelf()); - - $this->catalogData->expects($this->once()) - ->method('isPriceGlobal') - ->will($this->returnValue(false)); - - $this->model->getSelectionsByIds($selectionIds, $productMock); - } - - /** - * @return void - */ - public function testGetOptionsByIds() - { - $optionsIds = [1, 2, 3]; - $usedOptionsIds = [4, 5, 6]; - $productId = 3; - $storeId = 2; - $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->disableOriginalConstructor() - ->getMock(); - $usedOptionsMock = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) - ->setMethods(['getResourceCollection']) - ->disableOriginalConstructor() - ->getMock(); - $resourceClassName = \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection::class; - $dbResourceMock = $this->getMockBuilder($resourceClassName) - ->setMethods(['setProductIdFilter', 'setPositionOrder', 'joinValues', 'setIdFilter']) - ->disableOriginalConstructor() - ->getMock(); - $storeMock = $this->getMockBuilder(\Magento\Store\Model\Store::class) - ->setMethods(['getId', '__wakeup']) - ->disableOriginalConstructor() - ->getMock(); - - $productMock->expects($this->at(0)) - ->method('getData') - ->with('_cache_instance_used_options') - ->will($this->returnValue(null)); - $productMock->expects($this->at(1)) - ->method('getData') - ->with('_cache_instance_used_options_ids') - ->will($this->returnValue($usedOptionsIds)); - $productMock->expects($this->once()) - ->method('getId') - ->will($this->returnValue($productId)); - $this->bundleOptionFactory->expects($this->once()) - ->method('create') - ->will($this->returnValue($usedOptionsMock)); - $usedOptionsMock->expects($this->once()) - ->method('getResourceCollection') - ->will($this->returnValue($dbResourceMock)); - $dbResourceMock->expects($this->once()) - ->method('setProductIdFilter') - ->with($productId) - ->will($this->returnSelf()); - $dbResourceMock->expects($this->once()) - ->method('setPositionOrder') - ->will($this->returnSelf()); - $this->storeManager->expects($this->once()) - ->method('getStore') - ->will($this->returnValue($storeMock)); - $storeMock->expects($this->once()) - ->method('getId') - ->will($this->returnValue($storeId)); - $dbResourceMock->expects($this->once()) - ->method('joinValues') - ->will($this->returnSelf()); - $dbResourceMock->expects($this->once()) - ->method('setIdFilter') - ->with($optionsIds) - ->will($this->returnSelf()); - $productMock->expects($this->at(3)) - ->method('setData') - ->with('_cache_instance_used_options', $dbResourceMock) - ->will($this->returnSelf()); - $productMock->expects($this->at(4)) - ->method('setData') - ->with('_cache_instance_used_options_ids', $optionsIds) - ->will($this->returnSelf()); - - $this->model->getOptionsByIds($optionsIds, $productMock); - } - - /** - * @return void - */ - public function testIsSalableFalse() - { - $product = new \Magento\Framework\DataObject( [ - 'is_salable' => false, - 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED - ] - ); - - $this->assertFalse($this->model->isSalable($product)); - } - - /** - * @return void - */ - public function testIsSalableWithoutOptions() - { - $optionCollectionMock = $this->getOptionCollectionMock([]); - $product = new \Magento\Framework\DataObject( + false, + 'The required options you selected are not available', + false, + ], [ - 'is_salable' => true, - '_cache_instance_options_collection' => $optionCollectionMock, - 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED - ] - ); - - $this->assertFalse($this->model->isSalable($product)); - } - - /** - * @return void - */ - public function testIsSalableWithRequiredOptionsTrue() - { - $option1 = $this->getRequiredOptionMock(10, 10); - $option2 = $this->getRequiredOptionMock(20, 10); - - $option3 = $this->getMockBuilder(\Magento\Bundle\Model\Option::class) - ->setMethods(['getRequired', 'getOptionId', 'getId']) - ->disableOriginalConstructor() - ->getMock(); - $option3->method('getRequired') - ->willReturn(false); - $option3->method('getOptionId') - ->willReturn(30); - $option3->method('getId') - ->willReturn(30); - - $optionCollectionMock = $this->getOptionCollectionMock([$option1, $option2, $option3]); - $selectionCollectionMock = $this->getSelectionCollectionMock([$option1, $option2]); - $this->bundleCollection->expects($this->atLeastOnce()) - ->method('create') - ->will($this->returnValue($selectionCollectionMock)); - - $product = new \Magento\Framework\DataObject( - [ - 'is_salable' => true, - '_cache_instance_options_collection' => $optionCollectionMock, - 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED, - ] - ); - - $this->assertTrue($this->model->isSalable($product)); - } - - /** - * @return void - */ - public function testIsSalableCache() - { - $product = new \Magento\Framework\DataObject( - [ - 'is_salable' => true, - 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED, - 'all_items_salable' => true - ] - ); - - $this->assertTrue($this->model->isSalable($product)); - } - - /** - * @return void - */ - public function testIsSalableWithEmptySelectionsCollection() - { - $option = $this->getRequiredOptionMock(1, 10); - $optionCollectionMock = $this->getOptionCollectionMock([$option]); - $selectionCollectionMock = $this->getSelectionCollectionMock([]); - - $this->bundleCollection->expects($this->once()) - ->method('create') - ->will($this->returnValue($selectionCollectionMock)); - - $product = new \Magento\Framework\DataObject( - [ - 'is_salable' => true, - '_cache_instance_options_collection' => $optionCollectionMock, - 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED, - ] - ); - - $this->assertFalse($this->model->isSalable($product)); - } - - /** - * @return void - */ - public function nottestIsSalableWithRequiredOptionsOutOfStock() - { - $option1 = $this->getRequiredOptionMock(10, 10); - $option1 - ->expects($this->atLeastOnce()) - ->method('getSelectionCanChangeQty') - ->willReturn(false); - - $option2 = $this->getRequiredOptionMock(20, 10); - $option2 - ->expects($this->atLeastOnce()) - ->method('getSelectionCanChangeQty') - ->willReturn(false); - - $this->stockRegistry->method('getStockItem') - ->willReturn($this->getStockItem(true)); - $this->stockState - ->method('getStockQty') - ->will( - $this->returnValueMap( - [ - [10, 10], - [20, 5] - ] - ) - ); - - $optionCollectionMock = $this->getOptionCollectionMock([$option1, $option2]); - $selectionCollectionMock = $this->getSelectionCollectionMock([$option1, $option2]); - $this->bundleCollection->expects($this->once()) - ->method('create') - ->will($this->returnValue($selectionCollectionMock)); - - $product = new \Magento\Framework\DataObject( - [ - 'is_salable' => true, - '_cache_instance_options_collection' => $optionCollectionMock, - 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED, - ] - ); - - $this->assertFalse($this->model->isSalable($product)); - } - - /** - * @param int $id - * @param int $selectionQty - * @return \PHPUnit_Framework_MockObject_MockObject - */ - private function getRequiredOptionMock($id, $selectionQty) - { - $option = $this->getMockBuilder(\Magento\Bundle\Model\Option::class) - ->setMethods( - [ - 'getRequired', - 'isSalable', - 'hasSelectionQty', - 'getSelectionQty', - 'getOptionId', - 'getId', - 'getSelectionCanChangeQty' - ] - ) - ->disableOriginalConstructor() - ->getMock(); - $option->method('getRequired') - ->willReturn(true); - $option->method('isSalable') - ->willReturn(true); - $option->method('hasSelectionQty') - ->willReturn(true); - $option->method('getSelectionQty') - ->willReturn($selectionQty); - $option->method('getOptionId') - ->willReturn($id); - $option->method('getSelectionCanChangeQty') - ->willReturn(false); - $option->method('getId') - ->willReturn($id); - - return $option; - } - - /** - * @param array $selectedOptions - * @return \PHPUnit_Framework_MockObject_MockObject - */ - private function getSelectionCollectionMock(array $selectedOptions) - { - $selectionCollectionMock = $this->getMockBuilder( - \Magento\Bundle\Model\ResourceModel\Selection\Collection::class - ) - ->disableOriginalConstructor() - ->getMock(); - - $selectionCollectionMock - ->expects($this->any()) - ->method('getItems') - ->willReturn($selectedOptions); - - $selectionCollectionMock - ->expects($this->any()) - ->method('getIterator') - ->willReturn(new \ArrayIterator($selectedOptions)); - - return $selectionCollectionMock; - } - - /** - * @param array $options - * @return \PHPUnit_Framework_MockObject_MockObject - */ - private function getOptionCollectionMock(array $options) - { - $ids = []; - foreach ($options as $option) { - $ids[] = $option->getId(); - } - - $optionCollectionMock = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) - ->setMethods(['getItems', 'getAllIds']) - ->disableOriginalConstructor() - ->getMock(); - - $optionCollectionMock - ->expects($this->any()) - ->method('getItems') - ->willReturn($options); - - $optionCollectionMock - ->expects($this->any()) - ->method('getAllIds') - ->willReturn($ids); - - return $optionCollectionMock; - } - - /** - * @param bool $isManageStock - * @return \Magento\CatalogInventory\Api\Data\StockItemInterface|\PHPUnit_Framework_MockObject_MockObject - */ - protected function getStockItem($isManageStock) - { - $result = $this->getMockBuilder(\Magento\CatalogInventory\Api\Data\StockItemInterface::class) - ->getMock(); - $result->method('getManageStock') - ->willReturn($isManageStock); - - return $result; - } - - /** - * @param \PHPUnit_Framework_MockObject_MockObject|DefaultType $group - * @param \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option $option - * @param \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest - * @param \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product - * @return void - */ - protected function parentClass($group, $option, $buyRequest, $product) - { - $group->expects($this->once()) - ->method('setOption') - ->willReturnSelf(); - $group->expects($this->once()) - ->method('setProduct') - ->willReturnSelf(); - $group->expects($this->once()) - ->method('setRequest') - ->willReturnSelf(); - $group->expects($this->once()) - ->method('setProcessMode') - ->willReturnSelf(); - $group->expects($this->once()) - ->method('validateUserValue') - ->willReturnSelf(); - $group->expects($this->once()) - ->method('prepareForCart') - ->willReturn('someString'); - - $option->expects($this->once()) - ->method('getType'); - $option->expects($this->once()) - ->method('groupFactory') - ->willReturn($group); - $option->expects($this->at(0)) - ->method('getId') - ->willReturn(333); - - $buyRequest->expects($this->once()) - ->method('getData'); - $buyRequest->expects($this->once()) - ->method('getOptions'); - $buyRequest->expects($this->once()) - ->method('getSuperProductConfig') - ->willReturn([]); - $buyRequest->expects($this->any()) - ->method('unsetData') - ->willReturnSelf(); - $buyRequest->expects($this->any()) - ->method('getQty'); - - $product->expects($this->once()) - ->method('getOptions') - ->willReturn([$option]); - $product->expects($this->once()) - ->method('getHasOptions') - ->willReturn(true); - $product->expects($this->once()) - ->method('prepareCustomOptions'); - $product->expects($this->any()) - ->method('addCustomOption') - ->willReturnSelf(); - $product->expects($this->any()) - ->method('setCartQty') - ->willReturnSelf(); - $product->expects($this->once()) - ->method('setQty'); - - $this->catalogProduct->expects($this->once()) - ->method('getSkipSaleableCheck') - ->willReturn(false); - } - - public function testGetSelectionsCollection() - { - $optionIds = [1, 2, 3]; - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->disableOriginalConstructor() - ->setMethods( - [ - '_wakeup', - 'getStoreId', - 'getData', - 'hasData', - 'setData', - 'getId' - ] - ) - ->getMock(); - $store = $this->getMockBuilder(\Magento\Store\Model\Store::class) - ->disableOriginalConstructor() - ->setMethods(['getWebsiteId']) - ->getMock(); - - $product->expects($this->once())->method('getStoreId')->willReturn('store_id'); - $selectionCollection = $this->getSelectionCollection(); - $this->bundleCollection->expects($this->once())->method('create')->willReturn($selectionCollection); - $this->storeManager->expects($this->once())->method('getStore')->willReturn($store); - $store->expects($this->once())->method('getWebsiteId')->willReturn('website_id'); - $selectionCollection->expects($this->any())->method('joinPrices')->with('website_id')->willReturnSelf(); - - $this->assertEquals($selectionCollection, $this->model->getSelectionsCollection($optionIds, $product)); - } - - /** - * @return \PHPUnit_Framework_MockObject_MockObject - */ - private function getSelectionCollection() - { - $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) - ->disableOriginalConstructor() - ->getMock(); - $selectionCollection->expects($this->any())->method('addAttributeToSelect')->willReturnSelf(); - $selectionCollection->expects($this->any())->method('setFlag')->willReturnSelf(); - $selectionCollection->expects($this->any())->method('setPositionOrder')->willReturnSelf(); - $selectionCollection->expects($this->any())->method('addStoreFilter')->willReturnSelf(); - $selectionCollection->expects($this->any())->method('setStoreId')->willReturnSelf(); - $selectionCollection->expects($this->any())->method('addFilterByRequiredOptions')->willReturnSelf(); - $selectionCollection->expects($this->any())->method('setOptionIdsFilter')->willReturnSelf(); - $selectionCollection->expects($this->any())->method('addPriceData')->willReturnSelf(); - $selectionCollection->expects($this->any())->method('addTierPriceData')->willReturnSelf(); - - return $selectionCollection; - } - - public function testProcessBuyRequest() - { - $result = ['bundle_option' => [], 'bundle_option_qty' => []]; - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->disableOriginalConstructor() - ->getMock(); - $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->disableOriginalConstructor() - ->setMethods(['getBundleOption', 'getBundleOptionQty']) - ->getMock(); - - $buyRequest->expects($this->once())->method('getBundleOption')->willReturn('bundleOption'); - $buyRequest->expects($this->once())->method('getBundleOptionQty')->willReturn('optionId'); - - $this->assertEquals($result, $this->model->processBuyRequest($product, $buyRequest)); - } - - public function testGetProductsToPurchaseByReqGroups() - { - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->disableOriginalConstructor() - ->getMock(); - $resourceClassName = \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection::class; - $dbResourceMock = $this->getMockBuilder($resourceClassName) - ->setMethods(['getItems']) - ->disableOriginalConstructor() - ->getMock(); - $item = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->disableOriginalConstructor() - ->setMethods(['getId', 'getRequired']) - ->getMock(); - $selectionCollection = $this->getSelectionCollection(); - $this->bundleCollection->expects($this->once())->method('create')->willReturn($selectionCollection); - - $selectionItem = $this->getMockBuilder(\Magento\Framework\DataObject::class) - ->disableOriginalConstructor() - ->getMock(); - - $product->expects($this->any())->method('hasData')->willReturn(true); - $product->expects($this->at(1)) - ->method('getData') - ->with('_cache_instance_options_collection') - ->willReturn($dbResourceMock); - $dbResourceMock->expects($this->once())->method('getItems')->willReturn([$item]); - $item->expects($this->once())->method('getId')->willReturn('itemId'); - $item->expects($this->once())->method('getRequired')->willReturn(true); - - $selectionCollection - ->expects($this->any()) - ->method('getIterator') - ->willReturn(new \ArrayIterator([$selectionItem])); - $this->assertEquals([[$selectionItem]], $this->model->getProductsToPurchaseByReqGroups($product)); - } - - public function testGetSearchableData() - { - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->disableOriginalConstructor() - ->setMethods(['_wakeup', 'getHasOptions', 'getId', 'getStoreId']) - ->getMock(); - $option = $this->getMockBuilder(\Magento\Bundle\Model\Option::class) - ->disableOriginalConstructor() - ->setMethods(['getSearchableData']) - ->getMock(); - - $product->expects($this->once())->method('getHasOptions')->willReturn(false); - $product->expects($this->once())->method('getId')->willReturn('productId'); - $product->expects($this->once())->method('getStoreId')->willReturn('storeId'); - $this->bundleOptionFactory->expects($this->once())->method('create')->willReturn($option); - $option->expects($this->once())->method('getSearchableData')->willReturn(['optionSearchdata']); - - $this->assertEquals(['optionSearchdata'], $this->model->getSearchableData($product)); - } - - public function testHasOptions() - { - $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) - ->disableOriginalConstructor() - ->setMethods(['_wakeup', 'hasData', 'getData', 'setData', 'getId', 'getStoreId']) - ->getMock(); - $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) - ->disableOriginalConstructor() - ->setMethods(['getAllIds']) - ->getMock(); - $selectionCollection = $this->getSelectionCollection(); - $selectionCollection - ->expects($this->any()) - ->method('count') - ->willReturn(1); - $this->bundleCollection->expects($this->once())->method('create')->willReturn($selectionCollection); - - $product->expects($this->any())->method('getStoreId')->willReturn(0); - $product->expects($this->once()) - ->method('setData') - ->with('_cache_instance_store_filter', 0) - ->willReturnSelf(); - $product->expects($this->any())->method('hasData')->willReturn(true); - $product->expects($this->at(3)) - ->method('getData') - ->with('_cache_instance_options_collection') - ->willReturn($optionCollection); - $optionCollection->expects($this->once())->method('getAllIds')->willReturn(['ids']); - - $this->assertTrue($this->model->hasOptions($product)); + $falseSelection, + 'The required options you selected are not available', + false + ], + ]; } } -- GitLab From 3b04edb5c1e4ef09f86efd5846762a973b748e91 Mon Sep 17 00:00:00 2001 From: Andrey Konosov <akonosov@magento.com> Date: Wed, 7 Dec 2016 18:24:18 +0200 Subject: [PATCH 061/175] MAGETWO-61655: Magento/Sales/Model/Order/ShipmentFactory.php and unit tests - Bundle additional options are converted to json --- .../Adminhtml/Sales/Order/Items/Renderer.php | 32 +++++++++- .../Sales/Order/View/Items/Renderer.php | 36 ++++++++++- .../Block/Sales/Order/Items/Renderer.php | 30 +++++++++- .../Magento/Bundle/Model/Product/Type.php | 16 ++++- .../Sales/Order/Pdf/Items/AbstractItems.php | 60 ++++++++++++++++++- .../Sales/Order/Items/RendererTest.php | 36 +++++++---- .../Sales/Order/View/Items/RendererTest.php | 33 +++++++--- .../Block/Sales/Order/Items/RendererTest.php | 35 +++++++---- .../Order/Pdf/Items/AbstractItemsTest.php | 37 ++++++++---- .../Sales/Model/Order/ShipmentFactory.php | 16 ++++- 10 files changed, 279 insertions(+), 52 deletions(-) diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php index ad9a0b9bbbe..9b095867d31 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php @@ -6,12 +6,42 @@ namespace Magento\Bundle\Block\Adminhtml\Sales\Order\Items; use Magento\Catalog\Model\Product\Type\AbstractType; +use Magento\Framework\Serialize\SerializerInterface; /** * Adminhtml sales order item renderer */ class Renderer extends \Magento\Sales\Block\Adminhtml\Items\Renderer\DefaultRenderer { + /** + * Serializer + * + * @var SerializerInterface + */ + private $serializer; + + /** + * @param \Magento\Backend\Block\Template\Context $context + * @param \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry + * @param \Magento\CatalogInventory\Api\StockConfigurationInterface $stockConfiguration + * @param \Magento\Framework\Registry $registry + * @param array $data + * @param \Magento\Framework\Serialize\SerializerInterface $serializer + */ + public function __construct( + \Magento\Backend\Block\Template\Context $context, + \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry, + \Magento\CatalogInventory\Api\StockConfigurationInterface $stockConfiguration, + \Magento\Framework\Registry $registry, + array $data = [], + SerializerInterface $serializer = null + ) { + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(SerializerInterface::class); + + parent::__construct($context, $stockRegistry, $stockConfiguration, $registry, $data); + } + /** * Truncate string * @@ -153,7 +183,7 @@ class Renderer extends \Magento\Sales\Block\Adminhtml\Items\Renderer\DefaultRend $options = $item->getOrderItem()->getProductOptions(); } if (isset($options['bundle_selection_attributes'])) { - return unserialize($options['bundle_selection_attributes']); + return $this->serializer->unserialize($options['bundle_selection_attributes']); } return null; } diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php index 01e122a56b5..ffd850556a9 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php @@ -6,12 +6,46 @@ namespace Magento\Bundle\Block\Adminhtml\Sales\Order\View\Items; use Magento\Catalog\Model\Product\Type\AbstractType; +use Magento\Framework\Serialize\SerializerInterface; /** * Adminhtml sales order item renderer */ class Renderer extends \Magento\Sales\Block\Adminhtml\Order\View\Items\Renderer\DefaultRenderer { + /** + * Serializer + * + * @var SerializerInterface + */ + private $serializer; + + /** + * @param \Magento\Backend\Block\Template\Context $context + * @param \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry + * @param \Magento\CatalogInventory\Api\StockConfigurationInterface $stockConfiguration + * @param \Magento\Framework\Registry $registry + * @param \Magento\GiftMessage\Helper\Message $messageHelper + * @param \Magento\Checkout\Helper\Data $checkoutHelper + * @param array $data + * @param \Magento\Framework\Serialize\SerializerInterface $serializer + */ + public function __construct( + \Magento\Backend\Block\Template\Context $context, + \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry, + \Magento\CatalogInventory\Api\StockConfigurationInterface $stockConfiguration, + \Magento\Framework\Registry $registry, + \Magento\GiftMessage\Helper\Message $messageHelper, + \Magento\Checkout\Helper\Data $checkoutHelper, + array $data = [], + SerializerInterface $serializer = null + ) { + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(SerializerInterface::class); + + parent::__construct($context, $stockRegistry, $stockConfiguration, $registry, $messageHelper, $checkoutHelper, $data); + } + /** * Truncate string * @@ -110,7 +144,7 @@ class Renderer extends \Magento\Sales\Block\Adminhtml\Order\View\Items\Renderer\ $options = $item->getOrderItem()->getProductOptions(); } if (isset($options['bundle_selection_attributes'])) { - return unserialize($options['bundle_selection_attributes']); + return $this->serializer->unserialize($options['bundle_selection_attributes']); } return null; } diff --git a/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php b/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php index f8b243c84c0..46dc764291a 100644 --- a/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php @@ -6,6 +6,7 @@ namespace Magento\Bundle\Block\Sales\Order\Items; use Magento\Catalog\Model\Product\Type\AbstractType; +use Magento\Framework\Serialize\SerializerInterface; /** * Order item render block @@ -14,6 +15,33 @@ use Magento\Catalog\Model\Product\Type\AbstractType; */ class Renderer extends \Magento\Sales\Block\Order\Item\Renderer\DefaultRenderer { + /** + * Serializer + * + * @var SerializerInterface + */ + private $serializer; + + /** + * @param \Magento\Framework\View\Element\Template\Context $context + * @param \Magento\Framework\Stdlib\StringUtils $string + * @param \Magento\Catalog\Model\Product\OptionFactory $productOptionFactory + * @param array $data + * @param \Magento\Framework\Serialize\SerializerInterface $serializer + */ + public function __construct( + \Magento\Framework\View\Element\Template\Context $context, + \Magento\Framework\Stdlib\StringUtils $string, + \Magento\Catalog\Model\Product\OptionFactory $productOptionFactory, + array $data = [], + SerializerInterface $serializer = null + ) { + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(SerializerInterface::class); + + parent::__construct($context, $string, $productOptionFactory, $data); + } + /** * @param mixed $item * @return bool @@ -100,7 +128,7 @@ class Renderer extends \Magento\Sales\Block\Order\Item\Renderer\DefaultRenderer $options = $item->getOrderItem()->getProductOptions(); } if (isset($options['bundle_selection_attributes'])) { - return unserialize($options['bundle_selection_attributes']); + return $this->serializer->unserialize($options['bundle_selection_attributes']); } return null; } diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php index 4cfdf27fd0e..b7f21d9b6f1 100644 --- a/app/code/Magento/Bundle/Model/Product/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Type.php @@ -11,6 +11,7 @@ namespace Magento\Bundle\Model\Product; use Magento\Catalog\Api\ProductRepositoryInterface; use Magento\Framework\App\ObjectManager; use Magento\Framework\Pricing\PriceCurrencyInterface; +use Magento\Framework\Serialize\SerializerInterface; /** * Bundle Type Model @@ -146,6 +147,13 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType */ protected $_stockState; + /** + * Serializer + * + * @var SerializerInterface + */ + private $serializer; + /** * @param \Magento\Catalog\Model\Product\Option $catalogProductOption * @param \Magento\Eav\Model\Config $eavConfig @@ -168,6 +176,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType * @param PriceCurrencyInterface $priceCurrency * @param \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry * @param \Magento\CatalogInventory\Api\StockStateInterface $stockState + * @param \Magento\Framework\Serialize\SerializerInterface $serializer * * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ @@ -192,7 +201,8 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType \Magento\Store\Model\StoreManagerInterface $storeManager, PriceCurrencyInterface $priceCurrency, \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry, - \Magento\CatalogInventory\Api\StockStateInterface $stockState + \Magento\CatalogInventory\Api\StockStateInterface $stockState, + SerializerInterface $serializer = null ) { $this->_catalogProduct = $catalogProduct; $this->_catalogData = $catalogData; @@ -206,6 +216,8 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $this->priceCurrency = $priceCurrency; $this->_stockRegistry = $stockRegistry; $this->_stockState = $stockState; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); + parent::__construct( $catalogProductOption, $eavConfig, @@ -697,7 +709,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $result[] = $_result[0]->setParentProductId($product->getId()) ->addCustomOption('bundle_option_ids', serialize(array_map('intval', $optionIds))) - ->addCustomOption('bundle_selection_attributes', serialize($attributes)); + ->addCustomOption('bundle_selection_attributes', $this->serializer->serialize($attributes)); if ($isStrictProcessMode) { $_result[0]->setCartQty($qty); diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php index 2b479b4a250..4ae62543e21 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php @@ -6,12 +6,55 @@ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; use Magento\Catalog\Model\Product\Type\AbstractType; +use Magento\Framework\Serialize\SerializerInterface; /** * Sales Order Pdf Items renderer */ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\AbstractItems { + /** + * Serializer + * + * @var SerializerInterface + */ + private $serializer; + + /** + * @param \Magento\Framework\Model\Context $context + * @param \Magento\Framework\Registry $registry + * @param \Magento\Tax\Helper\Data $taxData + * @param \Magento\Framework\Filesystem $filesystem , + * @param \Magento\Framework\Filter\FilterManager $filterManager + * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource + * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection + * @param array $data + * @param \Magento\Framework\Serialize\SerializerInterface $serializer + */ + public function __construct( + \Magento\Framework\Model\Context $context, + \Magento\Framework\Registry $registry, + \Magento\Tax\Helper\Data $taxData, + \Magento\Framework\Filesystem $filesystem, + \Magento\Framework\Filter\FilterManager $filterManager, + \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, + \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, + array $data = [], + SerializerInterface $serializer = null + ) { + $this->serializer = $serializer; + + parent::__construct($context, + $registry, + $taxData, + $filesystem, + $filterManager, + $resource, + $resourceCollection, + $data + ); + } + /** * Getting all available children for Invoice, Shipment or CreditMemo item * @@ -157,7 +200,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra $options = $item->getOrderItem()->getProductOptions(); } if (isset($options['bundle_selection_attributes'])) { - return unserialize($options['bundle_selection_attributes']); + return $this->getSerializer()->unserialize($options['bundle_selection_attributes']); } return null; } @@ -242,4 +285,19 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra } return false; } + + /** + * The getter function to get serializer + * + * @return SerializerInterface + * + * @deprecated + */ + private function getSerializer() + { + if ($this->serializer === null) { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance()->get(SerializerInterface::class); + } + return $this->serializer; + } } diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php index aee7b81edc1..816dcba4c0c 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php @@ -13,6 +13,9 @@ class RendererTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Bundle\Block\Adminhtml\Sales\Order\Items\Renderer $model */ protected $model; + /** @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject $serializer */ + protected $serializer; + protected function setUp() { $this->orderItem = $this->getMock( @@ -22,9 +25,12 @@ class RendererTest extends \PHPUnit_Framework_TestCase '', false ); - + $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $this->model = $objectManager->getObject(\Magento\Bundle\Block\Adminhtml\Sales\Order\Items\Renderer::class); + $this->model = $objectManager->getObject( + \Magento\Bundle\Block\Adminhtml\Sales\Order\Items\Renderer::class, + ['serializer' => $this->serializer] + ); } /** @@ -221,21 +227,25 @@ class RendererTest extends \PHPUnit_Framework_TestCase ]; } - /** - * @dataProvider getSelectionAttributesDataProvider - */ - public function testGetSelectionAttributes($productOptions, $result) + public function testGetSelectionAttributes() { - $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue($productOptions)); - $this->assertSame($result, $this->model->getSelectionAttributes($this->orderItem)); + $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue([])); + $this->assertNull($this->model->getSelectionAttributes($this->orderItem)); } - public function getSelectionAttributesDataProvider() + public function testGetSelectionAttributesWithBundle() { - return [ - [[], null], - [['bundle_selection_attributes' => 'a:1:{i:0;i:1;}'], [0 => 1]], - ]; + $bundleAttributes = 'Serialized value'; + $options = ['bundle_selection_attributes' => $bundleAttributes]; + $unserializedResult = 'result of "bundle_selection_attributes" unserialization'; + + $this->serializer->expects($this->any()) + ->method('unserialize') + ->with($bundleAttributes) + ->will($this->returnValue($unserializedResult)); + $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue($options)); + + $this->assertEquals($unserializedResult, $this->model->getSelectionAttributes($this->orderItem)); } public function testGetOrderOptions() diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php index 72c4a40fbbb..1c0c7df002e 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php @@ -13,6 +13,9 @@ class RendererTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Bundle\Block\Adminhtml\Sales\Order\View\Items\Renderer $model */ protected $model; + /** @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject $serializer */ + protected $serializer; + protected function setUp() { $this->orderItem = $this->getMock( @@ -22,10 +25,11 @@ class RendererTest extends \PHPUnit_Framework_TestCase '', false ); - + $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->model = $objectManager->getObject( - \Magento\Bundle\Block\Adminhtml\Sales\Order\View\Items\Renderer::class + \Magento\Bundle\Block\Adminhtml\Sales\Order\View\Items\Renderer::class, + ['serializer' => $this->serializer] ); } @@ -141,13 +145,26 @@ class RendererTest extends \PHPUnit_Framework_TestCase ]; } - /** - * @dataProvider getSelectionAttributesDataProvider - */ - public function testGetSelectionAttributes($productOptions, $result) + + public function testGetSelectionAttributes() { - $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue($productOptions)); - $this->assertSame($result, $this->model->getSelectionAttributes($this->orderItem)); + $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue([])); + $this->assertNull($this->model->getSelectionAttributes($this->orderItem)); + } + + public function testGetSelectionAttributesWithBundle() + { + $bundleAttributes = 'Serialized value'; + $options = ['bundle_selection_attributes' => $bundleAttributes]; + $unserializedResult = 'result of "bundle_selection_attributes" unserialization'; + + $this->serializer->expects($this->any()) + ->method('unserialize') + ->with($bundleAttributes) + ->will($this->returnValue($unserializedResult)); + + $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue($options)); + $this->assertEquals($unserializedResult, $this->model->getSelectionAttributes($this->orderItem)); } public function getSelectionAttributesDataProvider() diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php index d81908bd625..fc37687625b 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php @@ -13,6 +13,9 @@ class RendererTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Bundle\Block\Sales\Order\Items\Renderer $model */ protected $model; + /** @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject $serializer */ + protected $serializer; + protected function setUp() { $this->orderItem = $this->getMock( @@ -23,8 +26,12 @@ class RendererTest extends \PHPUnit_Framework_TestCase false ); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $this->model = $objectManager->getObject(\Magento\Bundle\Block\Sales\Order\Items\Renderer::class); + $this->model = $objectManager->getObject( + \Magento\Bundle\Block\Sales\Order\Items\Renderer::class, + ['serializer' => $this->serializer] + ); } /** @@ -221,21 +228,25 @@ class RendererTest extends \PHPUnit_Framework_TestCase ]; } - /** - * @dataProvider getSelectionAttributesDataProvider - */ - public function testGetSelectionAttributes($productOptions, $result) + public function testGetSelectionAttributes() { - $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue($productOptions)); - $this->assertSame($result, $this->model->getSelectionAttributes($this->orderItem)); + $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue([])); + $this->assertNull($this->model->getSelectionAttributes($this->orderItem)); } - public function getSelectionAttributesDataProvider() + public function testGetSelectionAttributesWithBundle() { - return [ - [[], null], - [['bundle_selection_attributes' => 'a:1:{i:0;i:1;}'], [0 => 1]], - ]; + $bundleAttributes = 'Serialized value'; + $options = ['bundle_selection_attributes' => $bundleAttributes]; + $unserializedResult = 'result of "bundle_selection_attributes" unserialization'; + + $this->serializer->expects($this->any()) + ->method('unserialize') + ->with($bundleAttributes) + ->will($this->returnValue($unserializedResult)); + $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue($options)); + + $this->assertEquals($unserializedResult, $this->model->getSelectionAttributes($this->orderItem)); } /** diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php index 83c38d8d9ad..5ee7479e784 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php @@ -13,6 +13,9 @@ class AbstractItemsTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Bundle\Model\Sales\Order\Pdf\Items\Shipment $model */ protected $model; + /** @var \Magento\Framework\Serialize\SerializerInterface $serializer */ + protected $serializer; + protected function setUp() { $this->orderItem = $this->getMock( @@ -25,6 +28,13 @@ class AbstractItemsTest extends \PHPUnit_Framework_TestCase $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->model = $objectManager->getObject(\Magento\Bundle\Model\Sales\Order\Pdf\Items\Shipment::class); + + $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class); + $reflection = new \ReflectionClass(\Magento\Bundle\Model\Sales\Order\Pdf\Items\AbstractItems::class); + $reflectionProperty = $reflection->getProperty('serializer'); + $reflectionProperty->setAccessible(true); + $reflectionProperty->setValue($this->model, $this->serializer); + } /** @@ -234,21 +244,26 @@ class AbstractItemsTest extends \PHPUnit_Framework_TestCase ]; } - /** - * @dataProvider getSelectionAttributesDataProvider - */ - public function testGetSelectionAttributes($productOptions, $result) + + public function testGetSelectionAttributes() { - $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue($productOptions)); - $this->assertSame($result, $this->model->getSelectionAttributes($this->orderItem)); + $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue([])); + $this->assertNull($this->model->getSelectionAttributes($this->orderItem)); } - public function getSelectionAttributesDataProvider() + public function testGetSelectionAttributesWithBundle() { - return [ - [[], null], - [['bundle_selection_attributes' => 'a:1:{i:0;i:1;}'], [0 => 1]], - ]; + $bundleAttributes = 'Serialized value'; + $options = ['bundle_selection_attributes' => $bundleAttributes]; + $unserializedResult = 'result of "bundle_selection_attributes" unserialization'; + + $this->serializer->expects($this->any()) + ->method('unserialize') + ->with($bundleAttributes) + ->will($this->returnValue($unserializedResult)); + $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue($options)); + + $this->assertEquals($unserializedResult, $this->model->getSelectionAttributes($this->orderItem)); } public function testGetOrderOptions() diff --git a/app/code/Magento/Sales/Model/Order/ShipmentFactory.php b/app/code/Magento/Sales/Model/Order/ShipmentFactory.php index a8839c75375..73331b203d9 100644 --- a/app/code/Magento/Sales/Model/Order/ShipmentFactory.php +++ b/app/code/Magento/Sales/Model/Order/ShipmentFactory.php @@ -8,6 +8,7 @@ namespace Magento\Sales\Model\Order; use Magento\Framework\App\ObjectManager; use Magento\Framework\Exception\LocalizedException; use Magento\Sales\Model\Order\Shipment\ShipmentValidatorInterface; +use Magento\Framework\Serialize\SerializerInterface; /** * Factory class for @see \Magento\Sales\Api\Data\ShipmentInterface @@ -35,19 +36,30 @@ class ShipmentFactory */ protected $instanceName; + /** + * Serializer + * + * @var SerializerInterface + */ + private $serializer; + /** * Factory constructor. * * @param \Magento\Sales\Model\Convert\OrderFactory $convertOrderFactory * @param \Magento\Sales\Model\Order\Shipment\TrackFactory $trackFactory + * @param \Magento\Framework\Serialize\SerializerInterface $serializer */ public function __construct( \Magento\Sales\Model\Convert\OrderFactory $convertOrderFactory, - \Magento\Sales\Model\Order\Shipment\TrackFactory $trackFactory + \Magento\Sales\Model\Order\Shipment\TrackFactory $trackFactory, + SerializerInterface $serializer = null ) { $this->converter = $convertOrderFactory->create(); $this->trackFactory = $trackFactory; $this->instanceName = \Magento\Sales\Api\Data\ShipmentInterface::class; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(SerializerInterface::class); } /** @@ -100,7 +112,7 @@ class ShipmentFactory $productOptions = $orderItem->getProductOptions(); if (isset($productOptions['bundle_selection_attributes'])) { - $bundleSelectionAttributes = unserialize( + $bundleSelectionAttributes = $this->serializer->unserialize( $productOptions['bundle_selection_attributes'] ); -- GitLab From ccd8785a620d84f4fc10fa7c0b1a0cd95580f394 Mon Sep 17 00:00:00 2001 From: Mykola Palamar <mpalamar@magento.com> Date: Fri, 9 Dec 2016 12:53:45 +0200 Subject: [PATCH 062/175] MAGETWO-61647: Detailed investigation for info_buyrequest field and extension points for its modifications --- .../Test/Unit/Model/Product/TypeTest.php | 2425 ++++++++++++++++- 1 file changed, 2424 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php index 4084813c7cd..da340dbbfad 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php @@ -75,6 +75,11 @@ class TypeTest extends \PHPUnit_Framework_TestCase */ private $priceCurrency; + /** + * @var Json + */ + private $serializer; + /** * @return void */ @@ -137,6 +142,12 @@ class TypeTest extends \PHPUnit_Framework_TestCase ) ->disableOriginalConstructor() ->getMock(); + + $this->serializer = $this->getMockBuilder(Json::class) + ->setMethods(null) + ->disableOriginalConstructor() + ->getMock(); + $objectHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->model = $objectHelper->getObject( \Magento\Bundle\Model\Product\Type::class, @@ -151,11 +162,2423 @@ class TypeTest extends \PHPUnit_Framework_TestCase 'stockState' => $this->stockState, 'catalogProduct' => $this->catalogProduct, 'priceCurrency' => $this->priceCurrency, - 'serializer' => new Json() + 'serializer' => $this->serializer ] ); } + /** + * @return void + * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + */ + public function testPrepareForCartAdvancedWithoutOptions() + { + /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ + $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) + ->setMethods( + ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + ['__wakeup', 'getOptions', 'getSuperProductConfig', 'unsetData', 'getData', 'getQty', 'getBundleOption'] + ) + ->disableOriginalConstructor() + ->getMock(); + /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ + $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) + ->setMethods(['groupFactory', 'getType', 'getId', 'getRequired', 'isMultiSelection']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ + $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) + ->setMethods(['getItems']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods( + [ + 'getOptions', + 'getHasOptions', + 'prepareCustomOptions', + 'addCustomOption', + 'setCartQty', + 'setQty', + 'getSkipCheckRequiredOption', + 'getTypeInstance', + 'getStoreId', + 'hasData', + 'getData' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ + $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) + ->setMethods(['setStoreFilter', 'getOptionsCollection', 'getOptionsIds', 'getSelectionsCollection']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ + $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) + ->setMethods(['getItems', 'getItemById', 'appendSelections']) + ->disableOriginalConstructor() + ->getMock(); + + $this->parentClass($group, $option, $buyRequest, $product); + + $product->expects($this->any()) + ->method('getSkipCheckRequiredOption') + ->willReturn(true); + $product->expects($this->any()) + ->method('getTypeInstance') + ->willReturn($productType); + $optionCollection->expects($this->any()) + ->method('appendSelections') + ->willReturn([$option]); + $productType->expects($this->once()) + ->method('setStoreFilter'); + $productType->expects($this->once()) + ->method('getOptionsCollection') + ->willReturn($optionCollection); + $productType->expects($this->once()) + ->method('getOptionsIds') + ->willReturn([1, 2, 3]); + $productType->expects($this->once()) + ->method('getSelectionsCollection') + ->willReturn($selectionCollection); + $buyRequest->expects($this->once()) + ->method('getBundleOption') + ->willReturn('options'); + $option->expects($this->at(3)) + ->method('getId') + ->willReturn(3); + $option->expects($this->once()) + ->method('getRequired') + ->willReturn(true); + + $result = $this->model->prepareForCartAdvanced($buyRequest, $product); + $this->assertEquals('Please specify product option(s).', $result); + } + + /** + * @return void + * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + */ + public function testPrepareForCartAdvancedWithShoppingCart() + { + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Type\Price $priceModel */ + $priceModel = $this->getMockBuilder(\Magento\Catalog\Model\Product\Type\Price::class) + ->setMethods(['getSelectionFinalTotalPrice']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ + $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) + ->setMethods( + ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + [ + '__wakeup', + 'getOptions', + 'getSuperProductConfig', + 'unsetData', + 'getData', + 'getQty', + 'getBundleOption', + 'getBundleOptionQty' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ + $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) + ->setMethods( + [ + 'groupFactory', + 'getType', + 'getId', + 'getRequired', + 'isMultiSelection', + 'getProduct', + 'getValue', + 'getTitle' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ + $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) + ->setMethods(['getItems']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $selection = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + [ + '__wakeup', + 'isSalable', + 'getOptionId', + 'getSelectionCanChangeQty', + 'getSelectionId', + 'addCustomOption', + 'getId', + 'getOption', + 'getTypeInstance' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods( + [ + 'getOptions', + 'getHasOptions', + 'prepareCustomOptions', + 'addCustomOption', + 'setCartQty', + 'setQty', + 'getSkipCheckRequiredOption', + 'getTypeInstance', + 'getStoreId', + 'hasData', + 'getData', + 'getId', + 'getCustomOption', + 'getPriceModel' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ + $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) + ->setMethods( + [ + 'setStoreFilter', + 'prepareForCart', + 'setParentProductId', + 'addCustomOption', + 'setCartQty', + 'getSelectionId' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ + $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) + ->setMethods(['getItems', 'getItemById', 'appendSelections']) + ->disableOriginalConstructor() + ->getMock(); + + $this->parentClass($group, $option, $buyRequest, $product); + + $product->expects($this->any()) + ->method('getSkipCheckRequiredOption') + ->willReturn(true); + $product->expects($this->once()) + ->method('getTypeInstance') + ->willReturn($productType); + $product->expects($this->once()) + ->method('hasData') + ->willReturn(true); + $product->expects($this->any()) + ->method('getData') + ->willReturnCallback( + function ($key) use ($optionCollection, $selectionCollection) { + $resultValue = null; + switch ($key) { + case '_cache_instance_options_collection': + $resultValue = $optionCollection; + break; + case '_cache_instance_used_selections': + $resultValue = $selectionCollection; + break; + case '_cache_instance_used_selections_ids': + $resultValue = [5]; + break; + } + + return $resultValue; + } + ); + $product->expects($this->any()) + ->method('getId') + ->willReturn(333); + $product->expects($this->once()) + ->method('getCustomOption') + ->willReturn($option); + $product->expects($this->once()) + ->method('getPriceModel') + ->willReturn($priceModel); + $optionCollection->expects($this->once()) + ->method('getItemById') + ->willReturn($option); + $optionCollection->expects($this->once()) + ->method('appendSelections'); + $productType->expects($this->once()) + ->method('setStoreFilter'); + $buyRequest->expects($this->once()) + ->method('getBundleOption') + ->willReturn([3 => 5]); + $selectionCollection->expects($this->any()) + ->method('getItems') + ->willReturn([$selection]); + $selection->expects($this->once()) + ->method('isSalable') + ->willReturn(false); + $selection->expects($this->any()) + ->method('getOptionId') + ->willReturn(3); + $selection->expects($this->any()) + ->method('getOption') + ->willReturn($option); + $selection->expects($this->once()) + ->method('getSelectionCanChangeQty') + ->willReturn(true); + $selection->expects($this->once()) + ->method('getSelectionId'); + $selection->expects($this->once()) + ->method('addCustomOption') + ->willReturnSelf(); + $selection->expects($this->any()) + ->method('getId') + ->willReturn(333); + $selection->expects($this->once()) + ->method('getTypeInstance') + ->willReturn($productType); + $option->expects($this->at(3)) + ->method('getId') + ->willReturn(3); + $option->expects($this->at(9)) + ->method('getId') + ->willReturn(3); + $option->expects($this->once()) + ->method('getRequired') + ->willReturn(false); + $option->expects($this->once()) + ->method('isMultiSelection') + ->willReturn(true); + $option->expects($this->once()) + ->method('getProduct') + ->willReturn($product); + $option->expects($this->once()) + ->method('getValue') + ->willReturn(4); + $option->expects($this->once()) + ->method('getTitle') + ->willReturn('Title for option'); + $buyRequest->expects($this->once()) + ->method('getBundleOptionQty') + ->willReturn([3 => 5]); + $priceModel->expects($this->once()) + ->method('getSelectionFinalTotalPrice') + ->willReturnSelf(); + $productType->expects($this->once()) + ->method('prepareForCart') + ->willReturn([$productType]); + $productType->expects($this->once()) + ->method('setParentProductId') + ->willReturnSelf(); + $productType->expects($this->any()) + ->method('addCustomOption') + ->willReturnSelf(); + $productType->expects($this->once()) + ->method('setCartQty') + ->willReturnSelf(); + $productType->expects($this->once()) + ->method('getSelectionId') + ->willReturn(314); + + $this->priceCurrency->expects($this->once()) + ->method('convert') + ->willReturn(3.14); + + $result = $this->model->prepareForCartAdvanced($buyRequest, $product); + $this->assertEquals([$product, $productType], $result); + } + + /** + * @return void + * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + */ + public function testPrepareForCartAdvancedEmptyShoppingCart() + { + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Type\Price $priceModel */ + $priceModel = $this->getMockBuilder(\Magento\Catalog\Model\Product\Type\Price::class) + ->setMethods(['getSelectionFinalTotalPrice']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ + $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) + ->setMethods( + ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + [ + '__wakeup', + 'getOptions', + 'getSuperProductConfig', + 'unsetData', + 'getData', + 'getQty', + 'getBundleOption', + 'getBundleOptionQty' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ + $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) + ->setMethods( + [ + 'groupFactory', + 'getType', + 'getId', + 'getRequired', + 'isMultiSelection', + 'getProduct', + 'getValue', + 'getTitle' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ + $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) + ->setMethods(['getItems']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $selection = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + [ + '__wakeup', + 'isSalable', + 'getOptionId', + 'getSelectionCanChangeQty', + 'getSelectionId', + 'addCustomOption', + 'getId', + 'getOption', + 'getTypeInstance' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods( + [ + 'getOptions', + 'getHasOptions', + 'prepareCustomOptions', + 'addCustomOption', + 'setCartQty', + 'setQty', + 'getSkipCheckRequiredOption', + 'getTypeInstance', + 'getStoreId', + 'hasData', + 'getData', + 'getId', + 'getCustomOption', + 'getPriceModel' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ + $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) + ->setMethods(['setStoreFilter', 'prepareForCart']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ + $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) + ->setMethods(['getItems', 'getItemById', 'appendSelections']) + ->disableOriginalConstructor() + ->getMock(); + + $this->parentClass($group, $option, $buyRequest, $product); + + $product->expects($this->any()) + ->method('getSkipCheckRequiredOption') + ->willReturn(true); + $product->expects($this->once()) + ->method('getTypeInstance') + ->willReturn($productType); + $product->expects($this->once()) + ->method('hasData') + ->willReturn(true); + $product->expects($this->any()) + ->method('getData') + ->willReturnCallback( + function ($key) use ($optionCollection, $selectionCollection) { + $resultValue = null; + switch ($key) { + case '_cache_instance_options_collection': + $resultValue = $optionCollection; + break; + case '_cache_instance_used_selections': + $resultValue = $selectionCollection; + break; + case '_cache_instance_used_selections_ids': + $resultValue = [5]; + break; + } + + return $resultValue; + } + ); + $product->expects($this->any()) + ->method('getId') + ->willReturn(333); + $product->expects($this->once()) + ->method('getCustomOption') + ->willReturn($option); + $product->expects($this->once()) + ->method('getPriceModel') + ->willReturn($priceModel); + $optionCollection->expects($this->once()) + ->method('getItemById') + ->willReturn($option); + $optionCollection->expects($this->once()) + ->method('appendSelections'); + $productType->expects($this->once()) + ->method('setStoreFilter'); + $buyRequest->expects($this->once()) + ->method('getBundleOption') + ->willReturn([3 => 5]); + $selectionCollection->expects($this->any()) + ->method('getItems') + ->willReturn([$selection]); + $selection->expects($this->once()) + ->method('isSalable') + ->willReturn(false); + $selection->expects($this->any()) + ->method('getOptionId') + ->willReturn(3); + $selection->expects($this->any()) + ->method('getOption') + ->willReturn($option); + $selection->expects($this->once()) + ->method('getSelectionCanChangeQty') + ->willReturn(true); + $selection->expects($this->once()) + ->method('getSelectionId'); + $selection->expects($this->once()) + ->method('addCustomOption') + ->willReturnSelf(); + $selection->expects($this->any()) + ->method('getId') + ->willReturn(333); + $selection->expects($this->once()) + ->method('getTypeInstance') + ->willReturn($productType); + $option->expects($this->at(3)) + ->method('getId') + ->willReturn(3); + $option->expects($this->at(9)) + ->method('getId') + ->willReturn(3); + $option->expects($this->once()) + ->method('getRequired') + ->willReturn(false); + $option->expects($this->once()) + ->method('isMultiSelection') + ->willReturn(true); + $option->expects($this->once()) + ->method('getProduct') + ->willReturn($product); + $option->expects($this->once()) + ->method('getValue') + ->willReturn(4); + $option->expects($this->once()) + ->method('getTitle') + ->willReturn('Title for option'); + $buyRequest->expects($this->once()) + ->method('getBundleOptionQty') + ->willReturn([3 => 5]); + $priceModel->expects($this->once()) + ->method('getSelectionFinalTotalPrice') + ->willReturnSelf(); + $productType->expects($this->once()) + ->method('prepareForCart') + ->willReturn([]); + + $this->priceCurrency->expects($this->once()) + ->method('convert') + ->willReturn(3.14); + + $result = $this->model->prepareForCartAdvanced($buyRequest, $product); + $this->assertEquals('We can\'t add this item to your shopping cart right now.', $result); + } + + /** + * @return void + * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + */ + public function testPrepareForCartAdvancedStringInResult() + { + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Type\Price $priceModel */ + $priceModel = $this->getMockBuilder(\Magento\Catalog\Model\Product\Type\Price::class) + ->setMethods(['getSelectionFinalTotalPrice']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ + $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) + ->setMethods( + ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + [ + '__wakeup', + 'getOptions', + 'getSuperProductConfig', + 'unsetData', + 'getData', + 'getQty', + 'getBundleOption', + 'getBundleOptionQty' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ + $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) + ->setMethods( + [ + 'groupFactory', + 'getType', + 'getId', + 'getRequired', + 'isMultiSelection', + 'getProduct', + 'getValue', + 'getTitle' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ + $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) + ->setMethods(['getItems']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $selection = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + [ + '__wakeup', + 'isSalable', + 'getOptionId', + 'getSelectionCanChangeQty', + 'getSelectionId', + 'addCustomOption', + 'getId', + 'getOption', + 'getTypeInstance' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods( + [ + 'getOptions', + 'getHasOptions', + 'prepareCustomOptions', + 'addCustomOption', + 'setCartQty', + 'setQty', + 'getSkipCheckRequiredOption', + 'getTypeInstance', + 'getStoreId', + 'hasData', + 'getData', + 'getId', + 'getCustomOption', + 'getPriceModel' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ + $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) + ->setMethods(['setStoreFilter', 'prepareForCart']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ + $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) + ->setMethods(['getItems', 'getItemById', 'appendSelections']) + ->disableOriginalConstructor() + ->getMock(); + + $this->parentClass($group, $option, $buyRequest, $product); + + $product->expects($this->any()) + ->method('getSkipCheckRequiredOption') + ->willReturn(true); + $product->expects($this->once()) + ->method('getTypeInstance') + ->willReturn($productType); + $product->expects($this->once()) + ->method('hasData') + ->willReturn(true); + $product->expects($this->any()) + ->method('getData') + ->willReturnCallback( + function ($key) use ($optionCollection, $selectionCollection) { + $resultValue = null; + switch ($key) { + case '_cache_instance_options_collection': + $resultValue = $optionCollection; + break; + case '_cache_instance_used_selections': + $resultValue = $selectionCollection; + break; + case '_cache_instance_used_selections_ids': + $resultValue = [5]; + break; + } + + return $resultValue; + } + ); + $product->expects($this->any()) + ->method('getId') + ->willReturn(333); + $product->expects($this->once()) + ->method('getCustomOption') + ->willReturn($option); + $product->expects($this->once()) + ->method('getPriceModel') + ->willReturn($priceModel); + $optionCollection->expects($this->once()) + ->method('getItemById') + ->willReturn($option); + $optionCollection->expects($this->once()) + ->method('appendSelections'); + $productType->expects($this->once()) + ->method('setStoreFilter'); + $buyRequest->expects($this->once()) + ->method('getBundleOption') + ->willReturn([3 => 5]); + $selectionCollection->expects($this->any()) + ->method('getItems') + ->willReturn([$selection]); + $selection->expects($this->once()) + ->method('isSalable') + ->willReturn(false); + $selection->expects($this->any()) + ->method('getOptionId') + ->willReturn(3); + $selection->expects($this->any()) + ->method('getOption') + ->willReturn($option); + $selection->expects($this->once()) + ->method('getSelectionCanChangeQty') + ->willReturn(true); + $selection->expects($this->once()) + ->method('getSelectionId'); + $selection->expects($this->once()) + ->method('addCustomOption') + ->willReturnSelf(); + $selection->expects($this->any()) + ->method('getId') + ->willReturn(333); + $selection->expects($this->once()) + ->method('getTypeInstance') + ->willReturn($productType); + $option->expects($this->at(3)) + ->method('getId') + ->willReturn(3); + $option->expects($this->at(9)) + ->method('getId') + ->willReturn(3); + $option->expects($this->once()) + ->method('getRequired') + ->willReturn(false); + $option->expects($this->once()) + ->method('isMultiSelection') + ->willReturn(true); + $option->expects($this->once()) + ->method('getProduct') + ->willReturn($product); + $option->expects($this->once()) + ->method('getValue') + ->willReturn(4); + $option->expects($this->once()) + ->method('getTitle') + ->willReturn('Title for option'); + $buyRequest->expects($this->once()) + ->method('getBundleOptionQty') + ->willReturn([3 => 5]); + $priceModel->expects($this->once()) + ->method('getSelectionFinalTotalPrice') + ->willReturnSelf(); + $productType->expects($this->once()) + ->method('prepareForCart') + ->willReturn('string'); + + $this->priceCurrency->expects($this->once()) + ->method('convert') + ->willReturn(3.14); + + $result = $this->model->prepareForCartAdvanced($buyRequest, $product); + $this->assertEquals('string', $result); + } + + /** + * @return void + * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + */ + public function testPrepareForCartAdvancedWithoutSelections() + { + /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ + $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) + ->setMethods( + ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + [ + '__wakeup', + 'getOptions', + 'getSuperProductConfig', + 'unsetData', + 'getData', + 'getQty', + 'getBundleOption', + 'getBundleOptionQty' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ + $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) + ->setMethods(['groupFactory', 'getType', 'getId', 'getRequired', 'isMultiSelection']) + ->disableOriginalConstructor() + ->getMock(); + + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods( + [ + 'getOptions', + 'getHasOptions', + 'prepareCustomOptions', + 'addCustomOption', + 'setCartQty', + 'setQty', + 'getSkipCheckRequiredOption', + 'getTypeInstance', + 'getStoreId', + 'hasData', + 'getData', + 'getId' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ + $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) + ->setMethods(['setStoreFilter']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ + $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) + ->setMethods(['getItems', 'getItemById', 'appendSelections']) + ->disableOriginalConstructor() + ->getMock(); + + $this->parentClass($group, $option, $buyRequest, $product); + + $product->expects($this->any()) + ->method('getSkipCheckRequiredOption') + ->willReturn(true); + $product->expects($this->once()) + ->method('getTypeInstance') + ->willReturn($productType); + $product->expects($this->once()) + ->method('hasData') + ->willReturn(true); + $product->expects($this->any()) + ->method('getData') + ->willReturnCallback( + function ($key) use ($optionCollection) { + $resultValue = null; + switch ($key) { + case '_cache_instance_options_collection': + $resultValue = $optionCollection; + break; + } + + return $resultValue; + } + ); + $product->expects($this->once()) + ->method('getId') + ->willReturn(333); + $productType->expects($this->once()) + ->method('setStoreFilter'); + $buyRequest->expects($this->once()) + ->method('getBundleOption') + ->willReturn([]); + $buyRequest->expects($this->once()) + ->method('getBundleOptionQty') + ->willReturn([3 => 5]); + + $result = $this->model->prepareForCartAdvanced($buyRequest, $product, 'single'); + $this->assertEquals([$product], $result); + } + + /** + * @return void + * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + */ + public function testPrepareForCartAdvancedSelectionsSelectionIdsExists() + { + /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ + $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) + ->setMethods( + ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + ['__wakeup', 'getOptions', 'getSuperProductConfig', 'unsetData', 'getData', 'getQty', 'getBundleOption'] + ) + ->disableOriginalConstructor() + ->getMock(); + /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ + $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) + ->setMethods(['groupFactory', 'getType', 'getId', 'getRequired', 'isMultiSelection']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ + $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) + ->setMethods(['getItems']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $selection = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods(['__wakeup', 'isSalable', 'getOptionId']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods( + [ + 'getOptions', + 'getHasOptions', + 'prepareCustomOptions', + 'addCustomOption', + 'setCartQty', + 'setQty', + 'getSkipCheckRequiredOption', + 'getTypeInstance', + 'getStoreId', + 'hasData', + 'getData' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ + $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) + ->setMethods(['setStoreFilter']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ + $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) + ->setMethods(['getItems', 'getItemById', 'appendSelections']) + ->disableOriginalConstructor() + ->getMock(); + + $this->parentClass($group, $option, $buyRequest, $product); + + $product->expects($this->any()) + ->method('getSkipCheckRequiredOption') + ->willReturn(true); + $product->expects($this->once()) + ->method('getTypeInstance') + ->willReturn($productType); + $product->expects($this->once()) + ->method('hasData') + ->willReturn(true); + $product->expects($this->any()) + ->method('getData') + ->willReturnCallback( + function ($key) use ($optionCollection, $selectionCollection) { + $resultValue = null; + switch ($key) { + case '_cache_instance_options_collection': + $resultValue = $optionCollection; + break; + case '_cache_instance_used_selections': + $resultValue = $selectionCollection; + break; + case '_cache_instance_used_selections_ids': + $resultValue = [5]; + break; + } + + return $resultValue; + } + ); + $optionCollection->expects($this->once()) + ->method('appendSelections'); + $productType->expects($this->once()) + ->method('setStoreFilter'); + $buyRequest->expects($this->once()) + ->method('getBundleOption') + ->willReturn([3 => 5]); + $selectionCollection->expects($this->at(0)) + ->method('getItems') + ->willReturn([$selection]); + $selectionCollection->expects($this->at(1)) + ->method('getItems') + ->willReturn([]); + $option->expects($this->any()) + ->method('getId') + ->willReturn(3); + + $result = $this->model->prepareForCartAdvanced($buyRequest, $product); + $this->assertEquals('Please specify product option(s).', $result); + } + + /** + * @return void + * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + */ + public function testPrepareForCartAdvancedSelectRequiredOptions() + { + /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ + $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) + ->setMethods( + ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + ['__wakeup', 'getOptions', 'getSuperProductConfig', 'unsetData', 'getData', 'getQty', 'getBundleOption'] + ) + ->disableOriginalConstructor() + ->getMock(); + /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ + $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) + ->setMethods(['groupFactory', 'getType', 'getId', 'getRequired', 'isMultiSelection']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|SelectionCollection $selectionCollection */ + $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) + ->setMethods(['getItems']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $selection = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods(['__wakeup', 'isSalable', 'getOptionId']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods( + [ + 'getOptions', + 'getHasOptions', + 'prepareCustomOptions', + 'addCustomOption', + 'setCartQty', + 'setQty', + 'getSkipCheckRequiredOption', + 'getTypeInstance', + 'getStoreId', + 'hasData', + 'getData' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ + $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) + ->setMethods(['setStoreFilter']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ + $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) + ->setMethods(['getItems', 'getItemById']) + ->disableOriginalConstructor() + ->getMock(); + + $this->parentClass($group, $option, $buyRequest, $product); + + $product->expects($this->any()) + ->method('getSkipCheckRequiredOption') + ->willReturn(true); + $product->expects($this->once()) + ->method('getTypeInstance') + ->willReturn($productType); + $product->expects($this->once()) + ->method('hasData') + ->willReturn(true); + $product->expects($this->any()) + ->method('getData') + ->willReturnCallback( + function ($key) use ($optionCollection, $selectionCollection) { + $resultValue = null; + switch ($key) { + case '_cache_instance_options_collection': + $resultValue = $optionCollection; + break; + case '_cache_instance_used_selections': + $resultValue = $selectionCollection; + break; + case '_cache_instance_used_selections_ids': + $resultValue = [0 => 5]; + break; + } + + return $resultValue; + } + ); + $optionCollection->expects($this->once()) + ->method('getItemById') + ->willReturn($option); + $productType->expects($this->once()) + ->method('setStoreFilter'); + $buyRequest->expects($this->once()) + ->method('getBundleOption') + ->willReturn([3 => 5]); + $selectionCollection->expects($this->any()) + ->method('getItems') + ->willReturn([$selection]); + $selection->expects($this->once()) + ->method('isSalable') + ->willReturn(false); + $option->expects($this->at(3)) + ->method('getId') + ->willReturn(3); + $option->expects($this->once()) + ->method('getRequired') + ->willReturn(true); + $option->expects($this->once()) + ->method('isMultiSelection') + ->willReturn(true); + + $result = $this->model->prepareForCartAdvanced($buyRequest, $product); + $this->assertEquals('The required options you selected are not available.', $result); + } + + /** + * @return void + */ + public function testPrepareForCartAdvancedParentClassReturnString() + { + $exceptedResult = 'String message'; + + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods(['getItems', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods( + [ + 'getOptions', + 'getHasOptions' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + $product->expects($this->any()) + ->method('getOptions') + ->willThrowException(new LocalizedException(__($exceptedResult))); + $product->expects($this->once()) + ->method('getHasOptions') + ->willReturn(true); + + $result = $this->model->prepareForCartAdvanced($buyRequest, $product); + + $this->assertEquals($exceptedResult, $result); + } + + /** + * @return void + */ + public function testPrepareForCartAdvancedAllrequiredOption() + { + /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ + $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) + ->setMethods( + ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + ['__wakeup', 'getOptions', 'getSuperProductConfig', 'unsetData', 'getData', 'getQty', 'getBundleOption'] + ) + ->disableOriginalConstructor() + ->getMock(); + /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ + $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) + ->setMethods(['groupFactory', 'getType', 'getId', 'getRequired']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods( + [ + 'getOptions', + 'getHasOptions', + 'prepareCustomOptions', + 'addCustomOption', + 'setCartQty', + 'setQty', + 'getSkipCheckRequiredOption', + 'getTypeInstance', + 'getStoreId', + 'hasData', + 'getData' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Bundle\Model\Product\Type $productType */ + $productType = $this->getMockBuilder(\Magento\Bundle\Model\Product\Type::class) + ->setMethods(['setStoreFilter']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|Collection $optionCollection */ + $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) + ->setMethods(['getItems']) + ->disableOriginalConstructor() + ->getMock(); + + $this->parentClass($group, $option, $buyRequest, $product); + + $product->expects($this->any()) + ->method('getSkipCheckRequiredOption') + ->willReturn(false); + $product->expects($this->once()) + ->method('getTypeInstance') + ->willReturn($productType); + $product->expects($this->once()) + ->method('hasData') + ->willReturn(true); + $product->expects($this->any()) + ->method('getData') + ->willReturnCallback( + function ($key) use ($optionCollection) { + $resultValue = null; + switch ($key) { + case '_cache_instance_options_collection': + $resultValue = $optionCollection; + break; + case '_cache_instance_used_selections_ids': + $resultValue = [0 => 5]; + break; + } + + return $resultValue; + } + ); + $optionCollection->expects($this->once()) + ->method('getItems') + ->willReturn([$option]); + $productType->expects($this->once()) + ->method('setStoreFilter'); + $buyRequest->expects($this->once()) + ->method('getBundleOption') + ->willReturn([3 => 5]); + $option->expects($this->at(3)) + ->method('getId') + ->willReturn(3); + $option->expects($this->once()) + ->method('getRequired') + ->willReturn(true); + + $result = $this->model->prepareForCartAdvanced($buyRequest, $product); + $this->assertEquals('Please select all required options.', $result); + } + + /** + * @return void + */ + public function testPrepareForCartAdvancedSpecifyProductOptions() + { + /** @var \PHPUnit_Framework_MockObject_MockObject|DefaultType $group */ + $group = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\Type\DefaultType::class) + ->setMethods( + ['setOption', 'setProduct', 'setRequest', 'setProcessMode', 'validateUserValue', 'prepareForCart'] + ) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest */ + $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods( + ['__wakeup', 'getOptions', 'getSuperProductConfig', 'unsetData', 'getData', 'getQty', 'getBundleOption'] + ) + ->disableOriginalConstructor() + ->getMock(); + /* @var $option \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option */ + $option = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option::class) + ->setMethods(['groupFactory', 'getType', 'getId']) + ->disableOriginalConstructor() + ->getMock(); + /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product */ + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods( + [ + 'getOptions', + 'getHasOptions', + 'prepareCustomOptions', + 'addCustomOption', + 'setCartQty', + 'setQty', + 'getSkipCheckRequiredOption' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + + $this->parentClass($group, $option, $buyRequest, $product); + + $product->expects($this->once()) + ->method('getSkipCheckRequiredOption') + ->willReturn(true); + $buyRequest->expects($this->once()) + ->method('getBundleOption') + ->willReturn([0, '', 'str']); + + $result = $this->model->prepareForCartAdvanced($buyRequest, $product); + $this->assertEquals('Please specify product option(s).', $result); + } + + /** + * @return void + */ + public function testHasWeightTrue() + { + $this->assertTrue($this->model->hasWeight(), 'This product has no weight, but it should'); + } + + /** + * @return void + */ + public function testGetIdentities() + { + $identities = ['id1', 'id2']; + $productMock = $this->getMock(\Magento\Catalog\Model\Product::class, [], [], '', false); + $optionMock = $this->getMock( + \Magento\Bundle\Model\Option::class, + ['getSelections', '__wakeup'], + [], + '', + false + ); + $optionCollectionMock = $this->getMock( + \Magento\Bundle\Model\ResourceModel\Option\Collection::class, + [], + [], + '', + false + ); + $cacheKey = '_cache_instance_options_collection'; + $productMock->expects($this->once()) + ->method('getIdentities') + ->will($this->returnValue($identities)); + $productMock->expects($this->once()) + ->method('hasData') + ->with($cacheKey) + ->will($this->returnValue(true)); + $productMock->expects($this->once()) + ->method('getData') + ->with($cacheKey) + ->will($this->returnValue($optionCollectionMock)); + $optionCollectionMock + ->expects($this->once()) + ->method('getItems') + ->will($this->returnValue([$optionMock])); + $optionMock + ->expects($this->exactly(2)) + ->method('getSelections') + ->will($this->returnValue([$productMock])); + $this->assertEquals($identities, $this->model->getIdentities($productMock)); + } + + /** + * @return void + */ + public function testGetSkuWithType() + { + $sku = 'sku'; + $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->disableOriginalConstructor() + ->getMock(); + $productMock->expects($this->at(0)) + ->method('getData') + ->with('sku') + ->will($this->returnValue($sku)); + $productMock->expects($this->at(2)) + ->method('getData') + ->with('sku_type') + ->will($this->returnValue('some_data')); + + $this->assertEquals($sku, $this->model->getSku($productMock)); + } + + /** + * @return void + */ + public function testGetSkuWithoutType() + { + $sku = 'sku'; + $itemSku = 'item'; + $selectionIds = [1, 2, 3]; + $serializeIds = serialize($selectionIds); + $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods(['__wakeup', 'getData', 'hasCustomOptions', 'getCustomOption']) + ->disableOriginalConstructor() + ->getMock(); + $customOptionMock = $this->getMockBuilder(\Magento\Catalog\Model\Product\Configuration\Item\Option::class) + ->setMethods(['getValue', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + $selectionItemMock = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods(['getSku', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + + $productMock->expects($this->at(0)) + ->method('getData') + ->with('sku') + ->will($this->returnValue($sku)); + $productMock->expects($this->at(1)) + ->method('getCustomOption') + ->with('option_ids') + ->will($this->returnValue(false)); + $productMock->expects($this->at(2)) + ->method('getData') + ->with('sku_type') + ->will($this->returnValue(null)); + $productMock->expects($this->once()) + ->method('hasCustomOptions') + ->will($this->returnValue(true)); + $productMock->expects($this->at(4)) + ->method('getCustomOption') + ->with('bundle_selection_ids') + ->will($this->returnValue($customOptionMock)); + $customOptionMock->expects($this->any()) + ->method('getValue') + ->will($this->returnValue($serializeIds)); + $selectionMock = $this->getSelectionsByIdsMock($selectionIds, $productMock, 5, 6); + $selectionMock->expects(($this->any())) + ->method('getItems') + ->will($this->returnValue([$selectionItemMock])); + $selectionItemMock->expects($this->any()) + ->method('getSku') + ->will($this->returnValue($itemSku)); + + $this->assertEquals($sku . '-' . $itemSku, $this->model->getSku($productMock)); + } + + /** + * @return void + */ + public function testGetWeightWithoutCustomOption() + { + $weight = 5; + $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods(['__wakeup', 'getData']) + ->disableOriginalConstructor() + ->getMock(); + + $productMock->expects($this->at(0)) + ->method('getData') + ->with('weight_type') + ->will($this->returnValue(true)); + $productMock->expects($this->at(1)) + ->method('getData') + ->with('weight') + ->will($this->returnValue($weight)); + + $this->assertEquals($weight, $this->model->getWeight($productMock)); + } + + /** + * @return void + */ + public function testGetWeightWithCustomOption() + { + $weight = 5; + $selectionIds = [1, 2, 3]; + $serializeIds = serialize($selectionIds); + $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods(['__wakeup', 'getData', 'hasCustomOptions', 'getCustomOption']) + ->disableOriginalConstructor() + ->getMock(); + $customOptionMock = $this->getMockBuilder(\Magento\Catalog\Model\Product\Configuration\Item\Option::class) + ->setMethods(['getValue', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + $selectionItemMock = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods(['getSelectionId', 'getWeight', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + + $productMock->expects($this->at(0)) + ->method('getData') + ->with('weight_type') + ->will($this->returnValue(false)); + $productMock->expects($this->once()) + ->method('hasCustomOptions') + ->will($this->returnValue(true)); + $productMock->expects($this->at(2)) + ->method('getCustomOption') + ->with('bundle_selection_ids') + ->will($this->returnValue($customOptionMock)); + $customOptionMock->expects($this->once()) + ->method('getValue') + ->will($this->returnValue($serializeIds)); + $selectionMock = $this->getSelectionsByIdsMock($selectionIds, $productMock, 3, 4); + $selectionMock->expects($this->once()) + ->method('getItems') + ->will($this->returnValue([$selectionItemMock])); + $selectionItemMock->expects($this->any()) + ->method('getSelectionId') + ->will($this->returnValue('id')); + $productMock->expects($this->at(5)) + ->method('getCustomOption') + ->with('selection_qty_' . 'id') + ->will($this->returnValue(null)); + $selectionItemMock->expects($this->once()) + ->method('getWeight') + ->will($this->returnValue($weight)); + + $this->assertEquals($weight, $this->model->getWeight($productMock)); + } + + /** + * @return void + */ + public function testGetWeightWithSeveralCustomOption() + { + $weight = 5; + $qtyOption = 5; + $selectionIds = [1, 2, 3]; + $serializeIds = serialize($selectionIds); + $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods(['__wakeup', 'getData', 'hasCustomOptions', 'getCustomOption']) + ->disableOriginalConstructor() + ->getMock(); + $customOptionMock = $this->getMockBuilder(\Magento\Catalog\Model\Product\Configuration\Item\Option::class) + ->setMethods(['getValue', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + $qtyOptionMock = $this->getMockBuilder(\Magento\Catalog\Model\Product\Configuration\Item\Option::class) + ->setMethods(['getValue', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + $selectionItemMock = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods(['getSelectionId', 'getWeight', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + + $productMock->expects($this->at(0)) + ->method('getData') + ->with('weight_type') + ->will($this->returnValue(false)); + $productMock->expects($this->once()) + ->method('hasCustomOptions') + ->will($this->returnValue(true)); + $productMock->expects($this->at(2)) + ->method('getCustomOption') + ->with('bundle_selection_ids') + ->will($this->returnValue($customOptionMock)); + $customOptionMock->expects($this->once()) + ->method('getValue') + ->will($this->returnValue($serializeIds)); + $selectionMock = $this->getSelectionsByIdsMock($selectionIds, $productMock, 3, 4); + $selectionMock->expects($this->once()) + ->method('getItems') + ->will($this->returnValue([$selectionItemMock])); + $selectionItemMock->expects($this->any()) + ->method('getSelectionId') + ->will($this->returnValue('id')); + $productMock->expects($this->at(5)) + ->method('getCustomOption') + ->with('selection_qty_' . 'id') + ->will($this->returnValue($qtyOptionMock)); + $qtyOptionMock->expects($this->once()) + ->method('getValue') + ->will($this->returnValue($qtyOption)); + $selectionItemMock->expects($this->once()) + ->method('getWeight') + ->will($this->returnValue($weight)); + + $this->assertEquals($weight * $qtyOption, $this->model->getWeight($productMock)); + } + + /** + * @return void + */ + public function testIsVirtualWithoutCustomOption() + { + $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->disableOriginalConstructor() + ->getMock(); + + $productMock->expects($this->once()) + ->method('hasCustomOptions') + ->will($this->returnValue(false)); + + $this->assertFalse($this->model->isVirtual($productMock)); + } + + /** + * @return void + */ + public function testIsVirtual() + { + $selectionIds = [1, 2, 3]; + $serializeIds = serialize($selectionIds); + + $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->disableOriginalConstructor() + ->getMock(); + $customOptionMock = $this->getMockBuilder(\Magento\Catalog\Model\Product\Configuration\Item\Option::class) + ->setMethods(['getValue', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + $selectionItemMock = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->setMethods(['isVirtual', 'getItems', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + + $productMock->expects($this->once()) + ->method('hasCustomOptions') + ->will($this->returnValue(true)); + $productMock->expects($this->once()) + ->method('getCustomOption') + ->with('bundle_selection_ids') + ->will($this->returnValue($customOptionMock)); + $customOptionMock->expects($this->once()) + ->method('getValue') + ->will($this->returnValue($serializeIds)); + $selectionMock = $this->getSelectionsByIdsMock($selectionIds, $productMock, 2, 3); + $selectionMock->expects($this->once()) + ->method('getItems') + ->will($this->returnValue([$selectionItemMock])); + $selectionItemMock->expects($this->once()) + ->method('isVirtual') + ->will($this->returnValue(true)); + $selectionItemMock->expects($this->once()) + ->method('isVirtual') + ->will($this->returnValue(true)); + $selectionMock->expects($this->once()) + ->method('count') + ->will($this->returnValue(1)); + + $this->assertTrue($this->model->isVirtual($productMock)); + } + + /** + * @param array $selectionIds + * @param \PHPUnit_Framework_MockObject_MockObject $productMock + * @param int $getSelectionsIndex + * @param int $getSelectionsIdsIndex + * @return \PHPUnit_Framework_MockObject_MockObject + */ + + protected function getSelectionsByIdsMock($selectionIds, $productMock, $getSelectionsIndex, $getSelectionsIdsIndex) + { + $usedSelectionsMock = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) + ->disableOriginalConstructor() + ->getMock(); + + $productMock->expects($this->at($getSelectionsIndex)) + ->method('getData') + ->with('_cache_instance_used_selections') + ->will($this->returnValue($usedSelectionsMock)); + $productMock->expects($this->at($getSelectionsIdsIndex)) + ->method('getData') + ->with('_cache_instance_used_selections_ids') + ->will($this->returnValue($selectionIds)); + + return $usedSelectionsMock; + } + + /** + * @param int $expected + * @param int $firstId + * @param int $secondId + * @return void + * @dataProvider shakeSelectionsDataProvider + */ + public function testShakeSelections($expected, $firstId, $secondId) + { + $firstItemMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods(['__wakeup', 'getOption', 'getOptionId', 'getPosition', 'getSelectionId']) + ->disableOriginalConstructor() + ->getMock(); + $secondItemMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods(['__wakeup', 'getOption', 'getOptionId', 'getPosition', 'getSelectionId']) + ->disableOriginalConstructor() + ->getMock(); + $optionFirstMock = $this->getMockBuilder(\Magento\Bundle\Model\Option::class) + ->setMethods(['getPosition', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + $optionSecondMock = $this->getMockBuilder(\Magento\Bundle\Model\Option::class) + ->setMethods(['getPosition', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + + $firstItemMock->expects($this->once()) + ->method('getOption') + ->will($this->returnValue($optionFirstMock)); + $optionFirstMock->expects($this->once()) + ->method('getPosition') + ->will($this->returnValue('option_position')); + $firstItemMock->expects($this->once()) + ->method('getOptionId') + ->will($this->returnValue('option_id')); + $firstItemMock->expects($this->once()) + ->method('getPosition') + ->will($this->returnValue('position')); + $firstItemMock->expects($this->once()) + ->method('getSelectionId') + ->will($this->returnValue($firstId)); + $secondItemMock->expects($this->once()) + ->method('getOption') + ->will($this->returnValue($optionSecondMock)); + $optionSecondMock->expects($this->any()) + ->method('getPosition') + ->will($this->returnValue('option_position')); + $secondItemMock->expects($this->once()) + ->method('getOptionId') + ->will($this->returnValue('option_id')); + $secondItemMock->expects($this->once()) + ->method('getPosition') + ->will($this->returnValue('position')); + $secondItemMock->expects($this->once()) + ->method('getSelectionId') + ->will($this->returnValue($secondId)); + + $this->assertEquals($expected, $this->model->shakeSelections($firstItemMock, $secondItemMock)); + } + + /** + * @return array + */ + public function shakeSelectionsDataProvider() + { + return [ + [0, 0, 0], + [1, 1, 0], + [-1, 0, 1] + ]; + } + + /** + * @return void + * @SuppressWarnings(PHPMD.ExcessiveMethodLength) + */ + public function testGetSelectionsByIds() + { + $selectionIds = [1, 2, 3]; + $usedSelectionsIds = [4, 5, 6]; + $storeId = 2; + $websiteId = 1; + $storeFilter = 'store_filter'; + $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->disableOriginalConstructor() + ->getMock(); + $usedSelectionsMock = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) + ->setMethods( + [ + 'addAttributeToSelect', + 'setFlag', + 'addStoreFilter', + 'setStoreId', + 'setPositionOrder', + 'addFilterByRequiredOptions', + 'setSelectionIdsFilter', + 'joinPrices' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + $productGetMap = [ + ['_cache_instance_used_selections', null, null], + ['_cache_instance_used_selections_ids', null, $usedSelectionsIds], + ['_cache_instance_store_filter', null, $storeFilter], + ]; + $productMock->expects($this->any()) + ->method('getData') + ->will($this->returnValueMap($productGetMap)); + $productSetMap = [ + ['_cache_instance_used_selections', $usedSelectionsMock, $productMock], + ['_cache_instance_used_selections_ids', $selectionIds, $productMock], + ]; + $productMock->expects($this->any()) + ->method('setData') + ->will($this->returnValueMap($productSetMap)); + $productMock->expects($this->once()) + ->method('getStoreId') + ->will($this->returnValue($storeId)); + + $storeMock = $this->getMockBuilder(\Magento\Store\Model\Store::class) + ->setMethods(['getWebsiteId', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + $this->storeManager->expects($this->once()) + ->method('getStore') + ->with($storeId) + ->will($this->returnValue($storeMock)); + $storeMock->expects($this->once()) + ->method('getWebsiteId') + ->will($this->returnValue($websiteId)); + + $this->bundleCollection->expects($this->once()) + ->method('create') + ->will($this->returnValue($usedSelectionsMock)); + + $usedSelectionsMock->expects($this->once()) + ->method('addAttributeToSelect') + ->with('*') + ->will($this->returnSelf()); + $flagMap = [ + ['product_children', true, $usedSelectionsMock], + ]; + $usedSelectionsMock->expects($this->any()) + ->method('setFlag') + ->will($this->returnValueMap($flagMap)); + $usedSelectionsMock->expects($this->once()) + ->method('addStoreFilter') + ->with($storeFilter) + ->will($this->returnSelf()); + $usedSelectionsMock->expects($this->once()) + ->method('setStoreId') + ->with($storeId) + ->will($this->returnSelf()); + $usedSelectionsMock->expects($this->once()) + ->method('setPositionOrder') + ->will($this->returnSelf()); + $usedSelectionsMock->expects($this->once()) + ->method('addFilterByRequiredOptions') + ->will($this->returnSelf()); + $usedSelectionsMock->expects($this->once()) + ->method('setSelectionIdsFilter') + ->with($selectionIds) + ->will($this->returnSelf()); + + $usedSelectionsMock->expects($this->once()) + ->method('joinPrices') + ->with($websiteId) + ->will($this->returnSelf()); + + $this->catalogData->expects($this->once()) + ->method('isPriceGlobal') + ->will($this->returnValue(false)); + + $this->model->getSelectionsByIds($selectionIds, $productMock); + } + + /** + * @return void + */ + public function testGetOptionsByIds() + { + $optionsIds = [1, 2, 3]; + $usedOptionsIds = [4, 5, 6]; + $productId = 3; + $storeId = 2; + $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->disableOriginalConstructor() + ->getMock(); + $usedOptionsMock = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) + ->setMethods(['getResourceCollection']) + ->disableOriginalConstructor() + ->getMock(); + $resourceClassName = \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection::class; + $dbResourceMock = $this->getMockBuilder($resourceClassName) + ->setMethods(['setProductIdFilter', 'setPositionOrder', 'joinValues', 'setIdFilter']) + ->disableOriginalConstructor() + ->getMock(); + $storeMock = $this->getMockBuilder(\Magento\Store\Model\Store::class) + ->setMethods(['getId', '__wakeup']) + ->disableOriginalConstructor() + ->getMock(); + + $productMock->expects($this->at(0)) + ->method('getData') + ->with('_cache_instance_used_options') + ->will($this->returnValue(null)); + $productMock->expects($this->at(1)) + ->method('getData') + ->with('_cache_instance_used_options_ids') + ->will($this->returnValue($usedOptionsIds)); + $productMock->expects($this->once()) + ->method('getId') + ->will($this->returnValue($productId)); + $this->bundleOptionFactory->expects($this->once()) + ->method('create') + ->will($this->returnValue($usedOptionsMock)); + $usedOptionsMock->expects($this->once()) + ->method('getResourceCollection') + ->will($this->returnValue($dbResourceMock)); + $dbResourceMock->expects($this->once()) + ->method('setProductIdFilter') + ->with($productId) + ->will($this->returnSelf()); + $dbResourceMock->expects($this->once()) + ->method('setPositionOrder') + ->will($this->returnSelf()); + $this->storeManager->expects($this->once()) + ->method('getStore') + ->will($this->returnValue($storeMock)); + $storeMock->expects($this->once()) + ->method('getId') + ->will($this->returnValue($storeId)); + $dbResourceMock->expects($this->once()) + ->method('joinValues') + ->will($this->returnSelf()); + $dbResourceMock->expects($this->once()) + ->method('setIdFilter') + ->with($optionsIds) + ->will($this->returnSelf()); + $productMock->expects($this->at(3)) + ->method('setData') + ->with('_cache_instance_used_options', $dbResourceMock) + ->will($this->returnSelf()); + $productMock->expects($this->at(4)) + ->method('setData') + ->with('_cache_instance_used_options_ids', $optionsIds) + ->will($this->returnSelf()); + + $this->model->getOptionsByIds($optionsIds, $productMock); + } + + /** + * @return void + */ + public function testIsSalableFalse() + { + $product = new \Magento\Framework\DataObject( + [ + 'is_salable' => false, + 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED + ] + ); + + $this->assertFalse($this->model->isSalable($product)); + } + + /** + * @return void + */ + public function testIsSalableWithoutOptions() + { + $optionCollectionMock = $this->getOptionCollectionMock([]); + $product = new \Magento\Framework\DataObject( + [ + 'is_salable' => true, + '_cache_instance_options_collection' => $optionCollectionMock, + 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED + ] + ); + + $this->assertFalse($this->model->isSalable($product)); + } + + /** + * @return void + */ + public function testIsSalableWithRequiredOptionsTrue() + { + $option1 = $this->getRequiredOptionMock(10, 10); + $option2 = $this->getRequiredOptionMock(20, 10); + + $option3 = $this->getMockBuilder(\Magento\Bundle\Model\Option::class) + ->setMethods(['getRequired', 'getOptionId', 'getId']) + ->disableOriginalConstructor() + ->getMock(); + $option3->method('getRequired') + ->willReturn(false); + $option3->method('getOptionId') + ->willReturn(30); + $option3->method('getId') + ->willReturn(30); + + $optionCollectionMock = $this->getOptionCollectionMock([$option1, $option2, $option3]); + $selectionCollectionMock = $this->getSelectionCollectionMock([$option1, $option2]); + $this->bundleCollection->expects($this->atLeastOnce()) + ->method('create') + ->will($this->returnValue($selectionCollectionMock)); + + $product = new \Magento\Framework\DataObject( + [ + 'is_salable' => true, + '_cache_instance_options_collection' => $optionCollectionMock, + 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED, + ] + ); + + $this->assertTrue($this->model->isSalable($product)); + } + + /** + * @return void + */ + public function testIsSalableCache() + { + $product = new \Magento\Framework\DataObject( + [ + 'is_salable' => true, + 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED, + 'all_items_salable' => true + ] + ); + + $this->assertTrue($this->model->isSalable($product)); + } + + /** + * @return void + */ + public function testIsSalableWithEmptySelectionsCollection() + { + $option = $this->getRequiredOptionMock(1, 10); + $optionCollectionMock = $this->getOptionCollectionMock([$option]); + $selectionCollectionMock = $this->getSelectionCollectionMock([]); + + $this->bundleCollection->expects($this->once()) + ->method('create') + ->will($this->returnValue($selectionCollectionMock)); + + $product = new \Magento\Framework\DataObject( + [ + 'is_salable' => true, + '_cache_instance_options_collection' => $optionCollectionMock, + 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED, + ] + ); + + $this->assertFalse($this->model->isSalable($product)); + } + + /** + * @return void + */ + public function nottestIsSalableWithRequiredOptionsOutOfStock() + { + $option1 = $this->getRequiredOptionMock(10, 10); + $option1 + ->expects($this->atLeastOnce()) + ->method('getSelectionCanChangeQty') + ->willReturn(false); + + $option2 = $this->getRequiredOptionMock(20, 10); + $option2 + ->expects($this->atLeastOnce()) + ->method('getSelectionCanChangeQty') + ->willReturn(false); + + $this->stockRegistry->method('getStockItem') + ->willReturn($this->getStockItem(true)); + $this->stockState + ->method('getStockQty') + ->will( + $this->returnValueMap( + [ + [10, 10], + [20, 5] + ] + ) + ); + + $optionCollectionMock = $this->getOptionCollectionMock([$option1, $option2]); + $selectionCollectionMock = $this->getSelectionCollectionMock([$option1, $option2]); + $this->bundleCollection->expects($this->once()) + ->method('create') + ->will($this->returnValue($selectionCollectionMock)); + + $product = new \Magento\Framework\DataObject( + [ + 'is_salable' => true, + '_cache_instance_options_collection' => $optionCollectionMock, + 'status' => \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED, + ] + ); + + $this->assertFalse($this->model->isSalable($product)); + } + + /** + * @param int $id + * @param int $selectionQty + * @return \PHPUnit_Framework_MockObject_MockObject + */ + private function getRequiredOptionMock($id, $selectionQty) + { + $option = $this->getMockBuilder(\Magento\Bundle\Model\Option::class) + ->setMethods( + [ + 'getRequired', + 'isSalable', + 'hasSelectionQty', + 'getSelectionQty', + 'getOptionId', + 'getId', + 'getSelectionCanChangeQty' + ] + ) + ->disableOriginalConstructor() + ->getMock(); + $option->method('getRequired') + ->willReturn(true); + $option->method('isSalable') + ->willReturn(true); + $option->method('hasSelectionQty') + ->willReturn(true); + $option->method('getSelectionQty') + ->willReturn($selectionQty); + $option->method('getOptionId') + ->willReturn($id); + $option->method('getSelectionCanChangeQty') + ->willReturn(false); + $option->method('getId') + ->willReturn($id); + + return $option; + } + + /** + * @param array $selectedOptions + * @return \PHPUnit_Framework_MockObject_MockObject + */ + private function getSelectionCollectionMock(array $selectedOptions) + { + $selectionCollectionMock = $this->getMockBuilder( + \Magento\Bundle\Model\ResourceModel\Selection\Collection::class + ) + ->disableOriginalConstructor() + ->getMock(); + + $selectionCollectionMock + ->expects($this->any()) + ->method('getItems') + ->willReturn($selectedOptions); + + $selectionCollectionMock + ->expects($this->any()) + ->method('getIterator') + ->willReturn(new \ArrayIterator($selectedOptions)); + + return $selectionCollectionMock; + } + + /** + * @param array $options + * @return \PHPUnit_Framework_MockObject_MockObject + */ + private function getOptionCollectionMock(array $options) + { + $ids = []; + foreach ($options as $option) { + $ids[] = $option->getId(); + } + + $optionCollectionMock = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) + ->setMethods(['getItems', 'getAllIds']) + ->disableOriginalConstructor() + ->getMock(); + + $optionCollectionMock + ->expects($this->any()) + ->method('getItems') + ->willReturn($options); + + $optionCollectionMock + ->expects($this->any()) + ->method('getAllIds') + ->willReturn($ids); + + return $optionCollectionMock; + } + + /** + * @param bool $isManageStock + * @return \Magento\CatalogInventory\Api\Data\StockItemInterface|\PHPUnit_Framework_MockObject_MockObject + */ + protected function getStockItem($isManageStock) + { + $result = $this->getMockBuilder(\Magento\CatalogInventory\Api\Data\StockItemInterface::class) + ->getMock(); + $result->method('getManageStock') + ->willReturn($isManageStock); + + return $result; + } + + /** + * @param \PHPUnit_Framework_MockObject_MockObject|DefaultType $group + * @param \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product\Option $option + * @param \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\DataObject $buyRequest + * @param \PHPUnit_Framework_MockObject_MockObject|\Magento\Catalog\Model\Product $product + * @return void + */ + protected function parentClass($group, $option, $buyRequest, $product) + { + $group->expects($this->once()) + ->method('setOption') + ->willReturnSelf(); + $group->expects($this->once()) + ->method('setProduct') + ->willReturnSelf(); + $group->expects($this->once()) + ->method('setRequest') + ->willReturnSelf(); + $group->expects($this->once()) + ->method('setProcessMode') + ->willReturnSelf(); + $group->expects($this->once()) + ->method('validateUserValue') + ->willReturnSelf(); + $group->expects($this->once()) + ->method('prepareForCart') + ->willReturn('someString'); + + $option->expects($this->once()) + ->method('getType'); + $option->expects($this->once()) + ->method('groupFactory') + ->willReturn($group); + $option->expects($this->at(0)) + ->method('getId') + ->willReturn(333); + + $buyRequest->expects($this->once()) + ->method('getData'); + $buyRequest->expects($this->once()) + ->method('getOptions'); + $buyRequest->expects($this->once()) + ->method('getSuperProductConfig') + ->willReturn([]); + $buyRequest->expects($this->any()) + ->method('unsetData') + ->willReturnSelf(); + $buyRequest->expects($this->any()) + ->method('getQty'); + + $product->expects($this->once()) + ->method('getOptions') + ->willReturn([$option]); + $product->expects($this->once()) + ->method('getHasOptions') + ->willReturn(true); + $product->expects($this->once()) + ->method('prepareCustomOptions'); + $product->expects($this->any()) + ->method('addCustomOption') + ->willReturnSelf(); + $product->expects($this->any()) + ->method('setCartQty') + ->willReturnSelf(); + $product->expects($this->once()) + ->method('setQty'); + + $this->catalogProduct->expects($this->once()) + ->method('getSkipSaleableCheck') + ->willReturn(false); + } + + public function testGetSelectionsCollection() + { + $optionIds = [1, 2, 3]; + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->disableOriginalConstructor() + ->setMethods( + [ + '_wakeup', + 'getStoreId', + 'getData', + 'hasData', + 'setData', + 'getId' + ] + ) + ->getMock(); + $store = $this->getMockBuilder(\Magento\Store\Model\Store::class) + ->disableOriginalConstructor() + ->setMethods(['getWebsiteId']) + ->getMock(); + + $product->expects($this->once())->method('getStoreId')->willReturn('store_id'); + $selectionCollection = $this->getSelectionCollection(); + $this->bundleCollection->expects($this->once())->method('create')->willReturn($selectionCollection); + $this->storeManager->expects($this->once())->method('getStore')->willReturn($store); + $store->expects($this->once())->method('getWebsiteId')->willReturn('website_id'); + $selectionCollection->expects($this->any())->method('joinPrices')->with('website_id')->willReturnSelf(); + + $this->assertEquals($selectionCollection, $this->model->getSelectionsCollection($optionIds, $product)); + } + + /** + * @return \PHPUnit_Framework_MockObject_MockObject + */ + private function getSelectionCollection() + { + $selectionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class) + ->disableOriginalConstructor() + ->getMock(); + $selectionCollection->expects($this->any())->method('addAttributeToSelect')->willReturnSelf(); + $selectionCollection->expects($this->any())->method('setFlag')->willReturnSelf(); + $selectionCollection->expects($this->any())->method('setPositionOrder')->willReturnSelf(); + $selectionCollection->expects($this->any())->method('addStoreFilter')->willReturnSelf(); + $selectionCollection->expects($this->any())->method('setStoreId')->willReturnSelf(); + $selectionCollection->expects($this->any())->method('addFilterByRequiredOptions')->willReturnSelf(); + $selectionCollection->expects($this->any())->method('setOptionIdsFilter')->willReturnSelf(); + $selectionCollection->expects($this->any())->method('addPriceData')->willReturnSelf(); + $selectionCollection->expects($this->any())->method('addTierPriceData')->willReturnSelf(); + + return $selectionCollection; + } + + public function testProcessBuyRequest() + { + $result = ['bundle_option' => [], 'bundle_option_qty' => []]; + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->disableOriginalConstructor() + ->getMock(); + $buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->disableOriginalConstructor() + ->setMethods(['getBundleOption', 'getBundleOptionQty']) + ->getMock(); + + $buyRequest->expects($this->once())->method('getBundleOption')->willReturn('bundleOption'); + $buyRequest->expects($this->once())->method('getBundleOptionQty')->willReturn('optionId'); + + $this->assertEquals($result, $this->model->processBuyRequest($product, $buyRequest)); + } + + public function testGetProductsToPurchaseByReqGroups() + { + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->disableOriginalConstructor() + ->getMock(); + $resourceClassName = \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection::class; + $dbResourceMock = $this->getMockBuilder($resourceClassName) + ->setMethods(['getItems']) + ->disableOriginalConstructor() + ->getMock(); + $item = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->disableOriginalConstructor() + ->setMethods(['getId', 'getRequired']) + ->getMock(); + $selectionCollection = $this->getSelectionCollection(); + $this->bundleCollection->expects($this->once())->method('create')->willReturn($selectionCollection); + + $selectionItem = $this->getMockBuilder(\Magento\Framework\DataObject::class) + ->disableOriginalConstructor() + ->getMock(); + + $product->expects($this->any())->method('hasData')->willReturn(true); + $product->expects($this->at(1)) + ->method('getData') + ->with('_cache_instance_options_collection') + ->willReturn($dbResourceMock); + $dbResourceMock->expects($this->once())->method('getItems')->willReturn([$item]); + $item->expects($this->once())->method('getId')->willReturn('itemId'); + $item->expects($this->once())->method('getRequired')->willReturn(true); + + $selectionCollection + ->expects($this->any()) + ->method('getIterator') + ->willReturn(new \ArrayIterator([$selectionItem])); + $this->assertEquals([[$selectionItem]], $this->model->getProductsToPurchaseByReqGroups($product)); + } + + public function testGetSearchableData() + { + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->disableOriginalConstructor() + ->setMethods(['_wakeup', 'getHasOptions', 'getId', 'getStoreId']) + ->getMock(); + $option = $this->getMockBuilder(\Magento\Bundle\Model\Option::class) + ->disableOriginalConstructor() + ->setMethods(['getSearchableData']) + ->getMock(); + + $product->expects($this->once())->method('getHasOptions')->willReturn(false); + $product->expects($this->once())->method('getId')->willReturn('productId'); + $product->expects($this->once())->method('getStoreId')->willReturn('storeId'); + $this->bundleOptionFactory->expects($this->once())->method('create')->willReturn($option); + $option->expects($this->once())->method('getSearchableData')->willReturn(['optionSearchdata']); + + $this->assertEquals(['optionSearchdata'], $this->model->getSearchableData($product)); + } + + public function testHasOptions() + { + $product = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->disableOriginalConstructor() + ->setMethods(['_wakeup', 'hasData', 'getData', 'setData', 'getId', 'getStoreId']) + ->getMock(); + $optionCollection = $this->getMockBuilder(\Magento\Bundle\Model\ResourceModel\Option\Collection::class) + ->disableOriginalConstructor() + ->setMethods(['getAllIds']) + ->getMock(); + $selectionCollection = $this->getSelectionCollection(); + $selectionCollection + ->expects($this->any()) + ->method('count') + ->willReturn(1); + $this->bundleCollection->expects($this->once())->method('create')->willReturn($selectionCollection); + + $product->expects($this->any())->method('getStoreId')->willReturn(0); + $product->expects($this->once()) + ->method('setData') + ->with('_cache_instance_store_filter', 0) + ->willReturnSelf(); + $product->expects($this->any())->method('hasData')->willReturn(true); + $product->expects($this->at(3)) + ->method('getData') + ->with('_cache_instance_options_collection') + ->willReturn($optionCollection); + $optionCollection->expects($this->once())->method('getAllIds')->willReturn(['ids']); + + $this->assertTrue($this->model->hasOptions($product)); + } + /** * Bundle product without options should not be possible to buy. * -- GitLab From b415bac2c52f69582d2a2e64a97ee7b768ceabad Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Fri, 9 Dec 2016 13:16:31 +0200 Subject: [PATCH 063/175] MAGETWO-61647: Detailed investigation for info_buyrequest field and extension points for its modifications - stabilization bamboo builds - changes after CR --- .../Magento/Bundle/Model/Product/Type.php | 3 -- .../CustomOptions/CustomOptionProcessor.php | 3 +- .../Attribute/Source/Countryofmanufacture.php | 24 +++++++++++---- .../Model/Product/Option/Type/Date.php | 24 ++++----------- .../Model/Product/Type/AbstractType.php | 3 +- .../CustomOptionProcessorTest.php | 16 +++++----- .../Model/Product/Type/ConfigurableTest.php | 15 ++++++---- .../Test/Unit/Model/Product/TypeTest.php | 10 ++++++- .../Unit/Model/Product/Type/GroupedTest.php | 30 +++++++++---------- app/code/Magento/Quote/Model/Quote/Item.php | 24 ++++----------- .../Quote/Model/Quote/Item/Updater.php | 3 +- .../Unit/Model/Quote/Item/UpdaterTest.php | 20 +++++++------ .../Quote/Test/Unit/Model/Quote/ItemTest.php | 18 +++++++---- .../Magento/Sales/Model/AdminOrder/Create.php | 24 ++++----------- app/code/Magento/Sales/Model/Order/Item.php | 24 ++++----------- app/code/Magento/Wishlist/Model/Item.php | 28 +++++------------ .../Model/Product/Type/AbstractTypeTest.php | 6 +++- .../Magento/Wishlist/Model/ItemTest.php | 6 ++-- 18 files changed, 129 insertions(+), 152 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php index fcf61a96725..418d7081ffe 100644 --- a/app/code/Magento/Bundle/Model/Product/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Type.php @@ -9,9 +9,7 @@ namespace Magento\Bundle\Model\Product; use Magento\Catalog\Api\ProductRepositoryInterface; -use Magento\Framework\App\ObjectManager; use Magento\Framework\Pricing\PriceCurrencyInterface; -use Magento\Framework\Serialize\SerializerInterface; /** * Bundle Type Model @@ -209,7 +207,6 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $this->priceCurrency = $priceCurrency; $this->_stockRegistry = $stockRegistry; $this->_stockState = $stockState; - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); parent::__construct( $catalogProductOption, $eavConfig, diff --git a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php index e127aa0970e..252c0bcb796 100644 --- a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php +++ b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php @@ -53,7 +53,8 @@ class CustomOptionProcessor implements CartItemProcessorInterface $this->productOptionFactory = $productOptionFactory; $this->extensionFactory = $extensionFactory; $this->customOptionFactory = $customOptionFactory; - $this->serializer = $serializer; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); } /** diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php index 2e21a6d8890..8bcf01ba3db 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php @@ -46,18 +46,15 @@ class Countryofmanufacture extends AbstractSource implements OptionSourceInterfa * @param \Magento\Directory\Model\CountryFactory $countryFactory * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Framework\App\Cache\Type\Config $configCacheType - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] */ public function __construct( \Magento\Directory\Model\CountryFactory $countryFactory, \Magento\Store\Model\StoreManagerInterface $storeManager, - \Magento\Framework\App\Cache\Type\Config $configCacheType, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\App\Cache\Type\Config $configCacheType ) { $this->_countryFactory = $countryFactory; $this->_storeManager = $storeManager; $this->_configCacheType = $configCacheType; - $this->serializer = $serializer; } /** @@ -69,15 +66,30 @@ class Countryofmanufacture extends AbstractSource implements OptionSourceInterfa { $cacheKey = 'COUNTRYOFMANUFACTURE_SELECT_STORE_' . $this->_storeManager->getStore()->getCode(); if ($cache = $this->_configCacheType->load($cacheKey)) { - $options = $this->serializer->unserialize($cache); + $options = $this->getSerializer()->unserialize($cache); } else { /** @var \Magento\Directory\Model\Country $country */ $country = $this->_countryFactory->create(); /** @var \Magento\Directory\Model\ResourceModel\Country\Collection $collection */ $collection = $country->getResourceCollection(); $options = $collection->load()->toOptionArray(); - $this->_configCacheType->save($this->serializer->serialize($options), $cacheKey); + $this->_configCacheType->save($this->getSerializer()->serialize($options), $cacheKey); } return $options; } + + /** + * Get serializer + * + * @return \Magento\Framework\Serialize\SerializerInterface + * @deprecated + */ + private function getSerializer() + { + if ($this->serializer === null) { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); + } + return $this->serializer; + } } diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php index 9b7ff1dff29..205cf420f5c 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php @@ -34,14 +34,18 @@ class Date extends \Magento\Catalog\Model\Product\Option\Type\DefaultType * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig * @param \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate * @param array $data + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] */ public function __construct( \Magento\Checkout\Model\Session $checkoutSession, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate, - array $data = [] + array $data = [], + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->_localeDate = $localeDate; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); parent::__construct($checkoutSession, $scopeConfig, $data); } @@ -276,7 +280,7 @@ class Date extends \Magento\Catalog\Model\Product\Option\Type\DefaultType $confItem = $this->getConfigurationItem(); $infoBuyRequest = $confItem->getOptionByCode('info_buyRequest'); try { - $value = $this->getSerializer()->unserialize($infoBuyRequest->getValue()); + $value = $this->serializer->unserialize($infoBuyRequest->getValue()); if (is_array($value) && isset($value['options']) && isset($value['options'][$this->getOption()->getId()]) ) { return $value['options'][$this->getOption()->getId()]; @@ -288,22 +292,6 @@ class Date extends \Magento\Catalog\Model\Product\Option\Type\DefaultType } } - /** - * Get Serializer interface. - * - * @return \Magento\Framework\Serialize\SerializerInterface - * @deprecated - */ - private function getSerializer() - { - if (!$this->serializer) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); - } - - return $this->serializer; - } - /** * Use Calendar on frontend or not * diff --git a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php index 6f2cb2ccf14..f0e8d37921c 100644 --- a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php +++ b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php @@ -204,7 +204,8 @@ abstract class AbstractType $this->_filesystem = $filesystem; $this->_logger = $logger; $this->productRepository = $productRepository; - $this->serializer = $serializer; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); } /** diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php index f302f569431..7e41275c590 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php @@ -51,6 +51,9 @@ class CustomOptionProcessorTest extends \PHPUnit_Framework_TestCase /** @var CustomOptionProcessor */ protected $processor; + /** @var \Magento\Framework\Serialize\SerializerInterface */ + private $serializer; + protected function setUp() { $this->objectFactory = $this->getMockBuilder(\Magento\Framework\DataObject\Factory::class) @@ -90,12 +93,16 @@ class CustomOptionProcessorTest extends \PHPUnit_Framework_TestCase $this->buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) ->disableOriginalConstructor() ->getMock(); + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['unserialize']) + ->getMockForAbstractClass(); $this->processor = new CustomOptionProcessor( $this->objectFactory, $this->productOptionFactory, $this->extensionFactory, - $this->customOptionFactory + $this->customOptionFactory, + $this->serializer ); } @@ -142,14 +149,9 @@ class CustomOptionProcessorTest extends \PHPUnit_Framework_TestCase $quoteItemOption->expects($this->any()) ->method('getValue') ->willReturn('{"options":{"' . $optionId . '":["5","6"]}}'); - $objectHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) - ->setMethods(['unserialize']) - ->getMockForAbstractClass(); - $serializer->expects($this->any()) + $this->serializer->expects($this->any()) ->method('unserialize') ->willReturn(json_decode($quoteItemOption->getValue(), true)); - $objectHelper->setBackwardCompatibleProperty($this->processor, 'serializer', $serializer); $this->customOptionFactory->expects($this->once()) ->method('create') ->willReturn($this->customOption); diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php index 9e27966ff8c..1e5b3a31608 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php @@ -99,6 +99,11 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase */ protected $catalogConfig; + /** + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * @SuppressWarnings(PHPMD.ExcessiveMethodLength) */ @@ -175,6 +180,9 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase $this->eavConfig = $this->getMockBuilder(\Magento\Eav\Model\Config::class)->disableOriginalConstructor() ->getMock(); + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['unserialize']) + ->getMockForAbstractClass(); $this->_model = $this->_objectHelper->getObject( Configurable::class, @@ -194,6 +202,7 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase 'customerSession' => $this->getMockBuilder(Session::class)->disableOriginalConstructor()->getMock(), 'cache' => $this->cache, 'catalogConfig' => $this->catalogConfig, + 'serializer' => $this->serializer ] ); $refClass = new \ReflectionClass(Configurable::class); @@ -650,13 +659,9 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ->getMock(); $optionMock->expects($this->any())->method('getValue')->willReturn(json_encode($this->attributeData, true)); - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) - ->setMethods(['unserialize']) - ->getMockForAbstractClass(); - $serializer->expects($this->any()) + $this->serializer->expects($this->any()) ->method('unserialize') ->willReturn(json_decode($optionMock->getValue(), true)); - $this->_objectHelper->setBackwardCompatibleProperty($this->_model, 'serializer', $serializer); $productMock->expects($this->once())->method('getCustomOption')->with('attributes')->willReturn($optionMock); $productMock->expects($this->once())->method('hasData')->willReturn(true); $productMock->expects($this->at(2))->method('getData')->willReturn(true); diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php index 61d66d47bc2..0b81b76ef34 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php @@ -30,6 +30,11 @@ class TypeTest extends \PHPUnit_Framework_TestCase */ private $product; + /** + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * @SuppressWarnings(PHPMD.ExcessiveMethodLength) */ @@ -123,6 +128,9 @@ class TypeTest extends \PHPUnit_Framework_TestCase ->setMethods(['save']) ->getMock(); + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->getMockForAbstractClass(); + $this->target = $objectHelper->getObject( \Magento\Downloadable\Model\Product\Type::class, [ @@ -140,7 +148,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase 'linkFactory' => $linkFactory, 'eavConfig' => $eavConfigMock, 'typeHandler' => $this->typeHandler, - + 'serializer' => $this->serializer ] ); } diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php index 803165fe6c8..b02cd7d2e38 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php @@ -37,6 +37,11 @@ class GroupedTest extends \PHPUnit_Framework_TestCase */ protected $objectHelper; + /** + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + protected function setUp() { $this->objectHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); @@ -67,6 +72,10 @@ class GroupedTest extends \PHPUnit_Framework_TestCase '', false ); + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['serialize']) + ->getMockForAbstractClass(); + $this->_model = $this->objectHelper->getObject( \Magento\GroupedProduct\Model\Product\Type\Grouped::class, [ @@ -77,7 +86,8 @@ class GroupedTest extends \PHPUnit_Framework_TestCase 'logger' => $logger, 'productFactory' => $productFactoryMock, 'catalogProductLink' => $this->catalogProductLink, - 'catalogProductStatus' => $this->productStatusMock + 'catalogProductStatus' => $this->productStatusMock, + 'serializer' => $this->serializer ] ); } @@ -429,13 +439,9 @@ class GroupedTest extends \PHPUnit_Framework_TestCase ->expects($this->atLeastOnce()) ->method('getData') ->will($this->returnValue($associatedProducts)); - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) - ->setMethods(['serialize']) - ->getMockForAbstractClass(); - $serializer->expects($this->any()) + $this->serializer->expects($this->any()) ->method('serialize') ->willReturn(json_encode($buyRequest->getData())); - $this->objectHelper->setBackwardCompatibleProperty($this->_model, 'serializer', $serializer); $this->assertEquals( [0 => $this->product], @@ -547,13 +553,9 @@ class GroupedTest extends \PHPUnit_Framework_TestCase $buyRequest = new \Magento\Framework\DataObject(); $buyRequest->setSuperGroup([$associatedId => 1]); - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) - ->setMethods(['serialize']) - ->getMockForAbstractClass(); - $serializer->expects($this->any()) + $this->serializer->expects($this->any()) ->method('serialize') ->willReturn(json_encode($buyRequest->getData())); - $this->objectHelper->setBackwardCompatibleProperty($this->_model, 'serializer', $serializer); $cached = true; $this->product @@ -598,13 +600,9 @@ class GroupedTest extends \PHPUnit_Framework_TestCase $buyRequest = new \Magento\Framework\DataObject(); $buyRequest->setSuperGroup([$associatedId => 1]); - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) - ->setMethods(['serialize']) - ->getMockForAbstractClass(); - $serializer->expects($this->any()) + $this->serializer->expects($this->any()) ->method('serialize') ->willReturn(json_encode($buyRequest->getData())); - $this->objectHelper->setBackwardCompatibleProperty($this->_model, 'serializer', $serializer); $cached = true; $this->product diff --git a/app/code/Magento/Quote/Model/Quote/Item.php b/app/code/Magento/Quote/Model/Quote/Item.php index 6e69ce84131..1e6a6e1e5ac 100644 --- a/app/code/Magento/Quote/Model/Quote/Item.php +++ b/app/code/Magento/Quote/Model/Quote/Item.php @@ -198,6 +198,7 @@ class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Mage * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data * + * @param \Magento\Framework\Serialize\SerializerInterface $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -214,13 +215,16 @@ class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Mage \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] + array $data = [], + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->_errorInfos = $statusListFactory->create(); $this->_localeFormat = $localeFormat; $this->_itemOptionFactory = $itemOptionFactory; $this->quoteItemCompare = $quoteItemCompare; $this->stockRegistry = $stockRegistry; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); parent::__construct( $context, $registry, @@ -815,7 +819,7 @@ class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Mage public function getBuyRequest() { $option = $this->getOptionByCode('info_buyRequest'); - $data = $option ? $this->getSerializer()->unserialize($option->getValue()) : []; + $data = $option ? $this->serializer->unserialize($option->getValue()) : []; $buyRequest = new \Magento\Framework\DataObject($data); // Overwrite standard buy request qty, because item qty could have changed since adding to quote @@ -824,22 +828,6 @@ class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Mage return $buyRequest; } - /** - * Get Serializer interface. - * - * @return \Magento\Framework\Serialize\SerializerInterface - * @deprecated - */ - private function getSerializer() - { - if (!$this->serializer) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); - } - - return $this->serializer; - } - /** * Sets flag, whether this quote item has some error associated with it. * diff --git a/app/code/Magento/Quote/Model/Quote/Item/Updater.php b/app/code/Magento/Quote/Model/Quote/Item/Updater.php index 556ec5035e3..4dc17705568 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Updater.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Updater.php @@ -54,7 +54,8 @@ class Updater $this->productFactory = $productFactory; $this->localeFormat = $localeFormat; $this->objectFactory = $objectFactory; - $this->serializer = $serializer; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); } /** diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php index 1d817ccfbe8..5d95daf1673 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php @@ -38,6 +38,11 @@ class UpdaterTest extends \PHPUnit_Framework_TestCase */ protected $productMock; + /** + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + protected function setUp() { $this->productMock = $this->getMock( @@ -94,12 +99,16 @@ class UpdaterTest extends \PHPUnit_Framework_TestCase '', false ); + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['serialize']) + ->getMockForAbstractClass(); $this->object = (new ObjectManager($this)) ->getObject( \Magento\Quote\Model\Quote\Item\Updater::class, [ - 'localeFormat' => $this->localeFormat + 'localeFormat' => $this->localeFormat, + 'serializer' => $this->serializer ] ); } @@ -252,16 +261,9 @@ class UpdaterTest extends \PHPUnit_Framework_TestCase $buyRequestMock->expects($this->any()) ->method('getData') ->will($this->returnValue(['custom_price' => $customPrice])); - - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) - ->setMethods(['serialize']) - ->getMockForAbstractClass(); - $serializer->expects($this->any()) + $this->serializer->expects($this->any()) ->method('serialize') ->willReturn(json_encode($buyRequestMock->getData())); - $objectManagerHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $objectManagerHelper->setBackwardCompatibleProperty($this->object, 'serializer', $serializer); - $buyRequestMock->expects($this->any()) ->method('setValue') ->with($this->equalTo('{"custom_price":' . $customPrice . '}')); diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php index ec5ff92982f..f14ffb10b4a 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php @@ -61,6 +61,11 @@ class ItemTest extends \PHPUnit_Framework_TestCase */ protected $stockRegistry; + /** + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + const PRODUCT_ID = 1; const PRODUCT_TYPE = 'simple'; const PRODUCT_SKU = '12345'; @@ -134,6 +139,10 @@ class ItemTest extends \PHPUnit_Framework_TestCase ->method('getStockItem') ->will($this->returnValue($this->stockItemMock)); + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->setMethods(['unserialize']) + ->getMockForAbstractClass(); + $this->model = $this->objectManagerHelper->getObject( \Magento\Quote\Model\Quote\Item::class, [ @@ -142,7 +151,8 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'statusListFactory' => $statusListFactory, 'itemOptionFactory' => $this->itemOptionFactory, 'quoteItemCompare' => $this->compareHelper, - 'stockRegistry' => $this->stockRegistry + 'stockRegistry' => $this->stockRegistry, + 'serializer' => $this->serializer ] ); } @@ -1071,13 +1081,9 @@ class ItemTest extends \PHPUnit_Framework_TestCase ->will($this->returnValue($quantity)); $this->model->setQty($quantity); $this->assertEquals($quantity, $this->model->getQty()); - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) - ->setMethods(['unserialize']) - ->getMockForAbstractClass(); - $serializer->expects($this->any()) + $this->serializer->expects($this->any()) ->method('unserialize') ->willReturn(json_decode($optionMock->getValue(), true)); - $this->objectManagerHelper->setBackwardCompatibleProperty($this->model, 'serializer', $serializer); $buyRequest = $this->model->getBuyRequest(); $this->assertEquals($buyRequestQuantity, $buyRequest->getOriginalQty()); $this->assertEquals($quantity, $buyRequest->getQty()); diff --git a/app/code/Magento/Sales/Model/AdminOrder/Create.php b/app/code/Magento/Sales/Model/AdminOrder/Create.php index 767c35f3a07..c6545b36fae 100644 --- a/app/code/Magento/Sales/Model/AdminOrder/Create.php +++ b/app/code/Magento/Sales/Model/AdminOrder/Create.php @@ -260,6 +260,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ * @param \Magento\Sales\Api\OrderManagementInterface $orderManagement * @param \Magento\Quote\Model\QuoteFactory $quoteFactory * @param array $data + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -290,7 +291,8 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ \Magento\Framework\Api\DataObjectHelper $dataObjectHelper, \Magento\Sales\Api\OrderManagementInterface $orderManagement, \Magento\Quote\Model\QuoteFactory $quoteFactory, - array $data = [] + array $data = [], + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->_objectManager = $objectManager; $this->_eventManager = $eventManager; @@ -319,6 +321,8 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ $this->dataObjectHelper = $dataObjectHelper; $this->orderManagement = $orderManagement; $this->quoteFactory = $quoteFactory; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); parent::__construct($data); } @@ -802,7 +806,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ $info = $item->getOptionByCode('info_buyRequest'); if ($info) { $info = new \Magento\Framework\DataObject( - $this->getSerializer()->unserialize($info->getValue()) + $this->serializer->unserialize($info->getValue()) ); $info->setQty($qty); $info->setOptions($this->_prepareOptionsForRequest($item)); @@ -881,22 +885,6 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ return $this; } - /** - * Get Serializer interface. - * - * @return \Magento\Framework\Serialize\SerializerInterface - * @deprecated - */ - private function getSerializer() - { - if (!$this->serializer) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); - } - - return $this->serializer; - } - /** * Handle data sent from sidebar * diff --git a/app/code/Magento/Sales/Model/Order/Item.php b/app/code/Magento/Sales/Model/Order/Item.php index 2492ce1980a..100b8b69a44 100644 --- a/app/code/Magento/Sales/Model/Order/Item.php +++ b/app/code/Magento/Sales/Model/Order/Item.php @@ -115,6 +115,7 @@ class Item extends AbstractModel implements OrderItemInterface * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -127,7 +128,8 @@ class Item extends AbstractModel implements OrderItemInterface \Magento\Catalog\Api\ProductRepositoryInterface $productRepository, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] + array $data = [], + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { parent::__construct( $context, @@ -138,6 +140,8 @@ class Item extends AbstractModel implements OrderItemInterface $resourceCollection, $data ); + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); $this->_orderFactory = $orderFactory; $this->_storeManager = $storeManager; $this->productRepository = $productRepository; @@ -473,23 +477,7 @@ class Item extends AbstractModel implements OrderItemInterface public function getProductOptions() { $data = $this->_getData('product_options'); - return is_string($data) ? $this->getSerializer()->unserialize($data) : $data; - } - - /** - * Get Serializer interface. - * - * @return \Magento\Framework\Serialize\SerializerInterface - * @deprecated - */ - private function getSerializer() - { - if (!$this->serializer) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); - } - - return $this->serializer; + return is_string($data) ? $this->serializer->unserialize($data) : $data; } /** diff --git a/app/code/Magento/Wishlist/Model/Item.php b/app/code/Magento/Wishlist/Model/Item.php index f9cba6712eb..2d6bd18fcc0 100644 --- a/app/code/Magento/Wishlist/Model/Item.php +++ b/app/code/Magento/Wishlist/Model/Item.php @@ -140,6 +140,7 @@ class Item extends AbstractModel implements ItemInterface * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -154,7 +155,8 @@ class Item extends AbstractModel implements ItemInterface ProductRepositoryInterface $productRepository, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] + array $data = [], + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->productTypeConfig = $productTypeConfig; $this->_storeManager = $storeManager; @@ -162,6 +164,8 @@ class Item extends AbstractModel implements ItemInterface $this->_catalogUrl = $catalogUrl; $this->_wishlistOptFactory = $wishlistOptFactory; $this->_wishlOptionCollectionFactory = $wishlOptionCollectionFactory; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); parent::__construct($context, $registry, $resource, $resourceCollection, $data); $this->productRepository = $productRepository; } @@ -479,7 +483,7 @@ class Item extends AbstractModel implements ItemInterface public function getBuyRequest() { $option = $this->getOptionByCode('info_buyRequest'); - $initialData = $option ? $this->getSerializer()->unserialize($option->getValue()) : null; + $initialData = $option ? $this->serializer->unserialize($option->getValue()) : null; if ($initialData instanceof \Magento\Framework\DataObject) { $initialData = $initialData->getData(); @@ -507,7 +511,7 @@ class Item extends AbstractModel implements ItemInterface } $oldBuyRequest = $this->getBuyRequest()->getData(); - $sBuyRequest = $this->getSerializer()->serialize($buyRequest + $oldBuyRequest); + $sBuyRequest = $this->serializer->serialize($buyRequest + $oldBuyRequest); $option = $this->getOptionByCode('info_buyRequest'); if ($option) { @@ -530,27 +534,11 @@ class Item extends AbstractModel implements ItemInterface { $buyRequest->setId($this->getId()); - $_buyRequest = $this->getSerializer()->serialize($buyRequest->getData()); + $_buyRequest = $this->serializer->serialize($buyRequest->getData()); $this->setData('buy_request', $_buyRequest); return $this; } - /** - * Get Serializer interface. - * - * @return \Magento\Framework\Serialize\SerializerInterface - * @deprecated - */ - private function getSerializer() - { - if (!$this->serializer) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); - } - - return $this->serializer; - } - /** * Check product representation in item * diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php index 20d40abd618..8f881867530 100644 --- a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php +++ b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php @@ -35,6 +35,9 @@ class AbstractTypeTest extends \PHPUnit_Framework_TestCase $filesystem = $this->getMock(\Magento\Framework\Filesystem::class, [], [], '', false); $registry = $this->getMock(\Magento\Framework\Registry::class, [], [], '', false); $logger = $this->getMock(\Psr\Log\LoggerInterface::class, [], [], '', false); + $serializer = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( + \Magento\Framework\Serialize\SerializerInterface::class + ); $this->_model = $this->getMockForAbstractClass( \Magento\Catalog\Model\Product\Type\AbstractType::class, [ @@ -46,7 +49,8 @@ class AbstractTypeTest extends \PHPUnit_Framework_TestCase $filesystem, $registry, $logger, - $productRepository + $productRepository, + $serializer ] ); } diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php index 411ac4421f8..e46b8524b7b 100644 --- a/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php +++ b/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php @@ -45,9 +45,9 @@ class ItemTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Wishlist\Model\Item\Option $option */ $option = $this->objectManager->create( - \Magento\Wishlist\Model\Item\Option::class, - ['data' => ['code' => 'info_buyRequest', 'value' => '{"qty":23}']] - ); + \Magento\Wishlist\Model\Item\Option::class, + ['data' => ['code' => 'info_buyRequest', 'value' => '{"qty":23}']] + ); $option->setProduct($product); $this->model->addOption($option); -- GitLab From b3104e4882c91d8f27addc416d11e4446408ea0c Mon Sep 17 00:00:00 2001 From: Oleksandr Dubovyk <odubovyk@magento.com> Date: Fri, 9 Dec 2016 16:19:38 +0200 Subject: [PATCH 064/175] MAGETWO-61672: Module Catalog and unit tests - Refactored - Added unit test --- .../Model/Product/Option/Type/File.php | 32 +++-- .../Model/Product/Option/Type/FileTest.php | 128 +++++++++++++++++- .../Adminhtml/Order/Create/Items/Grid.php | 2 + .../Magento/Sales/Model/AdminOrder/Create.php | 2 + 4 files changed, 151 insertions(+), 13 deletions(-) diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File.php index 70c20a4e314..6cac282f295 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/File.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/File.php @@ -9,6 +9,8 @@ use Magento\Framework\App\Filesystem\DirectoryList; use Magento\Framework\Filesystem; use Magento\Framework\Exception\LocalizedException; use Magento\Catalog\Model\Product\Exception as ProductException; +use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\App\ObjectManager; /** * Catalog product option file type @@ -70,6 +72,11 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType */ protected $validatorFile; + /** + * @var SerializerInterface + */ + private $serializer; + /** * @var Filesystem */ @@ -87,6 +94,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType * @param array $data * @param Filesystem $filesystem * @SuppressWarnings(PHPMD.ExcessiveParameterList) + * @param SerializerInterface|null $serializer */ public function __construct( \Magento\Checkout\Model\Session $checkoutSession, @@ -98,7 +106,8 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType \Magento\Catalog\Model\Product\Option\UrlBuilder $urlBuilder, \Magento\Framework\Escaper $escaper, array $data = [], - Filesystem $filesystem = null + Filesystem $filesystem = null, + SerializerInterface $serializer = null ) { $this->_itemOptionFactory = $itemOptionFactory; $this->_urlBuilder = $urlBuilder; @@ -108,6 +117,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType $this->_rootDirectory = $this->filesystem->getDirectoryRead(DirectoryList::MEDIA); $this->validatorInfo = $validatorInfo; $this->validatorFile = $validatorFile; + $this->serializer = $serializer ? $serializer : ObjectManager::getInstance()->get(SerializerInterface::class); parent::__construct($checkoutSession, $scopeConfig, $data); } @@ -275,7 +285,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType // Save option in request, because we have no $_FILES['options'] $requestOptions[$this->getOption()->getId()] = $value; - $result = serialize($value); + $result = $this->serializer->serialize($value); } else { /* * Clear option info from request, so it won't be stored in our db upon @@ -306,7 +316,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType { if ($this->_formattedOptionValue === null) { try { - $value = unserialize($optionValue); + $value = $this->serializer->unserialize($optionValue); $customOptionUrlParams = $this->getCustomOptionUrlParams() ? $this->getCustomOptionUrlParams() : [ 'id' => $this->getConfigurationItemOption()->getId(), @@ -316,7 +326,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType $value['url'] = ['route' => $this->_customOptionDownloadUrl, 'params' => $customOptionUrlParams]; $this->_formattedOptionValue = $this->_getOptionHtml($value); - $this->getConfigurationItemOption()->setValue(serialize($value)); + $this->getConfigurationItemOption()->setValue($this->serializer->serialize($value)); return $this->_formattedOptionValue; } catch (\Exception $e) { return $optionValue; @@ -364,7 +374,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType if (is_array($value)) { return $value; } elseif (is_string($value) && !empty($value)) { - return unserialize($value); + return $this->serializer->unserialize($value); } else { return []; } @@ -386,11 +396,13 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType * * @param string $optionValue Prepared for cart option value * @return string + * + * @deprecated */ public function getEditableOptionValue($optionValue) { try { - $value = unserialize($optionValue); + $value = $this->serializer->unserialize($optionValue); return sprintf( '%s [%d]', $this->_escaper->escapeHtml($value['title']), @@ -409,6 +421,8 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType * @return string|null * * @SuppressWarnings(PHPMD.UnusedFormalParameter) + * + * @deprecated */ public function parseOptionValue($optionValue, $productOptionValues) { @@ -417,7 +431,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType $confItemOptionId = $matches[1]; $option = $this->_itemOptionFactory->create()->load($confItemOptionId); try { - unserialize($option->getValue()); + $this->serializer->unserialize($option->getValue()); return $option->getValue(); } catch (\Exception $e) { return null; @@ -436,7 +450,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType public function prepareOptionValueForRequest($optionValue) { try { - $result = unserialize($optionValue); + $result = $this->serializer->unserialize($optionValue); return $result; } catch (\Exception $e) { return null; @@ -452,7 +466,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType { $quoteOption = $this->getConfigurationItemOption(); try { - $value = unserialize($quoteOption->getValue()); + $value = $this->serializer->unserialize($quoteOption->getValue()); if (!isset($value['quote_path'])) { throw new \Exception(); } diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php index 6682b295476..48e8f79bd0d 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php @@ -33,6 +33,21 @@ class FileTest extends \PHPUnit_Framework_TestCase */ private $filesystemMock; + /** + * @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $serializer; + + /** + * @var \Magento\Catalog\Model\Product\Option\UrlBuilder|\PHPUnit_Framework_MockObject_MockObject + */ + private $urlBuilder; + + /** + * @var \Magento\Framework\Escaper|\PHPUnit_Framework_MockObject_MockObject + */ + private $escaper; + protected function setUp() { $this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); @@ -44,11 +59,23 @@ class FileTest extends \PHPUnit_Framework_TestCase $this->rootDirectory = $this->getMockBuilder(ReadInterface::class) ->getMock(); - $this->filesystemMock->expects($this->once()) + $this->filesystemMock->expects($this->any()) ->method('getDirectoryRead') ->with(DirectoryList::MEDIA, DriverPool::FILE) ->willReturn($this->rootDirectory); + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->disableOriginalConstructor() + ->getMock(); + + $this->urlBuilder = $this->getMockBuilder(\Magento\Catalog\Model\Product\Option\UrlBuilder::class) + ->disableOriginalConstructor() + ->getMock(); + + $this->escaper = $this->getMockBuilder(\Magento\Framework\Escaper::class) + ->disableOriginalConstructor() + ->getMock(); + $this->coreFileStorageDatabase = $this->getMock( \Magento\MediaStorage\Helper\File\Storage\Database::class, ['copyFile'], @@ -67,11 +94,41 @@ class FileTest extends \PHPUnit_Framework_TestCase \Magento\Catalog\Model\Product\Option\Type\File::class, [ 'filesystem' => $this->filesystemMock, - 'coreFileStorageDatabase' => $this->coreFileStorageDatabase + 'coreFileStorageDatabase' => $this->coreFileStorageDatabase, + 'serializer' => $this->serializer, + 'urlBuilder' => $this->urlBuilder, + 'escaper' => $this->escaper ] ); } + + public function testGetCustomizedView() + { + $fileObject = $this->getFileObject(); + $optionInfo = ['option_value' => 'some serialized data']; + + $dataAfterSerialize = ['some' => 'array']; + + $this->serializer->expects($this->once()) + ->method('unserialize') + ->with('some serialized data') + ->willReturn($dataAfterSerialize); + + $this->urlBuilder->expects($this->once()) + ->method('getUrl') + ->willReturn('someUrl'); + + $this->escaper->expects($this->once()) + ->method('escapeHtml') + ->willReturn('string'); + + $this->assertEquals( + '<a href="someUrl" target="_blank">string</a> ', + $fileObject->getCustomizedView($optionInfo) + ); + } + public function testCopyQuoteToOrder() { $optionMock = $this->getMockBuilder(OptionInterface::class) @@ -82,11 +139,22 @@ class FileTest extends \PHPUnit_Framework_TestCase $quotePath = '/quote/path/path/uploaded.file'; $orderPath = '/order/path/path/uploaded.file'; + $quoteValue = "{\"quote_path\":\"$quotePath\",\"order_path\":\"$orderPath\"}"; + + $this->serializer->expects($this->once()) + ->method('unserialize') + ->with($quoteValue) + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); + $optionMock->expects($this->any()) ->method('getValue') - ->will($this->returnValue(serialize(['quote_path' => $quotePath, 'order_path' => $orderPath]))); + ->will($this->returnValue($quoteValue)); - $this->rootDirectory->expects($this->once()) + $this->rootDirectory->expects($this->any()) ->method('isFile') ->with($this->equalTo($quotePath)) ->will($this->returnValue(true)); @@ -112,4 +180,56 @@ class FileTest extends \PHPUnit_Framework_TestCase $fileObject->copyQuoteToOrder() ); } + + public function testGetFormattedOptionValue() + { + $resultValue = ['result']; + $optionValue = json_encode($resultValue); + $urlParameter = 'parameter'; + + $fileObject = $this->getFileObject(); + $fileObject->setCustomOptionUrlParams($urlParameter); + $this->serializer->expects($this->once()) + ->method('unserialize') + ->with($optionValue) + ->willReturn($resultValue); + + $resultValue['url'] = [ + 'route' => 'sales/download/downloadCustomOption', + 'params' => $fileObject->getCustomOptionUrlParams() + ]; + + $this->serializer->expects($this->once()) + ->method('serialize') + ->with($resultValue) + ->willReturn(json_encode($resultValue)); + + $option = $this->getMockBuilder(\Magento\Quote\Model\Quote\Item\Option::class) + ->setMethods(['setValue']) + ->disableOriginalConstructor() + ->getMock(); + + $option->expects($this->once()) + ->method('setValue') + ->with(json_encode($resultValue)); + + $fileObject->setConfigurationItemOption($option); + + $fileObject->getFormattedOptionValue($optionValue); + } + + public function testPrepareOptionValueForRequest() + { + $optionValue = 'string'; + $resultValue = ['result']; + $fileObject = $this->getFileObject(); + + $this->serializer->expects($this->once()) + ->method('unserialize') + ->with($optionValue) + ->willReturn($resultValue); + + $this->assertEquals($resultValue, $fileObject->prepareOptionValueForRequest($optionValue)); + } } + diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items/Grid.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items/Grid.php index 3af13c7b1ea..d5d0da9c467 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items/Grid.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items/Grid.php @@ -425,6 +425,8 @@ class Grid extends \Magento\Sales\Block\Adminhtml\Order\Create\AbstractCreate * * @param Item $item * @return string + * + * @deprecated */ public function getCustomOptions(Item $item) { diff --git a/app/code/Magento/Sales/Model/AdminOrder/Create.php b/app/code/Magento/Sales/Model/AdminOrder/Create.php index 3715c02357a..da9d6bdb094 100644 --- a/app/code/Magento/Sales/Model/AdminOrder/Create.php +++ b/app/code/Magento/Sales/Model/AdminOrder/Create.php @@ -1102,6 +1102,8 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ * @param string $additionalOptions * @return array * @throws \Magento\Framework\Exception\LocalizedException + * + * @deprecated */ protected function _parseOptions(\Magento\Quote\Model\Quote\Item $item, $additionalOptions) { -- GitLab From e32a6f0291794b6a170b1434202026778efc7370 Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Fri, 9 Dec 2016 16:33:54 +0200 Subject: [PATCH 065/175] MAGETWO-61647: Detailed investigation for info_buyrequest field and extension points for its modifications - stabilization bamboo builds - changes after CR --- .../Helper/Catalog/Product/Configuration.php | 15 ++++++++++-- .../Magento/Bundle/Model/Product/Price.php | 17 ++++++++++--- .../Magento/Bundle/Model/Product/Type.php | 10 ++++---- .../Bundle/Pricing/Price/ConfiguredPrice.php | 15 ++++++++++-- .../Catalog/Product/ConfigurationTest.php | 2 +- .../Test/Unit/Model/Product/PriceTest.php | 24 ++++++++++++++++--- .../Test/Unit/Model/Product/TypeTest.php | 8 +++---- .../Model/Product/Type/ConfigurableTest.php | 16 +++++++++++++ .../Test/Unit/Model/Product/TypeTest.php | 3 +-- 9 files changed, 88 insertions(+), 22 deletions(-) diff --git a/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php b/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php index 8305bb0137e..f9e08bba754 100644 --- a/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php +++ b/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php @@ -35,21 +35,32 @@ class Configuration extends AbstractHelper implements ConfigurationInterface */ protected $escaper; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * @param \Magento\Framework\App\Helper\Context $context * @param \Magento\Catalog\Helper\Product\Configuration $productConfiguration * @param \Magento\Framework\Pricing\Helper\Data $pricingHelper * @param \Magento\Framework\Escaper $escaper + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] */ public function __construct( \Magento\Framework\App\Helper\Context $context, \Magento\Catalog\Helper\Product\Configuration $productConfiguration, \Magento\Framework\Pricing\Helper\Data $pricingHelper, - \Magento\Framework\Escaper $escaper + \Magento\Framework\Escaper $escaper, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->productConfiguration = $productConfiguration; $this->pricingHelper = $pricingHelper; $this->escaper = $escaper; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); parent::__construct($context); } @@ -121,7 +132,7 @@ class Configuration extends AbstractHelper implements ConfigurationInterface // get and add bundle selections collection $selectionsQuoteItemOption = $item->getOptionByCode('bundle_selection_ids'); - $bundleSelectionIds = unserialize($selectionsQuoteItemOption->getValue()); + $bundleSelectionIds = $this->serializer->unserialize($selectionsQuoteItemOption->getValue()); if (!empty($bundleSelectionIds)) { $selectionsCollection = $typeInstance->getSelectionsByIds($bundleSelectionIds, $product); diff --git a/app/code/Magento/Bundle/Model/Product/Price.php b/app/code/Magento/Bundle/Model/Product/Price.php index 83bfcbbabc2..a1e845f68f7 100644 --- a/app/code/Magento/Bundle/Model/Product/Price.php +++ b/app/code/Magento/Bundle/Model/Product/Price.php @@ -39,6 +39,13 @@ class Price extends \Magento\Catalog\Model\Product\Type\Price */ protected $_catalogData = null; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * Price constructor. * @@ -52,7 +59,7 @@ class Price extends \Magento\Catalog\Model\Product\Type\Price * @param \Magento\Catalog\Api\Data\ProductTierPriceInterfaceFactory $tierPriceFactory * @param \Magento\Framework\App\Config\ScopeConfigInterface $config * @param \Magento\Catalog\Helper\Data $catalogData - * + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -65,9 +72,12 @@ class Price extends \Magento\Catalog\Model\Product\Type\Price GroupManagementInterface $groupManagement, \Magento\Catalog\Api\Data\ProductTierPriceInterfaceFactory $tierPriceFactory, \Magento\Framework\App\Config\ScopeConfigInterface $config, - \Magento\Catalog\Helper\Data $catalogData + \Magento\Catalog\Helper\Data $catalogData, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->_catalogData = $catalogData; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); parent::__construct( $ruleFactory, $storeManager, @@ -154,7 +164,8 @@ class Price extends \Magento\Catalog\Model\Product\Type\Price { $customOption = $product->getCustomOption('bundle_selection_ids'); if ($customOption) { - $selectionIds = unserialize($customOption->getValue()); + $r = json_decode('{"0":1}', true); + $selectionIds = $this->serializer->unserialize($customOption->getValue()); if (!empty($selectionIds) && is_array($selectionIds)) { return $selectionIds; } diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php index 418d7081ffe..2e8e602a6d3 100644 --- a/app/code/Magento/Bundle/Model/Product/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Type.php @@ -279,7 +279,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType if ($product->hasCustomOptions()) { $customOption = $product->getCustomOption('bundle_selection_ids'); - $selectionIds = unserialize($customOption->getValue()); + $selectionIds = $this->serializer->unserialize($customOption->getValue()); if (!empty($selectionIds)) { $selections = $this->getSelectionsByIds($selectionIds, $product); foreach ($selections->getItems() as $selection) { @@ -307,7 +307,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType if ($product->hasCustomOptions()) { $customOption = $product->getCustomOption('bundle_selection_ids'); - $selectionIds = unserialize($customOption->getValue()); + $selectionIds = $this->serializer->unserialize($customOption->getValue()); $selections = $this->getSelectionsByIds($selectionIds, $product); foreach ($selections->getItems() as $selection) { $qtyOption = $product->getCustomOption('selection_qty_' . $selection->getSelectionId()); @@ -333,7 +333,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType { if ($product->hasCustomOptions()) { $customOption = $product->getCustomOption('bundle_selection_ids'); - $selectionIds = unserialize($customOption->getValue()); + $selectionIds = $this->serializer->unserialize($customOption->getValue()); $selections = $this->getSelectionsByIds($selectionIds, $product); $virtualCount = 0; foreach ($selections->getItems() as $selection) { @@ -717,7 +717,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $item->addCustomOption('bundle_identity', $uniqueKey); } $product->addCustomOption('bundle_option_ids', serialize(array_map('intval', $optionIds))); - $product->addCustomOption('bundle_selection_ids', serialize($selectionIds)); + $product->addCustomOption('bundle_selection_ids', $this->serializer->serialize($selectionIds)); return $result; } @@ -862,7 +862,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $optionIds = unserialize($customOption->getValue()); $options = $this->getOptionsByIds($optionIds, $product); $customOption = $product->getCustomOption('bundle_selection_ids'); - $selectionIds = unserialize($customOption->getValue()); + $selectionIds = $this->serializer->unserialize($customOption->getValue()); $selections = $this->getSelectionsByIds($selectionIds, $product); foreach ($selections->getItems() as $selection) { if ($selection->isSalable()) { diff --git a/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php b/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php index e6c0f90e24a..52ec835795a 100644 --- a/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php +++ b/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php @@ -32,21 +32,32 @@ class ConfiguredPrice extends CatalogPrice\FinalPrice implements ConfiguredPrice */ protected $item; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * @param Product $saleableItem * @param float $quantity * @param BundleCalculatorInterface $calculator * @param \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency * @param ItemInterface $item + * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] */ public function __construct( Product $saleableItem, $quantity, BundleCalculatorInterface $calculator, \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency, - ItemInterface $item = null + ItemInterface $item = null, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->item = $item; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); parent::__construct($saleableItem, $quantity, $calculator, $priceCurrency); } @@ -80,7 +91,7 @@ class ConfiguredPrice extends CatalogPrice\FinalPrice implements ConfiguredPrice $optionsCollection = $typeInstance->getOptionsByIds($bundleOptionsIds, $bundleProduct); // get and add bundle selections collection $selectionsQuoteItemOption = $this->item->getOptionByCode('bundle_selection_ids'); - $bundleSelectionIds = unserialize($selectionsQuoteItemOption->getValue()); + $bundleSelectionIds = $this->serializer->unserialize($selectionsQuoteItemOption->getValue()); if ($bundleSelectionIds) { $selectionsCollection = $typeInstance->getSelectionsByIds($bundleSelectionIds, $bundleProduct); $bundleOptions = $optionsCollection->appendSelections($selectionsCollection, true); diff --git a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php index 0919e95a9a0..aaffa90fa0d 100644 --- a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php @@ -170,7 +170,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase public function testGetOptions() { $optionIds = 'a:1:{i:0;i:1;}'; - $selectionIds = 'a:1:{i:0;s:1:"2";}'; + $selectionIds = '{"0":"2"}'; $selectionId = '2'; $product = $this->getMock( \Magento\Catalog\Model\Product::class, diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php index e97f0bbc155..aa388747698 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php @@ -62,6 +62,13 @@ class PriceTest extends \PHPUnit_Framework_TestCase */ protected $groupManagement; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + protected function setUp() { $this->ruleFactoryMock = $this->getMock( @@ -90,6 +97,16 @@ class PriceTest extends \PHPUnit_Framework_TestCase false ); $scopeConfig = $this->getMock(\Magento\Framework\App\Config\ScopeConfigInterface::class); + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->disableOriginalConstructor() + ->getMock(); + $this->serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); $objectManagerHelper = new ObjectManagerHelper($this); $this->model = $objectManagerHelper->getObject( @@ -104,7 +121,8 @@ class PriceTest extends \PHPUnit_Framework_TestCase 'groupManagement' => $this->groupManagement, 'tierPriceFactory' => $tpFactory, 'config' => $scopeConfig, - 'catalogData' => $this->catalogHelperMock + 'catalogData' => $this->catalogHelperMock, + 'serializer' => $this->serializer ] ); } @@ -201,7 +219,7 @@ class PriceTest extends \PHPUnit_Framework_TestCase public function dataProviderWithEmptyOptions() { return [ - ['a:0:{}'], + ['{}'], [''], [null], ]; @@ -244,7 +262,7 @@ class PriceTest extends \PHPUnit_Framework_TestCase $dataObjectMock->expects($this->once()) ->method('getValue') - ->willReturn('a:1:{i:0;s:1:"1";}'); + ->willReturn('{"0":1}'); $productTypeMock->expects($this->once()) ->method('getSelectionsByIds') diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php index da340dbbfad..62036a33724 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php @@ -1562,7 +1562,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase $sku = 'sku'; $itemSku = 'item'; $selectionIds = [1, 2, 3]; - $serializeIds = serialize($selectionIds); + $serializeIds = json_encode($selectionIds); $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) ->setMethods(['__wakeup', 'getData', 'hasCustomOptions', 'getCustomOption']) ->disableOriginalConstructor() @@ -1639,7 +1639,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase { $weight = 5; $selectionIds = [1, 2, 3]; - $serializeIds = serialize($selectionIds); + $serializeIds = json_encode($selectionIds); $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) ->setMethods(['__wakeup', 'getData', 'hasCustomOptions', 'getCustomOption']) ->disableOriginalConstructor() @@ -1693,7 +1693,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase $weight = 5; $qtyOption = 5; $selectionIds = [1, 2, 3]; - $serializeIds = serialize($selectionIds); + $serializeIds = json_encode($selectionIds); $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) ->setMethods(['__wakeup', 'getData', 'hasCustomOptions', 'getCustomOption']) ->disableOriginalConstructor() @@ -1768,7 +1768,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase public function testIsVirtual() { $selectionIds = [1, 2, 3]; - $serializeIds = serialize($selectionIds); + $serializeIds = json_encode($selectionIds); $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) ->disableOriginalConstructor() diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php index f9570a91eb1..e1c40ec3fbc 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php @@ -625,6 +625,7 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase public function testCheckProductBuyState() { $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods(['getSkipCheckRequiredOption', 'getCustomOption']) ->disableOriginalConstructor() ->getMock(); $optionMock = $this->getMockBuilder(\Magento\Quote\Model\Quote\Item\Option::class) @@ -639,6 +640,13 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase $optionMock->expects($this->once()) ->method('getValue') ->willReturn(json_encode(['super_attribute' => ['test_key' => 'test_value', 'empty_key' => '']])); + $this->serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); $this->assertEquals($this->_model, $this->_model->checkProductBuyState($productMock)); } @@ -651,6 +659,7 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase public function testCheckProductBuyStateException() { $productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class) + ->setMethods(['getSkipCheckRequiredOption', 'getCustomOption']) ->disableOriginalConstructor() ->getMock(); $optionMock = $this->getMockBuilder(\Magento\Quote\Model\Quote\Item\Option::class) @@ -663,6 +672,13 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase ->with('info_buyRequest') ->willReturn($optionMock); $optionMock->expects($this->once())->method('getValue')->willReturn(json_encode([])); + $this->serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); $this->_model->checkProductBuyState($productMock); } diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php index d3a9b891477..ae8a5625024 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php @@ -153,7 +153,6 @@ class TypeTest extends \PHPUnit_Framework_TestCase $this->product->expects($this->any())->method('setLinksExist')->with($this->equalTo(false)); $this->product->expects($this->any())->method('canAffectOptions')->with($this->equalTo(true)); - $eavConfigMock = $this->getMock(\Magento\Eav\Model\Config::class, ['getEntityAttributeCodes'], [], '', false); $eavConfigMock->expects($this->any()) ->method('getEntityAttributeCodes') @@ -182,7 +181,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase 'linkFactory' => $linkFactory, 'eavConfig' => $eavConfigMock, 'typeHandler' => $this->typeHandler, - + 'serializer' => $this->serializerMock ] ); } -- GitLab From 707f676995d73a96d41a237d486cc0f2a28b6355 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Fri, 9 Dec 2016 17:12:44 +0200 Subject: [PATCH 066/175] MAGETWO-61674: Fix seralization in Module Downloadable - codestyle fixes --- .../Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php index 6c8d817a900..ae8a5625024 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php @@ -153,7 +153,6 @@ class TypeTest extends \PHPUnit_Framework_TestCase $this->product->expects($this->any())->method('setLinksExist')->with($this->equalTo(false)); $this->product->expects($this->any())->method('canAffectOptions')->with($this->equalTo(true)); - $eavConfigMock = $this->getMock(\Magento\Eav\Model\Config::class, ['getEntityAttributeCodes'], [], '', false); $eavConfigMock->expects($this->any()) ->method('getEntityAttributeCodes') -- GitLab From 0ba7890efaccfa8cd7d4ee07dfecd1083effa69f Mon Sep 17 00:00:00 2001 From: Oleksandr Dubovyk <odubovyk@magento.com> Date: Fri, 9 Dec 2016 17:15:33 +0200 Subject: [PATCH 067/175] MAGETWO-61672: Module Catalog and unit tests - Fixed acc Code-style --- app/code/Magento/Catalog/Model/Product/Option/Type/File.php | 2 +- .../Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File.php index 6cac282f295..9dddbdf2e99 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/File.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/File.php @@ -93,8 +93,8 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType * @param \Magento\Framework\Escaper $escaper * @param array $data * @param Filesystem $filesystem - * @SuppressWarnings(PHPMD.ExcessiveParameterList) * @param SerializerInterface|null $serializer + * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( \Magento\Checkout\Model\Session $checkoutSession, diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php index 48e8f79bd0d..0f35e113c54 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php @@ -102,7 +102,6 @@ class FileTest extends \PHPUnit_Framework_TestCase ); } - public function testGetCustomizedView() { $fileObject = $this->getFileObject(); -- GitLab From 3f3ae655ce4a6258af5ba554ec3a93aea8fcd7f3 Mon Sep 17 00:00:00 2001 From: Oleksandr Dubovyk <odubovyk@magento.com> Date: Fri, 9 Dec 2016 17:46:23 +0200 Subject: [PATCH 068/175] MAGETWO-61672: Module Catalog and unit tests - Remove list line - Add phpDoc for class with Suppress --- .../Test/Unit/Model/Product/Option/Type/FileTest.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php index 0f35e113c54..6ebbc2059db 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php @@ -11,6 +11,11 @@ use Magento\Framework\Filesystem; use Magento\Framework\Filesystem\Directory\ReadInterface; use Magento\Framework\Filesystem\DriverPool; +/** + * Class FileTest. + * + * @SuppressWarnings(PHPMD.CouplingBetweenObjects) + */ class FileTest extends \PHPUnit_Framework_TestCase { /** @@ -231,4 +236,3 @@ class FileTest extends \PHPUnit_Framework_TestCase $this->assertEquals($resultValue, $fileObject->prepareOptionValueForRequest($optionValue)); } } - -- GitLab From 4b11f703e2a60d8b0514f77a53e528358eea4cd4 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Fri, 9 Dec 2016 10:21:22 -0600 Subject: [PATCH 069/175] MAGETWO-61872: Create FieldDataConverter Adding ability to modify query --- .../Framework/DB/FieldDataConverter.php | 14 ++++++-- .../QueryModifierInterface.php | 22 ++++++++++++ .../DB/Test/Unit/FieldDataConverterTest.php | 36 +++++++++++++++++-- 3 files changed, 68 insertions(+), 4 deletions(-) create mode 100644 lib/internal/Magento/Framework/DB/FieldDataConverter/QueryModifierInterface.php diff --git a/lib/internal/Magento/Framework/DB/FieldDataConverter.php b/lib/internal/Magento/Framework/DB/FieldDataConverter.php index 55bd6ae0d18..1cdbc180b47 100644 --- a/lib/internal/Magento/Framework/DB/FieldDataConverter.php +++ b/lib/internal/Magento/Framework/DB/FieldDataConverter.php @@ -8,6 +8,7 @@ namespace Magento\Framework\DB; use Magento\Framework\DB\Adapter\AdapterInterface; use Magento\Framework\DB\Query\Generator; use Magento\Framework\DB\DataConverter\DataConverterInterface; +use Magento\Framework\DB\FieldDataConverter\QueryModifierInterface; /** * Convert field data from one representation to another @@ -45,13 +46,22 @@ class FieldDataConverter * @param string $table * @param string $identifier * @param string $field + * @param QueryModifierInterface|null $queryModifier * @return void */ - public function convert(AdapterInterface $connection, $table, $identifier, $field) - { + public function convert( + AdapterInterface $connection, + $table, + $identifier, + $field, + QueryModifierInterface $queryModifier = null + ) { $select = $connection->select() ->from($table, [$identifier, $field]) ->where($field . ' IS NOT NULL'); + if ($queryModifier) { + $queryModifier->modify($select); + } $iterator = $this->queryGenerator->generate($identifier, $select); foreach ($iterator as $selectByRange) { $rows = $connection->fetchAll($selectByRange); diff --git a/lib/internal/Magento/Framework/DB/FieldDataConverter/QueryModifierInterface.php b/lib/internal/Magento/Framework/DB/FieldDataConverter/QueryModifierInterface.php new file mode 100644 index 00000000000..80b9326f89f --- /dev/null +++ b/lib/internal/Magento/Framework/DB/FieldDataConverter/QueryModifierInterface.php @@ -0,0 +1,22 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Framework\DB\FieldDataConverter; + +use Magento\Framework\DB\Select; + +/** + * Modify query, add custom conditions + */ +interface QueryModifierInterface +{ + /** + * Modify query + * + * @param Select $select + * @return void + */ + public function modify(Select $select); +} diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php index f30dc4d1a38..62aa83ca41c 100644 --- a/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php +++ b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php @@ -11,6 +11,7 @@ use Magento\Framework\DB\Adapter\AdapterInterface; use Magento\Framework\DB\FieldDataConverter; use Magento\Framework\DB\DataConverter\DataConverterInterface; use Magento\Framework\DB\Select; +use Magento\Framework\DB\FieldDataConverter\QueryModifierInterface; class FieldDataConverterTest extends \PHPUnit_Framework_TestCase { @@ -34,6 +35,11 @@ class FieldDataConverterTest extends \PHPUnit_Framework_TestCase */ private $selectMock; + /** + * @var QueryModifierInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $queryModifierMock; + /** * @var FieldDataConverter */ @@ -46,6 +52,7 @@ class FieldDataConverterTest extends \PHPUnit_Framework_TestCase $this->queryGeneratorMock = $this->getMock(Generator::class, [], [], '', false); $this->dataConverterMock = $this->getMock(DataConverterInterface::class); $this->selectMock = $this->getMock(Select::class, [], [], '', false); + $this->queryModifierMock = $this->getMock(QueryModifierInterface::class); $this->fieldDataConverter = $objectManager->getObject( FieldDataConverter::class, [ @@ -55,7 +62,12 @@ class FieldDataConverterTest extends \PHPUnit_Framework_TestCase ); } - public function testConvert() + /** + * @param boolean $useQueryModifier + * @param int $numQueryModifierCalls + * @dataProvider convertDataProvider + */ + public function testConvert($useQueryModifier, $numQueryModifierCalls) { $table = 'table'; $identifier = 'id'; @@ -83,6 +95,9 @@ class FieldDataConverterTest extends \PHPUnit_Framework_TestCase ->method('where') ->with($where) ->willReturnSelf(); + $this->queryModifierMock->expects($this->exactly($numQueryModifierCalls)) + ->method('modify') + ->with($this->selectMock); $this->queryGeneratorMock->expects($this->once()) ->method('generate') ->with($identifier, $this->selectMock) @@ -102,6 +117,23 @@ class FieldDataConverterTest extends \PHPUnit_Framework_TestCase [$field => $convertedValue], [$identifier . ' = ?' => $rows[0][$identifier]] ); - $this->fieldDataConverter->convert($this->connectionMock, $table, $identifier, $field); + $this->fieldDataConverter->convert( + $this->connectionMock, + $table, + $identifier, + $field, + $useQueryModifier ? $this->queryModifierMock : null + ); + } + + /** + * @return array + */ + public function convertDataProvider() + { + return [ + [false, 0], + [true, 1] + ]; } } -- GitLab From fe9cb5c19f2145d9ad385469d41b7cce1f188c4b Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Fri, 9 Dec 2016 18:22:58 +0200 Subject: [PATCH 070/175] MAGETWO-61647: Detailed investigation for info_buyrequest field and extension points for its modifications - stabilization bamboo builds --- .../Magento/Bundle/Model/Product/Price.php | 1 - .../Catalog/Product/ConfigurationTest.php | 19 ++++++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Product/Price.php b/app/code/Magento/Bundle/Model/Product/Price.php index a1e845f68f7..08fe2e2d1ca 100644 --- a/app/code/Magento/Bundle/Model/Product/Price.php +++ b/app/code/Magento/Bundle/Model/Product/Price.php @@ -164,7 +164,6 @@ class Price extends \Magento\Catalog\Model\Product\Type\Price { $customOption = $product->getCustomOption('bundle_selection_ids'); if ($customOption) { - $r = json_decode('{"0":1}', true); $selectionIds = $this->serializer->unserialize($customOption->getValue()); if (!empty($selectionIds) && is_array($selectionIds)) { return $selectionIds; diff --git a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php index aaffa90fa0d..17f0dbbf955 100644 --- a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php @@ -27,6 +27,11 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Catalog\Model\Product\Configuration\Item\ItemInterface|\PHPUnit_Framework_MockObject_MockObject */ protected $item; + /** + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + protected function setUp() { $this->pricingHelper = $this->getMock( @@ -48,6 +53,15 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase \Magento\Catalog\Model\Product\Configuration\Item\ItemInterface::class, ['getQty', 'getProduct', 'getOptionByCode', 'getFileDownloadParams'] ); + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->getMockForAbstractClass(); + + $this->serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + }); $this->helper = (new ObjectManager($this))->getObject( \Magento\Bundle\Helper\Catalog\Product\Configuration::class, @@ -55,6 +69,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase 'pricingHelper' => $this->pricingHelper, 'productConfiguration' => $this->productConfiguration, 'escaper' => $this->escaper, + 'serializer' => $this->serializer ] ); } @@ -239,7 +254,9 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase $itemOption->expects($this->once())->method('getValue')->will($this->returnValue($optionIds)); $typeInstance->expects($this->once())->method('getOptionsByIds')->with(unserialize($optionIds), $product) ->will($this->returnValue($collection)); - $typeInstance->expects($this->once())->method('getSelectionsByIds')->with(unserialize($selectionIds), $product) + $typeInstance->expects($this->once()) + ->method('getSelectionsByIds') + ->with(json_decode($selectionIds, true), $product) ->will($this->returnValue($collection2)); $product->expects($this->once())->method('getTypeInstance')->will($this->returnValue($typeInstance)); $product->expects($this->any())->method('getCustomOption')->with('selection_qty_' . $selectionId) -- GitLab From 654791d389bbfc1b29b48d45245a456f3892723a Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Fri, 9 Dec 2016 19:15:30 +0200 Subject: [PATCH 071/175] MAGETWO-61647: Detailed investigation for info_buyrequest field and extension points for its modifications - fixed code style --- .../Test/Unit/Helper/Catalog/Product/ConfigurationTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php index 17f0dbbf955..15b4e944916 100644 --- a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php @@ -61,7 +61,8 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase ->willReturnCallback( function ($value) { return json_decode($value, true); - }); + } + ); $this->helper = (new ObjectManager($this))->getObject( \Magento\Bundle\Helper\Catalog\Product\Configuration::class, -- GitLab From cf992d22afd8dbd62687d6f9bacbb5ccd9087de7 Mon Sep 17 00:00:00 2001 From: Andrey Konosov <akonosov@magento.com> Date: Fri, 9 Dec 2016 19:37:05 +0200 Subject: [PATCH 072/175] MAGETWO-61655: Magento/Sales/Model/Order/ShipmentFactory.php and unit tests - Fixed static tests --- .../Adminhtml/Sales/Order/View/Items/Renderer.php | 10 +++++++++- .../Model/Sales/Order/Pdf/Items/AbstractItems.php | 4 +++- .../Adminhtml/Sales/Order/View/Items/RendererTest.php | 1 - .../Model/Sales/Order/Pdf/Items/AbstractItemsTest.php | 1 - 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php index ffd850556a9..5e22c4be6a1 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php @@ -43,7 +43,15 @@ class Renderer extends \Magento\Sales\Block\Adminhtml\Order\View\Items\Renderer\ $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() ->get(SerializerInterface::class); - parent::__construct($context, $stockRegistry, $stockConfiguration, $registry, $messageHelper, $checkoutHelper, $data); + parent::__construct( + $context, + $stockRegistry, + $stockConfiguration, + $registry, + $messageHelper, + $checkoutHelper, + $data + ); } /** diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php index 4ae62543e21..0f5b5830529 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php @@ -10,6 +10,7 @@ use Magento\Framework\Serialize\SerializerInterface; /** * Sales Order Pdf Items renderer + * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\AbstractItems { @@ -44,7 +45,8 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra ) { $this->serializer = $serializer; - parent::__construct($context, + parent::__construct( + $context, $registry, $taxData, $filesystem, diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php index 1c0c7df002e..8d3ff4bd1ba 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php @@ -145,7 +145,6 @@ class RendererTest extends \PHPUnit_Framework_TestCase ]; } - public function testGetSelectionAttributes() { $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue([])); diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php index 5ee7479e784..3d39e291434 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php @@ -244,7 +244,6 @@ class AbstractItemsTest extends \PHPUnit_Framework_TestCase ]; } - public function testGetSelectionAttributes() { $this->orderItem->expects($this->any())->method('getProductOptions')->will($this->returnValue([])); -- GitLab From fcf3e48bc4edd67c8c23a0505ce36176df2e6cb5 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Mon, 12 Dec 2016 11:42:50 +0200 Subject: [PATCH 073/175] MAGETWO-61670: Fix serialization in module Sales (other) and unit tests - codestyle and code mess fixes --- .../Download/DownloadCustomOption.php | 30 ++++++++++--------- .../Download/DownloadCustomOptionTest.php | 1 + 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php b/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php index 1e034228fec..a73c46a4945 100644 --- a/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php +++ b/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php @@ -1,19 +1,19 @@ <?php /** - * * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Download; use Magento\Framework\App\ObjectManager; -use Magento\Framework\Serialize\SerializerInterface; -use Magento\Sales\Model\Download; use Magento\Framework\App\Action\Context; use Magento\Catalog\Model\Product\Type\AbstractType; use Magento\Framework\Controller\Result\ForwardFactory; -use \Magento\Framework\Unserialize\Unserialize; +/** + * Class DownloadCustomOption + * @package Magento\Sales\Controller\Download + */ class DownloadCustomOption extends \Magento\Framework\App\Action\Action { /** @@ -22,40 +22,42 @@ class DownloadCustomOption extends \Magento\Framework\App\Action\Action protected $resultForwardFactory; /** - * @var Download + * @var \Magento\Sales\Model\Download */ protected $download; /** - * @var Unserialize + * @var \Magento\Framework\Unserialize\Unserialize * @deprecated */ protected $unserialize; /** - * @var SerializerInterface + * @var \Magento\Framework\Serialize\SerializerInterface */ private $serializer; /** * @param Context $context * @param ForwardFactory $resultForwardFactory - * @param Download $download - * @param Unserialize $unserialize - * @param SerializerInterface $serializer + * @param \Magento\Sales\Model\Download $download + * @param \Magento\Framework\Unserialize\Unserialize $unserialize + * @param \Magento\Framework\Serialize\SerializerInterface $serializer */ public function __construct( Context $context, ForwardFactory $resultForwardFactory, - Download $download, - Unserialize $unserialize, - SerializerInterface $serializer = null + \Magento\Sales\Model\Download $download, + \Magento\Framework\Unserialize\Unserialize $unserialize, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { parent::__construct($context); $this->resultForwardFactory = $resultForwardFactory; $this->download = $download; $this->unserialize = $unserialize; - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); + $this->serializer = $serializer ?: ObjectManager::getInstance()->get( + \Magento\Framework\Serialize\SerializerInterface::class + ); } /** diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php index cbb4adce24a..192cefec7d1 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php @@ -5,6 +5,7 @@ */ namespace Magento\Sales\Test\Unit\Controller\Download; + use Magento\Framework\Serialize\SerializerInterface; use Magento\Framework\Unserialize\Unserialize; -- GitLab From 0072bcbafe59262dbb8ad74ec799b3908d0d2257 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Mon, 12 Dec 2016 13:20:53 +0200 Subject: [PATCH 074/175] MAGETWO-61670: Fix serialization in module Sales (other) and unit tests --- .../Sales/Controller/Download/DownloadCustomOption.php | 1 + .../static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php b/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php index a73c46a4945..edee3051f55 100644 --- a/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php +++ b/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php @@ -3,6 +3,7 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ + namespace Magento\Sales\Controller\Download; use Magento\Framework\App\ObjectManager; diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php index ec670e2f2ea..6de630bd0a6 100644 --- a/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php +++ b/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php @@ -196,10 +196,10 @@ class ObsoleteCodeTest extends \PHPUnit_Framework_TestCase */ protected function _testObsoleteClasses($content) { + /* avoid collision between obsolete class name and valid namespace */ + $content = preg_replace('/namespace[^;]+;/', '', $content); foreach (self::$_classes as $row) { list($class, , $replacement) = $row; - /* avoid collision between obsolete class name and valid namespace */ - $content = preg_replace('/namespace[^;]+;/', '', $content); $this->_assertNotRegExp( '/[^a-z\d_]' . preg_quote($class, '/') . '[^a-z\d_\\\\]/iS', $content, -- GitLab From 4ef3e21703a4708f22d35983b426304603df34fc Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Mon, 12 Dec 2016 13:43:11 +0200 Subject: [PATCH 075/175] MAGETWO-61670: Fix serialization in module Sales (other) and unit tests --- .../static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php index 6de630bd0a6..2c3ee9649dc 100644 --- a/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php +++ b/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php @@ -196,8 +196,9 @@ class ObsoleteCodeTest extends \PHPUnit_Framework_TestCase */ protected function _testObsoleteClasses($content) { - /* avoid collision between obsolete class name and valid namespace */ + /* avoid collision between obsolete class name and valid namespace and package tag */ $content = preg_replace('/namespace[^;]+;/', '', $content); + $content = preg_replace('/\@package\s[a-zA-Z0-9\\\_]+/', '', $content); foreach (self::$_classes as $row) { list($class, , $replacement) = $row; $this->_assertNotRegExp( -- GitLab From b2984b358988b81df198c9a6990a5ad3697a5b77 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Mon, 12 Dec 2016 15:18:06 +0200 Subject: [PATCH 076/175] MAGETWO-61683: Remove uses of serialize and unserialize in Module Tax --- .../Magento/Quote/Model/Quote/Address.php | 17 ++++-- .../Test/Unit/Model/Quote/AddressTest.php | 31 +++++++++- app/code/Magento/Tax/Helper/Data.php | 15 ++++- .../Model/Quote/GrandTotalDetailsPlugin.php | 15 ++++- .../Tax/Model/Sales/Total/Quote/Tax.php | 14 ++++- .../Magento/Tax/Test/Unit/Helper/DataTest.php | 29 +++++++-- .../Quote/GrandTotalDetailsPluginTest.php | 25 +++++++- .../Unit/Model/Sales/Total/Quote/TaxTest.php | 60 +++++++++++++++---- 8 files changed, 178 insertions(+), 28 deletions(-) diff --git a/app/code/Magento/Quote/Model/Quote/Address.php b/app/code/Magento/Quote/Model/Quote/Address.php index f1764da5e55..f4a350d39eb 100644 --- a/app/code/Magento/Quote/Model/Quote/Address.php +++ b/app/code/Magento/Quote/Model/Quote/Address.php @@ -8,7 +8,8 @@ namespace Magento\Quote\Model\Quote; use Magento\Customer\Api\AddressMetadataInterface; use Magento\Customer\Api\Data\AddressInterfaceFactory; use Magento\Customer\Api\Data\RegionInterfaceFactory; -use Magento\Quote\Api\Data\AddressInterface; +use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\App\ObjectManager; /** * Sales Quote address model @@ -233,6 +234,11 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements */ protected $totalsReader; + /** + * @var SerializerInterface + */ + private $serializer; + /** * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry @@ -266,6 +272,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements * @param \Magento\Framework\Model\ResourceModel\AbstractResource|null $resource * @param \Magento\Framework\Data\Collection\AbstractDb|null $resourceCollection * @param array $data + * @param SerializerInterface $serializer * * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ @@ -301,7 +308,8 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements \Magento\Quote\Model\Quote\TotalsReader $totalsReader, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] + array $data = [], + SerializerInterface $serializer = null ) { $this->_scopeConfig = $scopeConfig; $this->_addressItemFactory = $addressItemFactory; @@ -320,6 +328,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements $this->attributeList = $attributeList; $this->totalsCollector = $totalsCollector; $this->totalsReader = $totalsReader; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); parent::__construct( $context, $registry, @@ -1143,7 +1152,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements */ public function getAppliedTaxes() { - return unserialize($this->getData('applied_taxes')); + return $this->serializer->unserialize($this->getData('applied_taxes')); } /** @@ -1154,7 +1163,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements */ public function setAppliedTaxes($data) { - return $this->setData('applied_taxes', serialize($data)); + return $this->setData('applied_taxes', $this->serializer->serialize($data)); } /******************************* Start Total Collector Interface *******************************************/ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php index 7a8ccb232ba..4d6644ac33b 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php @@ -32,16 +32,23 @@ class AddressTest extends \PHPUnit_Framework_TestCase */ private $scopeConfig; + /** + * @var \Magento\Framework\Serialize\SerializerInterface | \PHPUnit_Framework_MockObject_MockObject + */ + protected $serializer; + protected function setUp() { $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->scopeConfig = $this->getMock(\Magento\Framework\App\Config::class, [], [], '', false); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class, [], [], '', false); $this->address = $objectManager->getObject( \Magento\Quote\Model\Quote\Address::class, [ - 'scopeConfig' => $this->scopeConfig + 'scopeConfig' => $this->scopeConfig, + 'serializer' => $this->serializer ] ); $this->quote = $this->getMock(\Magento\Quote\Model\Quote::class, [], [], '', false); @@ -134,4 +141,26 @@ class AddressTest extends \PHPUnit_Framework_TestCase $this->assertTrue($this->address->validateMinimumAmount()); } + + public function testGetAppliedTaxes() + { + $result = ['result']; + $this->serializer->expects($this->once()) + ->method('unserialize') + ->willReturn($result); + + $this->assertEquals($result, $this->address->getAppliedTaxes()); + } + + public function testSetAppliedTaxes() + { + $data = ['data']; + + $this->serializer->expects($this->once()) + ->method('serialize') + ->with($data) + ->willReturn('result'); + + $this->assertInstanceOf(\Magento\Quote\Model\Quote\Address::class, $this->address->setAppliedTaxes($data)); + } } diff --git a/app/code/Magento/Tax/Helper/Data.php b/app/code/Magento/Tax/Helper/Data.php index 3f9d9648b4b..67ef0e9b71d 100644 --- a/app/code/Magento/Tax/Helper/Data.php +++ b/app/code/Magento/Tax/Helper/Data.php @@ -12,13 +12,14 @@ use Magento\Framework\Pricing\PriceCurrencyInterface; use Magento\Store\Model\Store; use Magento\Customer\Model\Address; use Magento\Tax\Model\Config; -use Magento\Tax\Api\TaxCalculationInterface; use Magento\Customer\Model\Session as CustomerSession; use Magento\Tax\Api\OrderTaxManagementInterface; use Magento\Sales\Model\Order\Invoice; use Magento\Sales\Model\Order\Creditmemo; use Magento\Tax\Api\Data\OrderTaxDetailsItemInterface; use Magento\Sales\Model\EntityInterface; +use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\App\ObjectManager; /** * Catalog data helper @@ -95,6 +96,11 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper */ protected $priceCurrency; + /** + * @var SerializerInterface + */ + private $serializer; + /** * @param \Magento\Framework\App\Helper\Context $context * @param \Magento\Framework\Json\Helper\Data $jsonHelper @@ -106,6 +112,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper * @param \Magento\Catalog\Helper\Data $catalogHelper * @param OrderTaxManagementInterface $orderTaxManagement * @param PriceCurrencyInterface $priceCurrency + * @param SerializerInterface $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -118,7 +125,8 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper \Magento\Framework\Locale\ResolverInterface $localeResolver, \Magento\Catalog\Helper\Data $catalogHelper, OrderTaxManagementInterface $orderTaxManagement, - PriceCurrencyInterface $priceCurrency + PriceCurrencyInterface $priceCurrency, + SerializerInterface $serializer = null ) { parent::__construct($context); $this->priceCurrency = $priceCurrency; @@ -130,6 +138,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper $this->_localeResolver = $localeResolver; $this->catalogHelper = $catalogHelper; $this->orderTaxManagement = $orderTaxManagement; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); } /** @@ -738,7 +747,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper $taxableItemType = $itemTaxDetail->getType(); $ratio = $itemRatio; if ($item->getTaxRatio()) { - $taxRatio = unserialize($item->getTaxRatio()); + $taxRatio = $fullInfo = $this->serializer->unserialize($item->getTaxRatio()); if (isset($taxRatio[$taxableItemType])) { $ratio = $taxRatio[$taxableItemType]; } diff --git a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php index a727beef10b..b24204cad4e 100644 --- a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php +++ b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php @@ -6,6 +6,8 @@ namespace Magento\Tax\Model\Quote; use Magento\Quote\Api\Data\TotalSegmentExtensionFactory; +use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\App\ObjectManager; class GrandTotalDetailsPlugin { @@ -34,23 +36,32 @@ class GrandTotalDetailsPlugin */ protected $code; + /** + * @var SerializerInterface + */ + private $serializer; + /** * @param \Magento\Tax\Api\Data\GrandTotalDetailsInterfaceFactory $detailsFactory * @param \Magento\Tax\Api\Data\GrandTotalRatesInterfaceFactory $ratesFactory * @param TotalSegmentExtensionFactory $totalSegmentExtensionFactory * @param \Magento\Tax\Model\Config $taxConfig + * @param SerializerInterface $serializer */ public function __construct( \Magento\Tax\Api\Data\GrandTotalDetailsInterfaceFactory $detailsFactory, \Magento\Tax\Api\Data\GrandTotalRatesInterfaceFactory $ratesFactory, TotalSegmentExtensionFactory $totalSegmentExtensionFactory, - \Magento\Tax\Model\Config $taxConfig + \Magento\Tax\Model\Config $taxConfig, + SerializerInterface $serializer = null + ) { $this->detailsFactory = $detailsFactory; $this->ratesFactory = $ratesFactory; $this->totalSegmentExtensionFactory = $totalSegmentExtensionFactory; $this->taxConfig = $taxConfig; $this->code = 'tax'; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); } /** @@ -97,7 +108,7 @@ class GrandTotalDetailsPlugin $finalData = []; $fullInfo = $taxes['full_info']; if (is_string($fullInfo)) { - $fullInfo = unserialize($fullInfo); + $fullInfo = $this->serializer->unserialize($fullInfo); } foreach ($fullInfo as $info) { if ((array_key_exists('hidden', $info) && $info['hidden']) diff --git a/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php b/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php index da3b86958eb..f8999419dcc 100755 --- a/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php +++ b/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php @@ -11,6 +11,8 @@ use Magento\Quote\Model\Quote\Address; use Magento\Tax\Api\Data\TaxClassKeyInterface; use Magento\Tax\Model\Calculation; use Magento\Quote\Api\Data\ShippingAssignmentInterface; +use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\App\ObjectManager; /** * Tax totals calculation model @@ -46,6 +48,11 @@ class Tax extends CommonTaxCollector */ protected $_discountTaxCompensationes = []; + /** + * @var SerializerInterface + */ + private $serializer; + /** * Class constructor * @@ -57,6 +64,7 @@ class Tax extends CommonTaxCollector * @param CustomerAddressFactory $customerAddressFactory * @param CustomerAddressRegionFactory $customerAddressRegionFactory * @param \Magento\Tax\Helper\Data $taxData + * @param SerializerInterface $serializer */ public function __construct( \Magento\Tax\Model\Config $taxConfig, @@ -66,10 +74,12 @@ class Tax extends CommonTaxCollector \Magento\Tax\Api\Data\TaxClassKeyInterfaceFactory $taxClassKeyDataObjectFactory, CustomerAddressFactory $customerAddressFactory, CustomerAddressRegionFactory $customerAddressRegionFactory, - \Magento\Tax\Helper\Data $taxData + \Magento\Tax\Helper\Data $taxData, + SerializerInterface $serializer = null ) { $this->setCode('tax'); $this->_taxData = $taxData; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); parent::__construct( $taxConfig, $taxCalculationService, @@ -300,7 +310,7 @@ class Tax extends CommonTaxCollector $store = $quote->getStore(); $applied = $total->getAppliedTaxes(); if (is_string($applied)) { - $applied = unserialize($applied); + $applied = $this->serializer->unserialize($applied); } $amount = $total->getTaxAmount(); if ($amount === null) { diff --git a/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php b/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php index ea716a0c474..90da21367f8 100644 --- a/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php @@ -29,6 +29,9 @@ class DataTest extends \PHPUnit_Framework_TestCase /** @var \PHPUnit_Framework_MockObject_MockObject */ protected $taxConfigMock; + /** @var \PHPUnit_Framework_MockObject_MockObject */ + protected $serializer; + protected function setUp() { $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); @@ -42,13 +45,31 @@ class DataTest extends \PHPUnit_Framework_TestCase $this->taxConfigMock = $this->getMockBuilder(\Magento\Tax\Model\Config::class) ->disableOriginalConstructor() ->getMock(); + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->disableOriginalConstructor() + ->getMock(); + $this->serializer->expects($this->any()) + ->method('serialize') + ->willReturnCallback( + function ($value) { + return json_encode($value); + } + ); - $this->helper = $objectManager->getObject( + $this->serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); + $this->helper = $objectManager->getObject( \Magento\Tax\Helper\Data::class, [ 'orderTaxManagement' => $this->orderTaxManagementMock, 'priceCurrency' => $this->priceCurrencyMock, - 'taxConfig' => $this->taxConfigMock + 'taxConfig' => $this->taxConfigMock, + 'serializer' => $this->serializer ] ); } @@ -147,7 +168,7 @@ class DataTest extends \PHPUnit_Framework_TestCase $appliedTaxesData = $orderTaxDetailsItemData['applied_taxes']; $appliedTaxesMocks = []; foreach ($appliedTaxesData as $appliedTaxData) { - $appliedTaxesMock = $this->getMockBuilder( + $appliedTaxesMock = $this->getMockBuilder( \Magento\Tax\Api\Data\OrderTaxDetailsAppliedTaxInterface::class) ->getMock(); $appliedTaxesMock->expects($this->any()) @@ -363,7 +384,7 @@ class DataTest extends \PHPUnit_Framework_TestCase ), 'tax_amount' => 5.0, //half of weee tax is invoiced - 'tax_ratio' => serialize(['weee' => 0.5]), + 'tax_ratio' => json_encode(['weee' => 0.5]), ] ), ], diff --git a/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php b/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php index 693b0d437af..21a2209390d 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php @@ -75,6 +75,26 @@ class GrandTotalDetailsPluginTest extends \PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->disableOriginalConstructor() + ->getMock(); + + $serializer->expects($this->any()) + ->method('serialize') + ->willReturnCallback( + function ($value) { + return json_encode($value); + } + ); + + $serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); + $this->objectManagerHelper = new ObjectManager($this); $this->model = $this->objectManagerHelper->getObject( \Magento\Tax\Model\Quote\GrandTotalDetailsPlugin::class, @@ -83,6 +103,7 @@ class GrandTotalDetailsPluginTest extends \PHPUnit_Framework_TestCase 'ratesFactory' => $this->ratesFactoryMock, 'detailsFactory' => $this->detailsFactoryMock, 'taxConfig' => $this->taxConfigMock, + 'serializer' => $serializer ] ); } @@ -166,12 +187,12 @@ class GrandTotalDetailsPluginTest extends \PHPUnit_Framework_TestCase ); $taxTotalData = [ - 'full_info' => [ + 'full_info' => json_encode([ [ 'amount' => $taxAmount, 'rates' => [$taxRate], ], - ], + ]), ]; $taxTotalMock = $this->setupTaxTotal($taxTotalData); $addressTotals = [ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php index a74b5fe13ec..2f5850f3361 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php @@ -38,7 +38,7 @@ class TaxTest extends \PHPUnit_Framework_TestCase * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function testCollect($itemData, $appliedRatesData, $taxDetailsData, $quoteDetailsData, - $addressData, $verifyData + $addressData, $verifyData ) { $this->markTestIncomplete('Source code is not testable. Need to be refactored before unit testing'); $shippingAssignmentMock = $this->getMock(\Magento\Quote\Api\Data\ShippingAssignmentInterface::class); @@ -247,8 +247,8 @@ class TaxTest extends \PHPUnit_Framework_TestCase $address = $this->getMockBuilder(\Magento\Quote\Model\Quote\Address::class) ->disableOriginalConstructor() ->setMethods(['getAssociatedTaxables', - 'getQuote', 'getBillingAddress', 'getRegionId', - '__wakeup', 'getCustomAttributesCodes']) + 'getQuote', 'getBillingAddress', 'getRegionId', + '__wakeup', 'getCustomAttributesCodes']) ->getMock(); $item ->expects($this->any()) @@ -613,13 +613,36 @@ class TaxTest extends \PHPUnit_Framework_TestCase ->will($this->returnValue(true)); $objectManager = new ObjectManager($this); + + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->disableOriginalConstructor() + ->getMock(); + + $serializer->expects($this->any()) + ->method('serialize') + ->willReturnCallback( + function ($value) { + return json_encode($value); + } + ); + + $serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); + /** @var \Magento\Tax\Model\Sales\Total\Quote\Tax $taxTotalsCalcModel */ $taxTotalsCalcModel = $objectManager->getObject( \Magento\Tax\Model\Sales\Total\Quote\Tax::class, - ['taxConfig' => $taxConfig] + [ + 'taxConfig' => $taxConfig, + 'serializer' => $serializer + ] ); - $appliedTaxes = unserialize($appliedTaxesData); $store = $this->getMockBuilder(\Magento\Store\Model\Store::class) ->disableOriginalConstructor() ->setMethods(['convertPrice', '__wakeup']) @@ -641,7 +664,7 @@ class TaxTest extends \PHPUnit_Framework_TestCase $totalsMock ->expects($this->once()) ->method('getAppliedTaxes') - ->will($this->returnValue($appliedTaxes)); + ->will($this->returnValue($appliedTaxesData)); $totalsMock ->expects($this->any()) ->method('getGrandTotal') @@ -675,6 +698,7 @@ class TaxTest extends \PHPUnit_Framework_TestCase $totalsArray = $taxTotalsCalcModel->fetch($quote, $totalsMock); $this->assertArrayHasKey('value', $totalsArray[0]); $this->assertEquals($taxAmount, $totalsArray[0]['value']); + $this->assertEquals(json_decode($appliedTaxesData, true), $totalsArray[0]['full_info']); } /** @@ -685,10 +709,26 @@ class TaxTest extends \PHPUnit_Framework_TestCase */ public function dataProviderFetchArray() { - $appliedDataString = 'a:1:{s:7:"TX Rate";a:9:{s:6:"amount";d:80;s:11:"base_amount";d:80;s:7:"percent";'; - $appliedDataString .= 'd:10;s:2:"id";s:7:"TX Rate";s:5:"rates";a:1:{i:0;a:3:{s:7:"percent";d:10;s:4:"code";'; - $appliedDataString .= 's:7:"TX Rate";s:5:"title";s:7:"TX Rate";}}s:7:"item_id";s:1:"1";s:9:"item_type";'; - $appliedDataString .= 's:7:"product";s:18:"associated_item_id";N;s:7:"process";i:0;}}'; + $appliedDataString = [ + 'amount' => 80.0, + 'base_amount' => 80.0, + 'percent' => 10.0, + 'id' => 'TX Rate', + 'rates' => [ + 0 => [ + 'percent' => 10.0, + 'code' => 'TX Rate', + 'title' => 'TX Rate', + ], + ], + 'item_id' => '1', + 'item_type' => 'product', + 'associated_item_id' => NULL, + 'process' => 0, + ]; + + $appliedDataString = json_encode($appliedDataString); + $data = [ 'default' => [ 'appliedTaxesData' => $appliedDataString, -- GitLab From 65d0c88e457c31b929824a2dca071b6dcca3ba37 Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Mon, 12 Dec 2016 15:29:34 +0200 Subject: [PATCH 077/175] MAGETWO-61682: Module Quote and unit tests --- .../Quote/Model/Quote/Address/Total.php | 22 ++++++- .../Quote/Model/Quote/Item/Compare.php | 20 ++++++- .../Magento/Quote/Model/Quote/Payment.php | 15 ++++- .../Unit/Model/Quote/Address/TotalTest.php | 19 +++++- .../Unit/Model/Quote/Item/CompareTest.php | 35 +++++++---- .../Test/Unit/Model/Quote/PaymentTest.php | 60 ++++++++++++++++++- 6 files changed, 152 insertions(+), 19 deletions(-) diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total.php b/app/code/Magento/Quote/Model/Quote/Address/Total.php index aeaa71fb8da..f764c9df6a3 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total.php @@ -17,6 +17,26 @@ class Total extends \Magento\Framework\DataObject */ protected $baseTotalAmounts; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + + /** + * @param array $data [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer [optional] + */ + public function __construct( + array $data = [], + \Magento\Framework\Serialize\SerializerInterface $serializer = null + ) { + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); + parent::__construct($data); + } + /** * Set total amount value * @@ -159,7 +179,7 @@ class Total extends \Magento\Framework\DataObject { $fullInfo = $this->getData('full_info'); if (is_string($fullInfo)) { - $fullInfo = unserialize($fullInfo); + $fullInfo = $this->serializer->unserialize($fullInfo); } return $fullInfo; } diff --git a/app/code/Magento/Quote/Model/Quote/Item/Compare.php b/app/code/Magento/Quote/Model/Quote/Item/Compare.php index 10bb7120254..ab4303b7e97 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Compare.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Compare.php @@ -12,6 +12,22 @@ use Magento\Quote\Model\Quote\Item; */ class Compare { + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + + /** + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer [optional] + */ + public function __construct(\Magento\Framework\Serialize\SerializerInterface $serializer = null) + { + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); + } + /** * Returns option values adopted to compare * @@ -20,8 +36,8 @@ class Compare */ protected function getOptionValues($value) { - if (is_string($value) && is_array(@unserialize($value))) { - $value = @unserialize($value); + if (is_string($value) && is_array($this->serializer->unserialize($value))) { + $value = $this->serializer->unserialize($value); unset($value['qty'], $value['uenc']); $value = array_filter($value, function ($optionValue) { return !empty($optionValue); diff --git a/app/code/Magento/Quote/Model/Quote/Payment.php b/app/code/Magento/Quote/Model/Quote/Payment.php index 612802ccd27..7c8080b1809 100644 --- a/app/code/Magento/Quote/Model/Quote/Payment.php +++ b/app/code/Magento/Quote/Model/Quote/Payment.php @@ -65,6 +65,13 @@ class Payment extends \Magento\Payment\Model\Info implements PaymentInterface */ private $additionalChecks; + /** + * Serializer interface instance. + * + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry @@ -77,6 +84,7 @@ class Payment extends \Magento\Payment\Model\Info implements PaymentInterface * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data * @param array $additionalChecks + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer [optional] * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -90,10 +98,13 @@ class Payment extends \Magento\Payment\Model\Info implements PaymentInterface \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], - array $additionalChecks = [] + array $additionalChecks = [], + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->methodSpecificationFactory = $methodSpecificationFactory; $this->additionalChecks = $additionalChecks; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Framework\Serialize\SerializerInterface::class); parent::__construct( $context, $registry, @@ -326,7 +337,7 @@ class Payment extends \Magento\Payment\Model\Info implements PaymentInterface { $additionalDataValue = $this->getData(self::KEY_ADDITIONAL_DATA); if (is_string($additionalDataValue)) { - $additionalData = @unserialize($additionalDataValue); + $additionalData = $this->serializer->unserialize($additionalDataValue); if (is_array($additionalData)) { return $additionalData; } diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php index efe6a81ce92..3e79ffb5dfa 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php @@ -15,7 +15,21 @@ class TotalTest extends \PHPUnit_Framework_TestCase protected function setUp() { - $this->model = new \Magento\Quote\Model\Quote\Address\Total(); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback(function ($value) { + return json_decode($value, true); + }); + + $objectManagerHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); + $this->model = $objectManagerHelper->getObject( + \Magento\Quote\Model\Quote\Address\Total::class, + [ + 'serializer' => $serializer + ]); } /** @@ -171,6 +185,7 @@ class TotalTest extends \PHPUnit_Framework_TestCase /** * Verify handling of serialized, non-serialized input into and out of getFullInfo() * + * @covers \Magento\Quote\Model\Quote\Address\Total::getFullInfo() * @param $input * @param $expected * @dataProvider getFullInfoDataProvider @@ -187,7 +202,7 @@ class TotalTest extends \PHPUnit_Framework_TestCase public function getFullInfoDataProvider() { $myArray = ['team' => 'kiwis']; - $serializedInput = serialize($myArray); + $serializedInput = json_encode($myArray); return [ 'simple array' => [ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php index f8b72e4df6b..b362aae2638 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php @@ -38,29 +38,42 @@ class CompareTest extends \PHPUnit_Framework_TestCase */ protected function setUp() { - $this->itemMock = $this->getMock( + $this->itemMock = $this->getMock( \Magento\Quote\Model\Quote\Item::class, ['__wakeup', 'getProductId', 'getOptions'], [], '', false ); - $this->comparedMock = $this->getMock( + $this->comparedMock = $this->getMock( \Magento\Quote\Model\Quote\Item::class, ['__wakeup', 'getProductId', 'getOptions'], [], '', false ); - $this->optionMock = $this->getMock( + $this->optionMock = $this->getMock( \Magento\Quote\Model\Quote\Item\Option::class, ['__wakeup', 'getCode', 'getValue'], [], '', false ); - - $this->helper = new \Magento\Quote\Model\Quote\Item\Compare(); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback(function ($value) { + return json_decode($value, true); + }); + + $objectManagerHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); + $this->helper = $objectManagerHelper->getObject( + \Magento\Quote\Model\Quote\Item\Compare::class, + [ + 'serializer' => $serializer + ]); } /** @@ -112,7 +125,7 @@ class CompareTest extends \PHPUnit_Framework_TestCase ->will($this->returnValue([ $this->getOptionMock('option-1', 1), $this->getOptionMock('option-2', 'option-value'), - $this->getOptionMock('option-3', serialize([ + $this->getOptionMock('option-3', json_encode([ 'value' => 'value-1', 'qty' => 2, ]) @@ -123,7 +136,7 @@ class CompareTest extends \PHPUnit_Framework_TestCase ->will($this->returnValue([ $this->getOptionMock('option-4', 1), $this->getOptionMock('option-2', 'option-value'), - $this->getOptionMock('option-3', serialize([ + $this->getOptionMock('option-3', json_encode([ 'value' => 'value-1', 'qty' => 2, ])), @@ -148,7 +161,7 @@ class CompareTest extends \PHPUnit_Framework_TestCase ->will($this->returnValue([ $this->getOptionMock('option-1', 1), $this->getOptionMock('option-2', 'option-value'), - $this->getOptionMock('option-3', serialize([ + $this->getOptionMock('option-3', json_encode([ 'value' => 'value-1', 'qty' => 2, ]) @@ -176,7 +189,7 @@ class CompareTest extends \PHPUnit_Framework_TestCase ->will($this->returnValue([ $this->getOptionMock('option-1', 1), $this->getOptionMock('option-2', 'option-value'), - $this->getOptionMock('option-3', serialize([ + $this->getOptionMock('option-3', json_encode([ 'value' => 'value-1', 'qty' => 2, ]) @@ -201,13 +214,13 @@ class CompareTest extends \PHPUnit_Framework_TestCase ->will($this->returnValue(1)); $this->itemMock->expects($this->once())->method('getOptions')->willReturn([ - $this->getOptionMock('option-1', serialize([ + $this->getOptionMock('option-1', json_encode([ 'non-empty-option' => 'test', 'empty_option' => '' ])) ]); $this->comparedMock->expects($this->once())->method('getOptions')->willReturn([ - $this->getOptionMock('option-1', serialize([ + $this->getOptionMock('option-1', json_encode([ 'non-empty-option' => 'test' ])) ]); diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php index cc23683cb48..8473f62f883 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php @@ -41,12 +41,21 @@ class PaymentTest extends \PHPUnit_Framework_TestCase )->disableOriginalConstructor() ->getMock(); $this->eventManager = $this->getMock(ManagerInterface::class); + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + $serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback(function ($value) { + return json_decode($value, true); + }); $this->model = $objectManager->getObject( Payment::class, [ 'methodSpecificationFactory' => $this->specificationFactory, - 'eventDispatcher' => $this->eventManager + 'eventDispatcher' => $this->eventManager, + 'serializer' => $serializer ] ); } @@ -144,6 +153,55 @@ class PaymentTest extends \PHPUnit_Framework_TestCase $this->model->importData($data); } + /** + * @covers \Magento\Quote\Model\Quote\Payment::getAdditionalData() + * @dataProvider getAdditionalDataDataProvider + * @param mixed $expected + * @param mixed $additionalData + */ + public function testGetAdditionalData($expected, $additionalData) + { + $this->model->setData(Payment::KEY_ADDITIONAL_DATA, $additionalData); + $this->assertSame($expected, $this->model->getAdditionalData()); + } + + /** + * @return array + */ + public function getAdditionalDataDataProvider() + { + return [ + // Variation #1 + [ + //$expected + ['field1' => 'value1', 'field2' => 'value2'], + //$additionalData + ['field1' => 'value1', 'field2' => 'value2'], + ], + // Variation #2 + [ + //$expected + ['field1' => 'value1', 'field2' => 'value2'], + //$additionalData + '{"field1":"value1","field2":"value2"}', + ], + // Variation #3 + [ + //$expected + null, + //$additionalData + '{"field1":field2":"value2"}', + ], + // Variation #4 + [ + //$expected + null, + //$additionalData + 123, + ], + ]; + } + /** * @return array */ -- GitLab From a1849ef1f81c1cfa0aa1c672ee2c2134f5d83877 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Mon, 12 Dec 2016 15:45:46 +0200 Subject: [PATCH 078/175] MAGETWO-61683: Remove uses of serialize and unserialize in Module Tax --- app/code/Magento/Tax/Helper/Data.php | 2 +- app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php | 1 - app/code/Magento/Tax/Test/Unit/Helper/DataTest.php | 2 ++ 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Tax/Helper/Data.php b/app/code/Magento/Tax/Helper/Data.php index 67ef0e9b71d..5659275fc28 100644 --- a/app/code/Magento/Tax/Helper/Data.php +++ b/app/code/Magento/Tax/Helper/Data.php @@ -747,7 +747,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper $taxableItemType = $itemTaxDetail->getType(); $ratio = $itemRatio; if ($item->getTaxRatio()) { - $taxRatio = $fullInfo = $this->serializer->unserialize($item->getTaxRatio()); + $taxRatio = $this->serializer->unserialize($item->getTaxRatio()); if (isset($taxRatio[$taxableItemType])) { $ratio = $taxRatio[$taxableItemType]; } diff --git a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php index b24204cad4e..96c3b3ec00d 100644 --- a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php +++ b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php @@ -54,7 +54,6 @@ class GrandTotalDetailsPlugin TotalSegmentExtensionFactory $totalSegmentExtensionFactory, \Magento\Tax\Model\Config $taxConfig, SerializerInterface $serializer = null - ) { $this->detailsFactory = $detailsFactory; $this->ratesFactory = $ratesFactory; diff --git a/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php b/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php index 90da21367f8..a5536960f5d 100644 --- a/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php @@ -12,6 +12,8 @@ use Magento\Framework\DataObject as MagentoObject; /** * Class DataTest + * + * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class DataTest extends \PHPUnit_Framework_TestCase { -- GitLab From 95d691c1f7ec0febee53c080d8038b2c4e28c14a Mon Sep 17 00:00:00 2001 From: Oleksandr Dubovyk <odubovyk@magento.com> Date: Mon, 12 Dec 2016 19:25:36 +0200 Subject: [PATCH 079/175] MAGETWO-61682: Module Quote and unit tests - Refactored serializer - Added Integration test --- .../Magento/Quote/Model/Quote/Address.php | 15 +++++++++--- .../Magento/Quote/Model/Quote/AddressTest.php | 24 +++++++++++++++++++ 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/app/code/Magento/Quote/Model/Quote/Address.php b/app/code/Magento/Quote/Model/Quote/Address.php index f1764da5e55..4137cffa5e8 100644 --- a/app/code/Magento/Quote/Model/Quote/Address.php +++ b/app/code/Magento/Quote/Model/Quote/Address.php @@ -9,7 +9,8 @@ use Magento\Customer\Api\AddressMetadataInterface; use Magento\Customer\Api\Data\AddressInterfaceFactory; use Magento\Customer\Api\Data\RegionInterfaceFactory; use Magento\Quote\Api\Data\AddressInterface; - +use \Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\App\ObjectManager; /** * Sales Quote address model * @@ -233,6 +234,11 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements */ protected $totalsReader; + /** + * @var \Magento\Framework\Serialize\SerializerInterface + */ + protected $serializer; + /** * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry @@ -265,6 +271,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements * @param \Magento\Quote\Model\Quote\TotalsReader $totalsReader * @param \Magento\Framework\Model\ResourceModel\AbstractResource|null $resource * @param \Magento\Framework\Data\Collection\AbstractDb|null $resourceCollection + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer [optional] * @param array $data * * @SuppressWarnings(PHPMD.ExcessiveParameterList) @@ -301,6 +308,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements \Magento\Quote\Model\Quote\TotalsReader $totalsReader, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, + SerializerInterface $serializer = null, array $data = [] ) { $this->_scopeConfig = $scopeConfig; @@ -320,6 +328,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements $this->attributeList = $attributeList; $this->totalsCollector = $totalsCollector; $this->totalsReader = $totalsReader; + $this->serializer = $serializer ? $serializer : ObjectManager::getInstance()->get(SerializerInterface::class); parent::__construct( $context, $registry, @@ -1143,7 +1152,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements */ public function getAppliedTaxes() { - return unserialize($this->getData('applied_taxes')); + return $this->serializer->unserialize($this->getData('applied_taxes')); } /** @@ -1154,7 +1163,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements */ public function setAppliedTaxes($data) { - return $this->setData('applied_taxes', serialize($data)); + return $this->setData('applied_taxes', $this->serializer->serialize($data)); } /******************************* Start Total Collector Interface *******************************************/ diff --git a/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/AddressTest.php b/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/AddressTest.php index d71f5c2df7e..ad7b8740760 100644 --- a/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/AddressTest.php +++ b/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/AddressTest.php @@ -285,4 +285,28 @@ class AddressTest extends \PHPUnit_Framework_TestCase $this->assertEquals($this->_quote->getId(), $this->_address->getQuoteId()); $this->assertEquals($customerAddressId, $this->_address->getCustomerAddressId()); } + + /** + * Tests + * + * @covers \Magento\Quote\Model\Quote\Address::setAppliedTaxes() + * @covers \Magento\Quote\Model\Quote\Address::getAppliedTaxes() + * @dataProvider dataProvider + * @param $taxes + * @param $expected + */ + public function testAppliedTaxes($taxes, $expected) + { + $this->_address->setAppliedTaxes($taxes); + + $this->assertSame($expected, $this->_address->getAppliedTaxes()); + } + + public function dataProvider() + { + return [ + ['test', 'test'], + [[123, true], [123, true]] + ]; + } } -- GitLab From 04ea09b20709094de0acf833009f35f6de7a4841 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Mon, 12 Dec 2016 19:42:44 +0200 Subject: [PATCH 080/175] MAGETWO-61683: Remove uses of serialize and unserialize in Module Tax --- .../Test/Unit/Model/Quote/AddressTest.php | 21 ++++++++----------- 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php index 4d6644ac33b..817be7eb9c0 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php @@ -142,25 +142,22 @@ class AddressTest extends \PHPUnit_Framework_TestCase $this->assertTrue($this->address->validateMinimumAmount()); } - public function testGetAppliedTaxes() - { - $result = ['result']; - $this->serializer->expects($this->once()) - ->method('unserialize') - ->willReturn($result); - - $this->assertEquals($result, $this->address->getAppliedTaxes()); - } - - public function testSetAppliedTaxes() + public function testSetAndGetAppliedTaxes() { $data = ['data']; + $result = json_encode($data); $this->serializer->expects($this->once()) ->method('serialize') ->with($data) - ->willReturn('result'); + ->willReturn($result); + + $this->serializer->expects($this->once()) + ->method('unserialize') + ->with($result) + ->willReturn($data); $this->assertInstanceOf(\Magento\Quote\Model\Quote\Address::class, $this->address->setAppliedTaxes($data)); + $this->assertEquals($data, $this->address->getAppliedTaxes()); } } -- GitLab From 67c05709f4b5e4e2589f261b15b8e2874bd16208 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Mon, 12 Dec 2016 13:52:51 -0600 Subject: [PATCH 081/175] MAGETWO-61872: Create FieldDataConverter Moving QueryModifierInterface under Magento\Framework\DB\Select namespace --- lib/internal/Magento/Framework/DB/FieldDataConverter.php | 2 +- .../{FieldDataConverter => Select}/QueryModifierInterface.php | 2 +- .../Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename lib/internal/Magento/Framework/DB/{FieldDataConverter => Select}/QueryModifierInterface.php (87%) diff --git a/lib/internal/Magento/Framework/DB/FieldDataConverter.php b/lib/internal/Magento/Framework/DB/FieldDataConverter.php index 1cdbc180b47..39dcd3238c9 100644 --- a/lib/internal/Magento/Framework/DB/FieldDataConverter.php +++ b/lib/internal/Magento/Framework/DB/FieldDataConverter.php @@ -8,7 +8,7 @@ namespace Magento\Framework\DB; use Magento\Framework\DB\Adapter\AdapterInterface; use Magento\Framework\DB\Query\Generator; use Magento\Framework\DB\DataConverter\DataConverterInterface; -use Magento\Framework\DB\FieldDataConverter\QueryModifierInterface; +use Magento\Framework\DB\Select\QueryModifierInterface; /** * Convert field data from one representation to another diff --git a/lib/internal/Magento/Framework/DB/FieldDataConverter/QueryModifierInterface.php b/lib/internal/Magento/Framework/DB/Select/QueryModifierInterface.php similarity index 87% rename from lib/internal/Magento/Framework/DB/FieldDataConverter/QueryModifierInterface.php rename to lib/internal/Magento/Framework/DB/Select/QueryModifierInterface.php index 80b9326f89f..5cf676e088c 100644 --- a/lib/internal/Magento/Framework/DB/FieldDataConverter/QueryModifierInterface.php +++ b/lib/internal/Magento/Framework/DB/Select/QueryModifierInterface.php @@ -3,7 +3,7 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ -namespace Magento\Framework\DB\FieldDataConverter; +namespace Magento\Framework\DB\Select; use Magento\Framework\DB\Select; diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php index 62aa83ca41c..f0005de98dc 100644 --- a/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php +++ b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php @@ -11,7 +11,7 @@ use Magento\Framework\DB\Adapter\AdapterInterface; use Magento\Framework\DB\FieldDataConverter; use Magento\Framework\DB\DataConverter\DataConverterInterface; use Magento\Framework\DB\Select; -use Magento\Framework\DB\FieldDataConverter\QueryModifierInterface; +use Magento\Framework\DB\Select\QueryModifierInterface; class FieldDataConverterTest extends \PHPUnit_Framework_TestCase { -- GitLab From 67a31e752bfa938342bce60f3c07033818912471 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Mon, 12 Dec 2016 19:34:04 -0600 Subject: [PATCH 082/175] MAGETWO-62133: Create QueryModifier to select only options of type file and info_buyRequest Creating QueryModifier --- app/code/Magento/Quote/Setup/UpgradeData.php | 59 ++++++++++++++++++- .../Framework/DB/Select/InQueryModifier.php | 34 +++++++++++ .../DB/Select/QueryModifierFactory.php | 42 +++++++++++++ 3 files changed, 133 insertions(+), 2 deletions(-) create mode 100644 lib/internal/Magento/Framework/DB/Select/InQueryModifier.php create mode 100644 lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index 19873352c33..6e347288036 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -8,9 +8,11 @@ namespace Magento\Quote\Setup; use Magento\Framework\Setup\UpgradeDataInterface; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; -use Magento\Eav\Model\Config; use Magento\Framework\DB\FieldDataConverterFactory; use Magento\Framework\DB\DataConverter\SerializedToJson; +use Magento\Framework\DB\Select\QueryModifierFactory; +use Magento\Framework\DB\Select\InQueryModifier; +use Magento\Framework\DB\Query\Generator; class UpgradeData implements UpgradeDataInterface { @@ -19,15 +21,31 @@ class UpgradeData implements UpgradeDataInterface */ private $fieldDataConverterFactory; + /** + * @var QueryModifierFactory + */ + private $queryModifierFactory; + + /** + * @var Generator + */ + private $queryGenerator; + /** * Constructor * * @param FieldDataConverterFactory $fieldDataConverterFactory + * @param QueryModifierFactory $queryModifierFactory + * @param Generator $generator */ public function __construct( - FieldDataConverterFactory $fieldDataConverterFactory + FieldDataConverterFactory $fieldDataConverterFactory, + QueryModifierFactory $queryModifierFactory, + Generator $queryGenerator ) { $this->fieldDataConverterFactory = $fieldDataConverterFactory; + $this->queryModifierFactory = $queryModifierFactory; + $this->queryGenerator = $queryGenerator; } /** @@ -56,5 +74,42 @@ class UpgradeData implements UpgradeDataInterface 'payment_id', 'additional_information' ); + $queryModifier = $this->queryModifierFactory->create( + InQueryModifier::class, + [ + 'code' => [ + 'parameters', + 'info_buyRequest', + 'bundle_option_ids', + 'bundle_selection_attributes', + ] + ] + ); + $fieldDataConverter->convert( + $setup->getConnection(), + $setup->getTable('quote_item_option'), + 'option_id', + 'value', + $queryModifier + ); + $select = $setup->getConnection() + ->select() + ->from( + $setup->getTable('catalog_product_option'), + ['CONCAT("option_", option_id)'] + ) + ->where('type = ?', 'file'); + $iterator = $this->queryGenerator->generate('option_id', $select); + foreach ($iterator as $selectByRange) { + $codes = $setup->getConnection()->fetchCol($selectByRange); + $queryModifier = $this->queryModifierFactory->create(InQueryModifier::class, ['code' => $codes]); + $fieldDataConverter->convert( + $setup->getConnection(), + $setup->getTable('quote_item_option'), + 'option_id', + 'value', + $queryModifier + ); + } } } diff --git a/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php b/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php new file mode 100644 index 00000000000..bb1b3d35346 --- /dev/null +++ b/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php @@ -0,0 +1,34 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Framework\DB\Select; + +use Magento\Framework\DB\Select; + +/** + * Add in condition to select + */ +class InQueryModifier implements QueryModifierInterface +{ + /** + * @var array + */ + private $values; + + public function __constructor($values) + { + $this->values = $values; + } + + /** + * {@inheritdoc} + */ + public function modify(Select $select) + { + foreach ($this->values as $field => $values) { + $select->where($field . ' IN (?)', $values); + } + } +} diff --git a/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php b/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php new file mode 100644 index 00000000000..fe2933627d5 --- /dev/null +++ b/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php @@ -0,0 +1,42 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Framework\DB\Select; + +use Magento\Framework\ObjectManagerInterface; + +/** + * Create instance of QueryModifierInterface + */ +class QueryModifierFactory +{ + /** + * @var ObjectManagerInterface + */ + private $objectManager; + + /** + * Constructor + * + * @param ObjectManagerInterface $objectManager + */ + public function __construct( + ObjectManagerInterface $objectManager + ) { + $this->objectManager = $objectManager; + } + + /** + * Create instance of QueryModifierInterface + * + * @param string $queryModifierClassName + * @param array $data + * @return QueryModifierInterface + */ + public function create($queryModifierClassName, $data) + { + return $this->objectManager->create($queryModifierClassName, $data); + } +} -- GitLab From 8358e49e4e612600b1611d216ffcaf3feb778340 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Mon, 12 Dec 2016 21:58:47 -0600 Subject: [PATCH 083/175] MAGETWO-62133: Create QueryModifier to select only options of type file and info_buyRequest Creating QueryModifier --- app/code/Magento/Quote/Setup/UpgradeData.php | 29 ++++++++++++++----- .../Framework/DB/Select/InQueryModifier.php | 10 +++++-- 2 files changed, 30 insertions(+), 9 deletions(-) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index 6e347288036..96b05d2e244 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -77,11 +77,13 @@ class UpgradeData implements UpgradeDataInterface $queryModifier = $this->queryModifierFactory->create( InQueryModifier::class, [ - 'code' => [ - 'parameters', - 'info_buyRequest', - 'bundle_option_ids', - 'bundle_selection_attributes', + 'values' => [ + 'code' => [ + 'parameters', + 'info_buyRequest', + 'bundle_option_ids', + 'bundle_selection_attributes', + ] ] ] ); @@ -96,13 +98,26 @@ class UpgradeData implements UpgradeDataInterface ->select() ->from( $setup->getTable('catalog_product_option'), - ['CONCAT("option_", option_id)'] + ['option_id'] ) ->where('type = ?', 'file'); $iterator = $this->queryGenerator->generate('option_id', $select); foreach ($iterator as $selectByRange) { $codes = $setup->getConnection()->fetchCol($selectByRange); - $queryModifier = $this->queryModifierFactory->create(InQueryModifier::class, ['code' => $codes]); + $codes = array_map( + function ($id) { + return 'option_' . $id; + }, + $codes + ); + $queryModifier = $this->queryModifierFactory->create( + InQueryModifier::class, + [ + 'values' => [ + 'code' => $codes + ] + ] + ); $fieldDataConverter->convert( $setup->getConnection(), $setup->getTable('quote_item_option'), diff --git a/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php b/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php index bb1b3d35346..cf20152d804 100644 --- a/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php +++ b/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php @@ -17,8 +17,14 @@ class InQueryModifier implements QueryModifierInterface */ private $values; - public function __constructor($values) - { + /** + * Constructor + * + * @param array $values + */ + public function __construct( + $values = [] + ) { $this->values = $values; } -- GitLab From 1891b7927e17cfe3ae397878d87b793ed9b6b90b Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Tue, 13 Dec 2016 08:35:30 +0200 Subject: [PATCH 084/175] MAGETWO-61682: Module Quote and unit tests --- .../Quote/Test/Unit/Model/Quote/Address/TotalTest.php | 3 ++- .../Magento/Checkout/_files/quote_with_payment_saved.php | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php index 3e79ffb5dfa..9bade22caf8 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php @@ -29,7 +29,8 @@ class TotalTest extends \PHPUnit_Framework_TestCase \Magento\Quote\Model\Quote\Address\Total::class, [ 'serializer' => $serializer - ]); + ] + ); } /** diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved.php index c3dbc4baaf3..e480f982bd6 100644 --- a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved.php +++ b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved.php @@ -6,6 +6,9 @@ require 'quote_with_address.php'; +/** @var \Magento\Framework\Serialize\SerializerInterface $serializer */ +$serializer = $objectManager->create(\Magento\Framework\Serialize\SerializerInterface::class); + $quote->setReservedOrderId( 'test_order_1_with_payment' ); @@ -22,7 +25,7 @@ $quote->getPayment() ->setCcType('visa') ->setCcExpYear(2014) ->setCcExpMonth(1) - ->setAdditionalData(serialize($paymentDetails)); + ->setAdditionalData($serializer->serialize($paymentDetails)); $quote->collectTotals()->save(); -- GitLab From 8966e104987ffccb818db8204fd5df53ef9ed1c6 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Tue, 13 Dec 2016 15:08:00 +0200 Subject: [PATCH 085/175] MAGETWO-61658: Create upgrade scripts for sales-related data - Wishlist module upgrade --- .../Magento/Wishlist/Setup/UpgradeData.php | 124 ++++++++++++++++++ app/code/Magento/Wishlist/etc/module.xml | 2 +- 2 files changed, 125 insertions(+), 1 deletion(-) create mode 100644 app/code/Magento/Wishlist/Setup/UpgradeData.php diff --git a/app/code/Magento/Wishlist/Setup/UpgradeData.php b/app/code/Magento/Wishlist/Setup/UpgradeData.php new file mode 100644 index 00000000000..1f45b801b24 --- /dev/null +++ b/app/code/Magento/Wishlist/Setup/UpgradeData.php @@ -0,0 +1,124 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Wishlist\Setup; + +use Magento\Framework\Setup\UpgradeDataInterface; +use Magento\Framework\Setup\ModuleContextInterface; +use Magento\Framework\Setup\ModuleDataSetupInterface; +use Magento\Framework\DB\FieldDataConverterFactory; +use Magento\Framework\DB\DataConverter\SerializedToJson; +use Magento\Framework\DB\Select\QueryModifierFactory; +use Magento\Framework\DB\Select\InQueryModifier; +use Magento\Framework\DB\Query\Generator; + +class UpgradeData implements UpgradeDataInterface +{ + /** + * @var FieldDataConverterFactory + */ + private $fieldDataConverterFactory; + + /** + * @var QueryModifierFactory + */ + private $queryModifierFactory; + + /** + * @var Generator + */ + private $queryGenerator; + + /** + * Constructor + * + * @param FieldDataConverterFactory $fieldDataConverterFactory + * @param QueryModifierFactory $queryModifierFactory + * @param Generator $queryGenerator + */ + public function __construct( + FieldDataConverterFactory $fieldDataConverterFactory, + QueryModifierFactory $queryModifierFactory, + Generator $queryGenerator + ) { + $this->fieldDataConverterFactory = $fieldDataConverterFactory; + $this->queryModifierFactory = $queryModifierFactory; + $this->queryGenerator = $queryGenerator; + } + + /** + * {@inheritdoc} + */ + public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context) + { + if (version_compare($context->getVersion(), '2.0.1', '<')) { + $this->upgradeToVersionTwoZeroOne($setup); + } + } + + /** + * Upgrade to version 2.0.1, convert data for `value` field in `wishlist_item_option table` + * from php-serialized to JSON format + * + * @param ModuleDataSetupInterface $setup + * @return void + */ + private function upgradeToVersionTwoZeroOne(ModuleDataSetupInterface $setup) + { + $fieldDataConverter = $this->fieldDataConverterFactory->create(SerializedToJson::class); + $queryModifier = $this->queryModifierFactory->create( + InQueryModifier::class, + [ + 'values' => [ + 'code' => [ + 'parameters', + 'info_buyRequest', + 'bundle_option_ids', + 'bundle_selection_attributes', + ] + ] + ] + ); + $fieldDataConverter->convert( + $setup->getConnection(), + $setup->getTable('wishlist_item_option'), + 'option_id', + 'value', + $queryModifier + ); + $select = $setup->getConnection() + ->select() + ->from( + $setup->getTable('catalog_product_option'), + ['option_id'] + ) + ->where('type = ?', 'file'); + $iterator = $this->queryGenerator->generate('option_id', $select); + foreach ($iterator as $selectByRange) { + $codes = $setup->getConnection()->fetchCol($selectByRange); + $codes = array_map( + function ($id) { + return 'option_' . $id; + }, + $codes + ); + $queryModifier = $this->queryModifierFactory->create( + InQueryModifier::class, + [ + 'values' => [ + 'code' => $codes + ] + ] + ); + $fieldDataConverter->convert( + $setup->getConnection(), + $setup->getTable('wishlist_item_option'), + 'option_id', + 'value', + $queryModifier + ); + } + } +} diff --git a/app/code/Magento/Wishlist/etc/module.xml b/app/code/Magento/Wishlist/etc/module.xml index a8b0fa21ede..5643b2dc285 100644 --- a/app/code/Magento/Wishlist/etc/module.xml +++ b/app/code/Magento/Wishlist/etc/module.xml @@ -6,7 +6,7 @@ */ --> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> - <module name="Magento_Wishlist" setup_version="2.0.0"> + <module name="Magento_Wishlist" setup_version="2.0.1"> <sequence> <module name="Magento_Customer"/> <module name="Magento_Catalog"/> -- GitLab From cf67b73d46df933ede6ff7d28ef63204a59b7d8c Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Wed, 14 Dec 2016 12:13:50 +0200 Subject: [PATCH 086/175] MAGETWO-62134: Create data converter that can process nested serialized data --- .../ProductOptions/SerializedToJson.php | 39 +++++++++++++ app/code/Magento/Sales/Setup/UpgradeData.php | 11 +++- .../ProductOptions/SerializedToJsonTest.php | 58 +++++++++++++++++++ .../DB/DataConverter/SerializedToJson.php | 4 +- 4 files changed, 107 insertions(+), 5 deletions(-) create mode 100644 app/code/Magento/Sales/Model/Order/Item/Converter/ProductOptions/SerializedToJson.php create mode 100644 app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php diff --git a/app/code/Magento/Sales/Model/Order/Item/Converter/ProductOptions/SerializedToJson.php b/app/code/Magento/Sales/Model/Order/Item/Converter/ProductOptions/SerializedToJson.php new file mode 100644 index 00000000000..b4ceccad248 --- /dev/null +++ b/app/code/Magento/Sales/Model/Order/Item/Converter/ProductOptions/SerializedToJson.php @@ -0,0 +1,39 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Sales\Model\Order\Item\Converter\ProductOptions; + +/** + * Class SerializedToJson + * @package Magento\Sales\Model\Order\Item\Converter\ProductOptions + * + * Serializer used to update nested serialized data in product_options field + */ +class SerializedToJson extends \Magento\Framework\DB\DataConverter\SerializedToJson +{ + /** + * Convert from serialized to JSON format + * + * @param string $value + * @return string + */ + public function convert($value) + { + $valueUnserialized = $this->serialize->unserialize($value); + if (isset($valueUnserialized['options'])) { + foreach ($valueUnserialized['options'] as $key => $option) { + if ($option['option_type'] === 'file') { + $valueUnserialized['options'][$key]['option_value'] = $this->json->serialize( + $this->serialize->unserialize( + $option['option_value'] + ) + ); + } + } + } + return $this->json->serialize($valueUnserialized); + } +} diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index a4a38f5cdcb..5f97f74f4a9 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -5,6 +5,8 @@ */ namespace Magento\Sales\Setup; +use Magento\Sales\Model\Order\Item\Converter\ProductOptions\SerializedToJson; + class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface { /** @@ -120,15 +122,18 @@ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface */ private function upgradeToVersionTwoZeroFive(\Magento\Framework\Setup\ModuleDataSetupInterface $setup) { - $fieldDataConverter = $this->fieldDataConverterFactory->create( - \Magento\Framework\DB\DataConverter\SerializedToJson::class + $productOptionsDataConverter = $this->fieldDataConverterFactory->create( + SerializedToJson::class ); - $fieldDataConverter->convert( + $productOptionsDataConverter->convert( $setup->getConnection(), $setup->getTable('sales_order_item'), 'item_id', 'product_options' ); + $fieldDataConverter = $this->fieldDataConverterFactory->create( + \Magento\Framework\DB\DataConverter\SerializedToJson::class + ); $fieldDataConverter->convert( $setup->getConnection(), $setup->getTable('sales_shipment'), diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php new file mode 100644 index 00000000000..c7a04748580 --- /dev/null +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php @@ -0,0 +1,58 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Sales\Test\Unit\Model\Order\Item\Converter\ProductOptions; + +use Magento\Framework\Serialize\Serializer\Json; +use Magento\Framework\Serialize\Serializer\Serialize; +use Magento\Sales\Model\Order\Item\Converter\ProductOptions\SerializedToJson; + +/** + * Unit test for order address repository class. + * + * @SuppressWarnings(PHPMD.CouplingBetweenObjects) + */ +class SerializedToJsonTest extends \PHPUnit_Framework_TestCase +{ + /** + * @var SerializedToJson + */ + protected $model; + + public function setUp() + { + $this->model = new SerializedToJson(new Serialize(), new Json()); + } + + /** + * @param string $serialized + * @param string $expectedJson + * + * @dataProvider convertDataProvider + */ + public function testConvert($serialized, $expectedJson) + { + $this->assertEquals($expectedJson, $this->model->convert($serialized)); + } + + /** + * Data provider for convert method test + * + * Slashes in PHP string are implicitly escaped so they MUST be escaped manually to correspond real expected data + * + * @return array + */ + public function convertDataProvider() + { + // @codingStandardsIgnoreStart + return [ + 'dataset_1' => [ + 'serialized' => 'a:6:{s:15:"info_buyRequest";a:6:{s:4:"uenc";s:52:"aHR0cDovL20yLmxvYy9zaW1wbGUuaHRtbD9vcHRpb25zPWNhcnQ,";s:7:"product";s:1:"1";s:28:"selected_configurable_option";s:0:"";s:15:"related_product";s:0:"";s:7:"options";a:3:{i:1;s:4:"test";i:3;s:1:"2";i:2;a:9:{s:4:"type";s:10:"image/jpeg";s:5:"title";s:7:"476.jpg";s:10:"quote_path";s:61:"custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:10:"order_path";s:61:"custom_options/order/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:8:"fullpath";s:89:"C:/www/magento/ce/pub/media/custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:4:"size";s:6:"122340";s:5:"width";i:666;s:6:"height";i:940;s:10:"secret_key";s:20:"bc61f16f0cc3a8c5abd7";}}s:3:"qty";s:1:"1";}s:7:"options";a:3:{i:0;a:7:{s:5:"label";s:11:"testoption1";s:5:"value";s:4:"test";s:11:"print_value";s:4:"test";s:9:"option_id";s:1:"1";s:11:"option_type";s:5:"field";s:12:"option_value";s:4:"test";s:11:"custom_view";b:0;}i:1;a:7:{s:5:"label";s:11:"testoption2";s:5:"value";s:132:"<a href="http://m2.loc/sales/download/downloadCustomOption/id/9/key/bc61f16f0cc3a8c5abd7/" target="_blank">476.jpg</a> 666 x 940 px.";s:11:"print_value";s:21:"476.jpg 666 x 940 px.";s:9:"option_id";s:1:"2";s:11:"option_type";s:4:"file";s:12:"option_value";s:600:"a:10:{s:4:"type";s:10:"image/jpeg";s:5:"title";s:7:"476.jpg";s:10:"quote_path";s:61:"custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:10:"order_path";s:61:"custom_options/order/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:8:"fullpath";s:89:"C:/www/magento/ce/pub/media/custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:4:"size";s:6:"122340";s:5:"width";i:666;s:6:"height";i:940;s:10:"secret_key";s:20:"bc61f16f0cc3a8c5abd7";s:3:"url";a:2:{s:5:"route";s:35:"sales/download/downloadCustomOption";s:6:"params";a:2:{s:2:"id";s:1:"9";s:3:"key";s:20:"bc61f16f0cc3a8c5abd7";}}}";s:11:"custom_view";b:1;}i:2;a:7:{s:5:"label";s:8:"testopt3";s:5:"value";s:3:"222";s:11:"print_value";s:3:"222";s:9:"option_id";s:1:"3";s:11:"option_type";s:9:"drop_down";s:12:"option_value";s:1:"2";s:11:"custom_view";b:0;}}s:17:"giftcard_lifetime";N;s:22:"giftcard_is_redeemable";i:0;s:23:"giftcard_email_template";N;s:13:"giftcard_type";N;}', + 'expectedJson' => '{"info_buyRequest":{"uenc":"aHR0cDovL20yLmxvYy9zaW1wbGUuaHRtbD9vcHRpb25zPWNhcnQ,","product":"1","selected_configurable_option":"","related_product":"","options":{"1":"test","3":"2","2":{"type":"image\/jpeg","title":"476.jpg","quote_path":"custom_options\/quote\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","order_path":"custom_options\/order\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","fullpath":"C:\/www\/magento\/ce\/pub\/media\/custom_options\/quote\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","size":"122340","width":666,"height":940,"secret_key":"bc61f16f0cc3a8c5abd7"}},"qty":"1"},"options":[{"label":"testoption1","value":"test","print_value":"test","option_id":"1","option_type":"field","option_value":"test","custom_view":false},{"label":"testoption2","value":"<a href=\"http:\/\/m2.loc\/sales\/download\/downloadCustomOption\/id\/9\/key\/bc61f16f0cc3a8c5abd7\/\" target=\"_blank\">476.jpg<\/a> 666 x 940 px.","print_value":"476.jpg 666 x 940 px.","option_id":"2","option_type":"file","option_value":"{\"type\":\"image\\\\\/jpeg\",\"title\":\"476.jpg\",\"quote_path\":\"custom_options\\\\\/quote\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"order_path\":\"custom_options\\\\\/order\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"fullpath\":\"C:\\\\\/www\\\\\/magento\\\\\/ce\\\\\/pub\\\\\/media\\\\\/custom_options\\\\\/quote\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"size\":\"122340\",\"width\":666,\"height\":940,\"secret_key\":\"bc61f16f0cc3a8c5abd7\",\"url\":{\"route\":\"sales\\\\\/download\\\\\/downloadCustomOption\",\"params\":{\"id\":\"9\",\"key\":\"bc61f16f0cc3a8c5abd7\"}}}","custom_view":true},{"label":"testopt3","value":"222","print_value":"222","option_id":"3","option_type":"drop_down","option_value":"2","custom_view":false}],"giftcard_lifetime":null,"giftcard_is_redeemable":0,"giftcard_email_template":null,"giftcard_type":null}', + ], + ]; + // @codingStandardsIgnoreEnd + } +} diff --git a/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php b/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php index ae675784021..361701d961e 100644 --- a/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php +++ b/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php @@ -16,12 +16,12 @@ class SerializedToJson implements DataConverterInterface /** * @var Serialize */ - private $serialize; + protected $serialize; /** * @var Json */ - private $json; + protected $json; /** * Constructor -- GitLab From 88e2404b691aded5aed06184204d172773e7d4af Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Wed, 14 Dec 2016 12:18:50 +0200 Subject: [PATCH 087/175] MAGETWO-61655: Magento/Sales/Model/Order/ShipmentFactory.php and unit tests - fixed bundle type --- app/code/Magento/Bundle/Model/Product/Type.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php index 5e9a452c850..c1e8295e0a8 100644 --- a/app/code/Magento/Bundle/Model/Product/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Type.php @@ -146,13 +146,6 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType */ protected $_stockState; - /** - * Serializer - * - * @var SerializerInterface - */ - private $serializer; - /** * @param \Magento\Catalog\Model\Product\Option $catalogProductOption * @param \Magento\Eav\Model\Config $eavConfig @@ -215,7 +208,6 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $this->priceCurrency = $priceCurrency; $this->_stockRegistry = $stockRegistry; $this->_stockState = $stockState; - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); parent::__construct( $catalogProductOption, -- GitLab From 6ee34caaebb95a82753a2e6fe8a11154ed5de8e7 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Wed, 14 Dec 2016 12:42:56 +0200 Subject: [PATCH 088/175] MAGETWO-62134: Create data converter that can process nested serialized data --- .../Item/Converter/ProductOptions/SerializedToJson.php | 7 +++++++ .../Item/Converter/ProductOptions/SerializedToJsonTest.php | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/app/code/Magento/Sales/Model/Order/Item/Converter/ProductOptions/SerializedToJson.php b/app/code/Magento/Sales/Model/Order/Item/Converter/ProductOptions/SerializedToJson.php index b4ceccad248..d92d7e15fac 100644 --- a/app/code/Magento/Sales/Model/Order/Item/Converter/ProductOptions/SerializedToJson.php +++ b/app/code/Magento/Sales/Model/Order/Item/Converter/ProductOptions/SerializedToJson.php @@ -34,6 +34,13 @@ class SerializedToJson extends \Magento\Framework\DB\DataConverter\SerializedToJ } } } + if (isset($valueUnserialized['bundle_selection_attributes'])) { + $valueUnserialized['bundle_selection_attributes'] = $this->json->serialize( + $this->serialize->unserialize( + $valueUnserialized['bundle_selection_attributes'] + ) + ); + } return $this->json->serialize($valueUnserialized); } } diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php index c7a04748580..04e1f0c6064 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php @@ -52,6 +52,10 @@ class SerializedToJsonTest extends \PHPUnit_Framework_TestCase 'serialized' => 'a:6:{s:15:"info_buyRequest";a:6:{s:4:"uenc";s:52:"aHR0cDovL20yLmxvYy9zaW1wbGUuaHRtbD9vcHRpb25zPWNhcnQ,";s:7:"product";s:1:"1";s:28:"selected_configurable_option";s:0:"";s:15:"related_product";s:0:"";s:7:"options";a:3:{i:1;s:4:"test";i:3;s:1:"2";i:2;a:9:{s:4:"type";s:10:"image/jpeg";s:5:"title";s:7:"476.jpg";s:10:"quote_path";s:61:"custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:10:"order_path";s:61:"custom_options/order/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:8:"fullpath";s:89:"C:/www/magento/ce/pub/media/custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:4:"size";s:6:"122340";s:5:"width";i:666;s:6:"height";i:940;s:10:"secret_key";s:20:"bc61f16f0cc3a8c5abd7";}}s:3:"qty";s:1:"1";}s:7:"options";a:3:{i:0;a:7:{s:5:"label";s:11:"testoption1";s:5:"value";s:4:"test";s:11:"print_value";s:4:"test";s:9:"option_id";s:1:"1";s:11:"option_type";s:5:"field";s:12:"option_value";s:4:"test";s:11:"custom_view";b:0;}i:1;a:7:{s:5:"label";s:11:"testoption2";s:5:"value";s:132:"<a href="http://m2.loc/sales/download/downloadCustomOption/id/9/key/bc61f16f0cc3a8c5abd7/" target="_blank">476.jpg</a> 666 x 940 px.";s:11:"print_value";s:21:"476.jpg 666 x 940 px.";s:9:"option_id";s:1:"2";s:11:"option_type";s:4:"file";s:12:"option_value";s:600:"a:10:{s:4:"type";s:10:"image/jpeg";s:5:"title";s:7:"476.jpg";s:10:"quote_path";s:61:"custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:10:"order_path";s:61:"custom_options/order/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:8:"fullpath";s:89:"C:/www/magento/ce/pub/media/custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:4:"size";s:6:"122340";s:5:"width";i:666;s:6:"height";i:940;s:10:"secret_key";s:20:"bc61f16f0cc3a8c5abd7";s:3:"url";a:2:{s:5:"route";s:35:"sales/download/downloadCustomOption";s:6:"params";a:2:{s:2:"id";s:1:"9";s:3:"key";s:20:"bc61f16f0cc3a8c5abd7";}}}";s:11:"custom_view";b:1;}i:2;a:7:{s:5:"label";s:8:"testopt3";s:5:"value";s:3:"222";s:11:"print_value";s:3:"222";s:9:"option_id";s:1:"3";s:11:"option_type";s:9:"drop_down";s:12:"option_value";s:1:"2";s:11:"custom_view";b:0;}}s:17:"giftcard_lifetime";N;s:22:"giftcard_is_redeemable";i:0;s:23:"giftcard_email_template";N;s:13:"giftcard_type";N;}', 'expectedJson' => '{"info_buyRequest":{"uenc":"aHR0cDovL20yLmxvYy9zaW1wbGUuaHRtbD9vcHRpb25zPWNhcnQ,","product":"1","selected_configurable_option":"","related_product":"","options":{"1":"test","3":"2","2":{"type":"image\/jpeg","title":"476.jpg","quote_path":"custom_options\/quote\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","order_path":"custom_options\/order\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","fullpath":"C:\/www\/magento\/ce\/pub\/media\/custom_options\/quote\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","size":"122340","width":666,"height":940,"secret_key":"bc61f16f0cc3a8c5abd7"}},"qty":"1"},"options":[{"label":"testoption1","value":"test","print_value":"test","option_id":"1","option_type":"field","option_value":"test","custom_view":false},{"label":"testoption2","value":"<a href=\"http:\/\/m2.loc\/sales\/download\/downloadCustomOption\/id\/9\/key\/bc61f16f0cc3a8c5abd7\/\" target=\"_blank\">476.jpg<\/a> 666 x 940 px.","print_value":"476.jpg 666 x 940 px.","option_id":"2","option_type":"file","option_value":"{\"type\":\"image\\\\\/jpeg\",\"title\":\"476.jpg\",\"quote_path\":\"custom_options\\\\\/quote\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"order_path\":\"custom_options\\\\\/order\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"fullpath\":\"C:\\\\\/www\\\\\/magento\\\\\/ce\\\\\/pub\\\\\/media\\\\\/custom_options\\\\\/quote\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"size\":\"122340\",\"width\":666,\"height\":940,\"secret_key\":\"bc61f16f0cc3a8c5abd7\",\"url\":{\"route\":\"sales\\\\\/download\\\\\/downloadCustomOption\",\"params\":{\"id\":\"9\",\"key\":\"bc61f16f0cc3a8c5abd7\"}}}","custom_view":true},{"label":"testopt3","value":"222","print_value":"222","option_id":"3","option_type":"drop_down","option_value":"2","custom_view":false}],"giftcard_lifetime":null,"giftcard_is_redeemable":0,"giftcard_email_template":null,"giftcard_type":null}', ], + 'dataset_2' => [ + 'serialized' => 'a:6:{s:15:"info_buyRequest";a:6:{s:4:"uenc";s:36:"aHR0cDovL20yLmxvYy9idW5kbGUuaHRtbA,,";s:7:"product";s:1:"4";s:28:"selected_configurable_option";s:0:"";s:15:"related_product";s:0:"";s:13:"bundle_option";a:2:{i:1;s:1:"1";i:2;s:1:"2";}s:3:"qty";s:1:"3";}s:27:"bundle_selection_attributes";s:97:"a:4:{s:5:"price";d:100;s:3:"qty";d:1;s:12:"option_label";s:8:"option 1";s:9:"option_id";s:1:"1";}";s:17:"giftcard_lifetime";N;s:22:"giftcard_is_redeemable";i:0;s:23:"giftcard_email_template";N;s:13:"giftcard_type";N;}', + 'expectedJson' => '{"info_buyRequest":{"uenc":"aHR0cDovL20yLmxvYy9idW5kbGUuaHRtbA,,","product":"4","selected_configurable_option":"","related_product":"","bundle_option":{"1":"1","2":"2"},"qty":"3"},"bundle_selection_attributes":"{\"price\":100,\"qty\":1,\"option_label\":\"option 1\",\"option_id\":\"1\"}","giftcard_lifetime":null,"giftcard_is_redeemable":0,"giftcard_email_template":null,"giftcard_type":null}', + ], ]; // @codingStandardsIgnoreEnd } -- GitLab From 3649bd5b2c6f70f9207ffcd1ce9d8e372c25c943 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Wed, 14 Dec 2016 16:55:37 +0200 Subject: [PATCH 089/175] MAGETWO-61684: Create data upgrade for quote-related database fields --- app/code/Magento/Quote/Setup/UpgradeData.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index 96b05d2e244..f0a79ba22b6 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -74,6 +74,18 @@ class UpgradeData implements UpgradeDataInterface 'payment_id', 'additional_information' ); + $fieldDataConverter->convert( + $setup->getConnection(), + $setup->getTable('quote_address'), + 'address_id', + 'applied_taxes' + ); + $fieldDataConverter->convert( + $setup->getConnection(), + $setup->getTable('quote_payment'), + 'payment_id', + 'additional_data' + ); $queryModifier = $this->queryModifierFactory->create( InQueryModifier::class, [ -- GitLab From cbd01d1aff9f867c32251c322e6bd0b5383e15e1 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Wed, 14 Dec 2016 17:54:48 +0200 Subject: [PATCH 090/175] MAGETWO-62134: Create data converter that can process nested serialized data - Codestyle fix - coupling issue with use statement --- app/code/Magento/Sales/Setup/UpgradeData.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 5f97f74f4a9..56d6463b1d6 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -5,8 +5,6 @@ */ namespace Magento\Sales\Setup; -use Magento\Sales\Model\Order\Item\Converter\ProductOptions\SerializedToJson; - class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface { /** @@ -123,7 +121,7 @@ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface private function upgradeToVersionTwoZeroFive(\Magento\Framework\Setup\ModuleDataSetupInterface $setup) { $productOptionsDataConverter = $this->fieldDataConverterFactory->create( - SerializedToJson::class + \Magento\Sales\Model\Order\Item\Converter\ProductOptions\SerializedToJson::class ); $productOptionsDataConverter->convert( $setup->getConnection(), -- GitLab From dbb7c3a0c6c3b8f38e61516a234ae25ec1f69b74 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Wed, 14 Dec 2016 18:09:53 +0200 Subject: [PATCH 091/175] MAGETWO-62134: Create data converter that can process nested serialized data --- app/code/Magento/Sales/Setup/UpgradeData.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 56d6463b1d6..7501811573f 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -5,6 +5,11 @@ */ namespace Magento\Sales\Setup; +/** + * Class UpgradeData + * @package Magento\Sales\Setup + * @SuppressWarnings(PHPMD.CouplingBetweenObjects) + */ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface { /** -- GitLab From de31dea556b9f89ea6ad1175f08d0170d6d16e31 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Wed, 14 Dec 2016 18:16:49 +0200 Subject: [PATCH 092/175] MAGETWO-62134: Create data converter that can process nested serialized data --- .../Item/Converter/ProductOptions/SerializedToJsonTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php index 04e1f0c6064..9c091f1f3b8 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php @@ -53,8 +53,8 @@ class SerializedToJsonTest extends \PHPUnit_Framework_TestCase 'expectedJson' => '{"info_buyRequest":{"uenc":"aHR0cDovL20yLmxvYy9zaW1wbGUuaHRtbD9vcHRpb25zPWNhcnQ,","product":"1","selected_configurable_option":"","related_product":"","options":{"1":"test","3":"2","2":{"type":"image\/jpeg","title":"476.jpg","quote_path":"custom_options\/quote\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","order_path":"custom_options\/order\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","fullpath":"C:\/www\/magento\/ce\/pub\/media\/custom_options\/quote\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","size":"122340","width":666,"height":940,"secret_key":"bc61f16f0cc3a8c5abd7"}},"qty":"1"},"options":[{"label":"testoption1","value":"test","print_value":"test","option_id":"1","option_type":"field","option_value":"test","custom_view":false},{"label":"testoption2","value":"<a href=\"http:\/\/m2.loc\/sales\/download\/downloadCustomOption\/id\/9\/key\/bc61f16f0cc3a8c5abd7\/\" target=\"_blank\">476.jpg<\/a> 666 x 940 px.","print_value":"476.jpg 666 x 940 px.","option_id":"2","option_type":"file","option_value":"{\"type\":\"image\\\\\/jpeg\",\"title\":\"476.jpg\",\"quote_path\":\"custom_options\\\\\/quote\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"order_path\":\"custom_options\\\\\/order\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"fullpath\":\"C:\\\\\/www\\\\\/magento\\\\\/ce\\\\\/pub\\\\\/media\\\\\/custom_options\\\\\/quote\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"size\":\"122340\",\"width\":666,\"height\":940,\"secret_key\":\"bc61f16f0cc3a8c5abd7\",\"url\":{\"route\":\"sales\\\\\/download\\\\\/downloadCustomOption\",\"params\":{\"id\":\"9\",\"key\":\"bc61f16f0cc3a8c5abd7\"}}}","custom_view":true},{"label":"testopt3","value":"222","print_value":"222","option_id":"3","option_type":"drop_down","option_value":"2","custom_view":false}],"giftcard_lifetime":null,"giftcard_is_redeemable":0,"giftcard_email_template":null,"giftcard_type":null}', ], 'dataset_2' => [ - 'serialized' => 'a:6:{s:15:"info_buyRequest";a:6:{s:4:"uenc";s:36:"aHR0cDovL20yLmxvYy9idW5kbGUuaHRtbA,,";s:7:"product";s:1:"4";s:28:"selected_configurable_option";s:0:"";s:15:"related_product";s:0:"";s:13:"bundle_option";a:2:{i:1;s:1:"1";i:2;s:1:"2";}s:3:"qty";s:1:"3";}s:27:"bundle_selection_attributes";s:97:"a:4:{s:5:"price";d:100;s:3:"qty";d:1;s:12:"option_label";s:8:"option 1";s:9:"option_id";s:1:"1";}";s:17:"giftcard_lifetime";N;s:22:"giftcard_is_redeemable";i:0;s:23:"giftcard_email_template";N;s:13:"giftcard_type";N;}', - 'expectedJson' => '{"info_buyRequest":{"uenc":"aHR0cDovL20yLmxvYy9idW5kbGUuaHRtbA,,","product":"4","selected_configurable_option":"","related_product":"","bundle_option":{"1":"1","2":"2"},"qty":"3"},"bundle_selection_attributes":"{\"price\":100,\"qty\":1,\"option_label\":\"option 1\",\"option_id\":\"1\"}","giftcard_lifetime":null,"giftcard_is_redeemable":0,"giftcard_email_template":null,"giftcard_type":null}', + 'serialized' => 'a:2:{s:15:"info_buyRequest";a:6:{s:4:"uenc";s:36:"aHR0cDovL20yLmxvYy9idW5kbGUuaHRtbA,,";s:7:"product";s:1:"4";s:28:"selected_configurable_option";s:0:"";s:15:"related_product";s:0:"";s:13:"bundle_option";a:2:{i:1;s:1:"1";i:2;s:1:"2";}s:3:"qty";s:1:"3";}s:27:"bundle_selection_attributes";s:97:"a:4:{s:5:"price";d:100;s:3:"qty";d:1;s:12:"option_label";s:8:"option 1";s:9:"option_id";s:1:"1";}";}', + 'expectedJson' => '{"info_buyRequest":{"uenc":"aHR0cDovL20yLmxvYy9idW5kbGUuaHRtbA,,","product":"4","selected_configurable_option":"","related_product":"","bundle_option":{"1":"1","2":"2"},"qty":"3"},"bundle_selection_attributes":"{\"price\":100,\"qty\":1,\"option_label\":\"option 1\",\"option_id\":\"1\"}"}', ], ]; // @codingStandardsIgnoreEnd -- GitLab From ee2e1e00117cb87686bea5f7e719fcd2a8e90221 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Wed, 14 Dec 2016 18:18:53 +0200 Subject: [PATCH 093/175] MAGETWO-62134: Create data converter that can process nested serialized data --- .../Item/Converter/ProductOptions/SerializedToJsonTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php index 9c091f1f3b8..3b6f7436c58 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php @@ -49,8 +49,8 @@ class SerializedToJsonTest extends \PHPUnit_Framework_TestCase // @codingStandardsIgnoreStart return [ 'dataset_1' => [ - 'serialized' => 'a:6:{s:15:"info_buyRequest";a:6:{s:4:"uenc";s:52:"aHR0cDovL20yLmxvYy9zaW1wbGUuaHRtbD9vcHRpb25zPWNhcnQ,";s:7:"product";s:1:"1";s:28:"selected_configurable_option";s:0:"";s:15:"related_product";s:0:"";s:7:"options";a:3:{i:1;s:4:"test";i:3;s:1:"2";i:2;a:9:{s:4:"type";s:10:"image/jpeg";s:5:"title";s:7:"476.jpg";s:10:"quote_path";s:61:"custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:10:"order_path";s:61:"custom_options/order/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:8:"fullpath";s:89:"C:/www/magento/ce/pub/media/custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:4:"size";s:6:"122340";s:5:"width";i:666;s:6:"height";i:940;s:10:"secret_key";s:20:"bc61f16f0cc3a8c5abd7";}}s:3:"qty";s:1:"1";}s:7:"options";a:3:{i:0;a:7:{s:5:"label";s:11:"testoption1";s:5:"value";s:4:"test";s:11:"print_value";s:4:"test";s:9:"option_id";s:1:"1";s:11:"option_type";s:5:"field";s:12:"option_value";s:4:"test";s:11:"custom_view";b:0;}i:1;a:7:{s:5:"label";s:11:"testoption2";s:5:"value";s:132:"<a href="http://m2.loc/sales/download/downloadCustomOption/id/9/key/bc61f16f0cc3a8c5abd7/" target="_blank">476.jpg</a> 666 x 940 px.";s:11:"print_value";s:21:"476.jpg 666 x 940 px.";s:9:"option_id";s:1:"2";s:11:"option_type";s:4:"file";s:12:"option_value";s:600:"a:10:{s:4:"type";s:10:"image/jpeg";s:5:"title";s:7:"476.jpg";s:10:"quote_path";s:61:"custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:10:"order_path";s:61:"custom_options/order/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:8:"fullpath";s:89:"C:/www/magento/ce/pub/media/custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:4:"size";s:6:"122340";s:5:"width";i:666;s:6:"height";i:940;s:10:"secret_key";s:20:"bc61f16f0cc3a8c5abd7";s:3:"url";a:2:{s:5:"route";s:35:"sales/download/downloadCustomOption";s:6:"params";a:2:{s:2:"id";s:1:"9";s:3:"key";s:20:"bc61f16f0cc3a8c5abd7";}}}";s:11:"custom_view";b:1;}i:2;a:7:{s:5:"label";s:8:"testopt3";s:5:"value";s:3:"222";s:11:"print_value";s:3:"222";s:9:"option_id";s:1:"3";s:11:"option_type";s:9:"drop_down";s:12:"option_value";s:1:"2";s:11:"custom_view";b:0;}}s:17:"giftcard_lifetime";N;s:22:"giftcard_is_redeemable";i:0;s:23:"giftcard_email_template";N;s:13:"giftcard_type";N;}', - 'expectedJson' => '{"info_buyRequest":{"uenc":"aHR0cDovL20yLmxvYy9zaW1wbGUuaHRtbD9vcHRpb25zPWNhcnQ,","product":"1","selected_configurable_option":"","related_product":"","options":{"1":"test","3":"2","2":{"type":"image\/jpeg","title":"476.jpg","quote_path":"custom_options\/quote\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","order_path":"custom_options\/order\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","fullpath":"C:\/www\/magento\/ce\/pub\/media\/custom_options\/quote\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","size":"122340","width":666,"height":940,"secret_key":"bc61f16f0cc3a8c5abd7"}},"qty":"1"},"options":[{"label":"testoption1","value":"test","print_value":"test","option_id":"1","option_type":"field","option_value":"test","custom_view":false},{"label":"testoption2","value":"<a href=\"http:\/\/m2.loc\/sales\/download\/downloadCustomOption\/id\/9\/key\/bc61f16f0cc3a8c5abd7\/\" target=\"_blank\">476.jpg<\/a> 666 x 940 px.","print_value":"476.jpg 666 x 940 px.","option_id":"2","option_type":"file","option_value":"{\"type\":\"image\\\\\/jpeg\",\"title\":\"476.jpg\",\"quote_path\":\"custom_options\\\\\/quote\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"order_path\":\"custom_options\\\\\/order\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"fullpath\":\"C:\\\\\/www\\\\\/magento\\\\\/ce\\\\\/pub\\\\\/media\\\\\/custom_options\\\\\/quote\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"size\":\"122340\",\"width\":666,\"height\":940,\"secret_key\":\"bc61f16f0cc3a8c5abd7\",\"url\":{\"route\":\"sales\\\\\/download\\\\\/downloadCustomOption\",\"params\":{\"id\":\"9\",\"key\":\"bc61f16f0cc3a8c5abd7\"}}}","custom_view":true},{"label":"testopt3","value":"222","print_value":"222","option_id":"3","option_type":"drop_down","option_value":"2","custom_view":false}],"giftcard_lifetime":null,"giftcard_is_redeemable":0,"giftcard_email_template":null,"giftcard_type":null}', + 'serialized' => 'a:2:{s:15:"info_buyRequest";a:6:{s:4:"uenc";s:52:"aHR0cDovL20yLmxvYy9zaW1wbGUuaHRtbD9vcHRpb25zPWNhcnQ,";s:7:"product";s:1:"1";s:28:"selected_configurable_option";s:0:"";s:15:"related_product";s:0:"";s:7:"options";a:3:{i:1;s:4:"test";i:3;s:1:"2";i:2;a:9:{s:4:"type";s:10:"image/jpeg";s:5:"title";s:7:"476.jpg";s:10:"quote_path";s:61:"custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:10:"order_path";s:61:"custom_options/order/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:8:"fullpath";s:89:"C:/www/magento/ce/pub/media/custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:4:"size";s:6:"122340";s:5:"width";i:666;s:6:"height";i:940;s:10:"secret_key";s:20:"bc61f16f0cc3a8c5abd7";}}s:3:"qty";s:1:"1";}s:7:"options";a:3:{i:0;a:7:{s:5:"label";s:11:"testoption1";s:5:"value";s:4:"test";s:11:"print_value";s:4:"test";s:9:"option_id";s:1:"1";s:11:"option_type";s:5:"field";s:12:"option_value";s:4:"test";s:11:"custom_view";b:0;}i:1;a:7:{s:5:"label";s:11:"testoption2";s:5:"value";s:132:"<a href="http://m2.loc/sales/download/downloadCustomOption/id/9/key/bc61f16f0cc3a8c5abd7/" target="_blank">476.jpg</a> 666 x 940 px.";s:11:"print_value";s:21:"476.jpg 666 x 940 px.";s:9:"option_id";s:1:"2";s:11:"option_type";s:4:"file";s:12:"option_value";s:600:"a:10:{s:4:"type";s:10:"image/jpeg";s:5:"title";s:7:"476.jpg";s:10:"quote_path";s:61:"custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:10:"order_path";s:61:"custom_options/order/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:8:"fullpath";s:89:"C:/www/magento/ce/pub/media/custom_options/quote/4/7/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg";s:4:"size";s:6:"122340";s:5:"width";i:666;s:6:"height";i:940;s:10:"secret_key";s:20:"bc61f16f0cc3a8c5abd7";s:3:"url";a:2:{s:5:"route";s:35:"sales/download/downloadCustomOption";s:6:"params";a:2:{s:2:"id";s:1:"9";s:3:"key";s:20:"bc61f16f0cc3a8c5abd7";}}}";s:11:"custom_view";b:1;}i:2;a:7:{s:5:"label";s:8:"testopt3";s:5:"value";s:3:"222";s:11:"print_value";s:3:"222";s:9:"option_id";s:1:"3";s:11:"option_type";s:9:"drop_down";s:12:"option_value";s:1:"2";s:11:"custom_view";b:0;}}}', + 'expectedJson' => '{"info_buyRequest":{"uenc":"aHR0cDovL20yLmxvYy9zaW1wbGUuaHRtbD9vcHRpb25zPWNhcnQ,","product":"1","selected_configurable_option":"","related_product":"","options":{"1":"test","3":"2","2":{"type":"image\/jpeg","title":"476.jpg","quote_path":"custom_options\/quote\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","order_path":"custom_options\/order\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","fullpath":"C:\/www\/magento\/ce\/pub\/media\/custom_options\/quote\/4\/7\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg","size":"122340","width":666,"height":940,"secret_key":"bc61f16f0cc3a8c5abd7"}},"qty":"1"},"options":[{"label":"testoption1","value":"test","print_value":"test","option_id":"1","option_type":"field","option_value":"test","custom_view":false},{"label":"testoption2","value":"<a href=\"http:\/\/m2.loc\/sales\/download\/downloadCustomOption\/id\/9\/key\/bc61f16f0cc3a8c5abd7\/\" target=\"_blank\">476.jpg<\/a> 666 x 940 px.","print_value":"476.jpg 666 x 940 px.","option_id":"2","option_type":"file","option_value":"{\"type\":\"image\\\\\/jpeg\",\"title\":\"476.jpg\",\"quote_path\":\"custom_options\\\\\/quote\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"order_path\":\"custom_options\\\\\/order\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"fullpath\":\"C:\\\\\/www\\\\\/magento\\\\\/ce\\\\\/pub\\\\\/media\\\\\/custom_options\\\\\/quote\\\\\/4\\\\\/7\\\\\/bc61f16f0cc3a8c5abd7ebbaad4cc139.jpg\",\"size\":\"122340\",\"width\":666,\"height\":940,\"secret_key\":\"bc61f16f0cc3a8c5abd7\",\"url\":{\"route\":\"sales\\\\\/download\\\\\/downloadCustomOption\",\"params\":{\"id\":\"9\",\"key\":\"bc61f16f0cc3a8c5abd7\"}}}","custom_view":true},{"label":"testopt3","value":"222","print_value":"222","option_id":"3","option_type":"drop_down","option_value":"2","custom_view":false}]}', ], 'dataset_2' => [ 'serialized' => 'a:2:{s:15:"info_buyRequest";a:6:{s:4:"uenc";s:36:"aHR0cDovL20yLmxvYy9idW5kbGUuaHRtbA,,";s:7:"product";s:1:"4";s:28:"selected_configurable_option";s:0:"";s:15:"related_product";s:0:"";s:13:"bundle_option";a:2:{i:1;s:1:"1";i:2;s:1:"2";}s:3:"qty";s:1:"3";}s:27:"bundle_selection_attributes";s:97:"a:4:{s:5:"price";d:100;s:3:"qty";d:1;s:12:"option_label";s:8:"option 1";s:9:"option_id";s:1:"1";}";}', -- GitLab From 12bbd96d62d1831f936e041f362a4d9fb8e44bf4 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 15 Dec 2016 11:36:09 +0200 Subject: [PATCH 094/175] MAGETWO-62269: Fix general architecture review notices --- .../Sales/Model/Order/CreditmemoFactory.php | 23 +++++++---- .../SerializedDataConverter.php} | 39 ++++++++++++++++--- app/code/Magento/Sales/Setup/UpgradeData.php | 2 +- .../SerializedDataConverter.php} | 9 ++--- .../DB/DataConverter/SerializedToJson.php | 4 +- 5 files changed, 57 insertions(+), 20 deletions(-) rename app/code/Magento/Sales/{Model/Order/Item/Converter/ProductOptions/SerializedToJson.php => Setup/SerializedDataConverter.php} (63%) rename app/code/Magento/Sales/Test/Unit/{Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php => Setup/SerializedDataConverter.php} (94%) diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php index e222d3de5bd..6431190326c 100644 --- a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php +++ b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php @@ -23,10 +23,15 @@ class CreditmemoFactory protected $taxConfig; /** - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Unserialize\Unserialize */ protected $unserialize; + /** + * @var \Magento\Framework\Serialize\SerializerInterface + */ + private $serializer; + /** * Factory constructor * @@ -35,10 +40,14 @@ class CreditmemoFactory */ public function __construct( \Magento\Sales\Model\Convert\OrderFactory $convertOrderFactory, - \Magento\Tax\Model\Config $taxConfig + \Magento\Tax\Model\Config $taxConfig, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->convertor = $convertOrderFactory->create(); $this->taxConfig = $taxConfig; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManage::getInstance()->get( + \Magento\Framework\Serialize\SerializerInterface::class + ); } /** @@ -270,7 +279,7 @@ class CreditmemoFactory $qty = $parentQty; $productOptions = $orderItem->getProductOptions(); if (isset($productOptions['bundle_selection_attributes'])) { - $bundleSelectionAttributes = $this->getSerializer() + $bundleSelectionAttributes = $this->serializer ->unserialize($productOptions['bundle_selection_attributes']); if ($bundleSelectionAttributes) { $qty = $bundleSelectionAttributes['qty'] * $parentQty; @@ -280,16 +289,16 @@ class CreditmemoFactory } /** - * Get instance of Serializer. + * Get Unserialize * - * @return \Magento\Framework\Serialize\SerializerInterface + * @return \Magento\Framework\Unserialize\Unserialize * @deprecated */ - private function getSerializer() + private function getUnserialize() { if (!$this->unserialize) { $this->unserialize = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Unserialize\Unserialize::class); } return $this->unserialize; } diff --git a/app/code/Magento/Sales/Model/Order/Item/Converter/ProductOptions/SerializedToJson.php b/app/code/Magento/Sales/Setup/SerializedDataConverter.php similarity index 63% rename from app/code/Magento/Sales/Model/Order/Item/Converter/ProductOptions/SerializedToJson.php rename to app/code/Magento/Sales/Setup/SerializedDataConverter.php index d92d7e15fac..0b5e9bde5e7 100644 --- a/app/code/Magento/Sales/Model/Order/Item/Converter/ProductOptions/SerializedToJson.php +++ b/app/code/Magento/Sales/Setup/SerializedDataConverter.php @@ -4,18 +4,47 @@ * See COPYING.txt for license details. */ -namespace Magento\Sales\Model\Order\Item\Converter\ProductOptions; +namespace Magento\Sales\Setup; + +use Magento\Framework\Serialize\Serializer\Serialize; +use Magento\Framework\Serialize\Serializer\Json; /** - * Class SerializedToJson + * Class SerializedToJson. + * * @package Magento\Sales\Model\Order\Item\Converter\ProductOptions * - * Serializer used to update nested serialized data in product_options field + * Serializer used to update nested serialized data in product_options field. */ -class SerializedToJson extends \Magento\Framework\DB\DataConverter\SerializedToJson +class SerializedDataConverter implements \Magento\Framework\DB\DataConverter\DataConverterInterface { /** - * Convert from serialized to JSON format + * @var Serialize + */ + private $serialize; + + /** + * @var Json + */ + private $json; + + /** + * SerializedDataConverter constructor. + * + * @param Serialize $serialize + * @param Json $json + */ + public function __construct( + Serialize $serialize, + Json $json + ) + { + $this->serialize = $serialize; + $this->json = $json; + } + + /** + * Convert from serialized to JSON format. * * @param string $value * @return string diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 7501811573f..9db92988c6c 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -126,7 +126,7 @@ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface private function upgradeToVersionTwoZeroFive(\Magento\Framework\Setup\ModuleDataSetupInterface $setup) { $productOptionsDataConverter = $this->fieldDataConverterFactory->create( - \Magento\Sales\Model\Order\Item\Converter\ProductOptions\SerializedToJson::class + \Magento\Sales\Setup\SerializedDataConverter::class ); $productOptionsDataConverter->convert( $setup->getConnection(), diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php b/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverter.php similarity index 94% rename from app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php rename to app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverter.php index 3b6f7436c58..903d2462ae2 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Item/Converter/ProductOptions/SerializedToJsonTest.php +++ b/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverter.php @@ -3,27 +3,26 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ -namespace Magento\Sales\Test\Unit\Model\Order\Item\Converter\ProductOptions; +namespace Magento\Sales\Test\Unit\Setup; use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\Serialize\Serializer\Serialize; -use Magento\Sales\Model\Order\Item\Converter\ProductOptions\SerializedToJson; /** * Unit test for order address repository class. * * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ -class SerializedToJsonTest extends \PHPUnit_Framework_TestCase +class SerializedDataConverterTest extends \PHPUnit_Framework_TestCase { /** - * @var SerializedToJson + * @var \Magento\Sales\Setup\SerializedDataConverter */ protected $model; public function setUp() { - $this->model = new SerializedToJson(new Serialize(), new Json()); + $this->model = new \Magento\Sales\Setup\SerializedDataConverter(new Serialize(), new Json()); } /** diff --git a/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php b/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php index 361701d961e..ae675784021 100644 --- a/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php +++ b/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php @@ -16,12 +16,12 @@ class SerializedToJson implements DataConverterInterface /** * @var Serialize */ - protected $serialize; + private $serialize; /** * @var Json */ - protected $json; + private $json; /** * Constructor -- GitLab From aabfc5c3352ee5f2597487beef148dcbec755041 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 15 Dec 2016 13:12:59 +0200 Subject: [PATCH 095/175] MAGETWO-62269: Fix general architecture review notices --- .../Unit/Setup/SerializedDataConverter.php | 34 ++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverter.php b/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverter.php index 903d2462ae2..137a8b5b19b 100644 --- a/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverter.php +++ b/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverter.php @@ -20,9 +20,41 @@ class SerializedDataConverterTest extends \PHPUnit_Framework_TestCase */ protected $model; + /** + * @var Serialize|\PHPUnit_Framework_MockObject_MockObject + */ + private $serializeMock; + + /** + * @var Json|\PHPUnit_Framework_MockObject_MockObject + */ + private $jsonMock; + public function setUp() { - $this->model = new \Magento\Sales\Setup\SerializedDataConverter(new Serialize(), new Json()); + $this->serializeMock = $this->getMock(Serialize::class, ['unserialize'], [], '', false); + $this->serializeMock->expects($this->any()) + ->method('unserialize') + ->will( + $this->returnCallback( + function ($value) { + return unserialize($value); + } + ) + ); + $this->jsonMock = $this->getMock(Json::class, ['serialize'], [], '', false); + $this->jsonMock->expects($this->any()) + ->method('serialize') + ->will( + $this->returnCallback( + function ($value) { + return json_encode($value); + } + ) + ); + + $this->model = new \Magento\Sales\Setup\SerializedDataConverter($this->serializeMock, $this->jsonMock); + } /** -- GitLab From 08163ab06b4a9df0145a8c3452b3513ce6090ea9 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 15 Dec 2016 14:06:19 +0200 Subject: [PATCH 096/175] MAGETWO-62269: Fix general architecture review notices --- app/code/Magento/Sales/Model/Order/CreditmemoFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php index 6431190326c..f3f4055c1cc 100644 --- a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php +++ b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php @@ -45,7 +45,7 @@ class CreditmemoFactory ) { $this->convertor = $convertOrderFactory->create(); $this->taxConfig = $taxConfig; - $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManage::getInstance()->get( + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance()->get( \Magento\Framework\Serialize\SerializerInterface::class ); } -- GitLab From e08b25f678f8cbf689198e43a8e7e5a63cce6b16 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 15 Dec 2016 14:26:36 +0200 Subject: [PATCH 097/175] MAGETWO-62280: Fix complex product types serialization in order flow --- .../Helper/Catalog/Product/Configuration.php | 5 +++- .../Magento/Bundle/Model/Product/Type.php | 24 +++++++++++++++---- .../Bundle/Pricing/Price/ConfiguredPrice.php | 5 +++- .../Catalog/Product/ConfigurationTest.php | 9 ++++--- app/code/Magento/Quote/Setup/UpgradeData.php | 1 + .../Magento/Wishlist/Setup/UpgradeData.php | 1 + 6 files changed, 33 insertions(+), 12 deletions(-) diff --git a/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php b/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php index f9e08bba754..2de5db073ec 100644 --- a/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php +++ b/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php @@ -124,7 +124,10 @@ class Configuration extends AbstractHelper implements ConfigurationInterface // get bundle options $optionsQuoteItemOption = $item->getOptionByCode('bundle_option_ids'); - $bundleOptionsIds = $optionsQuoteItemOption ? unserialize($optionsQuoteItemOption->getValue()) : []; + $bundleOptionsIds = $optionsQuoteItemOption + ? $this->serializer->unserialize($optionsQuoteItemOption->getValue()) + : []; + if ($bundleOptionsIds) { /** @var \Magento\Bundle\Model\ResourceModel\Option\Collection $optionsCollection */ $optionsCollection = $typeInstance->getOptionsByIds($bundleOptionsIds, $product); diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php index c1e8295e0a8..779e1446bc6 100644 --- a/app/code/Magento/Bundle/Model/Product/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Type.php @@ -700,8 +700,14 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $this->checkIsResult($_result); $result[] = $_result[0]->setParentProductId($product->getId()) - ->addCustomOption('bundle_option_ids', serialize(array_map('intval', $optionIds))) - ->addCustomOption('bundle_selection_attributes', $this->serializer->serialize($attributes)); + ->addCustomOption( + 'bundle_option_ids', + $this->serializer->serialize(array_map('intval', $optionIds)) + ) + ->addCustomOption( + 'bundle_selection_attributes', + $this->serializer->serialize($attributes) + ); if ($isStrictProcessMode) { $_result[0]->setCartQty($qty); @@ -718,7 +724,12 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType foreach ($result as $item) { $item->addCustomOption('bundle_identity', $uniqueKey); } - $product->addCustomOption('bundle_option_ids', serialize(array_map('intval', $optionIds))); + $product->addCustomOption( + 'bundle_option_ids', + $this->serializer->serialize( + array_map('intval', $optionIds) + ) + ); $product->addCustomOption('bundle_selection_ids', $this->serializer->serialize($selectionIds)); return $result; @@ -829,7 +840,10 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $usedOptions = $product->getData($this->_keyUsedOptions); $usedOptionsIds = $product->getData($this->_keyUsedOptionsIds); - if (!$usedOptions || serialize($usedOptionsIds) != serialize($optionIds)) { + if ( + !$usedOptions + || $this->serializer->serialize($usedOptionsIds) != $this->serializer->serialize($optionIds) + ) { $usedOptions = $this->_bundleOption ->create() ->getResourceCollection() @@ -861,7 +875,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType if ($product->hasCustomOptions()) { $customOption = $product->getCustomOption('bundle_option_ids'); - $optionIds = unserialize($customOption->getValue()); + $optionIds = $this->serializer->unserialize($customOption->getValue()); $options = $this->getOptionsByIds($optionIds, $product); $customOption = $product->getCustomOption('bundle_selection_ids'); $selectionIds = $this->serializer->unserialize($customOption->getValue()); diff --git a/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php b/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php index 52ec835795a..454faead3aa 100644 --- a/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php +++ b/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php @@ -85,7 +85,10 @@ class ConfiguredPrice extends CatalogPrice\FinalPrice implements ConfiguredPrice // get bundle options $optionsQuoteItemOption = $this->item->getOptionByCode('bundle_option_ids'); - $bundleOptionsIds = $optionsQuoteItemOption ? unserialize($optionsQuoteItemOption->getValue()) : []; + $bundleOptionsIds = $optionsQuoteItemOption + ? $this->serializer->unserialize($optionsQuoteItemOption->getValue()) + : []; + if ($bundleOptionsIds) { /** @var \Magento\Bundle\Model\ResourceModel\Option\Collection $optionsCollection */ $optionsCollection = $typeInstance->getOptionsByIds($bundleOptionsIds, $bundleProduct); diff --git a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php index 15b4e944916..e46a0213b61 100644 --- a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php @@ -143,8 +143,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase public function testGetBundleOptionsEmptyBundleSelectionIds() { - $optionIds = 'a:1:{i:0;i:1;}'; - + $optionIds = '{"0":"1"}'; $collection = $this->getMock(\Magento\Bundle\Model\ResourceModel\Option\Collection::class, [], [], '', false); $product = $this->getMock( \Magento\Catalog\Model\Product::class, @@ -168,7 +167,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase $selectionOption->expects($this->once())->method('getValue')->will($this->returnValue('')); $itemOption->expects($this->once())->method('getValue')->will($this->returnValue($optionIds)); - $typeInstance->expects($this->once())->method('getOptionsByIds')->with(unserialize($optionIds), $product) + $typeInstance->expects($this->once())->method('getOptionsByIds')->with(json_decode($optionIds, true), $product) ->will($this->returnValue($collection)); $product->expects($this->once())->method('getTypeInstance')->will($this->returnValue($typeInstance)); $this->item->expects($this->once())->method('getProduct')->will($this->returnValue($product)); @@ -185,7 +184,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase */ public function testGetOptions() { - $optionIds = 'a:1:{i:0;i:1;}'; + $optionIds = '{"0":"1"}'; $selectionIds = '{"0":"2"}'; $selectionId = '2'; $product = $this->getMock( @@ -253,7 +252,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase $collection->expects($this->once())->method('appendSelections')->with($collection2, true) ->will($this->returnValue([$bundleOption])); $itemOption->expects($this->once())->method('getValue')->will($this->returnValue($optionIds)); - $typeInstance->expects($this->once())->method('getOptionsByIds')->with(unserialize($optionIds), $product) + $typeInstance->expects($this->once())->method('getOptionsByIds')->with(json_decode($optionIds, true), $product) ->will($this->returnValue($collection)); $typeInstance->expects($this->once()) ->method('getSelectionsByIds') diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index f0a79ba22b6..48e2d7bb9c6 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -94,6 +94,7 @@ class UpgradeData implements UpgradeDataInterface 'parameters', 'info_buyRequest', 'bundle_option_ids', + 'attributes', 'bundle_selection_attributes', ] ] diff --git a/app/code/Magento/Wishlist/Setup/UpgradeData.php b/app/code/Magento/Wishlist/Setup/UpgradeData.php index 1f45b801b24..66aef201c9e 100644 --- a/app/code/Magento/Wishlist/Setup/UpgradeData.php +++ b/app/code/Magento/Wishlist/Setup/UpgradeData.php @@ -76,6 +76,7 @@ class UpgradeData implements UpgradeDataInterface 'parameters', 'info_buyRequest', 'bundle_option_ids', + 'attributes', 'bundle_selection_attributes', ] ] -- GitLab From 83f8095c6175a6de4e726b92797a57f65b11ae8c Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 15 Dec 2016 15:41:35 +0200 Subject: [PATCH 098/175] MAGETWO-62269: Fix general architecture review notices --- ...erializedDataConverter.php => SerializedDataConverterTest.php} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename app/code/Magento/Sales/Test/Unit/Setup/{SerializedDataConverter.php => SerializedDataConverterTest.php} (100%) diff --git a/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverter.php b/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverterTest.php similarity index 100% rename from app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverter.php rename to app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverterTest.php -- GitLab From 3281969e92b2ffa0aafe89917bd37630653de4b2 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 15 Dec 2016 15:44:27 +0200 Subject: [PATCH 099/175] MAGETWO-62269: Fix general architecture review notices - CR fix --- app/code/Magento/Sales/Model/Order/CreditmemoFactory.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php index f3f4055c1cc..68808f56edd 100644 --- a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php +++ b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php @@ -37,6 +37,7 @@ class CreditmemoFactory * * @param \Magento\Sales\Model\Convert\OrderFactory $convertOrderFactory * @param \Magento\Tax\Model\Config $taxConfig + * @param \Magento\Framework\Serialize\SerializerInterface $serializer */ public function __construct( \Magento\Sales\Model\Convert\OrderFactory $convertOrderFactory, -- GitLab From 7bb825e75dddb4c6f420fe32ea6e058e24e37c35 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 15 Dec 2016 15:54:34 +0200 Subject: [PATCH 100/175] MAGETWO-62269: Fix general architecture review notices --- app/code/Magento/Sales/Setup/SerializedDataConverter.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/code/Magento/Sales/Setup/SerializedDataConverter.php b/app/code/Magento/Sales/Setup/SerializedDataConverter.php index 0b5e9bde5e7..e12007e8445 100644 --- a/app/code/Magento/Sales/Setup/SerializedDataConverter.php +++ b/app/code/Magento/Sales/Setup/SerializedDataConverter.php @@ -37,8 +37,7 @@ class SerializedDataConverter implements \Magento\Framework\DB\DataConverter\Dat public function __construct( Serialize $serialize, Json $json - ) - { + ) { $this->serialize = $serialize; $this->json = $json; } -- GitLab From df337b5b92a8d0df286b193d982975c91978e299 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 15 Dec 2016 16:01:59 +0200 Subject: [PATCH 101/175] MAGETWO-62280: Fix complex product types serialization in order flow --- app/code/Magento/Quote/Setup/UpgradeData.php | 1 + app/code/Magento/Wishlist/Setup/UpgradeData.php | 1 + 2 files changed, 2 insertions(+) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index 48e2d7bb9c6..f6119d1c93f 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -94,6 +94,7 @@ class UpgradeData implements UpgradeDataInterface 'parameters', 'info_buyRequest', 'bundle_option_ids', + 'bundle_selection_ids', 'attributes', 'bundle_selection_attributes', ] diff --git a/app/code/Magento/Wishlist/Setup/UpgradeData.php b/app/code/Magento/Wishlist/Setup/UpgradeData.php index 66aef201c9e..496db7f2cab 100644 --- a/app/code/Magento/Wishlist/Setup/UpgradeData.php +++ b/app/code/Magento/Wishlist/Setup/UpgradeData.php @@ -76,6 +76,7 @@ class UpgradeData implements UpgradeDataInterface 'parameters', 'info_buyRequest', 'bundle_option_ids', + 'bundle_selection_ids', 'attributes', 'bundle_selection_attributes', ] -- GitLab From d7061c3dd0f7f5b8f5250aa5334b9ab8c593ead0 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 15 Dec 2016 16:09:29 +0200 Subject: [PATCH 102/175] MAGETWO-62280: Fix complex product types serialization in order flow --- app/code/Magento/Quote/Setup/UpgradeData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index f6119d1c93f..25e784be91c 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -36,7 +36,7 @@ class UpgradeData implements UpgradeDataInterface * * @param FieldDataConverterFactory $fieldDataConverterFactory * @param QueryModifierFactory $queryModifierFactory - * @param Generator $generator + * @param Generator $queryGenerator */ public function __construct( FieldDataConverterFactory $fieldDataConverterFactory, -- GitLab From 636ea5c6a8cc63e11efc9ebf1aa9f5bbe83f6924 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 15 Dec 2016 16:18:09 +0200 Subject: [PATCH 103/175] MAGETWO-62269: Fix general architecture review notices --- .../Sales/Model/Order/CreditmemoFactory.php | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php index 68808f56edd..37f71d2d9fa 100644 --- a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php +++ b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php @@ -24,6 +24,7 @@ class CreditmemoFactory /** * @var \Magento\Framework\Unserialize\Unserialize + * @deprecated */ protected $unserialize; @@ -288,19 +289,4 @@ class CreditmemoFactory } return $qty; } - - /** - * Get Unserialize - * - * @return \Magento\Framework\Unserialize\Unserialize - * @deprecated - */ - private function getUnserialize() - { - if (!$this->unserialize) { - $this->unserialize = \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Unserialize\Unserialize::class); - } - return $this->unserialize; - } } -- GitLab From a7761084f0c0e8c22e2883f6ccb27e12b5bfb27c Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Mon, 19 Dec 2016 10:08:04 -0600 Subject: [PATCH 104/175] MAGETWO-62133: Create QueryModifier to select only options of type file and info_buyRequest Refactoring --- .../Magento/Framework/DB/Select/InQueryModifier.php | 2 +- .../Framework/DB/Select/QueryModifierFactory.php | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php b/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php index cf20152d804..e8a03f70956 100644 --- a/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php +++ b/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php @@ -8,7 +8,7 @@ namespace Magento\Framework\DB\Select; use Magento\Framework\DB\Select; /** - * Add in condition to select + * Add IN condition to select */ class InQueryModifier implements QueryModifierInterface { diff --git a/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php b/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php index fe2933627d5..8c7e0fed8f9 100644 --- a/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php +++ b/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php @@ -34,9 +34,16 @@ class QueryModifierFactory * @param string $queryModifierClassName * @param array $data * @return QueryModifierInterface + * @throws \InvalidArgumentException */ - public function create($queryModifierClassName, $data) + public function create($queryModifierClassName, array $data = []) { - return $this->objectManager->create($queryModifierClassName, $data); + $queryModifier = $this->objectManager->create($queryModifierClassName, $data); + if (!($queryModifier instanceof QueryModifierInterface)) { + throw new \InvalidArgumentException( + $queryModifierClassName . ' must implement ' . QueryModifierInterface::class + ); + } + return $queryModifier; } } -- GitLab From 3d63fb970d3ffb126ea0f7e1101f7bdf575527e4 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Mon, 19 Dec 2016 14:33:03 -0600 Subject: [PATCH 105/175] MAGETWO-62133: Create QueryModifier to select only options of type file and info_buyRequest Refactoring --- app/code/Magento/Quote/Setup/UpgradeData.php | 5 +++-- app/etc/di.xml | 7 +++++++ .../DB/Select/QueryModifierFactory.php | 21 ++++++++++++++----- 3 files changed, 26 insertions(+), 7 deletions(-) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index 96b05d2e244..42c47404f7e 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -64,6 +64,7 @@ class UpgradeData implements UpgradeDataInterface * * @param ModuleDataSetupInterface $setup * @return void + * @throws \InvalidArgumentException */ private function upgradeToVersionTwoZeroFour(ModuleDataSetupInterface $setup) { @@ -75,7 +76,7 @@ class UpgradeData implements UpgradeDataInterface 'additional_information' ); $queryModifier = $this->queryModifierFactory->create( - InQueryModifier::class, + 'in', [ 'values' => [ 'code' => [ @@ -111,7 +112,7 @@ class UpgradeData implements UpgradeDataInterface $codes ); $queryModifier = $this->queryModifierFactory->create( - InQueryModifier::class, + 'in', [ 'values' => [ 'code' => $codes diff --git a/app/etc/di.xml b/app/etc/di.xml index e9767eccb28..f922c9c15e7 100755 --- a/app/etc/di.xml +++ b/app/etc/di.xml @@ -1214,4 +1214,11 @@ </argument> </arguments> </type> + <type name="Magento\Framework\DB\Select\QueryModifierFactory"> + <arguments> + <argument name="queryModifiers" xsi:type="array"> + <item name="in" xsi:type="string">Magento\Framework\DB\Select\InQueryModifier</item> + </argument> + </arguments> + </type> </config> diff --git a/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php b/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php index 8c7e0fed8f9..21eb484b432 100644 --- a/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php +++ b/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php @@ -17,31 +17,42 @@ class QueryModifierFactory */ private $objectManager; + /** + * @var array + */ + private $queryModifiers; + /** * Constructor * * @param ObjectManagerInterface $objectManager + * @param array $queryModifiers */ public function __construct( - ObjectManagerInterface $objectManager + ObjectManagerInterface $objectManager, + array $queryModifiers = [] ) { $this->objectManager = $objectManager; + $this->queryModifiers = $queryModifiers; } /** * Create instance of QueryModifierInterface * - * @param string $queryModifierClassName + * @param string $type * @param array $data * @return QueryModifierInterface * @throws \InvalidArgumentException */ - public function create($queryModifierClassName, array $data = []) + public function create($type, array $data = []) { - $queryModifier = $this->objectManager->create($queryModifierClassName, $data); + if (!isset($this->queryModifiers[$type])) { + throw new \InvalidArgumentException('Unknown query modifier type ' . $type); + } + $queryModifier = $this->objectManager->create($this->queryModifiers[$type], $data); if (!($queryModifier instanceof QueryModifierInterface)) { throw new \InvalidArgumentException( - $queryModifierClassName . ' must implement ' . QueryModifierInterface::class + $this->queryModifiers[$type] . ' must implement ' . QueryModifierInterface::class ); } return $queryModifier; -- GitLab From 621230f6ba88954d07c8b3c49d9bf7b91e192b41 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Mon, 19 Dec 2016 14:35:46 -0600 Subject: [PATCH 106/175] MAGETWO-62133: Create QueryModifier to select only options of type file and info_buyRequest Refactoring --- app/code/Magento/Quote/Setup/UpgradeData.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index 42c47404f7e..44f2ad661d7 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -11,7 +11,6 @@ use Magento\Framework\Setup\ModuleDataSetupInterface; use Magento\Framework\DB\FieldDataConverterFactory; use Magento\Framework\DB\DataConverter\SerializedToJson; use Magento\Framework\DB\Select\QueryModifierFactory; -use Magento\Framework\DB\Select\InQueryModifier; use Magento\Framework\DB\Query\Generator; class UpgradeData implements UpgradeDataInterface -- GitLab From fae04fe274e963669d6fc3f78e0b6cd601b0734b Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Mon, 19 Dec 2016 15:20:49 -0600 Subject: [PATCH 107/175] MAGETWO-62133: Create QueryModifier to select only options of type file and info_buyRequest Refactoring --- .../Unit/Select/QueryModifierFactoryTest.php | 106 ++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 lib/internal/Magento/Framework/DB/Test/Unit/Select/QueryModifierFactoryTest.php diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/QueryModifierFactoryTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/QueryModifierFactoryTest.php new file mode 100644 index 00000000000..b083b730bbd --- /dev/null +++ b/lib/internal/Magento/Framework/DB/Test/Unit/Select/QueryModifierFactoryTest.php @@ -0,0 +1,106 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Framework\DB\Test\Unit\Select; + +use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; +use Magento\Framework\DB\Select\QueryModifierFactory; +use Magento\Framework\DB\Select\InQueryModifier; +use Magento\Framework\ObjectManagerInterface; + +class QueryModifierFactoryTest extends \PHPUnit_Framework_TestCase +{ + /** + * @var ObjectManager + */ + private $objectManager; + + /** + * @var QueryModifierFactory + */ + private $queryModifierFactory; + + /** + * @var ObjectManagerInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $objectManagerMock; + + /** + * @var InQueryModifier|\PHPUnit_Framework_MockObject_MockObject + */ + private $inQueryModifierMock; + + protected function setUp() + { + $this->objectManager = new ObjectManager($this); + $this->objectManagerMock = $this->getMock(ObjectManagerInterface::class); + $this->inQueryModifierMock = $this->getMock(InQueryModifier::class, [], [], '', false); + } + + public function testCreate() + { + $params = ['foo' => 'bar']; + $this->queryModifierFactory = $this->objectManager->getObject( + QueryModifierFactory::class, + [ + 'objectManager' => $this->objectManagerMock, + 'queryModifiers' => [ + 'in' => InQueryModifier::class + ] + ] + ); + $this->objectManagerMock->expects($this->once()) + ->method('create') + ->with( + InQueryModifier::class, + $params + ) + ->willReturn($this->inQueryModifierMock); + $this->queryModifierFactory->create('in', $params); + } + + /** + * @expectedException \InvalidArgumentException + */ + public function testCreateUnknownQueryModifierType() + { + $params = ['foo' => 'bar']; + $this->queryModifierFactory = $this->objectManager->getObject( + QueryModifierFactory::class, + [ + 'objectManager' => $this->objectManagerMock, + 'queryModifiers' => [] + ] + ); + $this->objectManagerMock->expects($this->never()) + ->method('create'); + $this->queryModifierFactory->create('in', $params); + } + + /** + * @expectedException \InvalidArgumentException + */ + public function testCreateDoesNotImplementInterface() + { + $params = ['foo' => 'bar']; + $this->queryModifierFactory = $this->objectManager->getObject( + QueryModifierFactory::class, + [ + 'objectManager' => $this->objectManagerMock, + 'queryModifiers' => [ + 'in' => \stdClass::class + ] + ] + ); + $this->objectManagerMock->expects($this->once()) + ->method('create') + ->with( + \stdClass::class, + $params + ) + ->willReturn(new \stdClass()); + $this->queryModifierFactory->create('in', $params); + } +} -- GitLab From 126f95c73dcd872c5f8016d9d75e520ba0901e97 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Wed, 21 Dec 2016 13:21:51 +0200 Subject: [PATCH 108/175] MAGETWO-62510: Remove uses of serialize/unserialize in \Magento\Ui\Model\Manager --- app/code/Magento/Ui/Model/Manager.php | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/app/code/Magento/Ui/Model/Manager.php b/app/code/Magento/Ui/Model/Manager.php index 348b7d39880..358d38714d3 100644 --- a/app/code/Magento/Ui/Model/Manager.php +++ b/app/code/Magento/Ui/Model/Manager.php @@ -17,6 +17,7 @@ use Magento\Framework\View\Element\UiComponent\Config\ManagerInterface; use Magento\Framework\View\Element\UiComponent\Config\Provider\Component\Definition as ComponentDefinition; use Magento\Framework\View\Element\UiComponent\Config\ReaderFactory; use Magento\Framework\View\Element\UiComponent\Config\UiReaderInterface; +use Magento\Framework\Serialize\SerializerInterface; /** * Class Manager @@ -94,6 +95,11 @@ class Manager implements ManagerInterface */ protected $uiReader; + /** + * @var SerializerInterface + */ + private $serializer; + /** * @param ComponentDefinition $componentConfigProvider * @param DomMergerInterface $domMerger @@ -102,6 +108,7 @@ class Manager implements ManagerInterface * @param AggregatedFileCollectorFactory $aggregatedFileCollectorFactory * @param CacheInterface $cache * @param InterpreterInterface $argumentInterpreter + * @param SerializerInterface $serializer */ public function __construct( ComponentDefinition $componentConfigProvider, @@ -110,7 +117,9 @@ class Manager implements ManagerInterface ArrayObjectFactory $arrayObjectFactory, AggregatedFileCollectorFactory $aggregatedFileCollectorFactory, CacheInterface $cache, - InterpreterInterface $argumentInterpreter + InterpreterInterface $argumentInterpreter, + SerializerInterface $serializer + ) { $this->componentConfigProvider = $componentConfigProvider; $this->domMerger = $domMerger; @@ -120,6 +129,7 @@ class Manager implements ManagerInterface $this->aggregatedFileCollectorFactory = $aggregatedFileCollectorFactory; $this->cache = $cache; $this->argumentInterpreter = $argumentInterpreter; + $this->serializer = $serializer; } /** @@ -164,9 +174,14 @@ class Manager implements ManagerInterface $cachedPool = $this->cache->load($cacheID); if ($cachedPool === false) { $this->prepare($name); - $this->cache->save($this->componentsPool->serialize(), $cacheID); + $this->cache->save( + $this->serializer->serialize($this->componentsPool->getArrayCopy()), + $cacheID + ); } else { - $this->componentsPool->unserialize($cachedPool); + $this->componentsPool->exchangeArray( + $this->serializer->unserialize($cachedPool) + ); } $this->componentsData->offsetSet($name, $this->componentsPool); $this->componentsData->offsetSet($name, $this->evaluateComponentArguments($this->getData($name))); -- GitLab From 7bf469a40aeb2d49739e7823ae17a6db53dd9bf3 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Wed, 21 Dec 2016 13:35:07 +0200 Subject: [PATCH 109/175] MAGETWO-62510: Remove uses of serialize/unserialize in \Magento\Ui\Model\Manager --- app/code/Magento/Ui/Model/Manager.php | 7 ++--- .../Ui/Test/Unit/Model/ManagerTest.php | 26 +++++++++++++++++-- 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/app/code/Magento/Ui/Model/Manager.php b/app/code/Magento/Ui/Model/Manager.php index 358d38714d3..3edbfe6b5ec 100644 --- a/app/code/Magento/Ui/Model/Manager.php +++ b/app/code/Magento/Ui/Model/Manager.php @@ -18,6 +18,7 @@ use Magento\Framework\View\Element\UiComponent\Config\Provider\Component\Definit use Magento\Framework\View\Element\UiComponent\Config\ReaderFactory; use Magento\Framework\View\Element\UiComponent\Config\UiReaderInterface; use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\App\ObjectManager; /** * Class Manager @@ -108,7 +109,7 @@ class Manager implements ManagerInterface * @param AggregatedFileCollectorFactory $aggregatedFileCollectorFactory * @param CacheInterface $cache * @param InterpreterInterface $argumentInterpreter - * @param SerializerInterface $serializer + * @param SerializerInterface|null $serializer */ public function __construct( ComponentDefinition $componentConfigProvider, @@ -118,7 +119,7 @@ class Manager implements ManagerInterface AggregatedFileCollectorFactory $aggregatedFileCollectorFactory, CacheInterface $cache, InterpreterInterface $argumentInterpreter, - SerializerInterface $serializer + SerializerInterface $serializer = null ) { $this->componentConfigProvider = $componentConfigProvider; @@ -129,7 +130,7 @@ class Manager implements ManagerInterface $this->aggregatedFileCollectorFactory = $aggregatedFileCollectorFactory; $this->cache = $cache; $this->argumentInterpreter = $argumentInterpreter; - $this->serializer = $serializer; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); } /** diff --git a/app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php b/app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php index 37f97af4597..fe60a646d5a 100644 --- a/app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php +++ b/app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php @@ -75,6 +75,9 @@ class ManagerTest extends \PHPUnit_Framework_TestCase */ protected $aggregatedFileCollectorFactory; + /** @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject */ + private $serializer; + protected function setUp() { $this->componentConfigProvider = $this->getMockBuilder( @@ -105,6 +108,24 @@ class ManagerTest extends \PHPUnit_Framework_TestCase ->getMockForAbstractClass(); $this->argumentInterpreter = $this->getMockBuilder(\Magento\Framework\Data\Argument\InterpreterInterface::class) ->getMockForAbstractClass(); + $this->serializer = $this->getMockBuilder( + \Magento\Framework\Serialize\SerializerInterface::class + )->getMockForAbstractClass(); + $this->serializer->expects($this->any()) + ->method('serialize') + ->willReturnCallback( + function ($value) { + return json_encode($value); + } + ); + $this->serializer->expects($this->any()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); + $this->manager = new Manager( $this->componentConfigProvider, $this->domMerger, @@ -112,7 +133,8 @@ class ManagerTest extends \PHPUnit_Framework_TestCase $this->arrayObjectFactory, $this->aggregatedFileCollectorFactory, $this->cacheConfig, - $this->argumentInterpreter + $this->argumentInterpreter, + $this->serializer ); } @@ -192,7 +214,7 @@ class ManagerTest extends \PHPUnit_Framework_TestCase [ 'test_component1', new \ArrayObject(), - $cachedData->serialize(), + json_encode($cachedData->getArrayCopy()), [], [ 'test_component1' => [ -- GitLab From 51d61481a395aca50b9b0c1a8785053f84afb07d Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Wed, 21 Dec 2016 14:49:21 +0200 Subject: [PATCH 110/175] MAGETWO-62510: Remove uses of serialize/unserialize in \Magento\Ui\Model\Manager --- app/code/Magento/Ui/Model/Manager.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/code/Magento/Ui/Model/Manager.php b/app/code/Magento/Ui/Model/Manager.php index 3edbfe6b5ec..8029bbf959f 100644 --- a/app/code/Magento/Ui/Model/Manager.php +++ b/app/code/Magento/Ui/Model/Manager.php @@ -120,7 +120,6 @@ class Manager implements ManagerInterface CacheInterface $cache, InterpreterInterface $argumentInterpreter, SerializerInterface $serializer = null - ) { $this->componentConfigProvider = $componentConfigProvider; $this->domMerger = $domMerger; -- GitLab From 24b608a990cefa0a0f5421c3ec541c44bf3259b4 Mon Sep 17 00:00:00 2001 From: Joan He <johe@magento.com> Date: Wed, 21 Dec 2016 17:15:54 -0600 Subject: [PATCH 111/175] MAGETWO-62253: Refactor code to remove unserialize --- app/code/Magento/Backend/Model/Menu.php | 102 +++++++++++--- app/code/Magento/Backend/Model/Menu/Item.php | 97 ++++++------- .../Backend/Test/Unit/Model/MenuTest.php | 129 ++++++++++++++---- .../Magento/Backend/Model/MenuTest.php | 48 ++++++- 4 files changed, 284 insertions(+), 92 deletions(-) diff --git a/app/code/Magento/Backend/Model/Menu.php b/app/code/Magento/Backend/Model/Menu.php index 516319ad983..953e540b2cf 100644 --- a/app/code/Magento/Backend/Model/Menu.php +++ b/app/code/Magento/Backend/Model/Menu.php @@ -5,6 +5,12 @@ */ namespace Magento\Backend\Model; +use Magento\Backend\Model\Menu\Item; +use Magento\Backend\Model\Menu\Item\Factory; +use Magento\Framework\App\ObjectManager; +use Magento\Framework\Serialize\SerializerInterface; +use Psr\Log\LoggerInterface; + /** * Backend menu model */ @@ -18,33 +24,52 @@ class Menu extends \ArrayObject protected $_path = ''; /** - * @var \Psr\Log\LoggerInterface + * @var LoggerInterface */ protected $_logger; /** - * @param \Psr\Log\LoggerInterface $logger + * @var Factory + */ + private $menuItemFactory; + + /** + * @var SerializerInterface + */ + private $serializer; + + /** + * @param LoggerInterface $logger * @param string $pathInMenuStructure + * @param Factory $menuItemFactory + * @param SerializerInterface $serializer */ - public function __construct(\Psr\Log\LoggerInterface $logger, $pathInMenuStructure = '') - { + public function __construct( + LoggerInterface $logger, + $pathInMenuStructure = '', + Factory $menuItemFactory = null, + SerializerInterface $serializer = null + ) { if ($pathInMenuStructure) { $this->_path = $pathInMenuStructure . '/'; } $this->_logger = $logger; $this->setIteratorClass(\Magento\Backend\Model\Menu\Iterator::class); + $this->menuItemFactory = $menuItemFactory ?: ObjectManager::getInstance() + ->create(Factory::class); + $this->serializer = $serializer ?: ObjectManager::getInstance()->create(SerializerInterface::class); } /** * Add child to menu item * - * @param \Magento\Backend\Model\Menu\Item $item + * @param Item $item * @param string $parentId * @param int $index * @return void * @throws \InvalidArgumentException */ - public function add(\Magento\Backend\Model\Menu\Item $item, $parentId = null, $index = null) + public function add(Item $item, $parentId = null, $index = null) { if ($parentId !== null) { $parentItem = $this->get($parentId); @@ -69,13 +94,13 @@ class Menu extends \ArrayObject * Retrieve menu item by id * * @param string $itemId - * @return \Magento\Backend\Model\Menu\Item|null + * @return Item|null */ public function get($itemId) { $result = null; + /** @var Item $item */ foreach ($this as $item) { - /** @var $item \Magento\Backend\Model\Menu\Item */ if ($item->getId() == $itemId) { $result = $item; break; @@ -116,8 +141,8 @@ class Menu extends \ArrayObject public function remove($itemId) { $result = false; + /** @var Item $item */ foreach ($this as $key => $item) { - /** @var $item \Magento\Backend\Model\Menu\Item */ if ($item->getId() == $itemId) { unset($this[$key]); $result = true; @@ -144,8 +169,8 @@ class Menu extends \ArrayObject public function reorder($itemId, $position) { $result = false; + /** @var Item $item */ foreach ($this as $key => $item) { - /** @var $item \Magento\Backend\Model\Menu\Item */ if ($item->getId() == $itemId) { unset($this[$key]); $this->add($item, null, $position); @@ -161,10 +186,10 @@ class Menu extends \ArrayObject /** * Check whether provided item is last in list * - * @param \Magento\Backend\Model\Menu\Item $item + * @param Item $item * @return bool */ - public function isLast(\Magento\Backend\Model\Menu\Item $item) + public function isLast(Item $item) { return $this->offsetGet(max(array_keys($this->getArrayCopy())))->getId() == $item->getId(); } @@ -172,12 +197,12 @@ class Menu extends \ArrayObject /** * Find first menu item that user is able to access * - * @return \Magento\Backend\Model\Menu\Item|null + * @return Item|null */ public function getFirstAvailable() { $result = null; - /** @var $item \Magento\Backend\Model\Menu\Item */ + /** @var Item $item */ foreach ($this as $item) { if ($item->isAllowed() && !$item->isDisabled()) { if ($item->hasChildren()) { @@ -198,7 +223,7 @@ class Menu extends \ArrayObject * Get parent items by item id * * @param string $itemId - * @return \Magento\Backend\Model\Menu\Item[] + * @return Item[] */ public function getParentItems($itemId) { @@ -217,8 +242,8 @@ class Menu extends \ArrayObject */ protected function _findParentItems($menu, $itemId, &$parents) { + /** @var Item $item */ foreach ($menu as $item) { - /** @var $item \Magento\Backend\Model\Menu\Item */ if ($item->getId() == $itemId) { return true; } @@ -241,8 +266,51 @@ class Menu extends \ArrayObject { $logger = $this->_logger; unset($this->_logger); - $result = parent::serialize(); + $result = $this->serializer->serialize($this->toArray()); $this->_logger = $logger; return $result; } + + /** + * Get menu data represented as an array + * + * @return array + */ + public function toArray() + { + $data = []; + foreach ($this as $item) { + $data[] = $item->toArray(); + } + return $data; + } + + /** + * Unserialize menu + * + * @param string $serialized + * @return void + */ + public function unserialize($serialized) + { + $data = $this->serializer->unserialize($serialized); + $this->populateFromArray($data); + } + + /** + * Populate the menu with data from array + * + * @param array $data + * @return void + */ + public function populateFromArray(array $data) + { + $items = []; + foreach ($data as $itemData) { + $item = $this->menuItemFactory->create(); + $item->populateFromArray($itemData); + $items[] = $item; + } + $this->exchangeArray($items); + } } diff --git a/app/code/Magento/Backend/Model/Menu/Item.php b/app/code/Magento/Backend/Model/Menu/Item.php index a49920a6766..690f0724d39 100644 --- a/app/code/Magento/Backend/Model/Menu/Item.php +++ b/app/code/Magento/Backend/Model/Menu/Item.php @@ -4,10 +4,11 @@ * See COPYING.txt for license details. */ -// @codingStandardsIgnoreFile - namespace Magento\Backend\Model\Menu; +use Magento\Backend\Model\Menu; +use Magento\Store\Model\ScopeInterface; + /** * Menu item. Should be used to create nested menu structures with \Magento\Backend\Model\Menu * @@ -102,7 +103,7 @@ class Item /** * Submenu item list * - * @var \Magento\Backend\Model\Menu + * @var Menu */ protected $_submenu; @@ -166,23 +167,16 @@ class Item array $data = [] ) { $this->_validator = $validator; - $this->_validator->validate($data); - + if (!empty($data)) { + $this->_validator->validate($data); + $this->populateFromArray($data); + } $this->_moduleManager = $moduleManager; $this->_acl = $authorization; $this->_scopeConfig = $scopeConfig; $this->_menuFactory = $menuFactory; $this->_urlModel = $urlModel; - $this->_moduleName = isset($data['module']) ? $data['module'] : 'Magento_Backend'; $this->_moduleList = $moduleList; - - $this->_id = $data['id']; - $this->_title = $data['title']; - $this->_action = $this->_getArgument($data, 'action'); - $this->_resource = $this->_getArgument($data, 'resource'); - $this->_dependsOnModule = $this->_getArgument($data, 'dependsOnModule'); - $this->_dependsOnConfig = $this->_getArgument($data, 'dependsOnConfig'); - $this->_tooltip = $this->_getArgument($data, 'toolTip', ''); } /** @@ -215,13 +209,13 @@ class Item */ public function hasChildren() { - return !is_null($this->_submenu) && (bool)$this->_submenu->count(); + return (null !== $this->_submenu) && (bool)$this->_submenu->count(); } /** * Retrieve submenu * - * @return \Magento\Backend\Model\Menu + * @return Menu */ public function getChildren() { @@ -425,7 +419,7 @@ class Item protected function _isConfigDependenciesAvailable() { if ($this->_dependsOnConfig) { - return $this->_scopeConfig->isSetFlag((string)$this->_dependsOnConfig, \Magento\Store\Model\ScopeInterface::SCOPE_STORE); + return $this->_scopeConfig->isSetFlag((string)$this->_dependsOnConfig, ScopeInterface::SCOPE_STORE); } return true; } @@ -445,45 +439,56 @@ class Item } /** - * @return string[] + * Get menu item data represented as an array + * + * @return array */ - public function __sleep() + public function toArray() { - if ($this->_submenu) { - $this->_serializedSubmenu = $this->_submenu->serialize(); - } return [ - '_parentId', - '_moduleName', - '_sortIndex', - '_dependsOnConfig', - '_id', - '_resource', - '_path', - '_action', - '_dependsOnModule', - '_tooltip', - '_title', - '_serializedSubmenu' + 'parent_id' => $this->_parentId, + 'module' => $this->_moduleName, + 'sort_index' => $this->_sortIndex, + 'depends_on_config' => $this->_dependsOnConfig, + 'id' => $this->_id, + 'resource' => $this->_resource, + 'path' => $this->_path, + 'action' => $this->_action, + 'depends_on_module' => $this->_dependsOnModule, + 'tooltip' => $this->_tooltip, + 'title' => $this->_title, + 'sub_menu' => isset($this->_submenu) ? $this->_submenu->toArray() : null ]; } /** + * Populate the menu item with data from array + * + * @param array $data * @return void */ - public function __wakeup() + public function populateFromArray(array $data) { - $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); - $this->_moduleManager = $objectManager->get(\Magento\Framework\Module\Manager::class); - $this->_validator = $objectManager->get(\Magento\Backend\Model\Menu\Item\Validator::class); - $this->_acl = $objectManager->get(\Magento\Framework\AuthorizationInterface::class); - $this->_scopeConfig = $objectManager->get(\Magento\Framework\App\Config\ScopeConfigInterface::class); - $this->_menuFactory = $objectManager->get(\Magento\Backend\Model\MenuFactory::class); - $this->_urlModel = $objectManager->get(\Magento\Backend\Model\UrlInterface::class); - $this->_moduleList = $objectManager->get(\Magento\Framework\Module\ModuleListInterface::class); - if ($this->_serializedSubmenu) { - $this->_submenu = $this->_menuFactory->create(); - $this->_submenu->unserialize($this->_serializedSubmenu); + $this->_moduleName = isset($data['module']) ? $data['module'] : 'Magento_Backend'; + + $this->_id = $data['id']; + $this->_title = $data['title']; + $this->_action = $this->_getArgument($data, 'action'); + $this->_resource = $this->_getArgument($data, 'resource'); + $this->_dependsOnModule = $this->_getArgument($data, 'dependsOnModule'); + $this->_dependsOnConfig = $this->_getArgument($data, 'dependsOnConfig'); + $this->_tooltip = $this->_getArgument($data, 'toolTip', ''); + $this->_parentId = $this->_getArgument($data, 'parent_id'); + $this->_sortIndex = $this->_getArgument($data, 'sort_index'); + $this->_dependsOnConfig = $this->_getArgument($data, 'depends_on_config'); + $this->_path = $this->_getArgument($data, 'path'); + $this->_dependsOnModule = $this->_getArgument($data, 'depends_on_module'); + if (isset($data['sub_menu'])) { + $menu = $this->_menuFactory->create(); + $menu->populateFromArray($data['sub_menu']); + $this->_submenu = $menu; + } else { + $this->_submenu = null; } } } diff --git a/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php b/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php index c985bec9207..2954afbe647 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php @@ -5,6 +5,10 @@ */ namespace Magento\Backend\Test\Unit\Model; +use Magento\Backend\Model\Menu\Item; +use Magento\Backend\Model\Menu\Item\Factory; +use Magento\Framework\Serialize\SerializerInterface; + class MenuTest extends \PHPUnit_Framework_TestCase { /** @@ -22,8 +26,14 @@ class MenuTest extends \PHPUnit_Framework_TestCase */ protected $_items = []; + /** + * @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager + */ + private $objectManagerHelper; + protected function setUp() { + $this->objectManagerHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->_items['item1'] = $this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false); $this->_items['item1']->expects($this->any())->method('getId')->will($this->returnValue('item1')); @@ -35,7 +45,12 @@ class MenuTest extends \PHPUnit_Framework_TestCase $this->_logger = $this->getMock(\Psr\Log\LoggerInterface::class); - $this->_model = new \Magento\Backend\Model\Menu($this->_logger); + $this->_model = $this->objectManagerHelper->getObject( + \Magento\Backend\Model\Menu::class, + [ + 'logger' => $this->_logger + ] + ); } public function testAdd() @@ -53,7 +68,7 @@ class MenuTest extends \PHPUnit_Framework_TestCase public function testAddToItem() { - $subMenu = $this->getMock(\Magento\Backend\Model\Menu::class, [], [$this->_logger]); + $subMenu = $this->getMockBuilder(\Magento\Backend\Model\Menu::class)->disableOriginalConstructor()->getMock(); $subMenu->expects($this->once())->method("add")->with($this->_items['item2']); $this->_items['item1']->expects($this->once())->method("getChildren")->will($this->returnValue($subMenu)); @@ -101,19 +116,29 @@ class MenuTest extends \PHPUnit_Framework_TestCase public function testGetRecursive() { - $menu1 = new \Magento\Backend\Model\Menu($this->_logger); - $menu2 = new \Magento\Backend\Model\Menu($this->_logger); + $menuOne = $this->objectManagerHelper->getObject( + \Magento\Backend\Model\Menu::class, + [ + 'logger' => $this->_logger + ] + ); + $menuTwo = $this->objectManagerHelper->getObject( + \Magento\Backend\Model\Menu::class, + [ + 'logger' => $this->_logger + ] + ); $this->_items['item1']->expects($this->any())->method('hasChildren')->will($this->returnValue(true)); - $this->_items['item1']->expects($this->any())->method('getChildren')->will($this->returnValue($menu1)); + $this->_items['item1']->expects($this->any())->method('getChildren')->will($this->returnValue($menuOne)); $this->_model->add($this->_items['item1']); $this->_items['item2']->expects($this->any())->method('hasChildren')->will($this->returnValue(true)); - $this->_items['item2']->expects($this->any())->method('getChildren')->will($this->returnValue($menu2)); - $menu1->add($this->_items['item2']); + $this->_items['item2']->expects($this->any())->method('getChildren')->will($this->returnValue($menuTwo)); + $menuOne->add($this->_items['item2']); $this->_items['item3']->expects($this->any())->method('hasChildren')->will($this->returnValue(false)); - $menu2->add($this->_items['item3']); + $menuTwo->add($this->_items['item3']); $this->assertEquals($this->_items['item1'], $this->_model->get('item1')); $this->assertEquals($this->_items['item2'], $this->_model->get('item2')); @@ -126,11 +151,7 @@ class MenuTest extends \PHPUnit_Framework_TestCase $this->_model->add($this->_items['item2']); $this->_model->add($this->_items['item3']); - $subMenu = $this->getMock( - \Magento\Backend\Model\Menu::class, - [], - [$this->getMock(\Psr\Log\LoggerInterface::class)] - ); + $subMenu = $this->getMockBuilder(\Magento\Backend\Model\Menu::class)->disableOriginalConstructor()->getMock(); $subMenu->expects($this->once())->method("add")->with($this->_items['item3']); $this->_items['item1']->expects($this->once())->method("getChildren")->will($this->returnValue($subMenu)); @@ -179,11 +200,7 @@ class MenuTest extends \PHPUnit_Framework_TestCase public function testRemoveRemovesMenuItemRecursively() { - $menuMock = $this->getMock( - \Magento\Backend\Model\Menu::class, - [], - [$this->getMock(\Psr\Log\LoggerInterface::class)] - ); + $menuMock = $this->getMockBuilder(\Magento\Backend\Model\Menu::class)->disableOriginalConstructor()->getMock(); $menuMock->expects($this->once())->method('remove')->with($this->equalTo('item2')); $this->_items['item1']->expects($this->any())->method('hasChildren')->will($this->returnValue(true)); @@ -214,7 +231,12 @@ class MenuTest extends \PHPUnit_Framework_TestCase { $this->_logger->expects($this->any())->method('log'); - $subMenu = new \Magento\Backend\Model\Menu($this->_logger); + $subMenu = $this->objectManagerHelper->getObject( + \Magento\Backend\Model\Menu::class, + [ + 'logger' => $this->_logger + ] + ); $this->_items['item1']->expects($this->any())->method("hasChildren")->will($this->returnValue(true)); @@ -285,11 +307,11 @@ class MenuTest extends \PHPUnit_Framework_TestCase $items[] = $item->getId(); } - $items2 = []; + $itemsTwo = []; foreach ($this->_model as $item) { - $items2[] = $item->getId(); + $itemsTwo[] = $item->getId(); } - $this->assertEquals($items, $items2); + $this->assertEquals($items, $itemsTwo); } /** @@ -307,18 +329,69 @@ class MenuTest extends \PHPUnit_Framework_TestCase 'item3' => ['item1', 'item2', 'item3'], ]; $actual = []; - foreach ($this->_model as $valLoop1) { - $keyLevel1 = $valLoop1->getId(); - foreach ($this->_model as $valLoop2) { - $actual[$keyLevel1][] = $valLoop2->getId(); + foreach ($this->_model as $valLoopOne) { + $keyLevelOne = $valLoopOne->getId(); + foreach ($this->_model as $valLoopTwo) { + $actual[$keyLevelOne][] = $valLoopTwo->getId(); } } $this->assertEquals($expected, $actual); } + /** + * @covers \Magento\Backend\Model\Menu::toArray + * @covers \Magento\Backend\Model\Menu::serialize + */ public function testSerialize() { - $this->assertNotEmpty($this->_model->serialize()); - $this->_model->add($this->_items['item1']); + $serializerMock = $this->getMock(SerializerInterface::class); + $serializerMock->expects($this->once()) + ->method('serialize') + ->with([['arrayData']]) + ->willReturn('serializedString'); + $menu = $this->objectManagerHelper->getObject( + \Magento\Backend\Model\Menu::class, + [ + 'logger' => $this->_logger, + 'serializer' => $serializerMock, + ] + ); + $itemMock = $this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false); + $itemMock->expects($this->any())->method('getId')->will($this->returnValue('item1')); + $itemMock->expects($this->once()) + ->method('toArray') + ->willReturn(['arrayData']); + $menu->add($itemMock); + $this->assertEquals('serializedString', $menu->serialize()); + } + + /** + * @covers \Magento\Backend\Model\Menu::populateFromArray + * @covers \Magento\Backend\Model\Menu::unserialize + */ + public function testUnserialize() + { + $serializerMock = $this->getMock(SerializerInterface::class); + $serializerMock->expects($this->once()) + ->method('unserialize') + ->willReturn([['unserializedData']]); + $menuItemFactoryMock = $this->getMock(Factory::class, [], [], '', false); + $menuItemMock = $this->getMock(Item::class, [], [], '', false); + $menuItemFactoryMock->expects($this->once()) + ->method('create') + ->willReturn($menuItemMock); + $menuItemMock->expects($this->once()) + ->method('populateFromArray') + ->with(['unserializedData']) + ->willReturn($this); + $menu = $this->objectManagerHelper->getObject( + \Magento\Backend\Model\Menu::class, + [ + 'logger' => $this->_logger, + 'serializer' => $serializerMock, + 'menuItemFactory' => $menuItemFactoryMock, + ] + ); + $menu->unserialize('serializedString'); } } diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php index f6fad14d210..f9628110851 100644 --- a/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php +++ b/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php @@ -9,6 +9,7 @@ namespace Magento\Backend\Model; * Test class for \Magento\Backend\Model\Auth. * * @magentoAppArea adminhtml + * @magentoCache all disabled */ class MenuTest extends \PHPUnit_Framework_TestCase { @@ -32,7 +33,7 @@ class MenuTest extends \PHPUnit_Framework_TestCase public function testMenuItemManipulation() { /* @var $menu \Magento\Backend\Model\Menu */ - $menu = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( + $menu = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( \Magento\Backend\Model\Menu\Config::class )->getMenu(); /* @var $itemFactory \Magento\Backend\Model\Menu\Item\Factory */ @@ -79,4 +80,49 @@ class MenuTest extends \PHPUnit_Framework_TestCase // Move menu item $menu->move('Magento_Catalog::catalog_products', 'Magento_Backend::system2'); } + + public function testSerializeUnserialize() + { + /** @var Menu $menu */ + $menu = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( + \Magento\Backend\Model\MenuFactory::class + )->create(); + /* @var \Magento\Backend\Model\Menu\Item\Factory $itemFactory */ + $itemFactory = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( + \Magento\Backend\Model\Menu\Item\Factory::class + ); + + // Add new item in top level + $menu->add( + $itemFactory->create( + [ + 'id' => 'Magento_Backend::system3', + 'title' => 'Extended System', + 'module' => 'Magento_Backend', + 'resource' => 'Magento_Backend::system3', + ] + ) + ); + + //Add submenu + $menu->add( + $itemFactory->create( + [ + 'id' => 'Magento_Backend::system3_acl', + 'title' => 'Acl', + 'module' => 'Magento_Backend', + 'action' => 'admin/backend/acl/index', + 'resource' => 'Magento_Backend::system3_acl', + ] + ), + 'Magento_Backend::system3' + ); + $serializedString = $menu->serialize(); + /** @var Menu $menu2 */ + $menu2 = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( + \Magento\Backend\Model\MenuFactory::class + )->create(); + $menu2->unserialize($serializedString); + $this->assertEquals($menu, $menu2); + } } -- GitLab From 33ecec9d6b68980512684732510db06a2bd5eaba Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Thu, 22 Dec 2016 08:33:41 +0200 Subject: [PATCH 112/175] MAGETWO-62573: Update of use SerializerInterface --- .../Helper/Catalog/Product/Configuration.php | 2 +- .../Magento/Bundle/Model/Product/Price.php | 2 +- .../Magento/Bundle/Model/Product/Type.php | 21 ++++++++++++++++--- .../Bundle/Pricing/Price/ConfiguredPrice.php | 2 +- .../CustomOptions/CustomOptionProcessor.php | 2 +- .../Model/Product/Option/Type/Date.php | 2 +- .../Model/Product/Type/AbstractType.php | 2 +- .../Downloadable/Model/Product/Type.php | 2 +- .../Model/Product/Type/Grouped.php | 2 +- .../Quote/Model/Quote/Address/Total.php | 2 +- .../Quote/Model/Quote/Item/Compare.php | 2 +- .../Quote/Model/Quote/Item/Updater.php | 2 +- .../Magento/Quote/Model/Quote/Payment.php | 2 +- .../Magento/Sales/Model/AdminOrder/Create.php | 2 +- app/code/Magento/Sales/Model/Order/Item.php | 2 +- .../Sales/Setup/SerializedDataConverter.php | 4 ---- .../Setup/SerializedDataConverterTest.php | 4 +--- app/code/Magento/Wishlist/Model/Item.php | 2 +- 18 files changed, 34 insertions(+), 25 deletions(-) diff --git a/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php b/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php index 2de5db073ec..13e7a8a4f72 100644 --- a/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php +++ b/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php @@ -47,7 +47,7 @@ class Configuration extends AbstractHelper implements ConfigurationInterface * @param \Magento\Catalog\Helper\Product\Configuration $productConfiguration * @param \Magento\Framework\Pricing\Helper\Data $pricingHelper * @param \Magento\Framework\Escaper $escaper - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer */ public function __construct( \Magento\Framework\App\Helper\Context $context, diff --git a/app/code/Magento/Bundle/Model/Product/Price.php b/app/code/Magento/Bundle/Model/Product/Price.php index d78810264d2..30001fcc429 100644 --- a/app/code/Magento/Bundle/Model/Product/Price.php +++ b/app/code/Magento/Bundle/Model/Product/Price.php @@ -59,7 +59,7 @@ class Price extends \Magento\Catalog\Model\Product\Type\Price * @param \Magento\Catalog\Api\Data\ProductTierPriceInterfaceFactory $tierPriceFactory * @param \Magento\Framework\App\Config\ScopeConfigInterface $config * @param \Magento\Catalog\Helper\Data $catalogData - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php index 779e1446bc6..20527f580c0 100644 --- a/app/code/Magento/Bundle/Model/Product/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Type.php @@ -1028,9 +1028,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $productSelections = $this->getSelectionsCollection($productOptionIds, $product); $selectionIds = $product->getCustomOption('bundle_selection_ids'); $selectionIds = $this->serializer->unserialize($selectionIds->getValue()); - $buyRequest = $product->getCustomOption('info_buyRequest'); - $buyRequest = new \Magento\Framework\DataObject($this->serializer->unserialize($buyRequest->getValue())); - $bundleOption = $buyRequest->getBundleOption(); + $bundleOption = $this->getBundleOption($product); if (empty($bundleOption)) { throw new \Magento\Framework\Exception\LocalizedException($this->getSpecifyOptionMessage()); @@ -1059,6 +1057,23 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType return $this; } + /** + * Get Bundle option as array from 'info_buyRequest' data. + * + * @param \Magento\Catalog\Model\Product $product + * @return array + */ + private function getBundleOption(\Magento\Catalog\Model\Product $product) + { + $buyRequest = $product->getCustomOption('info_buyRequest'); + $data = $this->serializer->unserialize($buyRequest->getValue()); + $data = is_array($data) ? $data : []; + $buyRequest = \Magento\Framework\App\ObjectManager::getInstance() + ->create(\Magento\Framework\DataObject::class, ['data' => $data]); + + return $buyRequest->getBundleOption(); + } + /** * Retrieve products divided into groups required to purchase * At least one product in each group has to be purchased diff --git a/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php b/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php index 454faead3aa..cd5754e1ce1 100644 --- a/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php +++ b/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php @@ -45,7 +45,7 @@ class ConfiguredPrice extends CatalogPrice\FinalPrice implements ConfiguredPrice * @param BundleCalculatorInterface $calculator * @param \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency * @param ItemInterface $item - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer */ public function __construct( Product $saleableItem, diff --git a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php index 252c0bcb796..212da848d7d 100644 --- a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php +++ b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php @@ -40,7 +40,7 @@ class CustomOptionProcessor implements CartItemProcessorInterface * @param ProductOptionFactory $productOptionFactory * @param ProductOptionExtensionFactory $extensionFactory * @param CustomOptionFactory $customOptionFactory - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer */ public function __construct( \Magento\Framework\DataObject\Factory $objectFactory, diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php index 205cf420f5c..b11440daf9e 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php @@ -34,7 +34,7 @@ class Date extends \Magento\Catalog\Model\Product\Option\Type\DefaultType * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig * @param \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer */ public function __construct( \Magento\Checkout\Model\Session $checkoutSession, diff --git a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php index f0e8d37921c..07a200f8135 100644 --- a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php +++ b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php @@ -180,7 +180,7 @@ abstract class AbstractType * @param \Magento\Framework\Registry $coreRegistry * @param \Psr\Log\LoggerInterface $logger * @param ProductRepositoryInterface $productRepository - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( diff --git a/app/code/Magento/Downloadable/Model/Product/Type.php b/app/code/Magento/Downloadable/Model/Product/Type.php index 5c5807f66b2..2b15a5b7d7d 100644 --- a/app/code/Magento/Downloadable/Model/Product/Type.php +++ b/app/code/Magento/Downloadable/Model/Product/Type.php @@ -85,7 +85,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual * @param \Magento\Downloadable\Model\LinkFactory $linkFactory * @param TypeHandler\TypeHandlerInterface $typeHandler * @param JoinProcessorInterface $extensionAttributesJoinProcessor - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php index 8796976fa82..af277548a72 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php @@ -95,7 +95,7 @@ class Grouped extends \Magento\Catalog\Model\Product\Type\AbstractType * @param \Magento\Catalog\Model\Product\Attribute\Source\Status $catalogProductStatus * @param \Magento\Framework\App\State $appState * @param \Magento\Msrp\Helper\Data $msrpData - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total.php b/app/code/Magento/Quote/Model/Quote/Address/Total.php index f764c9df6a3..be319ef205d 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total.php @@ -26,7 +26,7 @@ class Total extends \Magento\Framework\DataObject /** * @param array $data [optional] - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer */ public function __construct( array $data = [], diff --git a/app/code/Magento/Quote/Model/Quote/Item/Compare.php b/app/code/Magento/Quote/Model/Quote/Item/Compare.php index ab4303b7e97..0de26b8a6f4 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Compare.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Compare.php @@ -20,7 +20,7 @@ class Compare private $serializer; /** - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer */ public function __construct(\Magento\Framework\Serialize\SerializerInterface $serializer = null) { diff --git a/app/code/Magento/Quote/Model/Quote/Item/Updater.php b/app/code/Magento/Quote/Model/Quote/Item/Updater.php index 4dc17705568..a159f085725 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Updater.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Updater.php @@ -43,7 +43,7 @@ class Updater * @param ProductFactory $productFactory * @param FormatInterface $localeFormat * @param ObjectFactory $objectFactory - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer */ public function __construct( ProductFactory $productFactory, diff --git a/app/code/Magento/Quote/Model/Quote/Payment.php b/app/code/Magento/Quote/Model/Quote/Payment.php index 7c8080b1809..b71b87464d3 100644 --- a/app/code/Magento/Quote/Model/Quote/Payment.php +++ b/app/code/Magento/Quote/Model/Quote/Payment.php @@ -84,7 +84,7 @@ class Payment extends \Magento\Payment\Model\Info implements PaymentInterface * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data * @param array $additionalChecks - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( diff --git a/app/code/Magento/Sales/Model/AdminOrder/Create.php b/app/code/Magento/Sales/Model/AdminOrder/Create.php index 700f196e9c2..027be39e7c6 100644 --- a/app/code/Magento/Sales/Model/AdminOrder/Create.php +++ b/app/code/Magento/Sales/Model/AdminOrder/Create.php @@ -260,7 +260,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ * @param \Magento\Sales\Api\OrderManagementInterface $orderManagement * @param \Magento\Quote\Model\QuoteFactory $quoteFactory * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( diff --git a/app/code/Magento/Sales/Model/Order/Item.php b/app/code/Magento/Sales/Model/Order/Item.php index 100b8b69a44..4d2412b97cf 100644 --- a/app/code/Magento/Sales/Model/Order/Item.php +++ b/app/code/Magento/Sales/Model/Order/Item.php @@ -115,7 +115,7 @@ class Item extends AbstractModel implements OrderItemInterface * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( diff --git a/app/code/Magento/Sales/Setup/SerializedDataConverter.php b/app/code/Magento/Sales/Setup/SerializedDataConverter.php index e12007e8445..507713b910f 100644 --- a/app/code/Magento/Sales/Setup/SerializedDataConverter.php +++ b/app/code/Magento/Sales/Setup/SerializedDataConverter.php @@ -10,10 +10,6 @@ use Magento\Framework\Serialize\Serializer\Serialize; use Magento\Framework\Serialize\Serializer\Json; /** - * Class SerializedToJson. - * - * @package Magento\Sales\Model\Order\Item\Converter\ProductOptions - * * Serializer used to update nested serialized data in product_options field. */ class SerializedDataConverter implements \Magento\Framework\DB\DataConverter\DataConverterInterface diff --git a/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverterTest.php b/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverterTest.php index 137a8b5b19b..e5f7e162a77 100644 --- a/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverterTest.php +++ b/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverterTest.php @@ -9,9 +9,7 @@ use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\Serialize\Serializer\Serialize; /** - * Unit test for order address repository class. - * - * @SuppressWarnings(PHPMD.CouplingBetweenObjects) + * Unit test for serialized data converter test. */ class SerializedDataConverterTest extends \PHPUnit_Framework_TestCase { diff --git a/app/code/Magento/Wishlist/Model/Item.php b/app/code/Magento/Wishlist/Model/Item.php index 2d6bd18fcc0..954ce98b4ab 100644 --- a/app/code/Magento/Wishlist/Model/Item.php +++ b/app/code/Magento/Wishlist/Model/Item.php @@ -140,7 +140,7 @@ class Item extends AbstractModel implements ItemInterface * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface $serializer [optional] + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( -- GitLab From dae67c90f035d33df23085a41aad70b8a176eae5 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Thu, 22 Dec 2016 14:16:30 +0200 Subject: [PATCH 113/175] MAGETWO-62514: Remove uses of serialize/unserialize in \Magento\Framework\App\PageCache\Kernel --- .../Magento/Framework/App/Http/Context.php | 23 +++ .../Framework/App/PageCache/Kernel.php | 84 +++++++++- .../App/Test/Unit/Http/ContextTest.php | 15 ++ .../App/Test/Unit/PageCache/KernelTest.php | 143 ++++++++++++++---- 4 files changed, 234 insertions(+), 31 deletions(-) diff --git a/lib/internal/Magento/Framework/App/Http/Context.php b/lib/internal/Magento/Framework/App/Http/Context.php index 4146dac725f..4d1f5e01d10 100644 --- a/lib/internal/Magento/Framework/App/Http/Context.php +++ b/lib/internal/Magento/Framework/App/Http/Context.php @@ -27,6 +27,16 @@ class Context */ protected $default = []; + /** + * @param array $data + * @param array $default + */ + public function __construct(array $data = [], array $default = []) + { + $this->data = $data; + $this->default = $default; + } + /** * Data setter * @@ -99,4 +109,17 @@ class Context } return null; } + + /** + * Get data and default data in "key-value" format + * + * @return array + */ + public function toArray() + { + return [ + 'data' => $this->data, + 'default' => $this->default + ]; + } } diff --git a/lib/internal/Magento/Framework/App/PageCache/Kernel.php b/lib/internal/Magento/Framework/App/PageCache/Kernel.php index 8a83592bc32..f4abd70b104 100644 --- a/lib/internal/Magento/Framework/App/PageCache/Kernel.php +++ b/lib/internal/Magento/Framework/App/PageCache/Kernel.php @@ -6,6 +6,7 @@ namespace Magento\Framework\App\PageCache; use Magento\Framework\App\ObjectManager; +use Magento\Framework\Serialize\SerializerInterface; /** * Builtin cache processor @@ -34,19 +35,32 @@ class Kernel */ private $fullPageCache; + /** + * @var SerializerInterface + */ + private $serializer; + + /** + * @var ObjectManager + */ + private $objectManager; + /** * @param Cache $cache * @param Identifier $identifier * @param \Magento\Framework\App\Request\Http $request + * @param SerializerInterface|null $serializer */ public function __construct( \Magento\Framework\App\PageCache\Cache $cache, \Magento\Framework\App\PageCache\Identifier $identifier, - \Magento\Framework\App\Request\Http $request + \Magento\Framework\App\Request\Http $request, + SerializerInterface $serializer = null ) { $this->cache = $cache; $this->identifier = $identifier; $this->request = $request; + $this->serializer = $serializer ?: $this->getObjectManager()->get(SerializerInterface::class); } /** @@ -57,7 +71,31 @@ class Kernel public function load() { if ($this->request->isGet() || $this->request->isHead()) { - return unserialize($this->getCache()->load($this->identifier->getValue())); + $responseData = $this->serializer->unserialize($this->getCache()->load($this->identifier->getValue())); + if (!$responseData) { + return false; + } + + $context = $this->getObjectManager()->create( + \Magento\Framework\App\Http\Context::class, + [ + 'data' => $responseData['context']['data'], + 'default' => $responseData['context']['default'] + ] + ); + + $response = $this->getObjectManager()->create( + \Magento\Framework\App\Response\Http::class, + [ + 'context' => $context + ] + ); + $response->setStatusCode($responseData['status_code']); + $response->setContent($responseData['content']); + foreach ($responseData['headers'] as $headerKey => $headerValue) { + $response->setHeader($headerKey, $headerValue, true); + } + return $response; } return false; } @@ -84,11 +122,49 @@ class Kernel if (!headers_sent()) { header_remove('Set-Cookie'); } - $this->getCache()->save(serialize($response), $this->identifier->getValue(), $tags, $maxAge); + + $this->getCache()->save( + $this->serializer->serialize($this->cacheDataPreparation($response)), + $this->identifier->getValue(), + $tags, + $maxAge + ); } } } + /* + * Preparation data for storage in the cache. + * + * @param \Magento\Framework\App\Response\Http $response + * @return array + */ + private function cacheDataPreparation(\Magento\Framework\App\Response\Http $response) + { + $context = $this->getObjectManager()->get(\Magento\Framework\App\Http\Context::class); + + return [ + 'content' => $response->getContent(), + 'status_code' => $response->getStatusCode(), + 'headers' => $response->getHeaders()->toArray(), + 'context' => $context->toArray() + ]; + + } + + /** + * Get ObjectManager Instance + * + * @return ObjectManager + */ + private function getObjectManager() + { + if ($this->objectManager === null) { + $this->objectManager = ObjectManager::getInstance(); + } + return $this->objectManager; + } + /** * TODO: Workaround to support backwards compatibility, will rework to use Dependency Injection in MAGETWO-49547 * @@ -97,7 +173,7 @@ class Kernel private function getCache() { if (!$this->fullPageCache) { - $this->fullPageCache = ObjectManager::getInstance()->get(\Magento\PageCache\Model\Cache\Type::class); + $this->fullPageCache = $this->getObjectManager()->get(\Magento\PageCache\Model\Cache\Type::class); } return $this->fullPageCache; } diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Http/ContextTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Http/ContextTest.php index 05f589e0dc6..2c6b3dda237 100644 --- a/lib/internal/Magento/Framework/App/Test/Unit/Http/ContextTest.php +++ b/lib/internal/Magento/Framework/App/Test/Unit/Http/ContextTest.php @@ -64,4 +64,19 @@ class ContextTest extends \PHPUnit_Framework_TestCase ksort($data); $this->assertEquals(sha1(serialize($data)), $this->object->getVaryString()); } + + public function testToArray() + { + $newObject = new \Magento\Framework\App\Http\Context(['key' => 'value']); + + $newObject->setValue('key1', 'value1', 'default1'); + $newObject->setValue('key2', 'value2', 'default2'); + $this->assertEquals( + [ + 'data' => ['key' => 'value', 'key1' => 'value1', 'key2' => 'value2'], + 'default' => ['key1' => 'default1', 'key2' => 'default2'] + ], + $newObject->toArray() + ); + } } diff --git a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php index 81b828b3f93..e7d8d0f66d5 100644 --- a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php +++ b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php @@ -27,39 +27,125 @@ class KernelTest extends \PHPUnit_Framework_TestCase /** @var \PHPUnit_Framework_MockObject_MockObject|\Magento\PageCache\Model\Cache\Type */ private $fullPageCacheMock; + /** @var \Magento\Framework\App\Response\Http|\PHPUnit_Framework_MockObject_MockObject */ + private $httpResponseMock; + + /** @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject */ + private $serializer; + + /** @var \Magento\Framework\App\ObjectManager|\PHPUnit_Framework_MockObject_MockObject */ + private $objectManager; + + /** @var \Magento\Framework\App\Http\Context|\PHPUnit_Framework_MockObject_MockObject */ + private $contextMock; + /** * Setup */ protected function setUp() { + $headersMock = $this->getMock(\Zend\Http\Headers::class, [], [], '', false); $this->cacheMock = $this->getMock(\Magento\Framework\App\PageCache\Cache::class, [], [], '', false); $this->fullPageCacheMock = $this->getMock(\Magento\PageCache\Model\Cache\Type::class, [], [], '', false); - $this->identifierMock = - $this->getMock(\Magento\Framework\App\PageCache\Identifier::class, [], [], '', false); + $this->contextMock = $this->getMock(\Magento\Framework\App\Http\Context::class, [], [], '', false); + $this->httpResponseMock = $this->getMock(\Magento\Framework\App\Response\Http::class, [], [], '', false); + $this->objectManager = $this->getMock(\Magento\Framework\App\ObjectManager::class, [], [], '', false); + $this->identifierMock = $this->getMock(\Magento\Framework\App\PageCache\Identifier::class, [], [], '', false); $this->requestMock = $this->getMock(\Magento\Framework\App\Request\Http::class, [], [], '', false); - $this->kernel = new Kernel($this->cacheMock, $this->identifierMock, $this->requestMock); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class, [], [], '', false); + $this->responseMock = $this->getMock(\Magento\Framework\App\Response\Http::class, [], [], '', false); + $this->responseMock->expects($this->any())->method('getHeaders')->willReturn($headersMock); + + $this->kernel = new Kernel($this->cacheMock, $this->identifierMock, $this->requestMock, $this->serializer); $reflection = new \ReflectionClass(\Magento\Framework\App\PageCache\Kernel::class); $reflectionProperty = $reflection->getProperty('fullPageCache'); $reflectionProperty->setAccessible(true); $reflectionProperty->setValue($this->kernel, $this->fullPageCacheMock); + $reflectionProperty = $reflection->getProperty('objectManager'); + $reflectionProperty->setAccessible(true); + $reflectionProperty->setValue($this->kernel, $this->objectManager); + } + + /** + * @dataProvider dataProviderForResultWithCachedData + * @param string $id + * @param mixed $cache + * @param bool $isGet + * @param bool $isHead + */ + public function testLoadWithCachedData($id, $cache, $isGet, $isHead) + { + $this->serializer->expects($this->once()) + ->method('unserialize') + ->willReturnCallback( + function ($value) { + return json_decode($value, true); + } + ); - $this->responseMock = $this->getMockBuilder( - \Magento\Framework\App\Response\Http::class - )->setMethods( - ['getHeader', 'getHttpResponseCode', 'setNoCacheHeaders', 'clearHeader', '__wakeup'] - )->disableOriginalConstructor()->getMock(); + $this->objectManager->method('create') + ->will($this->returnValueMap([ + [ + \Magento\Framework\App\Http\Context::class, + [ + 'data' => ['context_data'], + 'default' => ['context_default_data'] + ], + $this->contextMock + ], + [ + \Magento\Framework\App\Response\Http::class, + ['context' => $this->contextMock], + $this->httpResponseMock] + ])); + $this->requestMock->expects($this->once())->method('isGet')->will($this->returnValue($isGet)); + $this->requestMock->expects($this->any())->method('isHead')->will($this->returnValue($isHead)); + $this->fullPageCacheMock->expects( + $this->any() + )->method( + 'load' + )->with( + $this->equalTo($id) + )->will( + $this->returnValue(json_encode($cache)) + ); + $this->httpResponseMock->expects($this->once())->method('setStatusCode')->with($cache['status_code']); + $this->httpResponseMock->expects($this->once())->method('setContent')->with($cache['content']); + $this->httpResponseMock->expects($this->once())->method('setHeader')->with(0, 'header', true); + $this->identifierMock->expects($this->any())->method('getValue')->will($this->returnValue($id)); + $this->assertEquals($this->httpResponseMock, $this->kernel->load()); } /** - * @dataProvider loadProvider - * @param mixed $expected + * @return array + */ + public function dataProviderForResultWithCachedData() + { + $data = [ + 'context' => [ + 'data' => ['context_data'], + 'default' => ['context_default_data'] + ], + 'status_code' => 'status_code', + 'content' => 'content', + 'headers' => ['header'] + ]; + + return [ + ['existing key', $data, true, false], + ['existing key', $data, false, true], + ]; + } + + /** + * @dataProvider dataProviderForResultWithoutCachedData * @param string $id * @param mixed $cache * @param bool $isGet * @param bool $isHead */ - public function testLoad($expected, $id, $cache, $isGet, $isHead) + public function testLoadWithoutCachedData($id, $cache, $isGet, $isHead) { $this->requestMock->expects($this->once())->method('isGet')->will($this->returnValue($isGet)); $this->requestMock->expects($this->any())->method('isHead')->will($this->returnValue($isHead)); @@ -70,31 +156,21 @@ class KernelTest extends \PHPUnit_Framework_TestCase )->with( $this->equalTo($id) )->will( - $this->returnValue(serialize($cache)) + $this->returnValue(json_encode($cache)) ); $this->identifierMock->expects($this->any())->method('getValue')->will($this->returnValue($id)); - $this->assertEquals($expected, $this->kernel->load()); + $this->assertEquals(false, $this->kernel->load()); } /** * @return array */ - public function loadProvider() + public function dataProviderForResultWithoutCachedData() { - $data = [1, 2, 3]; return [ - [$data, 'existing key', $data, true, false], - [$data, 'existing key', $data, false, true], - [ - new \Magento\Framework\DataObject($data), - 'existing key', - new \Magento\Framework\DataObject($data), - true, - false - ], - [false, 'existing key', $data, false, false], - [false, 'non existing key', false, true, false], - [false, 'non existing key', false, false, false] + ['existing key', [], false, false], + ['non existing key', false, true, false], + ['non existing key', false, false, false] ]; } @@ -104,6 +180,19 @@ class KernelTest extends \PHPUnit_Framework_TestCase */ public function testProcessSaveCache($httpCode, $at) { + $this->serializer->expects($this->once()) + ->method('serialize') + ->willReturnCallback( + function ($value) { + return json_encode($value); + } + ); + $cacheTypeMock = $this->getMock(\Magento\PageCache\Model\Cache\Type::class, [], [], '', false); + $this->objectManager->method('get') + ->will($this->returnValueMap([ + [\Magento\Framework\App\Http\Context::class, $this->contextMock], + [\Magento\PageCache\Model\Cache\Type::class, $cacheTypeMock], + ])); $cacheControlHeader = \Zend\Http\Header\CacheControl::fromString( 'Cache-Control: public, max-age=100, s-maxage=100' ); -- GitLab From 9dfae18ade9e9d2002c31a83c32f2c5590d97de8 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Thu, 22 Dec 2016 15:33:34 +0200 Subject: [PATCH 114/175] MAGETWO-62514: Remove uses of serialize/unserialize in \Magento\Framework\App\PageCache\Kernel --- lib/internal/Magento/Framework/App/PageCache/Kernel.php | 2 +- .../Magento/Framework/App/Test/Unit/PageCache/KernelTest.php | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/internal/Magento/Framework/App/PageCache/Kernel.php b/lib/internal/Magento/Framework/App/PageCache/Kernel.php index f4abd70b104..5fe86490210 100644 --- a/lib/internal/Magento/Framework/App/PageCache/Kernel.php +++ b/lib/internal/Magento/Framework/App/PageCache/Kernel.php @@ -133,7 +133,7 @@ class Kernel } } - /* + /** * Preparation data for storage in the cache. * * @param \Magento\Framework\App\Response\Http $response diff --git a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php index e7d8d0f66d5..b791e746627 100644 --- a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php +++ b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php @@ -7,6 +7,9 @@ namespace Magento\Framework\App\Test\Unit\PageCache; use \Magento\Framework\App\PageCache\Kernel; +/** + * @SuppressWarnings(PHPMD.CouplingBetweenObjects) + */ class KernelTest extends \PHPUnit_Framework_TestCase { /** @var Kernel */ -- GitLab From 085c5075f5fe9d328f2a16e535d37662ad485f00 Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Thu, 22 Dec 2016 18:42:54 +0200 Subject: [PATCH 115/175] MAGETWO-62486: Refactor Layout to store data from object only and restore object --- .../Magento/Framework/View/Layout.php | 24 +++++++++-- .../View/Layout/ScheduledStructure.php | 41 +++++++++++++++++++ .../Framework/View/Page/Config/Structure.php | 39 ++++++++++++++++++ 3 files changed, 101 insertions(+), 3 deletions(-) diff --git a/lib/internal/Magento/Framework/View/Layout.php b/lib/internal/Magento/Framework/View/Layout.php index 3334967c8da..ed1c2001e18 100755 --- a/lib/internal/Magento/Framework/View/Layout.php +++ b/lib/internal/Magento/Framework/View/Layout.php @@ -8,11 +8,13 @@ namespace Magento\Framework\View; use Magento\Framework\Cache\FrontendInterface; use Magento\Framework\Event\ManagerInterface; use Magento\Framework\Message\ManagerInterface as MessageManagerInterface; +use Magento\Framework\Serialize\SerializerInterface; use Magento\Framework\View\Layout\Element; use Magento\Framework\View\Layout\ScheduledStructure; use Magento\Framework\App\State as AppState; use Psr\Log\LoggerInterface as Logger; use Magento\Framework\Exception\LocalizedException; +use Magento\Framework\App\ObjectManager; /** * Layout model @@ -165,6 +167,11 @@ class Layout extends \Magento\Framework\Simplexml\Config implements \Magento\Fra */ protected $logger; + /** + * @var SerializerInterface + */ + private $serializer; + /** * @param Layout\ProcessorFactory $processorFactory * @param ManagerInterface $eventManager @@ -179,6 +186,7 @@ class Layout extends \Magento\Framework\Simplexml\Config implements \Magento\Fra * @param \Magento\Framework\App\State $appState * @param \Psr\Log\LoggerInterface $logger * @param bool $cacheable + * @param SerializerInterface|null $serializer */ public function __construct( Layout\ProcessorFactory $processorFactory, @@ -193,10 +201,12 @@ class Layout extends \Magento\Framework\Simplexml\Config implements \Magento\Fra Layout\Generator\ContextFactory $generatorContextFactory, AppState $appState, Logger $logger, - $cacheable = true + $cacheable = true, + SerializerInterface $serializer = null ) { $this->_elementClass = \Magento\Framework\View\Layout\Element::class; $this->_renderingOutput = new \Magento\Framework\DataObject(); + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); $this->_processorFactory = $processorFactory; $this->_eventManager = $eventManager; @@ -308,12 +318,20 @@ class Layout extends \Magento\Framework\Simplexml\Config implements \Magento\Fra $cacheId = 'structure_' . $this->getUpdate()->getCacheId(); $result = $this->cache->load($cacheId); if ($result) { - $this->readerContext = unserialize($result); + $this->readerContext = $this->getReaderContext(); + $data = $this->serializer->unserialize($result); + $this->readerContext->getPageConfigStructure()->populateWithArray($data['pageConfigStructure']); + $this->readerContext->getScheduledStructure()->populateWithArray($data['scheduledStructure']); } else { \Magento\Framework\Profiler::start('build_structure'); $this->readerPool->interpret($this->getReaderContext(), $this->getNode()); \Magento\Framework\Profiler::stop('build_structure'); - $this->cache->save(serialize($this->getReaderContext()), $cacheId, $this->getUpdate()->getHandles()); + + $data = [ + 'pageConfigStructure' => $this->readerContext->getPageConfigStructure()->__toArray(), + 'scheduledStructure' => $this->readerContext->getScheduledStructure()->__toArray(), + ]; + $this->cache->save($this->serializer->serialize($data), $cacheId, $this->getUpdate()->getHandles()); } $generatorContext = $this->generatorContextFactory->create( diff --git a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php index cf1981335d6..bfcd40dce83 100644 --- a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php +++ b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php @@ -531,4 +531,45 @@ class ScheduledStructure $this->scheduledElements = []; $this->scheduledStructure = []; } + + /** + * Reformat layout scheduled structure to array. + * It can be possible for serialization and save to cache storage for example. + * + * @return array + */ + public function __toArray() + { + return [ + 'scheduledStructure' => $this->scheduledStructure, + 'scheduledData' => $this->scheduledData, + 'scheduledElements' => $this->scheduledElements, + 'scheduledMoves' => $this->scheduledMoves, + 'scheduledRemoves' => $this->scheduledRemoves, + 'scheduledIfconfig' => $this->scheduledIfconfig, + 'scheduledPaths' => $this->scheduledPaths, + 'elementsToSort' => $this->elementsToSort, + 'brokenParent' => $this->brokenParent, + ]; + } + + /** + * Update layout scheduled structure data. + * It can be used for case of set data from cache storage after initialization this class. + * + * @param array $data + * @return void + */ + public function populateWithArray(array $data) + { + $this->scheduledStructure = isset($data['scheduledStructure']) ? $data['scheduledStructure'] : []; + $this->scheduledData = isset($data['scheduledData']) ? $data['scheduledData'] : []; + $this->scheduledElements = isset($data['scheduledElements']) ? $data['scheduledElements'] : []; + $this->scheduledMoves = isset($data['scheduledMoves']) ? $data['scheduledMoves'] : []; + $this->scheduledRemoves = isset($data['scheduledRemoves']) ? $data['scheduledRemoves'] : []; + $this->scheduledIfconfig = isset($data['scheduledIfconfig']) ? $data['scheduledIfconfig'] : []; + $this->scheduledPaths = isset($data['scheduledPaths']) ? $data['scheduledPaths'] : []; + $this->elementsToSort = isset($data['elementsToSort']) ? $data['elementsToSort'] : []; + $this->brokenParent = isset($data['brokenParent']) ? $data['brokenParent'] : []; + } } diff --git a/lib/internal/Magento/Framework/View/Page/Config/Structure.php b/lib/internal/Magento/Framework/View/Page/Config/Structure.php index 4ab89319f6d..c30adf01d8e 100644 --- a/lib/internal/Magento/Framework/View/Page/Config/Structure.php +++ b/lib/internal/Magento/Framework/View/Page/Config/Structure.php @@ -194,4 +194,43 @@ class Structure { return $this->assets; } + + /** + * Reformat page config structure to array. + * It can be possible for serialization and save to cache storage for example. + * + * @return array + */ + public function __toArray() + { + return [ + 'assets' => $this->assets, + 'removeAssets' => $this->removeAssets, + 'title' => $this->title, + 'metadata' => $this->metadata, + 'elementAttributes' => $this->elementAttributes, + 'removeElementAttributes' => $this->removeElementAttributes, + 'bodyClasses' => $this->bodyClasses, + 'isBodyClassesDeleted' => $this->isBodyClassesDeleted, + ]; + } + + /** + * Update page config structure data. + * It can be used for case of set data from cache storage after initialization this class. + * + * @param array $data + * @return void + */ + public function populateWithArray(array $data) + { + $this->assets = isset($data['assets']) ? $data['assets'] : []; + $this->removeAssets = isset($data['removeAssets']) ? $data['removeAssets'] : []; + $this->title = isset($data['title']) ? $data['title'] : ''; + $this->metadata = isset($data['metadata']) ? $data['metadata'] : []; + $this->elementAttributes = isset($data['elementAttributes']) ? $data['elementAttributes'] : []; + $this->removeElementAttributes = isset($data['removeElementAttributes']) ? $data['removeElementAttributes'] : []; + $this->bodyClasses = isset($data['bodyClasses']) ? $data['bodyClasses'] : []; + $this->isBodyClassesDeleted = isset($data['isBodyClassesDeleted']) ? $data['isBodyClassesDeleted'] : false; + } } -- GitLab From a6aaab7538da1837fa609436e823813b72d1e051 Mon Sep 17 00:00:00 2001 From: Roman Ganin <rganin@magento.com> Date: Thu, 22 Dec 2016 18:44:41 +0200 Subject: [PATCH 116/175] MAGETWO-62573: Update of use SerializerInterface --- .../Magento/Bundle/Model/Product/Type.php | 21 +++---------------- 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php index 20527f580c0..0ac7c502900 100644 --- a/app/code/Magento/Bundle/Model/Product/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Type.php @@ -1028,7 +1028,9 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType $productSelections = $this->getSelectionsCollection($productOptionIds, $product); $selectionIds = $product->getCustomOption('bundle_selection_ids'); $selectionIds = $this->serializer->unserialize($selectionIds->getValue()); - $bundleOption = $this->getBundleOption($product); + $buyRequest = $product->getCustomOption('info_buyRequest'); + $buyRequest = new \Magento\Framework\DataObject($this->serializer->unserialize($buyRequest->getValue())); + $bundleOption = $buyRequest->getBundleOption(); if (empty($bundleOption)) { throw new \Magento\Framework\Exception\LocalizedException($this->getSpecifyOptionMessage()); @@ -1057,23 +1059,6 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType return $this; } - /** - * Get Bundle option as array from 'info_buyRequest' data. - * - * @param \Magento\Catalog\Model\Product $product - * @return array - */ - private function getBundleOption(\Magento\Catalog\Model\Product $product) - { - $buyRequest = $product->getCustomOption('info_buyRequest'); - $data = $this->serializer->unserialize($buyRequest->getValue()); - $data = is_array($data) ? $data : []; - $buyRequest = \Magento\Framework\App\ObjectManager::getInstance() - ->create(\Magento\Framework\DataObject::class, ['data' => $data]); - - return $buyRequest->getBundleOption(); - } - /** * Retrieve products divided into groups required to purchase * At least one product in each group has to be purchased -- GitLab From d79dfea21116f071a702ab63cddc9aaa07e7b502 Mon Sep 17 00:00:00 2001 From: Joan He <johe@magento.com> Date: Thu, 22 Dec 2016 11:16:26 -0600 Subject: [PATCH 117/175] MAGETWO-62253: Refactor code to remove unserialize - fixed unit test failures --- .../Test/Unit/Model/Menu/BuilderTest.php | 61 ++++----- .../Test/Unit/Model/Menu/ConfigTest.php | 117 ++++++------------ .../Unit/Model/Menu/Filter/IteratorTest.php | 108 ++++++++-------- .../Backend/Test/Unit/Model/UrlTest.php | 6 +- 4 files changed, 126 insertions(+), 166 deletions(-) diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php index 7bda9b38a2b..ec015029675 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php @@ -5,33 +5,36 @@ */ namespace Magento\Backend\Test\Unit\Model\Menu; +use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; + class BuilderTest extends \PHPUnit_Framework_TestCase { /** * @var \Magento\Backend\Model\Menu\Builder */ - protected $_model; + private $model; /** - * @var \PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Backend\Model\Menu|\PHPUnit_Framework_MockObject_MockObject */ - protected $_menuMock; + private $menuMock; /** - * @var \PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Backend\Model\Menu\Item\Factory|\PHPUnit_Framework_MockObject_MockObject */ - protected $_factoryMock; + private $factoryMock; protected function setUp() { - $this->_factoryMock = $this->getMock(\Magento\Backend\Model\Menu\Item\Factory::class, [], [], '', false); - $this->_menuMock = $this->getMock( - \Magento\Backend\Model\Menu::class, - [], - [$this->getMock(\Psr\Log\LoggerInterface::class)] + $this->factoryMock = $this->getMock(\Magento\Backend\Model\Menu\Item\Factory::class, [], [], '', false); + $this->menuMock = $this->getMock(\Magento\Backend\Model\Menu::class, [], [], '', false); + + $this->model = (new ObjectManager($this))->getObject( + \Magento\Backend\Model\Menu\Builder::class, + [ + 'menuItemFactory' => $this->factoryMock + ] ); - - $this->_model = new \Magento\Backend\Model\Menu\Builder($this->_factoryMock, $this->_menuMock); } public function testProcessCommand() @@ -41,20 +44,20 @@ class BuilderTest extends \PHPUnit_Framework_TestCase $command2 = $this->getMock(\Magento\Backend\Model\Menu\Builder\Command\Update::class, [], [], '', false); $command2->expects($this->any())->method('getId')->will($this->returnValue(1)); $command->expects($this->once())->method('chain')->with($this->equalTo($command2)); - $this->_model->processCommand($command); - $this->_model->processCommand($command2); + $this->model->processCommand($command); + $this->model->processCommand($command2); } public function testGetResultBuildsTreeStructure() { $item1 = $this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false); - $item1->expects($this->once())->method('getChildren')->will($this->returnValue($this->_menuMock)); - $this->_factoryMock->expects($this->any())->method('create')->will($this->returnValue($item1)); + $item1->expects($this->once())->method('getChildren')->will($this->returnValue($this->menuMock)); + $this->factoryMock->expects($this->any())->method('create')->will($this->returnValue($item1)); $item2 = $this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false); - $this->_factoryMock->expects($this->at(1))->method('create')->will($this->returnValue($item2)); + $this->factoryMock->expects($this->at(1))->method('create')->will($this->returnValue($item2)); - $this->_menuMock->expects( + $this->menuMock->expects( $this->at(0) )->method( 'add' @@ -64,7 +67,7 @@ class BuilderTest extends \PHPUnit_Framework_TestCase $this->equalTo(2) ); - $this->_menuMock->expects( + $this->menuMock->expects( $this->at(1) )->method( 'add' @@ -74,7 +77,7 @@ class BuilderTest extends \PHPUnit_Framework_TestCase $this->equalTo(4) ); - $this->_model->processCommand( + $this->model->processCommand( new \Magento\Backend\Model\Menu\Builder\Command\Add( [ 'id' => 'item1', @@ -85,7 +88,7 @@ class BuilderTest extends \PHPUnit_Framework_TestCase ] ) ); - $this->_model->processCommand( + $this->model->processCommand( new \Magento\Backend\Model\Menu\Builder\Command\Add( [ 'id' => 'item2', @@ -98,12 +101,12 @@ class BuilderTest extends \PHPUnit_Framework_TestCase ) ); - $this->_model->getResult($this->_menuMock); + $this->model->getResult($this->menuMock); } public function testGetResultSkipsRemovedItems() { - $this->_model->processCommand( + $this->model->processCommand( new \Magento\Backend\Model\Menu\Builder\Command\Add( [ 'id' => 1, @@ -113,11 +116,11 @@ class BuilderTest extends \PHPUnit_Framework_TestCase ] ) ); - $this->_model->processCommand(new \Magento\Backend\Model\Menu\Builder\Command\Remove(['id' => 1])); + $this->model->processCommand(new \Magento\Backend\Model\Menu\Builder\Command\Remove(['id' => 1])); - $this->_menuMock->expects($this->never())->method('addChild'); + $this->menuMock->expects($this->never())->method('addChild'); - $this->_model->getResult($this->_menuMock); + $this->model->getResult($this->menuMock); } /** @@ -126,9 +129,9 @@ class BuilderTest extends \PHPUnit_Framework_TestCase public function testGetResultSkipItemsWithInvalidParent() { $item1 = $this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false); - $this->_factoryMock->expects($this->any())->method('create')->will($this->returnValue($item1)); + $this->factoryMock->expects($this->any())->method('create')->will($this->returnValue($item1)); - $this->_model->processCommand( + $this->model->processCommand( new \Magento\Backend\Model\Menu\Builder\Command\Add( [ 'id' => 'item1', @@ -140,6 +143,6 @@ class BuilderTest extends \PHPUnit_Framework_TestCase ) ); - $this->_model->getResult($this->_menuMock); + $this->model->getResult($this->menuMock); } } diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php index dee7518be3a..54d9ec0414e 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php @@ -5,59 +5,43 @@ */ namespace Magento\Backend\Test\Unit\Model\Menu; -/** - * @SuppressWarnings(PHPMD.CouplingBetweenObjects) - */ +use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; + class ConfigTest extends \PHPUnit_Framework_TestCase { /** * @var \PHPUnit_Framework_MockObject_MockObject */ - protected $_cacheInstanceMock; - - /** - * @var \PHPUnit_Framework_MockObject_MockObject - */ - protected $_directorMock; - - /** - * @var \PHPUnit_Framework_MockObject_MockObject - */ - protected $_configReaderMock; - - /** - * @var \PHPUnit_Framework_MockObject_MockObject - */ - protected $_menuFactoryMock; + private $cacheInstanceMock; /** * @var \PHPUnit_Framework_MockObject_MockObject */ - protected $_eventManagerMock; + private $configReaderMock; /** * @var \PHPUnit_Framework_MockObject_MockObject */ - protected $_menuMock; + private $menuMock; /** * @var \PHPUnit_Framework_MockObject_MockObject */ - protected $_menuBuilderMock; + private $menuBuilderMock; /** * @var \PHPUnit_Framework_MockObject_MockObject */ - protected $_logger; + private $logger; /** * @var \Magento\Backend\Model\Menu\Config */ - protected $_model; + private $model; protected function setUp() { - $this->_cacheInstanceMock = $this->getMock( + $this->cacheInstanceMock = $this->getMock( \Magento\Framework\App\Cache\Type\Config::class, [], [], @@ -65,15 +49,7 @@ class ConfigTest extends \PHPUnit_Framework_TestCase false ); - $this->_directorMock = $this->getMock( - \Magento\Backend\Model\Menu\AbstractDirector::class, - [], - [], - '', - false - ); - - $this->_menuFactoryMock = $this->getMock( + $menuFactoryMock = $this->getMock( \Magento\Backend\Model\MenuFactory::class, ['create'], [], @@ -81,7 +57,7 @@ class ConfigTest extends \PHPUnit_Framework_TestCase false ); - $this->_configReaderMock = $this->getMock( + $this->configReaderMock = $this->getMock( \Magento\Backend\Model\Menu\Config\Reader::class, [], [], @@ -89,30 +65,15 @@ class ConfigTest extends \PHPUnit_Framework_TestCase false ); - $this->_eventManagerMock = $this->getMock( - \Magento\Framework\Event\ManagerInterface::class, - [], - [], - '', - false, - false - ); - - $this->_logger = $this->getMock(\Psr\Log\LoggerInterface::class); - - $this->_menuMock = $this->getMock( - \Magento\Backend\Model\Menu::class, - [], - [$this->getMock(\Psr\Log\LoggerInterface::class)] - ); + $this->logger = $this->getMock(\Psr\Log\LoggerInterface::class); - $this->_menuBuilderMock = $this->getMock(\Magento\Backend\Model\Menu\Builder::class, [], [], '', false); + $this->menuMock = $this->getMock(\Magento\Backend\Model\Menu::class, [], [], '', false); - $this->_menuFactoryMock->expects($this->any())->method('create')->will($this->returnValue($this->_menuMock)); + $this->menuBuilderMock = $this->getMock(\Magento\Backend\Model\Menu\Builder::class, [], [], '', false); - $scopeConfig = $this->getMock(\Magento\Framework\App\Config\ScopeConfigInterface::class); + $menuFactoryMock->expects($this->any())->method('create')->will($this->returnValue($this->menuMock));; - $this->_configReaderMock->expects($this->any())->method('read')->will($this->returnValue([])); + $this->configReaderMock->expects($this->any())->method('read')->will($this->returnValue([])); $appState = $this->getMock(\Magento\Framework\App\State::class, ['getAreaCode'], [], '', false); $appState->expects( @@ -123,22 +84,22 @@ class ConfigTest extends \PHPUnit_Framework_TestCase $this->returnValue(\Magento\Backend\App\Area\FrontNameResolver::AREA_CODE) ); - $this->_model = new \Magento\Backend\Model\Menu\Config( - $this->_menuBuilderMock, - $this->_directorMock, - $this->_menuFactoryMock, - $this->_configReaderMock, - $this->_cacheInstanceMock, - $this->_eventManagerMock, - $this->_logger, - $scopeConfig, - $appState + $this->model = (new ObjectManager($this))->getObject( + \Magento\Backend\Model\Menu\Config::class, + [ + 'menuBuilder' => $this->menuBuilderMock, + 'menuFactory' => $menuFactoryMock, + 'configReader' => $this->configReaderMock, + 'configCacheType' => $this->cacheInstanceMock, + 'logger' => $this->logger, + 'appState' => $appState, + ] ); } public function testGetMenuWithCachedObjectReturnsUnserializedObject() { - $this->_cacheInstanceMock->expects( + $this->cacheInstanceMock->expects( $this->once() )->method( 'load' @@ -148,14 +109,14 @@ class ConfigTest extends \PHPUnit_Framework_TestCase $this->returnValue('menu_cache') ); - $this->_menuMock->expects($this->once())->method('unserialize')->with('menu_cache'); + $this->menuMock->expects($this->once())->method('unserialize')->with('menu_cache'); - $this->assertEquals($this->_menuMock, $this->_model->getMenu()); + $this->assertEquals($this->menuMock, $this->model->getMenu()); } public function testGetMenuWithNotCachedObjectBuidlsObject() { - $this->_cacheInstanceMock->expects( + $this->cacheInstanceMock->expects( $this->at(0) )->method( 'load' @@ -165,17 +126,17 @@ class ConfigTest extends \PHPUnit_Framework_TestCase $this->returnValue(false) ); - $this->_configReaderMock->expects($this->once())->method('read')->will($this->returnValue([])); + $this->configReaderMock->expects($this->once())->method('read')->will($this->returnValue([])); - $this->_menuBuilderMock->expects( + $this->menuBuilderMock->expects( $this->exactly(1) )->method( 'getResult' )->will( - $this->returnValue($this->_menuMock) + $this->returnValue($this->menuMock) ); - $this->assertEquals($this->_menuMock, $this->_model->getMenu()); + $this->assertEquals($this->menuMock, $this->model->getMenu()); } /** @@ -186,7 +147,7 @@ class ConfigTest extends \PHPUnit_Framework_TestCase public function testGetMenuExceptionLogged($expectedException) { $this->setExpectedException($expectedException); - $this->_menuBuilderMock->expects( + $this->menuBuilderMock->expects( $this->exactly(1) )->method( 'getResult' @@ -194,7 +155,7 @@ class ConfigTest extends \PHPUnit_Framework_TestCase $this->throwException(new $expectedException()) ); - $this->_model->getMenu(); + $this->model->getMenu(); } public function getMenuExceptionLoggedDataProvider() @@ -208,9 +169,9 @@ class ConfigTest extends \PHPUnit_Framework_TestCase public function testGetMenuGenericExceptionIsNotLogged() { - $this->_logger->expects($this->never())->method('critical'); + $this->logger->expects($this->never())->method('critical'); - $this->_menuBuilderMock->expects( + $this->menuBuilderMock->expects( $this->exactly(1) )->method( 'getResult' @@ -218,7 +179,7 @@ class ConfigTest extends \PHPUnit_Framework_TestCase $this->throwException(new \Exception()) ); try { - $this->_model->getMenu(); + $this->model->getMenu(); } catch (\Exception $e) { return; } diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php index 19836ba7c94..fa5573a2613 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php @@ -5,49 +5,49 @@ */ namespace Magento\Backend\Test\Unit\Model\Menu\Filter; +use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; + class IteratorTest extends \PHPUnit_Framework_TestCase { /** * @var \Magento\Backend\Model\Menu */ - protected $_menuModel; + protected $menuModel; /** * @var \Magento\Backend\Model\Menu\Item[] */ - protected $_items = []; + protected $items = []; protected function setUp() { - $this->_items['item1'] = $this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false); - $this->_items['item1']->expects($this->any())->method('getId')->will($this->returnValue('item1')); - $this->_items['item1']->expects($this->any())->method('isDisabled')->will($this->returnValue(false)); - $this->_items['item1']->expects($this->any())->method('isAllowed')->will($this->returnValue(true)); - - $this->_items['item2'] = $this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false); - $this->_items['item2']->expects($this->any())->method('getId')->will($this->returnValue('item2')); - $this->_items['item2']->expects($this->any())->method('isDisabled')->will($this->returnValue(true)); - $this->_items['item2']->expects($this->any())->method('isAllowed')->will($this->returnValue(true)); - - $this->_items['item3'] = $this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false); - $this->_items['item3']->expects($this->any())->method('getId')->will($this->returnValue('item3')); - $this->_items['item3']->expects($this->any())->method('isDisabled')->will($this->returnValue(false)); - $this->_items['item3']->expects($this->any())->method('isAllowed')->will($this->returnValue(false)); - - $loggerMock = $this->getMock(\Psr\Log\LoggerInterface::class); - - $this->_menuModel = new \Magento\Backend\Model\Menu($loggerMock); + $this->items['item1'] = $this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false); + $this->items['item1']->expects($this->any())->method('getId')->will($this->returnValue('item1')); + $this->items['item1']->expects($this->any())->method('isDisabled')->will($this->returnValue(false)); + $this->items['item1']->expects($this->any())->method('isAllowed')->will($this->returnValue(true)); + + $this->items['item2'] = $this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false); + $this->items['item2']->expects($this->any())->method('getId')->will($this->returnValue('item2')); + $this->items['item2']->expects($this->any())->method('isDisabled')->will($this->returnValue(true)); + $this->items['item2']->expects($this->any())->method('isAllowed')->will($this->returnValue(true)); + + $this->items['item3'] = $this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false); + $this->items['item3']->expects($this->any())->method('getId')->will($this->returnValue('item3')); + $this->items['item3']->expects($this->any())->method('isDisabled')->will($this->returnValue(false)); + $this->items['item3']->expects($this->any())->method('isAllowed')->will($this->returnValue(false)); + + $this->menuModel = (new ObjectManager($this))->getObject(\Magento\Backend\Model\Menu::class); } public function testLoopWithAllItemsDisabledDoesntIterate() { - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); $filterIteratorModel = new \Magento\Backend\Model\Menu\Filter\Iterator( - $this->_menuModel->getIterator() + $this->menuModel->getIterator() ); $items = []; @@ -59,15 +59,15 @@ class IteratorTest extends \PHPUnit_Framework_TestCase public function testLoopIteratesOnlyValidItems() { - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->_items['item1']); + $this->menuModel->add($this->items['item1']); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); $filterIteratorModel = new \Magento\Backend\Model\Menu\Filter\Iterator( - $this->_menuModel->getIterator() + $this->menuModel->getIterator() ); $items = []; @@ -79,16 +79,16 @@ class IteratorTest extends \PHPUnit_Framework_TestCase public function testLoopIteratesDosntIterateDisabledItems() { - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->_items['item1']); - $this->_menuModel->add($this->_items['item2']); + $this->menuModel->add($this->items['item1']); + $this->menuModel->add($this->items['item2']); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); $filterIteratorModel = new \Magento\Backend\Model\Menu\Filter\Iterator( - $this->_menuModel->getIterator() + $this->menuModel->getIterator() ); $items = []; @@ -100,16 +100,16 @@ class IteratorTest extends \PHPUnit_Framework_TestCase public function testLoopIteratesDosntIterateNotAllowedItems() { - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->_items['item1']); - $this->_menuModel->add($this->_items['item3']); + $this->menuModel->add($this->items['item1']); + $this->menuModel->add($this->items['item3']); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); $filterIteratorModel = new \Magento\Backend\Model\Menu\Filter\Iterator( - $this->_menuModel->getIterator() + $this->menuModel->getIterator() ); $items = []; @@ -121,17 +121,17 @@ class IteratorTest extends \PHPUnit_Framework_TestCase public function testLoopIteratesMixedItems() { - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->_items['item1']); - $this->_menuModel->add($this->_items['item2']); - $this->_menuModel->add($this->_items['item3']); + $this->menuModel->add($this->items['item1']); + $this->menuModel->add($this->items['item2']); + $this->menuModel->add($this->items['item3']); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); - $this->_menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); + $this->menuModel->add($this->getMock(\Magento\Backend\Model\Menu\Item::class, [], [], '', false)); $filterIteratorModel = new \Magento\Backend\Model\Menu\Filter\Iterator( - $this->_menuModel->getIterator() + $this->menuModel->getIterator() ); $items = []; diff --git a/app/code/Magento/Backend/Test/Unit/Model/UrlTest.php b/app/code/Magento/Backend/Test/Unit/Model/UrlTest.php index 4eda145156c..fa83eb4210d 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/UrlTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/UrlTest.php @@ -75,11 +75,7 @@ class UrlTest extends \PHPUnit_Framework_TestCase protected function setUp() { $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $this->_menuMock = $this->getMock( - \Magento\Backend\Model\Menu::class, - [], - [$this->getMock(\Psr\Log\LoggerInterface::class)] - ); + $this->_menuMock = $this->getMock(\Magento\Backend\Model\Menu::class, [], [], '', false); $this->_menuConfigMock = $this->getMock(\Magento\Backend\Model\Menu\Config::class, [], [], '', false); $this->_menuConfigMock->expects($this->any())->method('getMenu')->will($this->returnValue($this->_menuMock)); -- GitLab From 5137f97b12614a8ed082b0636e7f3bd1a5260ec2 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Thu, 22 Dec 2016 11:25:48 -0600 Subject: [PATCH 118/175] MAGETWO-62610: Data upgrade fails on multi-database setup Refactoring Quote and Sales modules to use specific connection --- app/code/Magento/Quote/Setup/UpgradeData.php | 11 ++++++++--- app/code/Magento/Sales/Setup/UpgradeData.php | 13 +++++++++---- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index 44f2ad661d7..3126f5816ef 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -15,6 +15,11 @@ use Magento\Framework\DB\Query\Generator; class UpgradeData implements UpgradeDataInterface { + /** + * Name of the database connection + */ + const CONNECTION_NAME = 'checkout'; + /** * @var FieldDataConverterFactory */ @@ -69,7 +74,7 @@ class UpgradeData implements UpgradeDataInterface { $fieldDataConverter = $this->fieldDataConverterFactory->create(SerializedToJson::class); $fieldDataConverter->convert( - $setup->getConnection(), + $setup->getConnection(self::CONNECTION_NAME), $setup->getTable('quote_payment'), 'payment_id', 'additional_information' @@ -88,7 +93,7 @@ class UpgradeData implements UpgradeDataInterface ] ); $fieldDataConverter->convert( - $setup->getConnection(), + $setup->getConnection(self::CONNECTION_NAME), $setup->getTable('quote_item_option'), 'option_id', 'value', @@ -119,7 +124,7 @@ class UpgradeData implements UpgradeDataInterface ] ); $fieldDataConverter->convert( - $setup->getConnection(), + $setup->getConnection(self::CONNECTION_NAME), $setup->getTable('quote_item_option'), 'option_id', 'value', diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index a4a38f5cdcb..8738c37164b 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -7,6 +7,11 @@ namespace Magento\Sales\Setup; class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface { + /** + * Name of the database connection + */ + const CONNECTION_NAME = 'sales'; + /** * Sales setup factory * @@ -124,25 +129,25 @@ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface \Magento\Framework\DB\DataConverter\SerializedToJson::class ); $fieldDataConverter->convert( - $setup->getConnection(), + $setup->getConnection(self::CONNECTION_NAME), $setup->getTable('sales_order_item'), 'item_id', 'product_options' ); $fieldDataConverter->convert( - $setup->getConnection(), + $setup->getConnection(self::CONNECTION_NAME), $setup->getTable('sales_shipment'), 'entity_id', 'packages' ); $fieldDataConverter->convert( - $setup->getConnection(), + $setup->getConnection(self::CONNECTION_NAME), $setup->getTable('sales_order_payment'), 'entity_id', 'additional_information' ); $fieldDataConverter->convert( - $setup->getConnection(), + $setup->getConnection(self::CONNECTION_NAME), $setup->getTable('sales_payment_transaction'), 'transaction_id', 'additional_information' -- GitLab From 77a19559b56e174193c11600dd6c69b9f268fd38 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Thu, 22 Dec 2016 12:25:06 -0600 Subject: [PATCH 119/175] MAGETWO-62610: Data upgrade fails on multi-database setup Refactoring Quote and Sales modules to use specific connection --- app/code/Magento/Quote/Setup/UpgradeData.php | 6 +++--- app/code/Magento/Sales/Setup/UpgradeData.php | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index 3126f5816ef..9ec643e100e 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -75,7 +75,7 @@ class UpgradeData implements UpgradeDataInterface $fieldDataConverter = $this->fieldDataConverterFactory->create(SerializedToJson::class); $fieldDataConverter->convert( $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('quote_payment'), + $setup->getTable('quote_payment', self::CONNECTION_NAME), 'payment_id', 'additional_information' ); @@ -94,7 +94,7 @@ class UpgradeData implements UpgradeDataInterface ); $fieldDataConverter->convert( $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('quote_item_option'), + $setup->getTable('quote_item_option', self::CONNECTION_NAME), 'option_id', 'value', $queryModifier @@ -125,7 +125,7 @@ class UpgradeData implements UpgradeDataInterface ); $fieldDataConverter->convert( $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('quote_item_option'), + $setup->getTable('quote_item_option', self::CONNECTION_NAME), 'option_id', 'value', $queryModifier diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 8738c37164b..375c8236973 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -130,25 +130,25 @@ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface ); $fieldDataConverter->convert( $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('sales_order_item'), + $setup->getTable('sales_order_item', self::CONNECTION_NAME), 'item_id', 'product_options' ); $fieldDataConverter->convert( $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('sales_shipment'), + $setup->getTable('sales_shipment', self::CONNECTION_NAME), 'entity_id', 'packages' ); $fieldDataConverter->convert( $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('sales_order_payment'), + $setup->getTable('sales_order_payment', self::CONNECTION_NAME), 'entity_id', 'additional_information' ); $fieldDataConverter->convert( $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('sales_payment_transaction'), + $setup->getTable('sales_payment_transaction', self::CONNECTION_NAME), 'transaction_id', 'additional_information' ); -- GitLab From 0c5e6ee95a815ba89042b7f2233ce445117cbb99 Mon Sep 17 00:00:00 2001 From: Joan He <johe@magento.com> Date: Thu, 22 Dec 2016 14:01:06 -0600 Subject: [PATCH 120/175] MAGETWO-62253: Refactor code to remove unserialize - fixed unit test failures - add unit test - fixed static test failure --- app/code/Magento/Backend/Model/Menu/Item.php | 22 +- .../Test/Unit/Model/Menu/ConfigTest.php | 2 +- .../Backend/Test/Unit/Model/Menu/ItemTest.php | 258 ++++++++++++++++-- 3 files changed, 246 insertions(+), 36 deletions(-) diff --git a/app/code/Magento/Backend/Model/Menu/Item.php b/app/code/Magento/Backend/Model/Menu/Item.php index 690f0724d39..a0b82f1c4e1 100644 --- a/app/code/Magento/Backend/Model/Menu/Item.php +++ b/app/code/Magento/Backend/Model/Menu/Item.php @@ -131,6 +131,7 @@ class Item * Serialized submenu string * * @var string + * @deprecated */ protected $_serializedSubmenu; @@ -169,7 +170,6 @@ class Item $this->_validator = $validator; if (!empty($data)) { $this->_validator->validate($data); - $this->populateFromArray($data); } $this->_moduleManager = $moduleManager; $this->_acl = $authorization; @@ -177,6 +177,7 @@ class Item $this->_menuFactory = $menuFactory; $this->_urlModel = $urlModel; $this->_moduleList = $moduleList; + $this->populateFromArray($data); } /** @@ -447,7 +448,7 @@ class Item { return [ 'parent_id' => $this->_parentId, - 'module' => $this->_moduleName, + 'module_name' => $this->_moduleName, 'sort_index' => $this->_sortIndex, 'depends_on_config' => $this->_dependsOnConfig, 'id' => $this->_id, @@ -469,20 +470,17 @@ class Item */ public function populateFromArray(array $data) { - $this->_moduleName = isset($data['module']) ? $data['module'] : 'Magento_Backend'; - - $this->_id = $data['id']; - $this->_title = $data['title']; - $this->_action = $this->_getArgument($data, 'action'); - $this->_resource = $this->_getArgument($data, 'resource'); - $this->_dependsOnModule = $this->_getArgument($data, 'dependsOnModule'); - $this->_dependsOnConfig = $this->_getArgument($data, 'dependsOnConfig'); - $this->_tooltip = $this->_getArgument($data, 'toolTip', ''); $this->_parentId = $this->_getArgument($data, 'parent_id'); + $this->_moduleName = $this->_getArgument($data, 'module_name', 'Magento_Backend'); $this->_sortIndex = $this->_getArgument($data, 'sort_index'); $this->_dependsOnConfig = $this->_getArgument($data, 'depends_on_config'); - $this->_path = $this->_getArgument($data, 'path'); + $this->_id = $this->_getArgument($data, 'id'); + $this->_resource = $this->_getArgument($data, 'resource'); + $this->_path = $this->_getArgument($data, 'path', ''); + $this->_action = $this->_getArgument($data, 'action'); $this->_dependsOnModule = $this->_getArgument($data, 'depends_on_module'); + $this->_tooltip = $this->_getArgument($data, 'tooltip', ''); + $this->_title = $this->_getArgument($data, 'title'); if (isset($data['sub_menu'])) { $menu = $this->_menuFactory->create(); $menu->populateFromArray($data['sub_menu']); diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php index 54d9ec0414e..28ce4148777 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php @@ -71,7 +71,7 @@ class ConfigTest extends \PHPUnit_Framework_TestCase $this->menuBuilderMock = $this->getMock(\Magento\Backend\Model\Menu\Builder::class, [], [], '', false); - $menuFactoryMock->expects($this->any())->method('create')->will($this->returnValue($this->menuMock));; + $menuFactoryMock->expects($this->any())->method('create')->will($this->returnValue($this->menuMock)); $this->configReaderMock->expects($this->any())->method('read')->will($this->returnValue([])); diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php index fcef1bd374c..4cd491b9b34 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php @@ -40,16 +40,14 @@ class ItemTest extends \PHPUnit_Framework_TestCase */ protected $_moduleManager; - /** - * @var \PHPUnit_Framework_MockObject_MockObject - */ - protected $_validatorMock; - /** * @var \PHPUnit_Framework_MockObject_MockObject */ protected $_moduleListMock; + /** @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager */ + private $objectManager; + /** * @var array */ @@ -58,8 +56,8 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'title' => 'Item Title', 'action' => '/system/config', 'resource' => 'Magento_Config::config', - 'dependsOnModule' => 'Magento_Backend', - 'dependsOnConfig' => 'system/config/isEnabled', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', 'tooltip' => 'Item tooltip', ]; @@ -76,15 +74,15 @@ class ItemTest extends \PHPUnit_Framework_TestCase ); $this->_urlModelMock = $this->getMock(\Magento\Backend\Model\Url::class, [], [], '', false); $this->_moduleManager = $this->getMock(\Magento\Framework\Module\Manager::class, [], [], '', false); - $this->_validatorMock = $this->getMock(\Magento\Backend\Model\Menu\Item\Validator::class); - $this->_validatorMock->expects($this->any())->method('validate'); + $validatorMock = $this->getMock(\Magento\Backend\Model\Menu\Item\Validator::class); + $validatorMock->expects($this->any())->method('validate'); $this->_moduleListMock = $this->getMock(\Magento\Framework\Module\ModuleListInterface::class); - $helper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $this->_model = $helper->getObject( + $this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); + $this->_model = $this->objectManager->getObject( \Magento\Backend\Model\Menu\Item::class, [ - 'validator' => $this->_validatorMock, + 'validator' => $validatorMock, 'authorization' => $this->_aclMock, 'scopeConfig' => $this->_scopeConfigMock, 'menuFactory' => $this->_menuFactoryMock, @@ -99,8 +97,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase public function testGetUrlWithEmptyActionReturnsHashSign() { $this->_params['action'] = ''; - $helper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $item = $helper->getObject( + $item = $this->objectManager->getObject( \Magento\Backend\Model\Menu\Item::class, ['menuFactory' => $this->_menuFactoryMock, 'data' => $this->_params] ); @@ -129,8 +126,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase public function testHasClickCallbackReturnsTrueIfItemHasNoAction() { $this->_params['action'] = ''; - $helper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $item = $helper->getObject( + $item = $this->objectManager->getObject( \Magento\Backend\Model\Menu\Item::class, ['menuFactory' => $this->_menuFactoryMock, 'data' => $this->_params] ); @@ -140,8 +136,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase public function testGetClickCallbackReturnsStoppingJsIfItemDoesntHaveAction() { $this->_params['action'] = ''; - $helper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $item = $helper->getObject( + $item = $this->objectManager->getObject( \Magento\Backend\Model\Menu\Item::class, ['menuFactory' => $this->_menuFactoryMock, 'data' => $this->_params] ); @@ -218,15 +213,232 @@ class ItemTest extends \PHPUnit_Framework_TestCase public function testGetChildrenCreatesSubmenuOnFirstCall() { - $menuMock = $this->getMock( - \Magento\Backend\Model\Menu::class, - [], - [$this->getMock(\Psr\Log\LoggerInterface::class)] - ); + $menuMock = $this->getMock(\Magento\Backend\Model\Menu::class, [], [], '', false); $this->_menuFactoryMock->expects($this->once())->method('create')->will($this->returnValue($menuMock)); $this->_model->getChildren(); $this->_model->getChildren(); } + + /** + * @param array $data + * @param array $expected + * @dataProvider toArrayDataProvider + */ + public function testToArray($data, $expected) + { + $menuMock = $this->getMock(\Magento\Backend\Model\Menu::class, [], [], '', false); + $this->_menuFactoryMock->method('create')->will($this->returnValue($menuMock)); + $menuMock->method('toArray') + ->willReturn(isset($data['sub_menu']) ? $data['sub_menu'] : null); + + $model = $this->objectManager->getObject( + \Magento\Backend\Model\Menu\Item::class, + [ + 'authorization' => $this->_aclMock, + 'scopeConfig' => $this->_scopeConfigMock, + 'menuFactory' => $this->_menuFactoryMock, + 'urlModel' => $this->_urlModelMock, + 'moduleList' => $this->_moduleListMock, + 'moduleManager' => $this->_moduleManager, + 'data' => $data + ] + ); + $this->assertEquals($expected, $model->toArray()); + } + + public function toArrayDataProvider() + { + return [ + [ + $this->_params, + [ + 'parent_id' => null, + 'module_name' => 'Magento_Backend', + 'sort_index' => null, + 'depends_on_config' => 'system/config/isEnabled', + 'id' => 'item', + 'resource' => 'Magento_Config::config', + 'path' => '', + 'action' => '/system/config', + 'depends_on_module' => 'Magento_Backend', + 'tooltip' => 'Item tooltip', + 'title' => 'Item Title', + 'sub_menu' => null + ] + ], + [ + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => '5', + 'resource' => null, + 'path' => null, + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => null, + 'title' => null, + 'sub_menu' => $this->_params, + ], + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => '5', + 'resource' => null, + 'path' => null, + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => '', + 'title' => null, + 'sub_menu' => $this->_params + ] + ], + [ + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'sub_menu' => $this->_params, + ], + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => null, + 'resource' => null, + 'path' => '', + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => '', + 'title' => null, + 'sub_menu' => $this->_params + ] + ] + ]; + } + + /** + * @param array $constructorData + * @param array $populateFromData + * @dataProvider populateFromArrayDataProvider + */ + public function testPopulateFromArray($constructorData, $populateFromData, $expected) + { + $menuMock = $this->getMock(\Magento\Backend\Model\Menu::class, [], [], '', false); + $this->_menuFactoryMock->method('create')->will($this->returnValue($menuMock)); + $menuMock->method('toArray') + ->willReturn(isset($constructorData['sub_menu']) ? $constructorData['sub_menu'] : null); + + $model = $this->objectManager->getObject( + \Magento\Backend\Model\Menu\Item::class, + [ + 'authorization' => $this->_aclMock, + 'scopeConfig' => $this->_scopeConfigMock, + 'menuFactory' => $this->_menuFactoryMock, + 'urlModel' => $this->_urlModelMock, + 'moduleList' => $this->_moduleListMock, + 'moduleManager' => $this->_moduleManager, + 'data' => $constructorData + ] + ); + $model->populateFromArray($populateFromData); + $this->assertEquals($expected, $model->toArray()); + } + + public function populateFromArrayDataProvider() + { + return [ + [ + [], + $this->_params, + [ + 'parent_id' => null, + 'module_name' => 'Magento_Backend', + 'sort_index' => null, + 'depends_on_config' => 'system/config/isEnabled', + 'id' => 'item', + 'resource' => 'Magento_Config::config', + 'path' => '', + 'action' => '/system/config', + 'depends_on_module' => 'Magento_Backend', + 'tooltip' => 'Item tooltip', + 'title' => 'Item Title', + 'sub_menu' => null + ], + ], + [ + $this->_params, + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => '5', + 'resource' => null, + 'path' => null, + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => null, + 'title' => null, + 'sub_menu' => $this->_params, + ], + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => '5', + 'resource' => null, + 'path' => '', + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => '', + 'title' => null, + 'sub_menu' => null + ], + ], + [ + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => '5', + 'resource' => null, + 'path' => null, + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => null, + 'title' => null, + 'sub_menu' => $this->_params, + ], + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'sub_menu' => $this->_params, + ], + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => null, + 'resource' => null, + 'path' => '', + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => '', + 'title' => null, + 'sub_menu' => $this->_params + ], + ] + ]; + } } -- GitLab From cb696389345e934ce2d02d199d900f60993ecefb Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Fri, 23 Dec 2016 12:35:33 +0200 Subject: [PATCH 121/175] MAGETWO-62514: Remove uses of serialize/unserialize in \Magento\Framework\App\PageCache\Kernel --- .../Framework/App/PageCache/Kernel.php | 56 +++++++++-------- .../App/Test/Unit/PageCache/KernelTest.php | 62 ++++++++++--------- 2 files changed, 63 insertions(+), 55 deletions(-) diff --git a/lib/internal/Magento/Framework/App/PageCache/Kernel.php b/lib/internal/Magento/Framework/App/PageCache/Kernel.php index 5fe86490210..f6797248787 100644 --- a/lib/internal/Magento/Framework/App/PageCache/Kernel.php +++ b/lib/internal/Magento/Framework/App/PageCache/Kernel.php @@ -41,26 +41,45 @@ class Kernel private $serializer; /** - * @var ObjectManager + * @var \Magento\Framework\App\Http\Context */ - private $objectManager; + private $context; + + /** + * @var \Magento\Framework\App\Http\ContextFactory + */ + private $contextFactory; + + /** + * @var \Magento\Framework\App\Response\HttpFactory + */ + private $httpFactory; /** * @param Cache $cache * @param Identifier $identifier * @param \Magento\Framework\App\Request\Http $request + * @param \Magento\Framework\App\Http\Context $context + * @param \Magento\Framework\App\Http\ContextFactory $contextFactory + * @param \Magento\Framework\App\Response\HttpFactory $httpFactory * @param SerializerInterface|null $serializer */ public function __construct( \Magento\Framework\App\PageCache\Cache $cache, \Magento\Framework\App\PageCache\Identifier $identifier, \Magento\Framework\App\Request\Http $request, + \Magento\Framework\App\Http\Context $context, + \Magento\Framework\App\Http\ContextFactory $contextFactory, + \Magento\Framework\App\Response\HttpFactory $httpFactory, SerializerInterface $serializer = null ) { $this->cache = $cache; $this->identifier = $identifier; $this->request = $request; - $this->serializer = $serializer ?: $this->getObjectManager()->get(SerializerInterface::class); + $this->context = $context; + $this->contextFactory = $contextFactory; + $this->httpFactory = $httpFactory; + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); } /** @@ -76,16 +95,14 @@ class Kernel return false; } - $context = $this->getObjectManager()->create( - \Magento\Framework\App\Http\Context::class, + $context = $this->contextFactory->create( [ 'data' => $responseData['context']['data'], 'default' => $responseData['context']['default'] ] ); - $response = $this->getObjectManager()->create( - \Magento\Framework\App\Response\Http::class, + $response = $this->httpFactory->create( [ 'context' => $context ] @@ -124,7 +141,7 @@ class Kernel } $this->getCache()->save( - $this->serializer->serialize($this->cacheDataPreparation($response)), + $this->serializer->serialize($this->getPreparedData($response)), $this->identifier->getValue(), $tags, $maxAge @@ -134,37 +151,22 @@ class Kernel } /** - * Preparation data for storage in the cache. + * Get prepared data for storage in the cache. * * @param \Magento\Framework\App\Response\Http $response * @return array */ - private function cacheDataPreparation(\Magento\Framework\App\Response\Http $response) + private function getPreparedData(\Magento\Framework\App\Response\Http $response) { - $context = $this->getObjectManager()->get(\Magento\Framework\App\Http\Context::class); - return [ 'content' => $response->getContent(), 'status_code' => $response->getStatusCode(), 'headers' => $response->getHeaders()->toArray(), - 'context' => $context->toArray() + 'context' => $this->context->toArray() ]; } - /** - * Get ObjectManager Instance - * - * @return ObjectManager - */ - private function getObjectManager() - { - if ($this->objectManager === null) { - $this->objectManager = ObjectManager::getInstance(); - } - return $this->objectManager; - } - /** * TODO: Workaround to support backwards compatibility, will rework to use Dependency Injection in MAGETWO-49547 * @@ -173,7 +175,7 @@ class Kernel private function getCache() { if (!$this->fullPageCache) { - $this->fullPageCache = $this->getObjectManager()->get(\Magento\PageCache\Model\Cache\Type::class); + $this->fullPageCache = ObjectManager::getInstance()->get('\Magento\PageCache\Model\Cache\Type'); } return $this->fullPageCache; } diff --git a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php index b791e746627..1e88d76ef2c 100644 --- a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php +++ b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php @@ -33,12 +33,15 @@ class KernelTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Framework\App\Response\Http|\PHPUnit_Framework_MockObject_MockObject */ private $httpResponseMock; + /** @var \Magento\Framework\App\Http\ContextFactory|\PHPUnit_Framework_MockObject_MockObject */ + private $contextFactoryMock; + + /** @var \Magento\Framework\App\Response\HttpFactory|\PHPUnit_Framework_MockObject_MockObject */ + private $httpFactoryMock; + /** @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject */ private $serializer; - /** @var \Magento\Framework\App\ObjectManager|\PHPUnit_Framework_MockObject_MockObject */ - private $objectManager; - /** @var \Magento\Framework\App\Http\Context|\PHPUnit_Framework_MockObject_MockObject */ private $contextMock; @@ -52,22 +55,28 @@ class KernelTest extends \PHPUnit_Framework_TestCase $this->fullPageCacheMock = $this->getMock(\Magento\PageCache\Model\Cache\Type::class, [], [], '', false); $this->contextMock = $this->getMock(\Magento\Framework\App\Http\Context::class, [], [], '', false); $this->httpResponseMock = $this->getMock(\Magento\Framework\App\Response\Http::class, [], [], '', false); - $this->objectManager = $this->getMock(\Magento\Framework\App\ObjectManager::class, [], [], '', false); $this->identifierMock = $this->getMock(\Magento\Framework\App\PageCache\Identifier::class, [], [], '', false); $this->requestMock = $this->getMock(\Magento\Framework\App\Request\Http::class, [], [], '', false); $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class, [], [], '', false); $this->responseMock = $this->getMock(\Magento\Framework\App\Response\Http::class, [], [], '', false); + $this->contextFactoryMock = $this->getMock(\Magento\Framework\App\Http\ContextFactory::class, [], [], '', false); + $this->httpFactoryMock = $this->getMock(\Magento\Framework\App\Response\HttpFactory::class, [], [], '', false); $this->responseMock->expects($this->any())->method('getHeaders')->willReturn($headersMock); - $this->kernel = new Kernel($this->cacheMock, $this->identifierMock, $this->requestMock, $this->serializer); + $this->kernel = new Kernel( + $this->cacheMock, + $this->identifierMock, + $this->requestMock, + $this->contextMock, + $this->contextFactoryMock, + $this->httpFactoryMock, + $this->serializer + ); $reflection = new \ReflectionClass(\Magento\Framework\App\PageCache\Kernel::class); $reflectionProperty = $reflection->getProperty('fullPageCache'); $reflectionProperty->setAccessible(true); $reflectionProperty->setValue($this->kernel, $this->fullPageCacheMock); - $reflectionProperty = $reflection->getProperty('objectManager'); - $reflectionProperty->setAccessible(true); - $reflectionProperty->setValue($this->kernel, $this->objectManager); } /** @@ -87,21 +96,23 @@ class KernelTest extends \PHPUnit_Framework_TestCase } ); - $this->objectManager->method('create') - ->will($this->returnValueMap([ + $this->contextFactoryMock + ->expects($this->once()) + ->method('create') + ->with( [ - \Magento\Framework\App\Http\Context::class, - [ - 'data' => ['context_data'], - 'default' => ['context_default_data'] - ], - $this->contextMock - ], - [ - \Magento\Framework\App\Response\Http::class, - ['context' => $this->contextMock], - $this->httpResponseMock] - ])); + 'data' => ['context_data'], + 'default' => ['context_default_data'] + ] + ) + ->willReturn($this->contextMock); + + $this->httpFactoryMock + ->expects($this->once()) + ->method('create') + ->with(['context' => $this->contextMock]) + ->willReturn($this->httpResponseMock); + $this->requestMock->expects($this->once())->method('isGet')->will($this->returnValue($isGet)); $this->requestMock->expects($this->any())->method('isHead')->will($this->returnValue($isHead)); $this->fullPageCacheMock->expects( @@ -190,12 +201,7 @@ class KernelTest extends \PHPUnit_Framework_TestCase return json_encode($value); } ); - $cacheTypeMock = $this->getMock(\Magento\PageCache\Model\Cache\Type::class, [], [], '', false); - $this->objectManager->method('get') - ->will($this->returnValueMap([ - [\Magento\Framework\App\Http\Context::class, $this->contextMock], - [\Magento\PageCache\Model\Cache\Type::class, $cacheTypeMock], - ])); + $cacheControlHeader = \Zend\Http\Header\CacheControl::fromString( 'Cache-Control: public, max-age=100, s-maxage=100' ); -- GitLab From 004aa40422b92a3f38d115b6ba09a156661a3926 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Fri, 23 Dec 2016 12:38:21 +0200 Subject: [PATCH 122/175] MAGETWO-62514: Remove uses of serialize/unserialize in \Magento\Framework\App\PageCache\Kernel --- lib/internal/Magento/Framework/App/PageCache/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/Magento/Framework/App/PageCache/Kernel.php b/lib/internal/Magento/Framework/App/PageCache/Kernel.php index f6797248787..cab48c1c5e7 100644 --- a/lib/internal/Magento/Framework/App/PageCache/Kernel.php +++ b/lib/internal/Magento/Framework/App/PageCache/Kernel.php @@ -175,7 +175,7 @@ class Kernel private function getCache() { if (!$this->fullPageCache) { - $this->fullPageCache = ObjectManager::getInstance()->get('\Magento\PageCache\Model\Cache\Type'); + $this->fullPageCache = ObjectManager::getInstance()->get(\Magento\PageCache\Model\Cache\Type::class); } return $this->fullPageCache; } -- GitLab From 1efa63f876d1b2bf01ecb57736361e74d9f6e283 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Fri, 23 Dec 2016 12:47:56 +0200 Subject: [PATCH 123/175] MAGETWO-62514: Remove uses of serialize/unserialize in \Magento\Framework\App\PageCache\Kernel --- .../Framework/App/PageCache/Kernel.php | 48 ++++++++++++------- 1 file changed, 30 insertions(+), 18 deletions(-) diff --git a/lib/internal/Magento/Framework/App/PageCache/Kernel.php b/lib/internal/Magento/Framework/App/PageCache/Kernel.php index cab48c1c5e7..b3c1e22796f 100644 --- a/lib/internal/Magento/Framework/App/PageCache/Kernel.php +++ b/lib/internal/Magento/Framework/App/PageCache/Kernel.php @@ -95,24 +95,7 @@ class Kernel return false; } - $context = $this->contextFactory->create( - [ - 'data' => $responseData['context']['data'], - 'default' => $responseData['context']['default'] - ] - ); - - $response = $this->httpFactory->create( - [ - 'context' => $context - ] - ); - $response->setStatusCode($responseData['status_code']); - $response->setContent($responseData['content']); - foreach ($responseData['headers'] as $headerKey => $headerValue) { - $response->setHeader($headerKey, $headerValue, true); - } - return $response; + return $this->buildResponse($responseData); } return false; } @@ -167,6 +150,35 @@ class Kernel } + /** + * Build response using response data. + * + * @param array $responseData + * @return \Magento\Framework\App\Response\Http + */ + private function buildResponse($responseData) + { + $context = $this->contextFactory->create( + [ + 'data' => $responseData['context']['data'], + 'default' => $responseData['context']['default'] + ] + ); + + $response = $this->httpFactory->create( + [ + 'context' => $context + ] + ); + $response->setStatusCode($responseData['status_code']); + $response->setContent($responseData['content']); + foreach ($responseData['headers'] as $headerKey => $headerValue) { + $response->setHeader($headerKey, $headerValue, true); + } + + return $response; + } + /** * TODO: Workaround to support backwards compatibility, will rework to use Dependency Injection in MAGETWO-49547 * -- GitLab From aa56b8755493883e8e01d01739929d3e4e3298ae Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Fri, 23 Dec 2016 12:55:27 +0200 Subject: [PATCH 124/175] MAGETWO-62514: Remove uses of serialize/unserialize in \Magento\Framework\App\PageCache\Kernel --- .../Framework/App/Test/Unit/PageCache/KernelTest.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php index 1e88d76ef2c..1a85b481e53 100644 --- a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php +++ b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php @@ -6,6 +6,8 @@ namespace Magento\Framework\App\Test\Unit\PageCache; use \Magento\Framework\App\PageCache\Kernel; +use \Magento\Framework\App\Http\ContextFactory; +use \Magento\Framework\App\Response\HttpFactory; /** * @SuppressWarnings(PHPMD.CouplingBetweenObjects) @@ -33,10 +35,10 @@ class KernelTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Framework\App\Response\Http|\PHPUnit_Framework_MockObject_MockObject */ private $httpResponseMock; - /** @var \Magento\Framework\App\Http\ContextFactory|\PHPUnit_Framework_MockObject_MockObject */ + /** @var ContextFactory|\PHPUnit_Framework_MockObject_MockObject */ private $contextFactoryMock; - /** @var \Magento\Framework\App\Response\HttpFactory|\PHPUnit_Framework_MockObject_MockObject */ + /** @var HttpFactory|\PHPUnit_Framework_MockObject_MockObject */ private $httpFactoryMock; /** @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject */ @@ -59,8 +61,8 @@ class KernelTest extends \PHPUnit_Framework_TestCase $this->requestMock = $this->getMock(\Magento\Framework\App\Request\Http::class, [], [], '', false); $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class, [], [], '', false); $this->responseMock = $this->getMock(\Magento\Framework\App\Response\Http::class, [], [], '', false); - $this->contextFactoryMock = $this->getMock(\Magento\Framework\App\Http\ContextFactory::class, [], [], '', false); - $this->httpFactoryMock = $this->getMock(\Magento\Framework\App\Response\HttpFactory::class, [], [], '', false); + $this->contextFactoryMock = $this->getMock(ContextFactory::class, ['create'], [], '', false); + $this->httpFactoryMock = $this->getMock(HttpFactory::class, ['create'], [], '', false); $this->responseMock->expects($this->any())->method('getHeaders')->willReturn($headersMock); $this->kernel = new Kernel( -- GitLab From a22a6b51a95f79b1cd4886a0df81f76ee0e43c4a Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Fri, 23 Dec 2016 13:30:30 +0200 Subject: [PATCH 125/175] MAGETWO-62514: Remove uses of serialize/unserialize in \Magento\Framework\App\PageCache\Kernel --- .../Framework/App/PageCache/Kernel.php | 27 ++++++++++--------- 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/lib/internal/Magento/Framework/App/PageCache/Kernel.php b/lib/internal/Magento/Framework/App/PageCache/Kernel.php index b3c1e22796f..8b5dba5b88d 100644 --- a/lib/internal/Magento/Framework/App/PageCache/Kernel.php +++ b/lib/internal/Magento/Framework/App/PageCache/Kernel.php @@ -7,6 +7,9 @@ namespace Magento\Framework\App\PageCache; use Magento\Framework\App\ObjectManager; use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\App\Http\Context; +use Magento\Framework\App\Http\ContextFactory; +use Magento\Framework\App\Response\HttpFactory; /** * Builtin cache processor @@ -41,17 +44,17 @@ class Kernel private $serializer; /** - * @var \Magento\Framework\App\Http\Context + * @var Context */ private $context; /** - * @var \Magento\Framework\App\Http\ContextFactory + * @var ContextFactory */ private $contextFactory; /** - * @var \Magento\Framework\App\Response\HttpFactory + * @var HttpFactory */ private $httpFactory; @@ -59,26 +62,26 @@ class Kernel * @param Cache $cache * @param Identifier $identifier * @param \Magento\Framework\App\Request\Http $request - * @param \Magento\Framework\App\Http\Context $context - * @param \Magento\Framework\App\Http\ContextFactory $contextFactory - * @param \Magento\Framework\App\Response\HttpFactory $httpFactory + * @param Context|null $context + * @param ContextFactory|null $contextFactory + * @param HttpFactory|null $httpFactory * @param SerializerInterface|null $serializer */ public function __construct( \Magento\Framework\App\PageCache\Cache $cache, \Magento\Framework\App\PageCache\Identifier $identifier, \Magento\Framework\App\Request\Http $request, - \Magento\Framework\App\Http\Context $context, - \Magento\Framework\App\Http\ContextFactory $contextFactory, - \Magento\Framework\App\Response\HttpFactory $httpFactory, + Context $context = null, + ContextFactory $contextFactory = null, + HttpFactory $httpFactory = null, SerializerInterface $serializer = null ) { $this->cache = $cache; $this->identifier = $identifier; $this->request = $request; - $this->context = $context; - $this->contextFactory = $contextFactory; - $this->httpFactory = $httpFactory; + $this->context = $context ?: ObjectManager::getInstance()->get(Context::class); + $this->contextFactory = $contextFactory ?: ObjectManager::getInstance()->get(ContextFactory::class); + $this->httpFactory = $httpFactory ?: ObjectManager::getInstance()->get(HttpFactory::class); $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); } -- GitLab From 118dd7ceda181c3174b1282fec0d00329e888464 Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Fri, 23 Dec 2016 13:49:09 +0200 Subject: [PATCH 126/175] MAGETWO-62486: Refactor Layout to store data from object only and restore object - unit tests --- .../Magento/Framework/View/Layout.php | 9 +- .../View/Layout/ScheduledStructure.php | 2 + .../Framework/View/Page/Config/Structure.php | 5 +- .../Framework/View/Test/Unit/LayoutTest.php | 99 +++++++++++++++++-- 4 files changed, 102 insertions(+), 13 deletions(-) diff --git a/lib/internal/Magento/Framework/View/Layout.php b/lib/internal/Magento/Framework/View/Layout.php index ed1c2001e18..d8b6e78f219 100755 --- a/lib/internal/Magento/Framework/View/Layout.php +++ b/lib/internal/Magento/Framework/View/Layout.php @@ -318,18 +318,17 @@ class Layout extends \Magento\Framework\Simplexml\Config implements \Magento\Fra $cacheId = 'structure_' . $this->getUpdate()->getCacheId(); $result = $this->cache->load($cacheId); if ($result) { - $this->readerContext = $this->getReaderContext(); $data = $this->serializer->unserialize($result); - $this->readerContext->getPageConfigStructure()->populateWithArray($data['pageConfigStructure']); - $this->readerContext->getScheduledStructure()->populateWithArray($data['scheduledStructure']); + $this->getReaderContext()->getPageConfigStructure()->populateWithArray($data['pageConfigStructure']); + $this->getReaderContext()->getScheduledStructure()->populateWithArray($data['scheduledStructure']); } else { \Magento\Framework\Profiler::start('build_structure'); $this->readerPool->interpret($this->getReaderContext(), $this->getNode()); \Magento\Framework\Profiler::stop('build_structure'); $data = [ - 'pageConfigStructure' => $this->readerContext->getPageConfigStructure()->__toArray(), - 'scheduledStructure' => $this->readerContext->getScheduledStructure()->__toArray(), + 'pageConfigStructure' => $this->getReaderContext()->getPageConfigStructure()->__toArray(), + 'scheduledStructure' => $this->getReaderContext()->getScheduledStructure()->__toArray(), ]; $this->cache->save($this->serializer->serialize($data), $cacheId, $this->getUpdate()->getHandles()); } diff --git a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php index bfcd40dce83..6d798bd2a26 100644 --- a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php +++ b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php @@ -559,6 +559,8 @@ class ScheduledStructure * * @param array $data * @return void + * @SuppressWarnings(PHPMD.CyclomaticComplexity) + * @SuppressWarnings(PHPMD.NPathComplexity) */ public function populateWithArray(array $data) { diff --git a/lib/internal/Magento/Framework/View/Page/Config/Structure.php b/lib/internal/Magento/Framework/View/Page/Config/Structure.php index c30adf01d8e..98fde0a8985 100644 --- a/lib/internal/Magento/Framework/View/Page/Config/Structure.php +++ b/lib/internal/Magento/Framework/View/Page/Config/Structure.php @@ -221,6 +221,7 @@ class Structure * * @param array $data * @return void + * @SuppressWarnings(PHPMD.NPathComplexity) */ public function populateWithArray(array $data) { @@ -229,7 +230,9 @@ class Structure $this->title = isset($data['title']) ? $data['title'] : ''; $this->metadata = isset($data['metadata']) ? $data['metadata'] : []; $this->elementAttributes = isset($data['elementAttributes']) ? $data['elementAttributes'] : []; - $this->removeElementAttributes = isset($data['removeElementAttributes']) ? $data['removeElementAttributes'] : []; + $this->removeElementAttributes = isset($data['removeElementAttributes']) + ? $data['removeElementAttributes'] + : []; $this->bodyClasses = isset($data['bodyClasses']) ? $data['bodyClasses'] : []; $this->isBodyClassesDeleted = isset($data['isBodyClassesDeleted']) ? $data['isBodyClassesDeleted'] : false; } diff --git a/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php b/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php index 413b1e4cd1a..de70e824734 100755 --- a/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php +++ b/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php @@ -4,6 +4,7 @@ * See COPYING.txt for license details. */ namespace Magento\Framework\View\Test\Unit; +use Magento\Framework\Serialize\SerializerInterface; /** * @SuppressWarnings(PHPMD.TooManyFields) @@ -81,6 +82,16 @@ class LayoutTest extends \PHPUnit_Framework_TestCase */ protected $readerContextMock; + /** + * @var \Magento\Framework\View\Page\Config\Structure|\PHPUnit_Framework_MockObject_MockObject + */ + private $pageConfigStructure; + + /** + * @var \Magento\Framework\View\Layout\ScheduledStructure|\PHPUnit_Framework_MockObject_MockObject + */ + private $layoutScheduledSructure; + /** * @var \Magento\Framework\View\Layout\Generator\ContextFactory|\PHPUnit_Framework_MockObject_MockObject */ @@ -96,6 +107,11 @@ class LayoutTest extends \PHPUnit_Framework_TestCase */ protected $loggerMock; + /** + * @var SerializerInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $serializer; + protected function setUp() { $this->structureMock = $this->getMockBuilder(\Magento\Framework\View\Layout\Data\Structure::class) @@ -141,9 +157,22 @@ class LayoutTest extends \PHPUnit_Framework_TestCase $this->readerContextFactoryMock = $this->getMockBuilder( \Magento\Framework\View\Layout\Reader\ContextFactory::class )->disableOriginalConstructor()->getMock(); + + $this->pageConfigStructure = $this->getMockBuilder(\Magento\Framework\View\Page\Config\Structure::class) + ->setMethods(['__toArray', 'populateWithArray']) + ->getMock(); + $this->layoutScheduledSructure = $this->getMockBuilder(\Magento\Framework\View\Layout\ScheduledStructure::class) + ->setMethods(['__toArray', 'populateWithArray']) + ->getMock(); $this->readerContextMock = $this->getMockBuilder(\Magento\Framework\View\Layout\Reader\Context::class) + ->setMethods(['getPageConfigStructure', 'getScheduledStructure']) ->disableOriginalConstructor() ->getMock(); + $this->readerContextMock->expects($this->any())->method('getPageConfigStructure') + ->willReturn($this->pageConfigStructure); + $this->readerContextMock->expects($this->any())->method('getScheduledStructure') + ->willReturn($this->layoutScheduledSructure); + $this->generatorContextFactoryMock = $this->getMockBuilder( \Magento\Framework\View\Layout\Generator\ContextFactory::class ) @@ -154,6 +183,16 @@ class LayoutTest extends \PHPUnit_Framework_TestCase ->getMock(); $this->loggerMock = $this->getMockBuilder(\Psr\Log\LoggerInterface::class) ->getMock(); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class); + $this->serializer->expects($this->any())->method('serialize') + ->willReturnCallback(function ($value) { + return json_encode($value); + }); + $this->serializer->expects($this->any())->method('unserialize') + ->willReturnCallback(function ($value) { + return json_decode($value, true); + }); + $this->model = new \Magento\Framework\View\Layout( $this->processorFactoryMock, @@ -168,7 +207,8 @@ class LayoutTest extends \PHPUnit_Framework_TestCase $this->generatorContextFactoryMock, $this->appStateMock, $this->loggerMock, - true + true, + $this->serializer ); } @@ -735,9 +775,32 @@ class LayoutTest extends \PHPUnit_Framework_TestCase ->with($this->readerContextMock, $xml) ->willReturnSelf(); + $pageConfigStructureData = [ + 'field_1' => 123, + 'field_2' => 'text', + 'field_3' => [ + 'field_3_1' => '1244', + 'field_3_2' => null, + 'field_3_3' => false, + ] + ]; + $this->pageConfigStructure->expects($this->any())->method('__toArray') + ->willReturn($pageConfigStructureData); + + $layoutScheduledStructureData = [ + 'field_1' => 1283, + 'field_2' => 'text_qwertyuiop[]asdfghjkl;' + ]; + $this->layoutScheduledSructure->expects($this->any())->method('__toArray') + ->willReturn($layoutScheduledStructureData); + $data = [ + 'pageConfigStructure' => $pageConfigStructureData, + 'scheduledStructure' => $layoutScheduledStructureData + ]; + $this->cacheMock->expects($this->once()) ->method('save') - ->with(serialize($this->readerContextMock), 'structure_' . $layoutCacheId, $handles) + ->with(json_encode($data), 'structure_' . $layoutCacheId, $handles) ->willReturn(true); $generatorContextMock = $this->getMockBuilder(\Magento\Framework\View\Layout\Generator\Context::class) @@ -774,6 +837,9 @@ class LayoutTest extends \PHPUnit_Framework_TestCase $xml = simplexml_load_string('<layout/>', \Magento\Framework\View\Layout\Element::class); $this->model->setXml($xml); + $this->readerContextFactoryMock->expects($this->once()) + ->method('create') + ->willReturn($this->readerContextMock); $themeMock = $this->getMockForAbstractClass(\Magento\Framework\View\Design\ThemeInterface::class); $this->themeResolverMock->expects($this->once()) ->method('get') @@ -787,14 +853,33 @@ class LayoutTest extends \PHPUnit_Framework_TestCase ->method('getCacheId') ->willReturn($layoutCacheId); - $readerContextMock = $this->getMockBuilder(\Magento\Framework\View\Layout\Reader\Context::class) - ->disableOriginalConstructor() - ->getMock(); + $pageConfigStructureData = [ + 'field_1' => 123, + 'field_2' => 'text', + 'field_3' => [ + 'field_3_1' => '1244', + 'field_3_2' => null, + 'field_3_3' => false, + ] + ]; + $this->pageConfigStructure->expects($this->once())->method('populateWithArray') + ->with($pageConfigStructureData); + + $layoutScheduledStructureData = [ + 'field_1' => 1283, + 'field_2' => 'text_qwertyuiop[]asdfghjkl;' + ]; + $this->layoutScheduledSructure->expects($this->once())->method('populateWithArray') + ->with($layoutScheduledStructureData); + $data = [ + 'pageConfigStructure' => $pageConfigStructureData, + 'scheduledStructure' => $layoutScheduledStructureData + ]; $this->cacheMock->expects($this->once()) ->method('load') ->with('structure_' . $layoutCacheId) - ->willReturn(serialize($readerContextMock)); + ->willReturn(json_encode($data)); $this->readerPoolMock->expects($this->never()) ->method('interpret'); @@ -811,7 +896,7 @@ class LayoutTest extends \PHPUnit_Framework_TestCase $this->generatorPoolMock->expects($this->once()) ->method('process') - ->with($readerContextMock, $generatorContextMock) + ->with($this->readerContextMock, $generatorContextMock) ->willReturn(true); $elements = [ -- GitLab From 346dcef28865e3cd7330e29b9decba6f60f7f0e4 Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Fri, 23 Dec 2016 15:28:15 +0200 Subject: [PATCH 127/175] MAGETWO-62514: Remove uses of serialize/unserialize in \Magento\Framework\App\PageCache\Kernel --- .../Framework/App/PageCache/Kernel.php | 67 ++++++++++++------- 1 file changed, 44 insertions(+), 23 deletions(-) diff --git a/lib/internal/Magento/Framework/App/PageCache/Kernel.php b/lib/internal/Magento/Framework/App/PageCache/Kernel.php index 8b5dba5b88d..fc2521ac747 100644 --- a/lib/internal/Magento/Framework/App/PageCache/Kernel.php +++ b/lib/internal/Magento/Framework/App/PageCache/Kernel.php @@ -5,12 +5,6 @@ */ namespace Magento\Framework\App\PageCache; -use Magento\Framework\App\ObjectManager; -use Magento\Framework\Serialize\SerializerInterface; -use Magento\Framework\App\Http\Context; -use Magento\Framework\App\Http\ContextFactory; -use Magento\Framework\App\Response\HttpFactory; - /** * Builtin cache processor */ @@ -39,22 +33,22 @@ class Kernel private $fullPageCache; /** - * @var SerializerInterface + * @var \Magento\Framework\Serialize\SerializerInterface */ private $serializer; /** - * @var Context + * @var \Magento\Framework\App\Http\Context */ private $context; /** - * @var ContextFactory + * @var \Magento\Framework\App\Http\ContextFactory */ private $contextFactory; /** - * @var HttpFactory + * @var \Magento\Framework\App\Response\HttpFactory */ private $httpFactory; @@ -62,27 +56,52 @@ class Kernel * @param Cache $cache * @param Identifier $identifier * @param \Magento\Framework\App\Request\Http $request - * @param Context|null $context - * @param ContextFactory|null $contextFactory - * @param HttpFactory|null $httpFactory - * @param SerializerInterface|null $serializer + * @param \Magento\Framework\App\Http\Context|null $context + * @param \Magento\Framework\App\Http\ContextFactory|null $contextFactory + * @param \Magento\Framework\App\Response\HttpFactory|null $httpFactory + * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer */ public function __construct( \Magento\Framework\App\PageCache\Cache $cache, \Magento\Framework\App\PageCache\Identifier $identifier, \Magento\Framework\App\Request\Http $request, - Context $context = null, - ContextFactory $contextFactory = null, - HttpFactory $httpFactory = null, - SerializerInterface $serializer = null + \Magento\Framework\App\Http\Context $context = null, + \Magento\Framework\App\Http\ContextFactory $contextFactory = null, + \Magento\Framework\App\Response\HttpFactory $httpFactory = null, + \Magento\Framework\Serialize\SerializerInterface $serializer = null ) { $this->cache = $cache; $this->identifier = $identifier; $this->request = $request; - $this->context = $context ?: ObjectManager::getInstance()->get(Context::class); - $this->contextFactory = $contextFactory ?: ObjectManager::getInstance()->get(ContextFactory::class); - $this->httpFactory = $httpFactory ?: ObjectManager::getInstance()->get(HttpFactory::class); - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); + + if ($context) { + $this->context = $context; + } else { + $this->context = \Magento\Framework\App\ObjectManager::getInstance()->get( + \Magento\Framework\App\Http\Context::class + ); + } + if ($contextFactory) { + $this->contextFactory = $contextFactory; + } else { + $this->contextFactory = \Magento\Framework\App\ObjectManager::getInstance()->get( + \Magento\Framework\App\Http\ContextFactory::class + ); + } + if ($httpFactory) { + $this->httpFactory = $httpFactory; + } else { + $this->httpFactory = \Magento\Framework\App\ObjectManager::getInstance()->get( + \Magento\Framework\App\Response\HttpFactory::class + ); + } + if ($serializer) { + $this->serializer = $serializer; + } else { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance()->get( + \Magento\Framework\Serialize\SerializerInterface::class + ); + } } /** @@ -190,7 +209,9 @@ class Kernel private function getCache() { if (!$this->fullPageCache) { - $this->fullPageCache = ObjectManager::getInstance()->get(\Magento\PageCache\Model\Cache\Type::class); + $this->fullPageCache = \Magento\Framework\App\ObjectManager::getInstance()->get( + \Magento\PageCache\Model\Cache\Type::class + ); } return $this->fullPageCache; } -- GitLab From 8e928d6e09492fceacd33f85808eccf09752f5fc Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Fri, 23 Dec 2016 18:07:30 +0200 Subject: [PATCH 128/175] MAGETWO-62486: Refactor Layout to store data from object only and restore object - fixed bamboo static builds --- .../View/Layout/ScheduledStructure.php | 69 ++++++++++--------- .../Framework/View/Page/Config/Structure.php | 57 +++++++++------ .../Framework/View/Test/Unit/LayoutTest.php | 2 +- 3 files changed, 75 insertions(+), 53 deletions(-) diff --git a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php index 6d798bd2a26..fe8aae31a3c 100644 --- a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php +++ b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php @@ -19,6 +19,23 @@ class ScheduledStructure const ELEMENT_IS_AFTER = 'isAfter'; /**#@-*/ + /** + * Map of class properties. + * + * @var array + */ + private $propertyMap = [ + 'scheduledStructure', + 'scheduledData', + 'scheduledElements', + 'scheduledMoves', + 'scheduledRemoves', + 'scheduledIfconfig', + 'scheduledPaths', + 'elementsToSort', + 'brokenParent', + ]; + /** * Information about structural elements, scheduled for creation * @@ -84,18 +101,10 @@ class ScheduledStructure /** * @param array $data - * - * @SuppressWarnings(PHPMD.NPathComplexity) */ public function __construct(array $data = []) { - $this->scheduledStructure = isset($data['scheduledStructure']) ? $data['scheduledStructure'] : []; - $this->scheduledData = isset($data['scheduledData']) ? $data['scheduledData'] : []; - $this->scheduledElements = isset($data['scheduledElements']) ? $data['scheduledElements'] : []; - $this->scheduledMoves = isset($data['scheduledMoves']) ? $data['scheduledMoves'] : []; - $this->scheduledRemoves = isset($data['scheduledRemoves']) ? $data['scheduledRemoves'] : []; - $this->scheduledIfconfig = isset($data['scheduledIfconfig']) ? $data['scheduledIfconfig'] : []; - $this->scheduledPaths = isset($data['scheduledPaths']) ? $data['scheduledPaths'] : []; + $this->populateWithArray($data); } /** @@ -540,17 +549,12 @@ class ScheduledStructure */ public function __toArray() { - return [ - 'scheduledStructure' => $this->scheduledStructure, - 'scheduledData' => $this->scheduledData, - 'scheduledElements' => $this->scheduledElements, - 'scheduledMoves' => $this->scheduledMoves, - 'scheduledRemoves' => $this->scheduledRemoves, - 'scheduledIfconfig' => $this->scheduledIfconfig, - 'scheduledPaths' => $this->scheduledPaths, - 'elementsToSort' => $this->elementsToSort, - 'brokenParent' => $this->brokenParent, - ]; + $result = []; + foreach ($this->propertyMap as $property) { + $result[$property] = $this->{$property}; + } + + return $result; } /** @@ -559,19 +563,22 @@ class ScheduledStructure * * @param array $data * @return void - * @SuppressWarnings(PHPMD.CyclomaticComplexity) - * @SuppressWarnings(PHPMD.NPathComplexity) */ public function populateWithArray(array $data) { - $this->scheduledStructure = isset($data['scheduledStructure']) ? $data['scheduledStructure'] : []; - $this->scheduledData = isset($data['scheduledData']) ? $data['scheduledData'] : []; - $this->scheduledElements = isset($data['scheduledElements']) ? $data['scheduledElements'] : []; - $this->scheduledMoves = isset($data['scheduledMoves']) ? $data['scheduledMoves'] : []; - $this->scheduledRemoves = isset($data['scheduledRemoves']) ? $data['scheduledRemoves'] : []; - $this->scheduledIfconfig = isset($data['scheduledIfconfig']) ? $data['scheduledIfconfig'] : []; - $this->scheduledPaths = isset($data['scheduledPaths']) ? $data['scheduledPaths'] : []; - $this->elementsToSort = isset($data['elementsToSort']) ? $data['elementsToSort'] : []; - $this->brokenParent = isset($data['brokenParent']) ? $data['brokenParent'] : []; + foreach ($this->propertyMap as $property) { + $this->{$property} = $this->getDataValue($property, $data); + } + } + + /** + * Get value from array by key. + * + * @param string $name + * @param array $data + * @return array + */ + private function getDataValue($name, array $data) { + return isset($data[$name]) ? $data[$name] : []; } } diff --git a/lib/internal/Magento/Framework/View/Page/Config/Structure.php b/lib/internal/Magento/Framework/View/Page/Config/Structure.php index 98fde0a8985..68e8e2815ae 100644 --- a/lib/internal/Magento/Framework/View/Page/Config/Structure.php +++ b/lib/internal/Magento/Framework/View/Page/Config/Structure.php @@ -12,6 +12,22 @@ namespace Magento\Framework\View\Page\Config; */ class Structure { + /** + * Map of class properties. + * + * @var array + */ + private $propertyMap = [ + 'assets', + 'removeAssets', + 'title', + 'metadata', + 'elementAttributes', + 'removeElementAttributes', + 'bodyClasses', + 'isBodyClassesDeleted', + ]; + /** * Information assets elements on page * @@ -203,16 +219,12 @@ class Structure */ public function __toArray() { - return [ - 'assets' => $this->assets, - 'removeAssets' => $this->removeAssets, - 'title' => $this->title, - 'metadata' => $this->metadata, - 'elementAttributes' => $this->elementAttributes, - 'removeElementAttributes' => $this->removeElementAttributes, - 'bodyClasses' => $this->bodyClasses, - 'isBodyClassesDeleted' => $this->isBodyClassesDeleted, - ]; + $result = []; + foreach ($this->propertyMap as $property) { + $result[$property] = $this->{$property}; + } + + return $result; } /** @@ -221,19 +233,22 @@ class Structure * * @param array $data * @return void - * @SuppressWarnings(PHPMD.NPathComplexity) */ public function populateWithArray(array $data) { - $this->assets = isset($data['assets']) ? $data['assets'] : []; - $this->removeAssets = isset($data['removeAssets']) ? $data['removeAssets'] : []; - $this->title = isset($data['title']) ? $data['title'] : ''; - $this->metadata = isset($data['metadata']) ? $data['metadata'] : []; - $this->elementAttributes = isset($data['elementAttributes']) ? $data['elementAttributes'] : []; - $this->removeElementAttributes = isset($data['removeElementAttributes']) - ? $data['removeElementAttributes'] - : []; - $this->bodyClasses = isset($data['bodyClasses']) ? $data['bodyClasses'] : []; - $this->isBodyClassesDeleted = isset($data['isBodyClassesDeleted']) ? $data['isBodyClassesDeleted'] : false; + foreach ($this->propertyMap as $property) { + $this->{$property} = $this->getDataValue($property, $data); + } + } + + /** + * Get value from array by key. + * + * @param string $name + * @param array $data + * @return array + */ + private function getDataValue($name, array $data) { + return isset($data[$name]) ? $data[$name] : []; } } diff --git a/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php b/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php index de70e824734..879875ca8d9 100755 --- a/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php +++ b/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php @@ -4,6 +4,7 @@ * See COPYING.txt for license details. */ namespace Magento\Framework\View\Test\Unit; + use Magento\Framework\Serialize\SerializerInterface; /** @@ -193,7 +194,6 @@ class LayoutTest extends \PHPUnit_Framework_TestCase return json_decode($value, true); }); - $this->model = new \Magento\Framework\View\Layout( $this->processorFactoryMock, $this->eventManagerMock, -- GitLab From 1721504253effe12ddc6e187719a291d5b66d3fd Mon Sep 17 00:00:00 2001 From: Mykola Palamar <mpalamar@magento.com> Date: Fri, 23 Dec 2016 19:35:20 +0200 Subject: [PATCH 129/175] MAGETWO-62650: Replace SerializerIntreface with Json implementation --- .../Block/Adminhtml/Sales/Order/Items/Renderer.php | 8 ++++---- .../Adminhtml/Sales/Order/View/Items/Renderer.php | 8 ++++---- .../Bundle/Block/Sales/Order/Items/Renderer.php | 8 ++++---- .../Bundle/Helper/Catalog/Product/Configuration.php | 8 ++++---- app/code/Magento/Bundle/Model/Product/Price.php | 8 ++++---- app/code/Magento/Bundle/Model/Product/Type.php | 6 +++--- .../Model/Sales/Order/Pdf/Items/AbstractItems.php | 10 +++++----- .../Magento/Bundle/Pricing/Price/ConfiguredPrice.php | 8 ++++---- .../Block/Adminhtml/Sales/Order/Items/RendererTest.php | 4 ++-- .../Adminhtml/Sales/Order/View/Items/RendererTest.php | 4 ++-- .../Test/Unit/Block/Sales/Order/Items/RendererTest.php | 4 ++-- .../Unit/Helper/Catalog/Product/ConfigurationTest.php | 4 ++-- .../Bundle/Test/Unit/Model/Product/PriceTest.php | 4 ++-- .../Model/Sales/Order/Pdf/Items/AbstractItemsTest.php | 4 ++-- .../Magento/Catalog/Helper/Product/Configuration.php | 8 ++++---- .../Model/CustomOptions/CustomOptionProcessor.php | 8 ++++---- .../Magento/Catalog/Model/Product/Option/Type/Date.php | 8 ++++---- .../Magento/Catalog/Model/Product/Option/Type/File.php | 8 ++++---- .../Catalog/Model/Product/Type/AbstractType.php | 8 ++++---- .../Test/Unit/Helper/Product/ConfigurationTest.php | 4 ++-- .../Model/CustomOptions/CustomOptionProcessorTest.php | 4 ++-- .../Test/Unit/Model/Product/Option/Type/FileTest.php | 4 ++-- .../Model/Product/Type/Configurable.php | 4 ++-- .../Model/Quote/Item/CartItemProcessor.php | 8 ++++---- .../Test/Unit/Model/Product/Type/ConfigurableTest.php | 2 +- .../Unit/Model/Quote/Item/CartItemProcessorTest.php | 2 +- app/code/Magento/Downloadable/Model/Product/Type.php | 4 ++-- .../Downloadable/Test/Unit/Model/Product/TypeTest.php | 6 +++--- .../GroupedProduct/Model/Product/Type/Grouped.php | 4 ++-- .../Test/Unit/Model/Product/Type/GroupedTest.php | 4 ++-- app/code/Magento/Quote/Model/Quote/Address.php | 8 ++++---- app/code/Magento/Quote/Model/Quote/Address/Total.php | 8 ++++---- app/code/Magento/Quote/Model/Quote/Item.php | 8 ++++---- app/code/Magento/Quote/Model/Quote/Item/Compare.php | 8 ++++---- app/code/Magento/Quote/Model/Quote/Item/Updater.php | 8 ++++---- app/code/Magento/Quote/Model/Quote/Payment.php | 8 ++++---- .../Quote/Test/Unit/Model/Quote/Address/TotalTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/AddressTest.php | 4 ++-- .../Quote/Test/Unit/Model/Quote/Item/CompareTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php | 6 +++--- .../Magento/Quote/Test/Unit/Model/Quote/ItemTest.php | 4 ++-- .../Quote/Test/Unit/Model/Quote/PaymentTest.php | 2 +- .../Sales/Controller/Download/DownloadCustomOption.php | 8 ++++---- app/code/Magento/Sales/Model/AdminOrder/Create.php | 8 ++++---- .../Magento/Sales/Model/Order/CreditmemoFactory.php | 8 ++++---- app/code/Magento/Sales/Model/Order/Item.php | 8 ++++---- app/code/Magento/Sales/Model/Order/ShipmentFactory.php | 8 ++++---- .../Controller/Download/DownloadCustomOptionTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Order/ItemTest.php | 4 ++-- app/code/Magento/Tax/Helper/Data.php | 8 ++++---- .../Tax/Model/Quote/GrandTotalDetailsPlugin.php | 8 ++++---- app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php | 8 ++++---- app/code/Magento/Tax/Test/Unit/Helper/DataTest.php | 2 +- .../Unit/Model/Quote/GrandTotalDetailsPluginTest.php | 2 +- .../Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php | 2 +- app/code/Magento/Wishlist/Model/Item.php | 8 ++++---- .../Catalog/Model/Product/Type/AbstractTypeTest.php | 2 +- .../Checkout/_files/quote_with_payment_saved.php | 4 ++-- .../Model/Product/Type/ConfigurableTest.php | 8 ++++---- .../Magento/Sales/Model/AdminOrder/CreateTest.php | 4 ++-- 60 files changed, 172 insertions(+), 172 deletions(-) diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php index 9b095867d31..06fb993cc5f 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php @@ -6,7 +6,7 @@ namespace Magento\Bundle\Block\Adminhtml\Sales\Order\Items; use Magento\Catalog\Model\Product\Type\AbstractType; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; /** * Adminhtml sales order item renderer @@ -16,7 +16,7 @@ class Renderer extends \Magento\Sales\Block\Adminhtml\Items\Renderer\DefaultRend /** * Serializer * - * @var SerializerInterface + * @var Json */ private $serializer; @@ -26,7 +26,7 @@ class Renderer extends \Magento\Sales\Block\Adminhtml\Items\Renderer\DefaultRend * @param \Magento\CatalogInventory\Api\StockConfigurationInterface $stockConfiguration * @param \Magento\Framework\Registry $registry * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Backend\Block\Template\Context $context, @@ -34,7 +34,7 @@ class Renderer extends \Magento\Sales\Block\Adminhtml\Items\Renderer\DefaultRend \Magento\CatalogInventory\Api\StockConfigurationInterface $stockConfiguration, \Magento\Framework\Registry $registry, array $data = [], - SerializerInterface $serializer = null + Json $serializer = null ) { $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() ->get(SerializerInterface::class); diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php index 5e22c4be6a1..078b3ecfb44 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php @@ -6,7 +6,7 @@ namespace Magento\Bundle\Block\Adminhtml\Sales\Order\View\Items; use Magento\Catalog\Model\Product\Type\AbstractType; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; /** * Adminhtml sales order item renderer @@ -16,7 +16,7 @@ class Renderer extends \Magento\Sales\Block\Adminhtml\Order\View\Items\Renderer\ /** * Serializer * - * @var SerializerInterface + * @var Json */ private $serializer; @@ -28,7 +28,7 @@ class Renderer extends \Magento\Sales\Block\Adminhtml\Order\View\Items\Renderer\ * @param \Magento\GiftMessage\Helper\Message $messageHelper * @param \Magento\Checkout\Helper\Data $checkoutHelper * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Backend\Block\Template\Context $context, @@ -38,7 +38,7 @@ class Renderer extends \Magento\Sales\Block\Adminhtml\Order\View\Items\Renderer\ \Magento\GiftMessage\Helper\Message $messageHelper, \Magento\Checkout\Helper\Data $checkoutHelper, array $data = [], - SerializerInterface $serializer = null + Json $serializer = null ) { $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() ->get(SerializerInterface::class); diff --git a/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php b/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php index 46dc764291a..fbf04ecdb93 100644 --- a/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php @@ -6,7 +6,7 @@ namespace Magento\Bundle\Block\Sales\Order\Items; use Magento\Catalog\Model\Product\Type\AbstractType; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; /** * Order item render block @@ -18,7 +18,7 @@ class Renderer extends \Magento\Sales\Block\Order\Item\Renderer\DefaultRenderer /** * Serializer * - * @var SerializerInterface + * @var Json */ private $serializer; @@ -27,14 +27,14 @@ class Renderer extends \Magento\Sales\Block\Order\Item\Renderer\DefaultRenderer * @param \Magento\Framework\Stdlib\StringUtils $string * @param \Magento\Catalog\Model\Product\OptionFactory $productOptionFactory * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Framework\View\Element\Template\Context $context, \Magento\Framework\Stdlib\StringUtils $string, \Magento\Catalog\Model\Product\OptionFactory $productOptionFactory, array $data = [], - SerializerInterface $serializer = null + Json $serializer = null ) { $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() ->get(SerializerInterface::class); diff --git a/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php b/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php index 13e7a8a4f72..3ad004fabea 100644 --- a/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php +++ b/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php @@ -38,7 +38,7 @@ class Configuration extends AbstractHelper implements ConfigurationInterface /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -47,20 +47,20 @@ class Configuration extends AbstractHelper implements ConfigurationInterface * @param \Magento\Catalog\Helper\Product\Configuration $productConfiguration * @param \Magento\Framework\Pricing\Helper\Data $pricingHelper * @param \Magento\Framework\Escaper $escaper - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer */ public function __construct( \Magento\Framework\App\Helper\Context $context, \Magento\Catalog\Helper\Product\Configuration $productConfiguration, \Magento\Framework\Pricing\Helper\Data $pricingHelper, \Magento\Framework\Escaper $escaper, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->productConfiguration = $productConfiguration; $this->pricingHelper = $pricingHelper; $this->escaper = $escaper; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); parent::__construct($context); } diff --git a/app/code/Magento/Bundle/Model/Product/Price.php b/app/code/Magento/Bundle/Model/Product/Price.php index 30001fcc429..f5043f1f7ed 100644 --- a/app/code/Magento/Bundle/Model/Product/Price.php +++ b/app/code/Magento/Bundle/Model/Product/Price.php @@ -42,7 +42,7 @@ class Price extends \Magento\Catalog\Model\Product\Type\Price /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -59,7 +59,7 @@ class Price extends \Magento\Catalog\Model\Product\Type\Price * @param \Magento\Catalog\Api\Data\ProductTierPriceInterfaceFactory $tierPriceFactory * @param \Magento\Framework\App\Config\ScopeConfigInterface $config * @param \Magento\Catalog\Helper\Data $catalogData - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -73,11 +73,11 @@ class Price extends \Magento\Catalog\Model\Product\Type\Price \Magento\Catalog\Api\Data\ProductTierPriceInterfaceFactory $tierPriceFactory, \Magento\Framework\App\Config\ScopeConfigInterface $config, \Magento\Catalog\Helper\Data $catalogData, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->_catalogData = $catalogData; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); parent::__construct( $ruleFactory, $storeManager, diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php index 0ac7c502900..10cb3b8a846 100644 --- a/app/code/Magento/Bundle/Model/Product/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Type.php @@ -10,7 +10,7 @@ namespace Magento\Bundle\Model\Product; use Magento\Catalog\Api\ProductRepositoryInterface; use Magento\Framework\Pricing\PriceCurrencyInterface; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; /** * Bundle Type Model @@ -168,7 +168,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType * @param PriceCurrencyInterface $priceCurrency * @param \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry * @param \Magento\CatalogInventory\Api\StockStateInterface $stockState - * @param \Magento\Framework\Serialize\SerializerInterface $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer * * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ @@ -194,7 +194,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\AbstractType PriceCurrencyInterface $priceCurrency, \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry, \Magento\CatalogInventory\Api\StockStateInterface $stockState, - SerializerInterface $serializer = null + Json $serializer = null ) { $this->_catalogProduct = $catalogProduct; $this->_catalogData = $catalogData; diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php index 0f5b5830529..ad6d342b6e5 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php @@ -6,7 +6,7 @@ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; use Magento\Catalog\Model\Product\Type\AbstractType; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; /** * Sales Order Pdf Items renderer @@ -17,7 +17,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra /** * Serializer * - * @var SerializerInterface + * @var Json */ private $serializer; @@ -30,7 +30,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -41,7 +41,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], - SerializerInterface $serializer = null + Json $serializer = null ) { $this->serializer = $serializer; @@ -291,7 +291,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra /** * The getter function to get serializer * - * @return SerializerInterface + * @return Json * * @deprecated */ diff --git a/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php b/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php index cd5754e1ce1..2069b91426f 100644 --- a/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php +++ b/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php @@ -35,7 +35,7 @@ class ConfiguredPrice extends CatalogPrice\FinalPrice implements ConfiguredPrice /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -45,7 +45,7 @@ class ConfiguredPrice extends CatalogPrice\FinalPrice implements ConfiguredPrice * @param BundleCalculatorInterface $calculator * @param \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency * @param ItemInterface $item - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer */ public function __construct( Product $saleableItem, @@ -53,11 +53,11 @@ class ConfiguredPrice extends CatalogPrice\FinalPrice implements ConfiguredPrice BundleCalculatorInterface $calculator, \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency, ItemInterface $item = null, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->item = $item; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); parent::__construct($saleableItem, $quantity, $calculator, $priceCurrency); } diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php index 816dcba4c0c..af02f9d6129 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php @@ -13,7 +13,7 @@ class RendererTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Bundle\Block\Adminhtml\Sales\Order\Items\Renderer $model */ protected $model; - /** @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject $serializer */ + /** @var \Magento\Framework\Serialize\Serializer\Json|\PHPUnit_Framework_MockObject_MockObject $serializer */ protected $serializer; protected function setUp() @@ -25,7 +25,7 @@ class RendererTest extends \PHPUnit_Framework_TestCase '', false ); - $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\Serializer\Json::class); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->model = $objectManager->getObject( \Magento\Bundle\Block\Adminhtml\Sales\Order\Items\Renderer::class, diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php index 8d3ff4bd1ba..a2802f5c39a 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php @@ -13,7 +13,7 @@ class RendererTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Bundle\Block\Adminhtml\Sales\Order\View\Items\Renderer $model */ protected $model; - /** @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject $serializer */ + /** @var \Magento\Framework\Serialize\Serializer\Json|\PHPUnit_Framework_MockObject_MockObject $serializer */ protected $serializer; protected function setUp() @@ -25,7 +25,7 @@ class RendererTest extends \PHPUnit_Framework_TestCase '', false ); - $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\Serializer\Json::class); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->model = $objectManager->getObject( \Magento\Bundle\Block\Adminhtml\Sales\Order\View\Items\Renderer::class, diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php index fc37687625b..1e2c0ed3b5d 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php @@ -13,7 +13,7 @@ class RendererTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Bundle\Block\Sales\Order\Items\Renderer $model */ protected $model; - /** @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject $serializer */ + /** @var \Magento\Framework\Serialize\Serializer\Json|\PHPUnit_Framework_MockObject_MockObject $serializer */ protected $serializer; protected function setUp() @@ -26,7 +26,7 @@ class RendererTest extends \PHPUnit_Framework_TestCase false ); - $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\Serializer\Json::class); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->model = $objectManager->getObject( \Magento\Bundle\Block\Sales\Order\Items\Renderer::class, diff --git a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php index e46a0213b61..656d37c710d 100644 --- a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php @@ -28,7 +28,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase protected $item; /** - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -53,7 +53,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase \Magento\Catalog\Model\Product\Configuration\Item\ItemInterface::class, ['getQty', 'getProduct', 'getOptionByCode', 'getFileDownloadParams'] ); - $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->getMockForAbstractClass(); $this->serializer->expects($this->any()) diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php index 5f0b6ba5cdb..70289f43740 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php @@ -65,7 +65,7 @@ class PriceTest extends \PHPUnit_Framework_TestCase /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -97,7 +97,7 @@ class PriceTest extends \PHPUnit_Framework_TestCase false ); $scopeConfig = $this->getMock(\Magento\Framework\App\Config\ScopeConfigInterface::class); - $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->disableOriginalConstructor() ->getMock(); $this->serializer->expects($this->any()) diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php index 3d39e291434..9038b070f58 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php @@ -13,7 +13,7 @@ class AbstractItemsTest extends \PHPUnit_Framework_TestCase /** @var \Magento\Bundle\Model\Sales\Order\Pdf\Items\Shipment $model */ protected $model; - /** @var \Magento\Framework\Serialize\SerializerInterface $serializer */ + /** @var \Magento\Framework\Serialize\Serializer\Json $serializer */ protected $serializer; protected function setUp() @@ -29,7 +29,7 @@ class AbstractItemsTest extends \PHPUnit_Framework_TestCase $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->model = $objectManager->getObject(\Magento\Bundle\Model\Sales\Order\Pdf\Items\Shipment::class); - $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\Serializer\Json::class); $reflection = new \ReflectionClass(\Magento\Bundle\Model\Sales\Order\Pdf\Items\AbstractItems::class); $reflectionProperty = $reflection->getProperty('serializer'); $reflectionProperty->setAccessible(true); diff --git a/app/code/Magento/Catalog/Helper/Product/Configuration.php b/app/code/Magento/Catalog/Helper/Product/Configuration.php index c8b720d0f5c..c95c25229e3 100644 --- a/app/code/Magento/Catalog/Helper/Product/Configuration.php +++ b/app/code/Magento/Catalog/Helper/Product/Configuration.php @@ -6,7 +6,7 @@ namespace Magento\Catalog\Helper\Product; use Magento\Framework\App\ObjectManager; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; use Magento\Catalog\Helper\Product\Configuration\ConfigurationInterface; use Magento\Framework\App\Helper\AbstractHelper; @@ -39,7 +39,7 @@ class Configuration extends AbstractHelper implements ConfigurationInterface protected $string; /** - * @var SerializerInterface + * @var Json */ private $serializer; @@ -48,14 +48,14 @@ class Configuration extends AbstractHelper implements ConfigurationInterface * @param \Magento\Catalog\Model\Product\OptionFactory $productOptionFactory * @param \Magento\Framework\Filter\FilterManager $filter * @param \Magento\Framework\Stdlib\StringUtils $string - * @param SerializerInterface $serializer + * @param Json $serializer */ public function __construct( \Magento\Framework\App\Helper\Context $context, \Magento\Catalog\Model\Product\OptionFactory $productOptionFactory, \Magento\Framework\Filter\FilterManager $filter, \Magento\Framework\Stdlib\StringUtils $string, - SerializerInterface $serializer = null + Json $serializer = null ) { $this->_productOptionFactory = $productOptionFactory; $this->filter = $filter; diff --git a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php index 212da848d7d..7fe7147d1d2 100644 --- a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php +++ b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php @@ -31,7 +31,7 @@ class CustomOptionProcessor implements CartItemProcessorInterface /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -40,21 +40,21 @@ class CustomOptionProcessor implements CartItemProcessorInterface * @param ProductOptionFactory $productOptionFactory * @param ProductOptionExtensionFactory $extensionFactory * @param CustomOptionFactory $customOptionFactory - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer */ public function __construct( \Magento\Framework\DataObject\Factory $objectFactory, \Magento\Quote\Model\Quote\ProductOptionFactory $productOptionFactory, \Magento\Quote\Api\Data\ProductOptionExtensionFactory $extensionFactory, \Magento\Catalog\Model\CustomOptions\CustomOptionFactory $customOptionFactory, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->objectFactory = $objectFactory; $this->productOptionFactory = $productOptionFactory; $this->extensionFactory = $extensionFactory; $this->customOptionFactory = $customOptionFactory; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); } /** diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php index b11440daf9e..3d121cbc741 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php @@ -25,7 +25,7 @@ class Date extends \Magento\Catalog\Model\Product\Option\Type\DefaultType /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -34,18 +34,18 @@ class Date extends \Magento\Catalog\Model\Product\Option\Type\DefaultType * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig * @param \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer */ public function __construct( \Magento\Checkout\Model\Session $checkoutSession, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate, array $data = [], - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->_localeDate = $localeDate; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); parent::__construct($checkoutSession, $scopeConfig, $data); } diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File.php index 9dddbdf2e99..4ec15a0c145 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/File.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/File.php @@ -9,7 +9,7 @@ use Magento\Framework\App\Filesystem\DirectoryList; use Magento\Framework\Filesystem; use Magento\Framework\Exception\LocalizedException; use Magento\Catalog\Model\Product\Exception as ProductException; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\App\ObjectManager; /** @@ -73,7 +73,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType protected $validatorFile; /** - * @var SerializerInterface + * @var Json */ private $serializer; @@ -93,7 +93,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType * @param \Magento\Framework\Escaper $escaper * @param array $data * @param Filesystem $filesystem - * @param SerializerInterface|null $serializer + * @param Json|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -107,7 +107,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType \Magento\Framework\Escaper $escaper, array $data = [], Filesystem $filesystem = null, - SerializerInterface $serializer = null + Json $serializer = null ) { $this->_itemOptionFactory = $itemOptionFactory; $this->_urlBuilder = $urlBuilder; diff --git a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php index 07a200f8135..8745903acc4 100644 --- a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php +++ b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php @@ -164,7 +164,7 @@ abstract class AbstractType /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ protected $serializer; @@ -180,7 +180,7 @@ abstract class AbstractType * @param \Magento\Framework\Registry $coreRegistry * @param \Psr\Log\LoggerInterface $logger * @param ProductRepositoryInterface $productRepository - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -193,7 +193,7 @@ abstract class AbstractType \Magento\Framework\Registry $coreRegistry, \Psr\Log\LoggerInterface $logger, ProductRepositoryInterface $productRepository, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->_catalogProductOption = $catalogProductOption; $this->_eavConfig = $eavConfig; @@ -205,7 +205,7 @@ abstract class AbstractType $this->_logger = $logger; $this->productRepository = $productRepository; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); } /** diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php index 9a2e46776c6..66a2b346868 100644 --- a/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php @@ -8,7 +8,7 @@ namespace Magento\Catalog\Test\Unit\Helper\Product; class ConfigurationTest extends \PHPUnit_Framework_TestCase { /** - * @var \Magento\Framework\Serialize\SerializerInterface | \PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Framework\Serialize\Serializer\Json | \PHPUnit_Framework_MockObject_MockObject */ protected $serializer; @@ -23,7 +23,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase $optionFactoryMock = $this->getMock(\Magento\Catalog\Model\Product\OptionFactory::class, [], [], '', false); $filterManagerMock = $this->getMock(\Magento\Framework\Filter\FilterManager::class, [], [], '', false); $stringUtilsMock = $this->getMock(\Magento\Framework\Stdlib\StringUtils::class, [], [], '', false); - $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class, [], [], '', false); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\Serializer\Json::class, [], [], '', false); $this->helper = new \Magento\Catalog\Helper\Product\Configuration( $contextMock, diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php index 7e41275c590..5e8e8bde253 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php @@ -51,7 +51,7 @@ class CustomOptionProcessorTest extends \PHPUnit_Framework_TestCase /** @var CustomOptionProcessor */ protected $processor; - /** @var \Magento\Framework\Serialize\SerializerInterface */ + /** @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; protected function setUp() @@ -93,7 +93,7 @@ class CustomOptionProcessorTest extends \PHPUnit_Framework_TestCase $this->buyRequest = $this->getMockBuilder(\Magento\Framework\DataObject::class) ->disableOriginalConstructor() ->getMock(); - $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->setMethods(['unserialize']) ->getMockForAbstractClass(); diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php index 6ebbc2059db..5584f63a2dd 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php @@ -39,7 +39,7 @@ class FileTest extends \PHPUnit_Framework_TestCase private $filesystemMock; /** - * @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Framework\Serialize\Serializer\Json|\PHPUnit_Framework_MockObject_MockObject */ private $serializer; @@ -69,7 +69,7 @@ class FileTest extends \PHPUnit_Framework_TestCase ->with(DirectoryList::MEDIA, DriverPool::FILE) ->willReturn($this->rootDirectory); - $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->disableOriginalConstructor() ->getMock(); diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php index ded185fb85c..d9ff7a92f08 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php @@ -183,7 +183,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType * @param \Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable $catalogProductTypeConfigurable * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig * @param \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor - * @param \Magento\Framework\Serialize\SerializerInterface $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -206,7 +206,7 @@ class Configurable extends \Magento\Catalog\Model\Product\Type\AbstractType \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor, \Magento\Framework\Cache\FrontendInterface $cache = null, \Magento\Customer\Model\Session $customerSession = null, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->typeConfigurableFactory = $typeConfigurableFactory; $this->_eavAttributeFactory = $eavAttributeFactory; diff --git a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php index 6e9d439ade6..2011a95bd77 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php +++ b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php @@ -7,7 +7,7 @@ namespace Magento\ConfigurableProduct\Model\Quote\Item; use Magento\Quote\Model\Quote\Item\CartItemProcessorInterface; use Magento\Quote\Api\Data\CartItemInterface; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\App\ObjectManager; class CartItemProcessor implements CartItemProcessorInterface @@ -33,7 +33,7 @@ class CartItemProcessor implements CartItemProcessorInterface protected $itemOptionValueFactory; /** - * @var SerializerInterface + * @var Json */ private $serializer; @@ -42,14 +42,14 @@ class CartItemProcessor implements CartItemProcessorInterface * @param \Magento\Quote\Model\Quote\ProductOptionFactory $productOptionFactory * @param \Magento\Quote\Api\Data\ProductOptionExtensionFactory $extensionFactory * @param \Magento\ConfigurableProduct\Model\Quote\Item\ConfigurableItemOptionValueFactory $itemOptionValueFactory - * @param SerializerInterface $serializer + * @param Json $serializer */ public function __construct( \Magento\Framework\DataObject\Factory $objectFactory, \Magento\Quote\Model\Quote\ProductOptionFactory $productOptionFactory, \Magento\Quote\Api\Data\ProductOptionExtensionFactory $extensionFactory, \Magento\ConfigurableProduct\Model\Quote\Item\ConfigurableItemOptionValueFactory $itemOptionValueFactory, - SerializerInterface $serializer = null + Json $serializer = null ) { $this->objectFactory = $objectFactory; $this->productOptionFactory = $productOptionFactory; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php index e1c40ec3fbc..a1a153731d0 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php @@ -169,7 +169,7 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase $this->eavConfig = $this->getMockBuilder(\Magento\Eav\Model\Config::class) ->disableOriginalConstructor() ->getMock(); - $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->disableOriginalConstructor() ->getMock(); diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php index 271787eead2..227c9cc36b3 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php @@ -88,7 +88,7 @@ class CartItemProcessorTest extends \PHPUnit_Framework_TestCase ); $this->serializer = $this->getMock( - \Magento\Framework\Serialize\SerializerInterface::class, + \Magento\Framework\Serialize\Serializer\Json::class, [], [], '', diff --git a/app/code/Magento/Downloadable/Model/Product/Type.php b/app/code/Magento/Downloadable/Model/Product/Type.php index 2b15a5b7d7d..1ab363d5b2b 100644 --- a/app/code/Magento/Downloadable/Model/Product/Type.php +++ b/app/code/Magento/Downloadable/Model/Product/Type.php @@ -85,7 +85,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual * @param \Magento\Downloadable\Model\LinkFactory $linkFactory * @param TypeHandler\TypeHandlerInterface $typeHandler * @param JoinProcessorInterface $extensionAttributesJoinProcessor - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -106,7 +106,7 @@ class Type extends \Magento\Catalog\Model\Product\Type\Virtual \Magento\Downloadable\Model\LinkFactory $linkFactory, \Magento\Downloadable\Model\Product\TypeHandler\TypeHandlerInterface $typeHandler, JoinProcessorInterface $extensionAttributesJoinProcessor, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->_sampleResFactory = $sampleResFactory; $this->_linkResource = $linkResource; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php index ae8a5625024..b93a6a83861 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php @@ -6,7 +6,7 @@ namespace Magento\Downloadable\Test\Unit\Model\Product; use Magento\Downloadable\Model\Product\TypeHandler\TypeHandlerInterface; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; /** * Class TypeTest @@ -32,7 +32,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase private $product; /** - * @var \Magento\Framework\Serialize\SerializerInterface|\PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Framework\Serialize\Serializer\Json|\PHPUnit_Framework_MockObject_MockObject */ private $serializerMock; @@ -98,7 +98,7 @@ class TypeTest extends \PHPUnit_Framework_TestCase $resourceProductMock->expects($this->any())->method('getEntityType')->will($this->returnValue($entityTypeMock)); $this->serializerMock = $this->getMock( - SerializerInterface::class, + Json::class, [], ['serialize', 'unserialize'], '', diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php index af277548a72..08dd1553d99 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php @@ -95,7 +95,7 @@ class Grouped extends \Magento\Catalog\Model\Product\Type\AbstractType * @param \Magento\Catalog\Model\Product\Attribute\Source\Status $catalogProductStatus * @param \Magento\Framework\App\State $appState * @param \Magento\Msrp\Helper\Data $msrpData - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -113,7 +113,7 @@ class Grouped extends \Magento\Catalog\Model\Product\Type\AbstractType \Magento\Catalog\Model\Product\Attribute\Source\Status $catalogProductStatus, \Magento\Framework\App\State $appState, \Magento\Msrp\Helper\Data $msrpData, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->productLinks = $catalogProductLink; $this->_storeManager = $storeManager; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php index b02cd7d2e38..42afe71e16c 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php @@ -38,7 +38,7 @@ class GroupedTest extends \PHPUnit_Framework_TestCase protected $objectHelper; /** - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -72,7 +72,7 @@ class GroupedTest extends \PHPUnit_Framework_TestCase '', false ); - $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->setMethods(['serialize']) ->getMockForAbstractClass(); diff --git a/app/code/Magento/Quote/Model/Quote/Address.php b/app/code/Magento/Quote/Model/Quote/Address.php index f4a350d39eb..0420ead0895 100644 --- a/app/code/Magento/Quote/Model/Quote/Address.php +++ b/app/code/Magento/Quote/Model/Quote/Address.php @@ -8,7 +8,7 @@ namespace Magento\Quote\Model\Quote; use Magento\Customer\Api\AddressMetadataInterface; use Magento\Customer\Api\Data\AddressInterfaceFactory; use Magento\Customer\Api\Data\RegionInterfaceFactory; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\App\ObjectManager; /** @@ -235,7 +235,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements protected $totalsReader; /** - * @var SerializerInterface + * @var Json */ private $serializer; @@ -272,7 +272,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements * @param \Magento\Framework\Model\ResourceModel\AbstractResource|null $resource * @param \Magento\Framework\Data\Collection\AbstractDb|null $resourceCollection * @param array $data - * @param SerializerInterface $serializer + * @param Json $serializer * * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ @@ -309,7 +309,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], - SerializerInterface $serializer = null + Json $serializer = null ) { $this->_scopeConfig = $scopeConfig; $this->_addressItemFactory = $addressItemFactory; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total.php b/app/code/Magento/Quote/Model/Quote/Address/Total.php index be319ef205d..499147b9bf7 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total.php @@ -20,20 +20,20 @@ class Total extends \Magento\Framework\DataObject /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; /** * @param array $data [optional] - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer */ public function __construct( array $data = [], - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); parent::__construct($data); } diff --git a/app/code/Magento/Quote/Model/Quote/Item.php b/app/code/Magento/Quote/Model/Quote/Item.php index 1e6a6e1e5ac..a8aa2b2dc27 100644 --- a/app/code/Magento/Quote/Model/Quote/Item.php +++ b/app/code/Magento/Quote/Model/Quote/Item.php @@ -178,7 +178,7 @@ class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Mage /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -198,7 +198,7 @@ class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Mage * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data * - * @param \Magento\Framework\Serialize\SerializerInterface $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -216,7 +216,7 @@ class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Mage \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->_errorInfos = $statusListFactory->create(); $this->_localeFormat = $localeFormat; @@ -224,7 +224,7 @@ class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Mage $this->quoteItemCompare = $quoteItemCompare; $this->stockRegistry = $stockRegistry; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); parent::__construct( $context, $registry, diff --git a/app/code/Magento/Quote/Model/Quote/Item/Compare.php b/app/code/Magento/Quote/Model/Quote/Item/Compare.php index 0de26b8a6f4..ca788f0985c 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Compare.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Compare.php @@ -15,17 +15,17 @@ class Compare /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; /** - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer */ - public function __construct(\Magento\Framework\Serialize\SerializerInterface $serializer = null) + public function __construct(\Magento\Framework\Serialize\Serializer\Json $serializer = null) { $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); } /** diff --git a/app/code/Magento/Quote/Model/Quote/Item/Updater.php b/app/code/Magento/Quote/Model/Quote/Item/Updater.php index a159f085725..1ea7676cca4 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Updater.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Updater.php @@ -35,7 +35,7 @@ class Updater /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -43,19 +43,19 @@ class Updater * @param ProductFactory $productFactory * @param FormatInterface $localeFormat * @param ObjectFactory $objectFactory - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer */ public function __construct( ProductFactory $productFactory, FormatInterface $localeFormat, ObjectFactory $objectFactory, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->productFactory = $productFactory; $this->localeFormat = $localeFormat; $this->objectFactory = $objectFactory; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); } /** diff --git a/app/code/Magento/Quote/Model/Quote/Payment.php b/app/code/Magento/Quote/Model/Quote/Payment.php index b71b87464d3..03acf1d6500 100644 --- a/app/code/Magento/Quote/Model/Quote/Payment.php +++ b/app/code/Magento/Quote/Model/Quote/Payment.php @@ -68,7 +68,7 @@ class Payment extends \Magento\Payment\Model\Info implements PaymentInterface /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -84,7 +84,7 @@ class Payment extends \Magento\Payment\Model\Info implements PaymentInterface * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data * @param array $additionalChecks - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -99,12 +99,12 @@ class Payment extends \Magento\Payment\Model\Info implements PaymentInterface \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], array $additionalChecks = [], - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->methodSpecificationFactory = $methodSpecificationFactory; $this->additionalChecks = $additionalChecks; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); parent::__construct( $context, $registry, diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php index 9bade22caf8..b29fbe69881 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php @@ -15,7 +15,7 @@ class TotalTest extends \PHPUnit_Framework_TestCase protected function setUp() { - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $serializer->expects($this->any()) diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php index 817be7eb9c0..507b2b00203 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php @@ -33,7 +33,7 @@ class AddressTest extends \PHPUnit_Framework_TestCase private $scopeConfig; /** - * @var \Magento\Framework\Serialize\SerializerInterface | \PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Framework\Serialize\Serializer\Json | \PHPUnit_Framework_MockObject_MockObject */ protected $serializer; @@ -42,7 +42,7 @@ class AddressTest extends \PHPUnit_Framework_TestCase $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->scopeConfig = $this->getMock(\Magento\Framework\App\Config::class, [], [], '', false); - $this->serializer = $this->getMock(\Magento\Framework\Serialize\SerializerInterface::class, [], [], '', false); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\Serializer\Json::class, [], [], '', false); $this->address = $objectManager->getObject( \Magento\Quote\Model\Quote\Address::class, diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php index b362aae2638..1811a2e4ce6 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php @@ -59,7 +59,7 @@ class CompareTest extends \PHPUnit_Framework_TestCase '', false ); - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $serializer->expects($this->any()) diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php index 5d95daf1673..ebf857fd0f1 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php @@ -39,7 +39,7 @@ class UpdaterTest extends \PHPUnit_Framework_TestCase protected $productMock; /** - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -99,7 +99,7 @@ class UpdaterTest extends \PHPUnit_Framework_TestCase '', false ); - $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->setMethods(['serialize']) ->getMockForAbstractClass(); @@ -330,7 +330,7 @@ class UpdaterTest extends \PHPUnit_Framework_TestCase ); $buyRequestMock->expects($this->never())->method('setCustomPrice'); $buyRequestMock->expects($this->once())->method('getData')->will($this->returnValue([])); - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->setMethods(['serialize']) ->getMockForAbstractClass(); $serializer->expects($this->any()) diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php index f14ffb10b4a..b012d7db61f 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php @@ -62,7 +62,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase protected $stockRegistry; /** - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -139,7 +139,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase ->method('getStockItem') ->will($this->returnValue($this->stockItemMock)); - $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->setMethods(['unserialize']) ->getMockForAbstractClass(); diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php index 8473f62f883..b710dba828a 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php @@ -41,7 +41,7 @@ class PaymentTest extends \PHPUnit_Framework_TestCase )->disableOriginalConstructor() ->getMock(); $this->eventManager = $this->getMock(ManagerInterface::class); - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $serializer->expects($this->any()) diff --git a/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php b/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php index edee3051f55..951fef40b8e 100644 --- a/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php +++ b/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php @@ -34,7 +34,7 @@ class DownloadCustomOption extends \Magento\Framework\App\Action\Action protected $unserialize; /** - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -43,21 +43,21 @@ class DownloadCustomOption extends \Magento\Framework\App\Action\Action * @param ForwardFactory $resultForwardFactory * @param \Magento\Sales\Model\Download $download * @param \Magento\Framework\Unserialize\Unserialize $unserialize - * @param \Magento\Framework\Serialize\SerializerInterface $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( Context $context, ForwardFactory $resultForwardFactory, \Magento\Sales\Model\Download $download, \Magento\Framework\Unserialize\Unserialize $unserialize, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { parent::__construct($context); $this->resultForwardFactory = $resultForwardFactory; $this->download = $download; $this->unserialize = $unserialize; $this->serializer = $serializer ?: ObjectManager::getInstance()->get( - \Magento\Framework\Serialize\SerializerInterface::class + \Magento\Framework\Serialize\Serializer\Json::class ); } diff --git a/app/code/Magento/Sales/Model/AdminOrder/Create.php b/app/code/Magento/Sales/Model/AdminOrder/Create.php index 027be39e7c6..a64d081ffd1 100644 --- a/app/code/Magento/Sales/Model/AdminOrder/Create.php +++ b/app/code/Magento/Sales/Model/AdminOrder/Create.php @@ -227,7 +227,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -260,7 +260,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ * @param \Magento\Sales\Api\OrderManagementInterface $orderManagement * @param \Magento\Quote\Model\QuoteFactory $quoteFactory * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -292,7 +292,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ \Magento\Sales\Api\OrderManagementInterface $orderManagement, \Magento\Quote\Model\QuoteFactory $quoteFactory, array $data = [], - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->_objectManager = $objectManager; $this->_eventManager = $eventManager; @@ -322,7 +322,7 @@ class Create extends \Magento\Framework\DataObject implements \Magento\Checkout\ $this->orderManagement = $orderManagement; $this->quoteFactory = $quoteFactory; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); parent::__construct($data); } diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php index 37f71d2d9fa..75f100a93e4 100644 --- a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php +++ b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php @@ -29,7 +29,7 @@ class CreditmemoFactory protected $unserialize; /** - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -38,17 +38,17 @@ class CreditmemoFactory * * @param \Magento\Sales\Model\Convert\OrderFactory $convertOrderFactory * @param \Magento\Tax\Model\Config $taxConfig - * @param \Magento\Framework\Serialize\SerializerInterface $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Sales\Model\Convert\OrderFactory $convertOrderFactory, \Magento\Tax\Model\Config $taxConfig, - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->convertor = $convertOrderFactory->create(); $this->taxConfig = $taxConfig; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance()->get( - \Magento\Framework\Serialize\SerializerInterface::class + \Magento\Framework\Serialize\Serializer\Json::class ); } diff --git a/app/code/Magento/Sales/Model/Order/Item.php b/app/code/Magento/Sales/Model/Order/Item.php index 4d2412b97cf..caf3352de0e 100644 --- a/app/code/Magento/Sales/Model/Order/Item.php +++ b/app/code/Magento/Sales/Model/Order/Item.php @@ -98,7 +98,7 @@ class Item extends AbstractModel implements OrderItemInterface /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -115,7 +115,7 @@ class Item extends AbstractModel implements OrderItemInterface * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -129,7 +129,7 @@ class Item extends AbstractModel implements OrderItemInterface \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { parent::__construct( $context, @@ -141,7 +141,7 @@ class Item extends AbstractModel implements OrderItemInterface $data ); $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); $this->_orderFactory = $orderFactory; $this->_storeManager = $storeManager; $this->productRepository = $productRepository; diff --git a/app/code/Magento/Sales/Model/Order/ShipmentFactory.php b/app/code/Magento/Sales/Model/Order/ShipmentFactory.php index 73331b203d9..c08ca3503f5 100644 --- a/app/code/Magento/Sales/Model/Order/ShipmentFactory.php +++ b/app/code/Magento/Sales/Model/Order/ShipmentFactory.php @@ -8,7 +8,7 @@ namespace Magento\Sales\Model\Order; use Magento\Framework\App\ObjectManager; use Magento\Framework\Exception\LocalizedException; use Magento\Sales\Model\Order\Shipment\ShipmentValidatorInterface; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; /** * Factory class for @see \Magento\Sales\Api\Data\ShipmentInterface @@ -39,7 +39,7 @@ class ShipmentFactory /** * Serializer * - * @var SerializerInterface + * @var Json */ private $serializer; @@ -48,12 +48,12 @@ class ShipmentFactory * * @param \Magento\Sales\Model\Convert\OrderFactory $convertOrderFactory * @param \Magento\Sales\Model\Order\Shipment\TrackFactory $trackFactory - * @param \Magento\Framework\Serialize\SerializerInterface $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Sales\Model\Convert\OrderFactory $convertOrderFactory, \Magento\Sales\Model\Order\Shipment\TrackFactory $trackFactory, - SerializerInterface $serializer = null + Json $serializer = null ) { $this->converter = $convertOrderFactory->create(); $this->trackFactory = $trackFactory; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php index 192cefec7d1..fd6b82e3320 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php @@ -6,7 +6,7 @@ namespace Magento\Sales\Test\Unit\Controller\Download; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\Unserialize\Unserialize; /** diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php index 78e0127b9a4..15791fb32ff 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php @@ -6,7 +6,7 @@ namespace Magento\Sales\Test\Unit\Model\Order; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; use Magento\Sales\Model\ResourceModel\OrderFactory; use \Magento\Sales\Model\Order; @@ -33,7 +33,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase protected $orderFactory; /** - * @var SerializerInterface|\PHPUnit_Framework_MockObject_MockObject + * @var Json|\PHPUnit_Framework_MockObject_MockObject */ private $serializerMock; diff --git a/app/code/Magento/Tax/Helper/Data.php b/app/code/Magento/Tax/Helper/Data.php index 5659275fc28..25773fbdc88 100644 --- a/app/code/Magento/Tax/Helper/Data.php +++ b/app/code/Magento/Tax/Helper/Data.php @@ -18,7 +18,7 @@ use Magento\Sales\Model\Order\Invoice; use Magento\Sales\Model\Order\Creditmemo; use Magento\Tax\Api\Data\OrderTaxDetailsItemInterface; use Magento\Sales\Model\EntityInterface; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\App\ObjectManager; /** @@ -97,7 +97,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper protected $priceCurrency; /** - * @var SerializerInterface + * @var Json */ private $serializer; @@ -112,7 +112,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper * @param \Magento\Catalog\Helper\Data $catalogHelper * @param OrderTaxManagementInterface $orderTaxManagement * @param PriceCurrencyInterface $priceCurrency - * @param SerializerInterface $serializer + * @param Json $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -126,7 +126,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper \Magento\Catalog\Helper\Data $catalogHelper, OrderTaxManagementInterface $orderTaxManagement, PriceCurrencyInterface $priceCurrency, - SerializerInterface $serializer = null + Json $serializer = null ) { parent::__construct($context); $this->priceCurrency = $priceCurrency; diff --git a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php index 96c3b3ec00d..0e94b9ebb71 100644 --- a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php +++ b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php @@ -6,7 +6,7 @@ namespace Magento\Tax\Model\Quote; use Magento\Quote\Api\Data\TotalSegmentExtensionFactory; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\App\ObjectManager; class GrandTotalDetailsPlugin @@ -37,7 +37,7 @@ class GrandTotalDetailsPlugin protected $code; /** - * @var SerializerInterface + * @var Json */ private $serializer; @@ -46,14 +46,14 @@ class GrandTotalDetailsPlugin * @param \Magento\Tax\Api\Data\GrandTotalRatesInterfaceFactory $ratesFactory * @param TotalSegmentExtensionFactory $totalSegmentExtensionFactory * @param \Magento\Tax\Model\Config $taxConfig - * @param SerializerInterface $serializer + * @param Json $serializer */ public function __construct( \Magento\Tax\Api\Data\GrandTotalDetailsInterfaceFactory $detailsFactory, \Magento\Tax\Api\Data\GrandTotalRatesInterfaceFactory $ratesFactory, TotalSegmentExtensionFactory $totalSegmentExtensionFactory, \Magento\Tax\Model\Config $taxConfig, - SerializerInterface $serializer = null + Json $serializer = null ) { $this->detailsFactory = $detailsFactory; $this->ratesFactory = $ratesFactory; diff --git a/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php b/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php index f8999419dcc..cccc058a65d 100755 --- a/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php +++ b/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php @@ -11,7 +11,7 @@ use Magento\Quote\Model\Quote\Address; use Magento\Tax\Api\Data\TaxClassKeyInterface; use Magento\Tax\Model\Calculation; use Magento\Quote\Api\Data\ShippingAssignmentInterface; -use Magento\Framework\Serialize\SerializerInterface; +use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\App\ObjectManager; /** @@ -49,7 +49,7 @@ class Tax extends CommonTaxCollector protected $_discountTaxCompensationes = []; /** - * @var SerializerInterface + * @var Json */ private $serializer; @@ -64,7 +64,7 @@ class Tax extends CommonTaxCollector * @param CustomerAddressFactory $customerAddressFactory * @param CustomerAddressRegionFactory $customerAddressRegionFactory * @param \Magento\Tax\Helper\Data $taxData - * @param SerializerInterface $serializer + * @param Json $serializer */ public function __construct( \Magento\Tax\Model\Config $taxConfig, @@ -75,7 +75,7 @@ class Tax extends CommonTaxCollector CustomerAddressFactory $customerAddressFactory, CustomerAddressRegionFactory $customerAddressRegionFactory, \Magento\Tax\Helper\Data $taxData, - SerializerInterface $serializer = null + Json $serializer = null ) { $this->setCode('tax'); $this->_taxData = $taxData; diff --git a/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php b/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php index a5536960f5d..7a292fdaedb 100644 --- a/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php @@ -47,7 +47,7 @@ class DataTest extends \PHPUnit_Framework_TestCase $this->taxConfigMock = $this->getMockBuilder(\Magento\Tax\Model\Config::class) ->disableOriginalConstructor() ->getMock(); - $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $this->serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->disableOriginalConstructor() ->getMock(); $this->serializer->expects($this->any()) diff --git a/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php b/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php index 21a2209390d..1b2e269e7ad 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php @@ -75,7 +75,7 @@ class GrandTotalDetailsPluginTest extends \PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->disableOriginalConstructor() ->getMock(); diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php index 2f5850f3361..749ee1424d5 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php @@ -614,7 +614,7 @@ class TaxTest extends \PHPUnit_Framework_TestCase $objectManager = new ObjectManager($this); - $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\SerializerInterface::class) + $serializer = $this->getMockBuilder(\Magento\Framework\Serialize\Serializer\Json::class) ->disableOriginalConstructor() ->getMock(); diff --git a/app/code/Magento/Wishlist/Model/Item.php b/app/code/Magento/Wishlist/Model/Item.php index 954ce98b4ab..2db7ff7ac20 100644 --- a/app/code/Magento/Wishlist/Model/Item.php +++ b/app/code/Magento/Wishlist/Model/Item.php @@ -123,7 +123,7 @@ class Item extends AbstractModel implements ItemInterface /** * Serializer interface instance. * - * @var \Magento\Framework\Serialize\SerializerInterface + * @var \Magento\Framework\Serialize\Serializer\Json */ private $serializer; @@ -140,7 +140,7 @@ class Item extends AbstractModel implements ItemInterface * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data - * @param \Magento\Framework\Serialize\SerializerInterface|null $serializer + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( @@ -156,7 +156,7 @@ class Item extends AbstractModel implements ItemInterface \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], - \Magento\Framework\Serialize\SerializerInterface $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->productTypeConfig = $productTypeConfig; $this->_storeManager = $storeManager; @@ -165,7 +165,7 @@ class Item extends AbstractModel implements ItemInterface $this->_wishlistOptFactory = $wishlistOptFactory; $this->_wishlOptionCollectionFactory = $wishlOptionCollectionFactory; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(\Magento\Framework\Serialize\SerializerInterface::class); + ->get(\Magento\Framework\Serialize\Serializer\Json::class); parent::__construct($context, $registry, $resource, $resourceCollection, $data); $this->productRepository = $productRepository; } diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php index 8f881867530..17c29a4e82a 100644 --- a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php +++ b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php @@ -36,7 +36,7 @@ class AbstractTypeTest extends \PHPUnit_Framework_TestCase $registry = $this->getMock(\Magento\Framework\Registry::class, [], [], '', false); $logger = $this->getMock(\Psr\Log\LoggerInterface::class, [], [], '', false); $serializer = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( - \Magento\Framework\Serialize\SerializerInterface::class + \Magento\Framework\Serialize\Serializer\Json::class ); $this->_model = $this->getMockForAbstractClass( \Magento\Catalog\Model\Product\Type\AbstractType::class, diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved.php index e480f982bd6..f1759a9eb0c 100644 --- a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved.php +++ b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved.php @@ -6,8 +6,8 @@ require 'quote_with_address.php'; -/** @var \Magento\Framework\Serialize\SerializerInterface $serializer */ -$serializer = $objectManager->create(\Magento\Framework\Serialize\SerializerInterface::class); +/** @var \Magento\Framework\Serialize\Serializer\Json $serializer */ +$serializer = $objectManager->create(\Magento\Framework\Serialize\Serializer\Json::class); $quote->setReservedOrderId( 'test_order_1_with_payment' diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php index 7058188a3ef..69179686d3e 100644 --- a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php +++ b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php @@ -293,8 +293,8 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase */ public function testGetSelectedAttributesInfo() { - /** @var $serializer \Magento\Framework\Serialize\SerializerInterface */ - $serializer = Bootstrap::getObjectManager()->create(\Magento\Framework\Serialize\SerializerInterface::class); + /** @var $serializer \Magento\Framework\Serialize\Serializer\Json */ + $serializer = Bootstrap::getObjectManager()->create(\Magento\Framework\Serialize\Serializer\Json::class); $product = $this->productRepository->getById(1, true); $attributes = $this->model->getConfigurableAttributesAsArray($product); @@ -317,8 +317,8 @@ class ConfigurableTest extends \PHPUnit_Framework_TestCase */ public function testGetSelectedAttributesInfoForStore() { - /** @var $serializer \Magento\Framework\Serialize\SerializerInterface */ - $serializer = Bootstrap::getObjectManager()->create(\Magento\Framework\Serialize\SerializerInterface::class); + /** @var $serializer \Magento\Framework\Serialize\Serializer\Json */ + $serializer = Bootstrap::getObjectManager()->create(\Magento\Framework\Serialize\Serializer\Json::class); $attributes = $this->model->getConfigurableAttributesAsArray($this->product); diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php index 3e801ef5e05..ea76d4eebe1 100644 --- a/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php +++ b/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php @@ -61,8 +61,8 @@ class CreateTest extends \PHPUnit_Framework_TestCase */ public function testInitFromOrderAndCreateOrderFromQuoteWithAdditionalOptions() { - /** @var $serializer \Magento\Framework\Serialize\SerializerInterface */ - $serializer = Bootstrap::getObjectManager()->create(\Magento\Framework\Serialize\SerializerInterface::class); + /** @var $serializer \Magento\Framework\Serialize\Serializer\Json */ + $serializer = Bootstrap::getObjectManager()->create(\Magento\Framework\Serialize\Serializer\Json::class); /** @var $order \Magento\Sales\Model\Order */ $order = Bootstrap::getObjectManager()->create(\Magento\Sales\Model\Order::class); -- GitLab From cf9812580dcb5deed3114599b55e2fb82b0d71d3 Mon Sep 17 00:00:00 2001 From: Mykola Palamar <mpalamar@magento.com> Date: Fri, 23 Dec 2016 20:05:25 +0200 Subject: [PATCH 130/175] MAGETWO-62650: Replace SerializerIntreface with Json implementation --- .../Test/Unit/Controller/Download/DownloadCustomOptionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php index fd6b82e3320..b7ceaf727ed 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php @@ -92,7 +92,7 @@ class DownloadCustomOptionTest extends \PHPUnit_Framework_TestCase ->setMethods(['downloadFile']) ->getMock(); - $this->serializerMock = $this->getMockBuilder(SerializerInterface::class) + $this->serializerMock = $this->getMockBuilder(Json::class) ->disableOriginalConstructor() ->setMethods(['serialize', 'unserialize']) ->getMock(); -- GitLab From 760ceeb7042db53236898c7b03648427bb7cf5ee Mon Sep 17 00:00:00 2001 From: Mykola Palamar <mpalamar@magento.com> Date: Fri, 23 Dec 2016 20:21:57 +0200 Subject: [PATCH 131/175] MAGETWO-62650: Replace SerializerIntreface with Json implementation --- .../Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php | 2 +- .../Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php | 2 +- app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php | 2 +- .../Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php | 2 +- app/code/Magento/Catalog/Helper/Product/Configuration.php | 2 +- app/code/Magento/Catalog/Model/Product/Option/Type/File.php | 2 +- .../ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php | 2 +- app/code/Magento/Quote/Model/Quote/Address.php | 2 +- app/code/Magento/Sales/Model/Order/ShipmentFactory.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php | 2 +- app/code/Magento/Tax/Helper/Data.php | 2 +- app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php | 2 +- app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php index 06fb993cc5f..914da1144bc 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php @@ -37,7 +37,7 @@ class Renderer extends \Magento\Sales\Block\Adminhtml\Items\Renderer\DefaultRend Json $serializer = null ) { $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(SerializerInterface::class); + ->get(Json::class); parent::__construct($context, $stockRegistry, $stockConfiguration, $registry, $data); } diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php index 078b3ecfb44..0cb7cc0b45a 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php @@ -41,7 +41,7 @@ class Renderer extends \Magento\Sales\Block\Adminhtml\Order\View\Items\Renderer\ Json $serializer = null ) { $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(SerializerInterface::class); + ->get(Json::class); parent::__construct( $context, diff --git a/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php b/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php index fbf04ecdb93..a8e85e6c5fa 100644 --- a/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php @@ -37,7 +37,7 @@ class Renderer extends \Magento\Sales\Block\Order\Item\Renderer\DefaultRenderer Json $serializer = null ) { $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(SerializerInterface::class); + ->get(Json::class); parent::__construct($context, $string, $productOptionFactory, $data); } diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php index ad6d342b6e5..d1d5e44f077 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php @@ -298,7 +298,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra private function getSerializer() { if ($this->serializer === null) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance()->get(SerializerInterface::class); + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance()->get(Json::class); } return $this->serializer; } diff --git a/app/code/Magento/Catalog/Helper/Product/Configuration.php b/app/code/Magento/Catalog/Helper/Product/Configuration.php index c95c25229e3..2e8290a1ed2 100644 --- a/app/code/Magento/Catalog/Helper/Product/Configuration.php +++ b/app/code/Magento/Catalog/Helper/Product/Configuration.php @@ -60,7 +60,7 @@ class Configuration extends AbstractHelper implements ConfigurationInterface $this->_productOptionFactory = $productOptionFactory; $this->filter = $filter; $this->string = $string; - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); parent::__construct($context); } diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File.php index 4ec15a0c145..865e57f9b71 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/File.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/File.php @@ -117,7 +117,7 @@ class File extends \Magento\Catalog\Model\Product\Option\Type\DefaultType $this->_rootDirectory = $this->filesystem->getDirectoryRead(DirectoryList::MEDIA); $this->validatorInfo = $validatorInfo; $this->validatorFile = $validatorFile; - $this->serializer = $serializer ? $serializer : ObjectManager::getInstance()->get(SerializerInterface::class); + $this->serializer = $serializer ? $serializer : ObjectManager::getInstance()->get(Json::class); parent::__construct($checkoutSession, $scopeConfig, $data); } diff --git a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php index 2011a95bd77..a4ff02482b0 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php +++ b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php @@ -55,7 +55,7 @@ class CartItemProcessor implements CartItemProcessorInterface $this->productOptionFactory = $productOptionFactory; $this->extensionFactory = $extensionFactory; $this->itemOptionValueFactory = $itemOptionValueFactory; - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); } /** diff --git a/app/code/Magento/Quote/Model/Quote/Address.php b/app/code/Magento/Quote/Model/Quote/Address.php index 0420ead0895..b1126549e3b 100644 --- a/app/code/Magento/Quote/Model/Quote/Address.php +++ b/app/code/Magento/Quote/Model/Quote/Address.php @@ -328,7 +328,7 @@ class Address extends \Magento\Customer\Model\Address\AbstractAddress implements $this->attributeList = $attributeList; $this->totalsCollector = $totalsCollector; $this->totalsReader = $totalsReader; - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); parent::__construct( $context, $registry, diff --git a/app/code/Magento/Sales/Model/Order/ShipmentFactory.php b/app/code/Magento/Sales/Model/Order/ShipmentFactory.php index c08ca3503f5..cde0efcb8e0 100644 --- a/app/code/Magento/Sales/Model/Order/ShipmentFactory.php +++ b/app/code/Magento/Sales/Model/Order/ShipmentFactory.php @@ -59,7 +59,7 @@ class ShipmentFactory $this->trackFactory = $trackFactory; $this->instanceName = \Magento\Sales\Api\Data\ShipmentInterface::class; $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance() - ->get(SerializerInterface::class); + ->get(Json::class); } /** diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php index 15791fb32ff..b40fc6c7f59 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php @@ -43,7 +43,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase $this->orderFactory = $this->getMock(\Magento\Sales\Model\OrderFactory::class, ['create'], [], '', false); - $this->serializerMock = $this->getMock(SerializerInterface::class, [], ['unserialize'], '', false); + $this->serializerMock = $this->getMock(Json::class, [], ['unserialize'], '', false); $arguments = [ 'orderFactory' => $this->orderFactory, diff --git a/app/code/Magento/Tax/Helper/Data.php b/app/code/Magento/Tax/Helper/Data.php index 25773fbdc88..3d5179b8f61 100644 --- a/app/code/Magento/Tax/Helper/Data.php +++ b/app/code/Magento/Tax/Helper/Data.php @@ -138,7 +138,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper $this->_localeResolver = $localeResolver; $this->catalogHelper = $catalogHelper; $this->orderTaxManagement = $orderTaxManagement; - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); } /** diff --git a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php index 0e94b9ebb71..5df42af4493 100644 --- a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php +++ b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php @@ -60,7 +60,7 @@ class GrandTotalDetailsPlugin $this->totalSegmentExtensionFactory = $totalSegmentExtensionFactory; $this->taxConfig = $taxConfig; $this->code = 'tax'; - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); } /** diff --git a/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php b/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php index cccc058a65d..819f5a06349 100755 --- a/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php +++ b/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php @@ -79,7 +79,7 @@ class Tax extends CommonTaxCollector ) { $this->setCode('tax'); $this->_taxData = $taxData; - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class); + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); parent::__construct( $taxConfig, $taxCalculationService, -- GitLab From 6d32b91eb99f4530f2ce1b022f8e21dd9c6ea53b Mon Sep 17 00:00:00 2001 From: Venkata Uppalapati <vuppalapati@magento.com> Date: Fri, 23 Dec 2016 14:24:18 -0600 Subject: [PATCH 132/175] MAGETWO-59785: Incorrect URLs in sitemap when generated from admin with 'Use Secure URLs in Admin' = Yes Passing isSecure flag as an argument to the Store->getBaseUrl method to consider "Use Secure Urls on the storefront" (option in admin web configuration page) when building the baseUrl --- app/code/Magento/Sitemap/Model/Sitemap.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/Sitemap/Model/Sitemap.php b/app/code/Magento/Sitemap/Model/Sitemap.php index c999286cff2..769eb30c486 100644 --- a/app/code/Magento/Sitemap/Model/Sitemap.php +++ b/app/code/Magento/Sitemap/Model/Sitemap.php @@ -586,7 +586,8 @@ class Sitemap extends \Magento\Framework\Model\AbstractModel */ protected function _getStoreBaseUrl($type = \Magento\Framework\UrlInterface::URL_TYPE_LINK) { - return rtrim($this->_storeManager->getStore($this->getStoreId())->getBaseUrl($type), '/') . '/'; + $isSecure=$this->_storeManager->getStore($this->getStoreId())->isFrontUrlSecure(); + return rtrim($this->_storeManager->getStore($this->getStoreId())->getBaseUrl($type, $isSecure), '/') . '/'; } /** -- GitLab From 0df87fc6e448ab903c1458d046f788de0bc8b51c Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Fri, 23 Dec 2016 14:30:40 -0600 Subject: [PATCH 133/175] MAGETWO-62610: Data upgrade fails on multi-database setup Refactoring --- .../Setup/ConvertSerializedDataToJson.php | 128 ++++++++++++++++++ app/code/Magento/Quote/Setup/QuoteSetup.php | 37 +++-- app/code/Magento/Quote/Setup/UpgradeData.php | 112 ++------------- .../Setup/ConvertSerializedDataToJson.php | 87 ++++++++++++ app/code/Magento/Sales/Setup/SalesSetup.php | 49 +++++-- app/code/Magento/Sales/Setup/UpgradeData.php | 61 ++------- 6 files changed, 302 insertions(+), 172 deletions(-) create mode 100644 app/code/Magento/Quote/Setup/ConvertSerializedDataToJson.php create mode 100644 app/code/Magento/Sales/Setup/ConvertSerializedDataToJson.php diff --git a/app/code/Magento/Quote/Setup/ConvertSerializedDataToJson.php b/app/code/Magento/Quote/Setup/ConvertSerializedDataToJson.php new file mode 100644 index 00000000000..b95632ab197 --- /dev/null +++ b/app/code/Magento/Quote/Setup/ConvertSerializedDataToJson.php @@ -0,0 +1,128 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Quote\Setup; + +/** + * Convert serialized data in quote tables to JSON + */ +class ConvertSerializedDataToJson +{ + /** + * @var \Magento\Quote\Setup\QuoteSetup + */ + private $quoteSetup; + + /** + * @var \Magento\Framework\DB\FieldDataConverterFactory + */ + private $fieldDataConverterFactory; + + /** + * @var \Magento\Framework\DB\Select\QueryModifierFactory + */ + private $queryModifierFactory; + + /** + * @var \Magento\Framework\DB\Query\Generator + */ + private $queryGenerator; + + /** + * Constructor + * + * @param \Magento\Quote\Setup\QuoteSetup $quoteSetup + * @param \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory + * @param \Magento\Framework\DB\Select\QueryModifierFactory $queryModifierFactory + * @param \Magento\Framework\DB\Query\Generator $queryGenerator + */ + public function __construct( + \Magento\Quote\Setup\QuoteSetup $quoteSetup, + \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory, + \Magento\Framework\DB\Select\QueryModifierFactory $queryModifierFactory, + \Magento\Framework\DB\Query\Generator $queryGenerator + ) { + $this->quoteSetup = $quoteSetup; + $this->fieldDataConverterFactory = $fieldDataConverterFactory; + $this->queryModifierFactory = $queryModifierFactory; + $this->queryGenerator = $queryGenerator; + } + + /** + * Convert data for additional_information field in quote_payment table from serialized + * to JSON format + * + * @return void + * @throws \InvalidArgumentException + */ + public function convert() + { + $fieldDataConverter = $this->fieldDataConverterFactory->create( + \Magento\Framework\DB\DataConverter\SerializedToJson::class + ); + $fieldDataConverter->convert( + $this->quoteSetup->getConnection(), + $this->quoteSetup->getTable('quote_payment'), + 'payment_id', + 'additional_information' + ); + $queryModifier = $this->queryModifierFactory->create( + 'in', + [ + 'values' => [ + 'code' => [ + 'parameters', + 'info_buyRequest', + 'bundle_option_ids', + 'bundle_selection_attributes', + ] + ] + ] + ); + $fieldDataConverter->convert( + $this->quoteSetup->getConnection(), + $this->quoteSetup->getTable('quote_item_option'), + 'option_id', + 'value', + $queryModifier + ); + $select = $this->quoteSetup->getSetup() + ->getConnection() + ->select() + ->from( + $this->quoteSetup->getSetup() + ->getTable('catalog_product_option'), + ['option_id'] + ) + ->where('type = ?', 'file'); + $iterator = $this->queryGenerator->generate('option_id', $select); + foreach ($iterator as $selectByRange) { + $codes = $this->quoteSetup->getSetup() + ->getConnection() + ->fetchCol($selectByRange); + $codes = array_map( + function ($id) { + return 'option_' . $id; + }, + $codes + ); + $queryModifier = $this->queryModifierFactory->create( + 'in', + [ + 'values' => [ + 'code' => $codes + ] + ] + ); + $fieldDataConverter->convert( + $this->quoteSetup->getConnection(), + $this->quoteSetup->getTable('quote_item_option'), + 'option_id', + 'value', + $queryModifier + ); + } + } +} diff --git a/app/code/Magento/Quote/Setup/QuoteSetup.php b/app/code/Magento/Quote/Setup/QuoteSetup.php index 1ef5f4b0dae..9b9aaa78b1e 100644 --- a/app/code/Magento/Quote/Setup/QuoteSetup.php +++ b/app/code/Magento/Quote/Setup/QuoteSetup.php @@ -13,7 +13,8 @@ use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; /** - * Setup Model of Quote Module + * Quote module setup class + * * @SuppressWarnings(PHPMD.CyclomaticComplexity) * @codeCoverageIgnore */ @@ -75,9 +76,9 @@ class QuoteSetup extends EavSetup */ protected function _flatTableExist($table) { - $tablesList = $this->getSetup()->getConnection(self::$connectionName)->listTables(); + $tablesList = $this->getConnection()->listTables(); return in_array( - strtoupper($this->getSetup()->getTable($table, self::$connectionName)), + strtoupper($this->getTable($table)), array_map('strtoupper', $tablesList) ); } @@ -115,15 +116,14 @@ class QuoteSetup extends EavSetup */ protected function _addFlatAttribute($table, $attribute, $attr) { - $tableInfo = $this->getSetup() - ->getConnection(self::$connectionName) - ->describeTable($this->getSetup()->getTable($table, self::$connectionName)); + $tableInfo = $this->getConnection() + ->describeTable($this->getTable($table)); if (isset($tableInfo[$attribute])) { return $this; } $columnDefinition = $this->_getAttributeColumnDefinition($attribute, $attr); - $this->getSetup()->getConnection(self::$connectionName)->addColumn( - $this->getSetup()->getTable($table, self::$connectionName), + $this->getConnection()->addColumn( + $this->getTable($table), $attribute, $columnDefinition ); @@ -195,4 +195,25 @@ class QuoteSetup extends EavSetup { return $this->_encryptor; } + + /** + * Get quote connection + * + * @return \Magento\Framework\DB\Adapter\AdapterInterface + */ + public function getConnection() + { + return $this->getSetup()->getConnection(self::$connectionName); + } + + /** + * Get table name for + * + * @param string $table + * @return string + */ + public function getTable($table) + { + return $this->getSetup()->getTable($table, self::$connectionName); + } } diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php index 9ec643e100e..5b9e3482081 100644 --- a/app/code/Magento/Quote/Setup/UpgradeData.php +++ b/app/code/Magento/Quote/Setup/UpgradeData.php @@ -8,48 +8,31 @@ namespace Magento\Quote\Setup; use Magento\Framework\Setup\UpgradeDataInterface; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; -use Magento\Framework\DB\FieldDataConverterFactory; -use Magento\Framework\DB\DataConverter\SerializedToJson; -use Magento\Framework\DB\Select\QueryModifierFactory; -use Magento\Framework\DB\Query\Generator; class UpgradeData implements UpgradeDataInterface { /** - * Name of the database connection + * @var QuoteSetupFactory */ - const CONNECTION_NAME = 'checkout'; + private $quoteSetupFactory; /** - * @var FieldDataConverterFactory + * @var ConvertSerializedDataToJsonFactory */ - private $fieldDataConverterFactory; - - /** - * @var QueryModifierFactory - */ - private $queryModifierFactory; - - /** - * @var Generator - */ - private $queryGenerator; + private $convertSerializedDataToJsonFactory; /** * Constructor * - * @param FieldDataConverterFactory $fieldDataConverterFactory - * @param QueryModifierFactory $queryModifierFactory - * @param Generator $generator + * @param QuoteSetupFactory $quoteSetupFactory + * @param ConvertSerializedDataToJsonFactory $convertSerializedDataToJsonFactory */ public function __construct( - FieldDataConverterFactory $fieldDataConverterFactory, - QueryModifierFactory $queryModifierFactory, - Generator $queryGenerator + QuoteSetupFactory $quoteSetupFactory, + ConvertSerializedDataToJsonFactory $convertSerializedDataToJsonFactory ) { - $this->fieldDataConverterFactory = $fieldDataConverterFactory; - $this->queryModifierFactory = $queryModifierFactory; - $this->queryGenerator = $queryGenerator; + $this->quoteSetupFactory = $quoteSetupFactory; + $this->convertSerializedDataToJsonFactory = $convertSerializedDataToJsonFactory; } /** @@ -58,78 +41,9 @@ class UpgradeData implements UpgradeDataInterface public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context) { if (version_compare($context->getVersion(), '2.0.4', '<')) { - $this->upgradeToVersionTwoZeroFour($setup); - } - } - - /** - * Upgrade to version 2.0.4, convert data for additional_information field in quote_payment table from serialized - * to JSON format - * - * @param ModuleDataSetupInterface $setup - * @return void - * @throws \InvalidArgumentException - */ - private function upgradeToVersionTwoZeroFour(ModuleDataSetupInterface $setup) - { - $fieldDataConverter = $this->fieldDataConverterFactory->create(SerializedToJson::class); - $fieldDataConverter->convert( - $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('quote_payment', self::CONNECTION_NAME), - 'payment_id', - 'additional_information' - ); - $queryModifier = $this->queryModifierFactory->create( - 'in', - [ - 'values' => [ - 'code' => [ - 'parameters', - 'info_buyRequest', - 'bundle_option_ids', - 'bundle_selection_attributes', - ] - ] - ] - ); - $fieldDataConverter->convert( - $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('quote_item_option', self::CONNECTION_NAME), - 'option_id', - 'value', - $queryModifier - ); - $select = $setup->getConnection() - ->select() - ->from( - $setup->getTable('catalog_product_option'), - ['option_id'] - ) - ->where('type = ?', 'file'); - $iterator = $this->queryGenerator->generate('option_id', $select); - foreach ($iterator as $selectByRange) { - $codes = $setup->getConnection()->fetchCol($selectByRange); - $codes = array_map( - function ($id) { - return 'option_' . $id; - }, - $codes - ); - $queryModifier = $this->queryModifierFactory->create( - 'in', - [ - 'values' => [ - 'code' => $codes - ] - ] - ); - $fieldDataConverter->convert( - $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('quote_item_option', self::CONNECTION_NAME), - 'option_id', - 'value', - $queryModifier - ); + $quoteSetup = $this->quoteSetupFactory->create(['setup' => $setup]); + $this->convertSerializedDataToJsonFactory->create(['quoteSetup' => $quoteSetup]) + ->convert(); } } } diff --git a/app/code/Magento/Sales/Setup/ConvertSerializedDataToJson.php b/app/code/Magento/Sales/Setup/ConvertSerializedDataToJson.php new file mode 100644 index 00000000000..52047d0e59d --- /dev/null +++ b/app/code/Magento/Sales/Setup/ConvertSerializedDataToJson.php @@ -0,0 +1,87 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Sales\Setup; + +use Magento\Framework\DB\FieldDataConverterFactory; +use Magento\Framework\DB\DataConverter\SerializedToJson; + +/** + * Convert serialized data in sales tables to JSON + */ +class ConvertSerializedDataToJson +{ + /** + * @var SalesSetup + */ + private $salesSetup; + + /** + * @var FieldDataConverterFactory + */ + private $fieldDataConverterFactory; + + /** + * @var array + */ + private $fieldsToUpdate = [ + [ + 'table' => 'sales_order_item', + 'identifier' => 'item_id', + 'title' => 'product_options' + ], + [ + 'table' => 'sales_shipment', + 'identifier' => 'entity_id', + 'title' => 'packages' + ], + [ + 'table' => 'sales_order_payment', + 'identifier' => 'entity_id', + 'title' => 'additional_information' + ], + [ + 'table' => 'sales_payment_transaction', + 'identifier' => 'transaction_id', + 'title' => 'additional_information' + ] + ]; + + /** + * Constructor + * + * @param SalesSetup $salesSetup + * @param FieldDataConverterFactory $fieldDataConverterFactory + */ + public function __construct( + SalesSetup $salesSetup, + FieldDataConverterFactory $fieldDataConverterFactory + ) { + $this->salesSetup = $salesSetup; + $this->fieldDataConverterFactory = $fieldDataConverterFactory; + } + + /** + * Convert data for the following fields from serialized to JSON format: + * sales_order_item.product_options + * sales_shipment.packages + * sales_order_payment.additional_information + * sales_payment_transaction.additional_information + * + * @return void + */ + public function convert() + { + $fieldDataConverter = $this->fieldDataConverterFactory->create(SerializedToJson::class); + foreach ($this->fieldsToUpdate as $field) { + $fieldDataConverter->convert( + $this->salesSetup->getConnection(), + $this->salesSetup->getTable($field['table']), + $field['identifier'], + $field['title'] + ); + } + } +} diff --git a/app/code/Magento/Sales/Setup/SalesSetup.php b/app/code/Magento/Sales/Setup/SalesSetup.php index 3a2c999678a..b8e73f32cf8 100644 --- a/app/code/Magento/Sales/Setup/SalesSetup.php +++ b/app/code/Magento/Sales/Setup/SalesSetup.php @@ -11,13 +11,15 @@ use Magento\Framework\App\CacheInterface; use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\Encryption\EncryptorInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; +use Magento\Eav\Setup\EavSetup; /** - * Setup Model of Sales Module - * @codeCoverageIgnore + * Sales module setup class + * * @SuppressWarnings(PHPMD.CouplingBetweenObjects) + * @codeCoverageIgnore */ -class SalesSetup extends \Magento\Eav\Setup\EavSetup +class SalesSetup extends EavSetup { /** * This should be set explicitly @@ -55,6 +57,8 @@ class SalesSetup extends \Magento\Eav\Setup\EavSetup private static $connectionName = 'sales'; /** + * Constructor + * * @param ModuleDataSetupInterface $setup * @param Context $context * @param CacheInterface $cache @@ -111,9 +115,10 @@ class SalesSetup extends \Magento\Eav\Setup\EavSetup */ protected function _flatTableExist($table) { - $tablesList = $this->getSetup()->getConnection(self::$connectionName)->listTables(); + $tablesList = $this->getConnection() + ->listTables(); return in_array( - strtoupper($this->getSetup()->getTable($table, self::$connectionName)), + strtoupper($this->getTable($table)), array_map('strtoupper', $tablesList) ); } @@ -152,15 +157,14 @@ class SalesSetup extends \Magento\Eav\Setup\EavSetup */ protected function _addFlatAttribute($table, $attribute, $attr) { - $tableInfo = $this->getSetup() - ->getConnection(self::$connectionName) - ->describeTable($this->getSetup()->getTable($table, self::$connectionName)); + $tableInfo = $this->getConnection() + ->describeTable($this->getTable($table)); if (isset($tableInfo[$attribute])) { return $this; } $columnDefinition = $this->_getAttributeColumnDefinition($attribute, $attr); - $this->getSetup()->getConnection(self::$connectionName)->addColumn( - $this->getSetup()->getTable($table, self::$connectionName), + $this->getConnection()->addColumn( + $this->getTable($table), $attribute, $columnDefinition ); @@ -180,8 +184,8 @@ class SalesSetup extends \Magento\Eav\Setup\EavSetup { if (in_array($entityTypeId, $this->_flatEntitiesGrid) && !empty($attr['grid'])) { $columnDefinition = $this->_getAttributeColumnDefinition($attribute, $attr); - $this->getSetup()->getConnection(self::$connectionName)->addColumn( - $this->getSetup()->getTable($table . '_grid', self::$connectionName), + $this->getConnection()->addColumn( + $this->getTable($table . '_grid'), $attribute, $columnDefinition ); @@ -297,4 +301,25 @@ class SalesSetup extends \Magento\Eav\Setup\EavSetup { return $this->encryptor; } + + /** + * Get quote connection + * + * @return \Magento\Framework\DB\Adapter\AdapterInterface + */ + public function getConnection() + { + return $this->getSetup()->getConnection(self::$connectionName); + } + + /** + * Get table name + * + * @param string $table + * @return string + */ + public function getTable($table) + { + return $this->getSetup()->getTable($table, self::$connectionName); + } } diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 375c8236973..634f330a883 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -7,11 +7,6 @@ namespace Magento\Sales\Setup; class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface { - /** - * Name of the database connection - */ - const CONNECTION_NAME = 'sales'; - /** * Sales setup factory * @@ -25,25 +20,25 @@ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface private $eavConfig; /** - * @var \Magento\Framework\DB\FieldDataConverterFactory + * @var \Magento\Sales\Setup\ConvertSerializedDataToJsonFactory */ - private $fieldDataConverterFactory; + private $convertSerializedDataToJsonFactory; /** * Constructor * * @param \Magento\Sales\Setup\SalesSetupFactory $salesSetupFactory + * @param \Magento\Sales\Setup\ConvertSerializedDataToJsonFactory $convertSerializedDataToJsonFactory * @param \Magento\Eav\Model\Config $eavConfig - * @param \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory */ public function __construct( \Magento\Sales\Setup\SalesSetupFactory $salesSetupFactory, - \Magento\Eav\Model\Config $eavConfig, - \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory + \Magento\Sales\Setup\ConvertSerializedDataToJsonFactory $convertSerializedDataToJsonFactory, + \Magento\Eav\Model\Config $eavConfig ) { $this->salesSetupFactory = $salesSetupFactory; + $this->convertSerializedDataToJsonFactory = $convertSerializedDataToJsonFactory; $this->eavConfig = $eavConfig; - $this->fieldDataConverterFactory = $fieldDataConverterFactory; } /** @@ -58,7 +53,8 @@ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface $this->upgradeToTwoZeroOne($salesSetup); } if (version_compare($context->getVersion(), '2.0.5', '<')) { - $this->upgradeToVersionTwoZeroFive($setup); + $this->convertSerializedDataToJsonFactory->create(['salesSetup' => $salesSetup]) + ->convert(); } $this->eavConfig->clear(); } @@ -112,45 +108,4 @@ class UpgradeData implements \Magento\Framework\Setup\UpgradeDataInterface \Magento\Eav\Model\Entity\Increment\NumericValue::class ); } - - /** - * Upgrade to version 2.0.5, convert data for the following fields from serialized to JSON format: - * sales_order_item.product_options - * sales_shipment.packages - * sales_order_payment.additional_information - * sales_payment_transaction.additional_information - * - * @param \Magento\Framework\Setup\ModuleDataSetupInterface $setup - * @return void - */ - private function upgradeToVersionTwoZeroFive(\Magento\Framework\Setup\ModuleDataSetupInterface $setup) - { - $fieldDataConverter = $this->fieldDataConverterFactory->create( - \Magento\Framework\DB\DataConverter\SerializedToJson::class - ); - $fieldDataConverter->convert( - $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('sales_order_item', self::CONNECTION_NAME), - 'item_id', - 'product_options' - ); - $fieldDataConverter->convert( - $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('sales_shipment', self::CONNECTION_NAME), - 'entity_id', - 'packages' - ); - $fieldDataConverter->convert( - $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('sales_order_payment', self::CONNECTION_NAME), - 'entity_id', - 'additional_information' - ); - $fieldDataConverter->convert( - $setup->getConnection(self::CONNECTION_NAME), - $setup->getTable('sales_payment_transaction', self::CONNECTION_NAME), - 'transaction_id', - 'additional_information' - ); - } } -- GitLab From b2800d5adef2016729325801a459373f327973b3 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Fri, 23 Dec 2016 14:41:20 -0600 Subject: [PATCH 134/175] MAGETWO-62610: Data upgrade fails on multi-database setup Refactoring --- .../Setup/ConvertSerializedDataToJson.php | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/app/code/Magento/Quote/Setup/ConvertSerializedDataToJson.php b/app/code/Magento/Quote/Setup/ConvertSerializedDataToJson.php index b95632ab197..6e8183b5769 100644 --- a/app/code/Magento/Quote/Setup/ConvertSerializedDataToJson.php +++ b/app/code/Magento/Quote/Setup/ConvertSerializedDataToJson.php @@ -5,44 +5,48 @@ */ namespace Magento\Quote\Setup; +use Magento\Framework\DB\FieldDataConverterFactory; +use Magento\Framework\DB\Select\QueryModifierFactory; +use Magento\Framework\DB\Query\Generator; + /** * Convert serialized data in quote tables to JSON */ class ConvertSerializedDataToJson { /** - * @var \Magento\Quote\Setup\QuoteSetup + * @var QuoteSetup */ private $quoteSetup; /** - * @var \Magento\Framework\DB\FieldDataConverterFactory + * @var FieldDataConverterFactory */ private $fieldDataConverterFactory; /** - * @var \Magento\Framework\DB\Select\QueryModifierFactory + * @var QueryModifierFactory */ private $queryModifierFactory; /** - * @var \Magento\Framework\DB\Query\Generator + * @var Generator */ private $queryGenerator; /** * Constructor * - * @param \Magento\Quote\Setup\QuoteSetup $quoteSetup - * @param \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory - * @param \Magento\Framework\DB\Select\QueryModifierFactory $queryModifierFactory - * @param \Magento\Framework\DB\Query\Generator $queryGenerator + * @param QuoteSetup $quoteSetup + * @param FieldDataConverterFactory $fieldDataConverterFactory + * @param QueryModifierFactory $queryModifierFactory + * @param Generator $queryGenerator */ public function __construct( - \Magento\Quote\Setup\QuoteSetup $quoteSetup, - \Magento\Framework\DB\FieldDataConverterFactory $fieldDataConverterFactory, - \Magento\Framework\DB\Select\QueryModifierFactory $queryModifierFactory, - \Magento\Framework\DB\Query\Generator $queryGenerator + QuoteSetup $quoteSetup, + FieldDataConverterFactory $fieldDataConverterFactory, + QueryModifierFactory $queryModifierFactory, + Generator $queryGenerator ) { $this->quoteSetup = $quoteSetup; $this->fieldDataConverterFactory = $fieldDataConverterFactory; -- GitLab From 5bcfe0d9a08aa1f488bdec9614f9fef515603752 Mon Sep 17 00:00:00 2001 From: Venkata Uppalapati <vuppalapati@magento.com> Date: Fri, 23 Dec 2016 15:11:24 -0600 Subject: [PATCH 135/175] MAGETWO-59785: Incorrect URLs in sitemap when generated from admin with 'Use Secure URLs in Admin' = Yes Static fix. --- app/code/Magento/Sitemap/Model/Sitemap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Sitemap/Model/Sitemap.php b/app/code/Magento/Sitemap/Model/Sitemap.php index 769eb30c486..a26cbcc58bd 100644 --- a/app/code/Magento/Sitemap/Model/Sitemap.php +++ b/app/code/Magento/Sitemap/Model/Sitemap.php @@ -586,7 +586,7 @@ class Sitemap extends \Magento\Framework\Model\AbstractModel */ protected function _getStoreBaseUrl($type = \Magento\Framework\UrlInterface::URL_TYPE_LINK) { - $isSecure=$this->_storeManager->getStore($this->getStoreId())->isFrontUrlSecure(); + $isSecure = $this->_storeManager->getStore($this->getStoreId())->isFrontUrlSecure(); return rtrim($this->_storeManager->getStore($this->getStoreId())->getBaseUrl($type, $isSecure), '/') . '/'; } -- GitLab From d2efda39935a3f9777520b2757254e202ee5c872 Mon Sep 17 00:00:00 2001 From: Joan He <johe@magento.com> Date: Fri, 23 Dec 2016 16:44:53 -0600 Subject: [PATCH 136/175] MAGETWO-62253: Refactor code to remove unserialize - address code review comments --- app/code/Magento/Backend/Model/Menu.php | 14 +- .../Unit/Model/Menu/Filter/IteratorTest.php | 4 +- .../Backend/Test/Unit/Model/Menu/ItemTest.php | 132 +++++++++++++++--- .../Backend/Test/Unit/Model/MenuTest.php | 8 -- .../Magento/Backend/Model/MenuTest.php | 43 +++--- 5 files changed, 137 insertions(+), 64 deletions(-) diff --git a/app/code/Magento/Backend/Model/Menu.php b/app/code/Magento/Backend/Model/Menu.php index 953e540b2cf..15432dd71ed 100644 --- a/app/code/Magento/Backend/Model/Menu.php +++ b/app/code/Magento/Backend/Model/Menu.php @@ -39,10 +39,12 @@ class Menu extends \ArrayObject private $serializer; /** + * Menu constructor + * * @param LoggerInterface $logger * @param string $pathInMenuStructure - * @param Factory $menuItemFactory - * @param SerializerInterface $serializer + * @param Factory|null $menuItemFactory + * @param SerializerInterface|null $serializer */ public function __construct( LoggerInterface $logger, @@ -258,17 +260,13 @@ class Menu extends \ArrayObject } /** - * Hack to unset logger instance which cannot be serialized + * Serialize menu * * @return string */ public function serialize() { - $logger = $this->_logger; - unset($this->_logger); - $result = $this->serializer->serialize($this->toArray()); - $this->_logger = $logger; - return $result; + return $this->serializer->serialize($this->toArray()); } /** diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php index fa5573a2613..06dee1f01fd 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php @@ -12,12 +12,12 @@ class IteratorTest extends \PHPUnit_Framework_TestCase /** * @var \Magento\Backend\Model\Menu */ - protected $menuModel; + private $menuModel; /** * @var \Magento\Backend\Model\Menu\Item[] */ - protected $items = []; + private $items = []; protected function setUp() { diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php index 4cd491b9b34..f8b26ce7aae 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php @@ -226,7 +226,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase * @param array $expected * @dataProvider toArrayDataProvider */ - public function testToArray($data, $expected) + public function testToArray(array $data, array $expected) { $menuMock = $this->getMock(\Magento\Backend\Model\Menu::class, [], [], '', false); $this->_menuFactoryMock->method('create')->will($this->returnValue($menuMock)); @@ -251,8 +251,16 @@ class ItemTest extends \PHPUnit_Framework_TestCase public function toArrayDataProvider() { return [ - [ - $this->_params, + 'No submenu' => [ + [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], [ 'parent_id' => null, 'module_name' => 'Magento_Backend', @@ -268,7 +276,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'sub_menu' => null ] ], - [ + 'with submenu' => [ [ 'parent_id' => '1', 'module_name' => 'Magento_Module1', @@ -281,7 +289,15 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'depends_on_module' => null, 'tooltip' => null, 'title' => null, - 'sub_menu' => $this->_params, + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], ], [ 'parent_id' => '1', @@ -295,15 +311,31 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'depends_on_module' => null, 'tooltip' => '', 'title' => null, - 'sub_menu' => $this->_params + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ] ] ], - [ + 'small set of data' => [ [ 'parent_id' => '1', 'module_name' => 'Magento_Module1', 'sort_index' => '50', - 'sub_menu' => $this->_params, + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], ], [ 'parent_id' => '1', @@ -317,7 +349,15 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'depends_on_module' => null, 'tooltip' => '', 'title' => null, - 'sub_menu' => $this->_params + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ] ] ] ]; @@ -326,10 +366,14 @@ class ItemTest extends \PHPUnit_Framework_TestCase /** * @param array $constructorData * @param array $populateFromData + * @param array $expected * @dataProvider populateFromArrayDataProvider */ - public function testPopulateFromArray($constructorData, $populateFromData, $expected) - { + public function testPopulateFromArray( + array $constructorData, + array $populateFromData, + array $expected + ) { $menuMock = $this->getMock(\Magento\Backend\Model\Menu::class, [], [], '', false); $this->_menuFactoryMock->method('create')->will($this->returnValue($menuMock)); $menuMock->method('toArray') @@ -354,9 +398,17 @@ class ItemTest extends \PHPUnit_Framework_TestCase public function populateFromArrayDataProvider() { return [ - [ + 'default data to constructor' => [ [], - $this->_params, + [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], [ 'parent_id' => null, 'module_name' => 'Magento_Backend', @@ -372,8 +424,16 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'sub_menu' => null ], ], - [ - $this->_params, + 'data without submenu to constructor' => [ + [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], [ 'parent_id' => '1', 'module_name' => 'Magento_Module1', @@ -386,7 +446,15 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'depends_on_module' => null, 'tooltip' => null, 'title' => null, - 'sub_menu' => $this->_params, + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], ], [ 'parent_id' => '1', @@ -403,7 +471,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'sub_menu' => null ], ], - [ + 'data with submenu to constructor' => [ [ 'parent_id' => '1', 'module_name' => 'Magento_Module1', @@ -416,13 +484,29 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'depends_on_module' => null, 'tooltip' => null, 'title' => null, - 'sub_menu' => $this->_params, + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], ], [ 'parent_id' => '1', 'module_name' => 'Magento_Module1', 'sort_index' => '50', - 'sub_menu' => $this->_params, + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], ], [ 'parent_id' => '1', @@ -436,7 +520,15 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'depends_on_module' => null, 'tooltip' => '', 'title' => null, - 'sub_menu' => $this->_params + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ] ], ] ]; diff --git a/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php b/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php index 2954afbe647..294ff9b41dc 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php @@ -338,10 +338,6 @@ class MenuTest extends \PHPUnit_Framework_TestCase $this->assertEquals($expected, $actual); } - /** - * @covers \Magento\Backend\Model\Menu::toArray - * @covers \Magento\Backend\Model\Menu::serialize - */ public function testSerialize() { $serializerMock = $this->getMock(SerializerInterface::class); @@ -365,10 +361,6 @@ class MenuTest extends \PHPUnit_Framework_TestCase $this->assertEquals('serializedString', $menu->serialize()); } - /** - * @covers \Magento\Backend\Model\Menu::populateFromArray - * @covers \Magento\Backend\Model\Menu::unserialize - */ public function testUnserialize() { $serializerMock = $this->getMock(SerializerInterface::class); diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php index f9628110851..5cc7ddb911b 100644 --- a/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php +++ b/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php @@ -9,37 +9,34 @@ namespace Magento\Backend\Model; * Test class for \Magento\Backend\Model\Auth. * * @magentoAppArea adminhtml - * @magentoCache all disabled */ class MenuTest extends \PHPUnit_Framework_TestCase { /** * @var \Magento\Backend\Model\Menu */ - protected $_model; + private $model; + + /** @var \Magento\Framework\ObjectManagerInterface */ + private $objectManager; protected function setUp() { parent::setUp(); \Magento\TestFramework\Helper\Bootstrap::getInstance() ->loadArea(\Magento\Backend\App\Area\FrontNameResolver::AREA_CODE); - $this->_model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager() - ->create(\Magento\Backend\Model\Auth::class); - \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( - \Magento\Framework\Config\ScopeInterface::class - )->setCurrentScope(\Magento\Backend\App\Area\FrontNameResolver::AREA_CODE); + $this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager(); + $this->model = $this->objectManager->create(\Magento\Backend\Model\Auth::class); + $this->objectManager->get(\Magento\Framework\Config\ScopeInterface::class) + ->setCurrentScope(\Magento\Backend\App\Area\FrontNameResolver::AREA_CODE); } public function testMenuItemManipulation() { /* @var $menu \Magento\Backend\Model\Menu */ - $menu = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( - \Magento\Backend\Model\Menu\Config::class - )->getMenu(); + $menu = $this->objectManager->create(\Magento\Backend\Model\Menu\Config::class)->getMenu(); /* @var $itemFactory \Magento\Backend\Model\Menu\Item\Factory */ - $itemFactory = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( - \Magento\Backend\Model\Menu\Item\Factory::class - ); + $itemFactory = $this->objectManager->create(\Magento\Backend\Model\Menu\Item\Factory::class); // Add new item in top level $menu->add( @@ -84,13 +81,9 @@ class MenuTest extends \PHPUnit_Framework_TestCase public function testSerializeUnserialize() { /** @var Menu $menu */ - $menu = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( - \Magento\Backend\Model\MenuFactory::class - )->create(); + $menu = $this->objectManager->get(\Magento\Backend\Model\MenuFactory::class)->create(); /* @var \Magento\Backend\Model\Menu\Item\Factory $itemFactory */ - $itemFactory = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( - \Magento\Backend\Model\Menu\Item\Factory::class - ); + $itemFactory = $this->objectManager->create(\Magento\Backend\Model\Menu\Item\Factory::class); // Add new item in top level $menu->add( @@ -104,7 +97,7 @@ class MenuTest extends \PHPUnit_Framework_TestCase ) ); - //Add submenu + // Add submenu $menu->add( $itemFactory->create( [ @@ -118,11 +111,9 @@ class MenuTest extends \PHPUnit_Framework_TestCase 'Magento_Backend::system3' ); $serializedString = $menu->serialize(); - /** @var Menu $menu2 */ - $menu2 = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( - \Magento\Backend\Model\MenuFactory::class - )->create(); - $menu2->unserialize($serializedString); - $this->assertEquals($menu, $menu2); + /** @var Menu $unserializedMenu */ + $unserializedMenu = $this->objectManager->get(\Magento\Backend\Model\MenuFactory::class)->create(); + $unserializedMenu->unserialize($serializedString); + $this->assertEquals($menu, $unserializedMenu); } } -- GitLab From 9b16e366288c08ffe1df21184ed00570a3a26386 Mon Sep 17 00:00:00 2001 From: Joan He <johe@magento.com> Date: Fri, 23 Dec 2016 17:07:02 -0600 Subject: [PATCH 137/175] MAGETWO-62253: Refactor code to remove unserialize - address code review comments --- .../Backend/Test/Unit/Model/Menu/ItemTest.php | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php index f8b26ce7aae..218dfb62ba8 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php @@ -377,7 +377,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase $menuMock = $this->getMock(\Magento\Backend\Model\Menu::class, [], [], '', false); $this->_menuFactoryMock->method('create')->will($this->returnValue($menuMock)); $menuMock->method('toArray') - ->willReturn(isset($constructorData['sub_menu']) ? $constructorData['sub_menu'] : null); + ->willReturn(['submenuArray']); $model = $this->objectManager->getObject( \Magento\Backend\Model\Menu\Item::class, @@ -468,7 +468,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'depends_on_module' => null, 'tooltip' => '', 'title' => null, - 'sub_menu' => null + 'sub_menu' => ['submenuArray'] ], ], 'data with submenu to constructor' => [ @@ -520,15 +520,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase 'depends_on_module' => null, 'tooltip' => '', 'title' => null, - 'sub_menu' => [ - 'id' => 'item', - 'title' => 'Item Title', - 'action' => '/system/config', - 'resource' => 'Magento_Config::config', - 'depends_on_module' => 'Magento_Backend', - 'depends_on_config' => 'system/config/isEnabled', - 'tooltip' => 'Item tooltip', - ] + 'sub_menu' => ['submenuArray'] ], ] ]; -- GitLab From a63c1215cdf785ce55624357153210d78b3790cd Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Mon, 26 Dec 2016 10:42:29 +0200 Subject: [PATCH 138/175] MAGETWO-62486: Refactor Layout to store data from object only and restore object - change code style --- .../Magento/Framework/View/Layout/ScheduledStructure.php | 9 +++++---- .../Magento/Framework/View/Page/Config/Structure.php | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php index fe8aae31a3c..d50fea0478a 100644 --- a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php +++ b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php @@ -24,7 +24,7 @@ class ScheduledStructure * * @var array */ - private $propertyMap = [ + private $serializableProperties = [ 'scheduledStructure', 'scheduledData', 'scheduledElements', @@ -550,7 +550,7 @@ class ScheduledStructure public function __toArray() { $result = []; - foreach ($this->propertyMap as $property) { + foreach ($this->serializableProperties as $property) { $result[$property] = $this->{$property}; } @@ -566,7 +566,7 @@ class ScheduledStructure */ public function populateWithArray(array $data) { - foreach ($this->propertyMap as $property) { + foreach ($this->serializableProperties as $property) { $this->{$property} = $this->getDataValue($property, $data); } } @@ -578,7 +578,8 @@ class ScheduledStructure * @param array $data * @return array */ - private function getDataValue($name, array $data) { + private function getDataValue($name, array $data) + { return isset($data[$name]) ? $data[$name] : []; } } diff --git a/lib/internal/Magento/Framework/View/Page/Config/Structure.php b/lib/internal/Magento/Framework/View/Page/Config/Structure.php index 68e8e2815ae..cf96d100e89 100644 --- a/lib/internal/Magento/Framework/View/Page/Config/Structure.php +++ b/lib/internal/Magento/Framework/View/Page/Config/Structure.php @@ -17,7 +17,7 @@ class Structure * * @var array */ - private $propertyMap = [ + private $serializableProperties = [ 'assets', 'removeAssets', 'title', @@ -220,7 +220,7 @@ class Structure public function __toArray() { $result = []; - foreach ($this->propertyMap as $property) { + foreach ($this->serializableProperties as $property) { $result[$property] = $this->{$property}; } @@ -236,7 +236,7 @@ class Structure */ public function populateWithArray(array $data) { - foreach ($this->propertyMap as $property) { + foreach ($this->serializableProperties as $property) { $this->{$property} = $this->getDataValue($property, $data); } } @@ -248,7 +248,8 @@ class Structure * @param array $data * @return array */ - private function getDataValue($name, array $data) { + private function getDataValue($name, array $data) + { return isset($data[$name]) ? $data[$name] : []; } } -- GitLab From 30294fdc9205b441795eabe9c800fd9a5cb40289 Mon Sep 17 00:00:00 2001 From: Mykola Palamar <mpalamar@magento.com> Date: Mon, 26 Dec 2016 11:44:31 +0200 Subject: [PATCH 139/175] MAGETWO-62650: Replace SerializerIntreface with Json implementation --- .../Sales/Order/Pdf/Items/AbstractItems.php | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php index d1d5e44f077..a8442144e3f 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php @@ -43,7 +43,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra array $data = [], Json $serializer = null ) { - $this->serializer = $serializer; + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance()->get(Json::class); parent::__construct( $context, @@ -202,7 +202,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra $options = $item->getOrderItem()->getProductOptions(); } if (isset($options['bundle_selection_attributes'])) { - return $this->getSerializer()->unserialize($options['bundle_selection_attributes']); + return $this->serializer->unserialize($options['bundle_selection_attributes']); } return null; } @@ -287,19 +287,4 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra } return false; } - - /** - * The getter function to get serializer - * - * @return Json - * - * @deprecated - */ - private function getSerializer() - { - if ($this->serializer === null) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance()->get(Json::class); - } - return $this->serializer; - } } -- GitLab From 0f9cf6aeaf042f5022e98f1921c8cebd940bc469 Mon Sep 17 00:00:00 2001 From: Vitaliy Goncharenko <vgoncharenko@magento.com> Date: Mon, 26 Dec 2016 12:05:48 +0200 Subject: [PATCH 140/175] MAGETWO-62486: Refactor Layout to store data from object only and restore object - change code style --- .../Framework/View/Layout/ScheduledStructure.php | 16 +++++++--------- .../Framework/View/Page/Config/Structure.php | 16 +++++++--------- 2 files changed, 14 insertions(+), 18 deletions(-) diff --git a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php index d50fea0478a..e7405aa0f78 100644 --- a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php +++ b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php @@ -542,8 +542,7 @@ class ScheduledStructure } /** - * Reformat layout scheduled structure to array. - * It can be possible for serialization and save to cache storage for example. + * Reformat 'Layout scheduled structure' to array. * * @return array */ @@ -558,8 +557,7 @@ class ScheduledStructure } /** - * Update layout scheduled structure data. - * It can be used for case of set data from cache storage after initialization this class. + * Update 'Layout scheduled structure' data. * * @param array $data * @return void @@ -567,19 +565,19 @@ class ScheduledStructure public function populateWithArray(array $data) { foreach ($this->serializableProperties as $property) { - $this->{$property} = $this->getDataValue($property, $data); + $this->{$property} = $this->getArrayValueByKey($property, $data); } } /** * Get value from array by key. * - * @param string $name - * @param array $data + * @param string $key + * @param array $array * @return array */ - private function getDataValue($name, array $data) + private function getArrayValueByKey($key, array $array) { - return isset($data[$name]) ? $data[$name] : []; + return isset($array[$key]) ? $array[$key] : []; } } diff --git a/lib/internal/Magento/Framework/View/Page/Config/Structure.php b/lib/internal/Magento/Framework/View/Page/Config/Structure.php index cf96d100e89..d7d3d446926 100644 --- a/lib/internal/Magento/Framework/View/Page/Config/Structure.php +++ b/lib/internal/Magento/Framework/View/Page/Config/Structure.php @@ -212,8 +212,7 @@ class Structure } /** - * Reformat page config structure to array. - * It can be possible for serialization and save to cache storage for example. + * Reformat 'Page config structure' to array. * * @return array */ @@ -228,8 +227,7 @@ class Structure } /** - * Update page config structure data. - * It can be used for case of set data from cache storage after initialization this class. + * Update 'Page config structure' data. * * @param array $data * @return void @@ -237,19 +235,19 @@ class Structure public function populateWithArray(array $data) { foreach ($this->serializableProperties as $property) { - $this->{$property} = $this->getDataValue($property, $data); + $this->{$property} = $this->getArrayValueByKey($property, $data); } } /** * Get value from array by key. * - * @param string $name - * @param array $data + * @param string $key + * @param array $array * @return array */ - private function getDataValue($name, array $data) + private function getArrayValueByKey($key, array $array) { - return isset($data[$name]) ? $data[$name] : []; + return isset($array[$key]) ? $array[$key] : []; } } -- GitLab From 1708ef23d86f3849a441644857f113bf0f4cf978 Mon Sep 17 00:00:00 2001 From: Mykola Palamar <mpalamar@magento.com> Date: Mon, 26 Dec 2016 12:34:24 +0200 Subject: [PATCH 141/175] MAGETWO-62650: Replace SerializerIntreface with Json implementation --- .../Model/Sales/Order/Pdf/Items/Creditmemo.php | 9 +++++++-- .../Bundle/Model/Sales/Order/Pdf/Items/Invoice.php | 9 +++++++-- .../Bundle/Model/Sales/Order/Pdf/Items/Shipment.php | 9 +++++++-- .../Sales/Order/Pdf/Items/AbstractItemsTest.php | 13 ++++++------- 4 files changed, 27 insertions(+), 13 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php index 2ac6e484bb5..fce6fbf035d 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php @@ -5,6 +5,8 @@ */ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; +use Magento\Framework\Serialize\Serializer\Json; + /** * Sales Order Creditmemo Pdf default items renderer */ @@ -27,6 +29,7 @@ class Creditmemo extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data + * @param Json $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -37,7 +40,8 @@ class Creditmemo extends AbstractItems \Magento\Framework\Stdlib\StringUtils $string, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] + array $data = [], + Json $serializer = null ) { $this->string = $string; parent::__construct( @@ -48,7 +52,8 @@ class Creditmemo extends AbstractItems $filterManager, $resource, $resourceCollection, - $data + $data, + $serializer ); } diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php index 9b5d0b4a9c0..6c16bebe5ca 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php @@ -8,6 +8,8 @@ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; +use Magento\Framework\Serialize\Serializer\Json; + /** * Sales Order Invoice Pdf default items renderer */ @@ -28,6 +30,7 @@ class Invoice extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data + * @param Json $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -38,7 +41,8 @@ class Invoice extends AbstractItems \Magento\Framework\Stdlib\StringUtils $coreString, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] + array $data = [], + Json $serializer = null ) { $this->string = $coreString; parent::__construct( @@ -49,7 +53,8 @@ class Invoice extends AbstractItems $filterManager, $resource, $resourceCollection, - $data + $data, + $serializer ); } diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php index fec75878c30..14772ab8222 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php @@ -5,6 +5,8 @@ */ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; +use Magento\Framework\Serialize\Serializer\Json; + /** * Sales Order Shipment Pdf items renderer */ @@ -25,6 +27,7 @@ class Shipment extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data + * @param Json $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -35,7 +38,8 @@ class Shipment extends AbstractItems \Magento\Framework\Stdlib\StringUtils $string, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] + array $data = [], + Json $serializer = null ) { $this->string = $string; parent::__construct( @@ -46,7 +50,8 @@ class Shipment extends AbstractItems $filterManager, $resource, $resourceCollection, - $data + $data, + $serializer ); } diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php index 9038b070f58..9a332b3aa20 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php @@ -27,14 +27,13 @@ class AbstractItemsTest extends \PHPUnit_Framework_TestCase ); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $this->model = $objectManager->getObject(\Magento\Bundle\Model\Sales\Order\Pdf\Items\Shipment::class); - $this->serializer = $this->getMock(\Magento\Framework\Serialize\Serializer\Json::class); - $reflection = new \ReflectionClass(\Magento\Bundle\Model\Sales\Order\Pdf\Items\AbstractItems::class); - $reflectionProperty = $reflection->getProperty('serializer'); - $reflectionProperty->setAccessible(true); - $reflectionProperty->setValue($this->model, $this->serializer); - + $this->model = $objectManager->getObject( + \Magento\Bundle\Model\Sales\Order\Pdf\Items\Shipment::class, + [ + 'serializer' => $this->serializer, + ] + ); } /** -- GitLab From cbc0107ce4e6407dee2770117aa479a884adcadb Mon Sep 17 00:00:00 2001 From: Mykola Palamar <mpalamar@magento.com> Date: Mon, 26 Dec 2016 13:46:57 +0200 Subject: [PATCH 142/175] MAGETWO-62650: Replace SerializerIntreface with Json implementation --- .../Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php | 6 ++---- .../Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php | 6 ++---- .../Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php | 6 ++---- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php index fce6fbf035d..ead00ae0f0b 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php @@ -5,8 +5,6 @@ */ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; -use Magento\Framework\Serialize\Serializer\Json; - /** * Sales Order Creditmemo Pdf default items renderer */ @@ -29,7 +27,7 @@ class Creditmemo extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data - * @param Json $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -41,7 +39,7 @@ class Creditmemo extends AbstractItems \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], - Json $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->string = $string; parent::__construct( diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php index 6c16bebe5ca..eb43f30315e 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php @@ -8,8 +8,6 @@ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; -use Magento\Framework\Serialize\Serializer\Json; - /** * Sales Order Invoice Pdf default items renderer */ @@ -30,7 +28,7 @@ class Invoice extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data - * @param Json $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -42,7 +40,7 @@ class Invoice extends AbstractItems \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], - Json $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->string = $coreString; parent::__construct( diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php index 14772ab8222..1e2f2c6168d 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php @@ -5,8 +5,6 @@ */ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; -use Magento\Framework\Serialize\Serializer\Json; - /** * Sales Order Shipment Pdf items renderer */ @@ -27,7 +25,7 @@ class Shipment extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data - * @param Json $serializer + * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -39,7 +37,7 @@ class Shipment extends AbstractItems \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], - Json $serializer = null + \Magento\Framework\Serialize\Serializer\Json $serializer = null ) { $this->string = $string; parent::__construct( -- GitLab From 384d4472511834ce9b8a513ef69b61c118fcbcff Mon Sep 17 00:00:00 2001 From: Mykola Palamar <mpalamar@magento.com> Date: Mon, 26 Dec 2016 14:34:04 +0200 Subject: [PATCH 143/175] MAGETWO-62650: Replace SerializerIntreface with Json implementation --- .../Sales/Order/Pdf/Items/AbstractItems.php | 19 +++++++++++++++++-- .../Sales/Order/Pdf/Items/Creditmemo.php | 7 ++----- .../Model/Sales/Order/Pdf/Items/Invoice.php | 7 ++----- .../Model/Sales/Order/Pdf/Items/Shipment.php | 7 ++----- .../Order/Pdf/Items/AbstractItemsTest.php | 13 +++++++------ 5 files changed, 30 insertions(+), 23 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php index a8442144e3f..d1d5e44f077 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php @@ -43,7 +43,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra array $data = [], Json $serializer = null ) { - $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance()->get(Json::class); + $this->serializer = $serializer; parent::__construct( $context, @@ -202,7 +202,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra $options = $item->getOrderItem()->getProductOptions(); } if (isset($options['bundle_selection_attributes'])) { - return $this->serializer->unserialize($options['bundle_selection_attributes']); + return $this->getSerializer()->unserialize($options['bundle_selection_attributes']); } return null; } @@ -287,4 +287,19 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra } return false; } + + /** + * The getter function to get serializer + * + * @return Json + * + * @deprecated + */ + private function getSerializer() + { + if ($this->serializer === null) { + $this->serializer = \Magento\Framework\App\ObjectManager::getInstance()->get(Json::class); + } + return $this->serializer; + } } diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php index ead00ae0f0b..2ac6e484bb5 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php @@ -27,7 +27,6 @@ class Creditmemo extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data - * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -38,8 +37,7 @@ class Creditmemo extends AbstractItems \Magento\Framework\Stdlib\StringUtils $string, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [], - \Magento\Framework\Serialize\Serializer\Json $serializer = null + array $data = [] ) { $this->string = $string; parent::__construct( @@ -50,8 +48,7 @@ class Creditmemo extends AbstractItems $filterManager, $resource, $resourceCollection, - $data, - $serializer + $data ); } diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php index eb43f30315e..9b5d0b4a9c0 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php @@ -28,7 +28,6 @@ class Invoice extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data - * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -39,8 +38,7 @@ class Invoice extends AbstractItems \Magento\Framework\Stdlib\StringUtils $coreString, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [], - \Magento\Framework\Serialize\Serializer\Json $serializer = null + array $data = [] ) { $this->string = $coreString; parent::__construct( @@ -51,8 +49,7 @@ class Invoice extends AbstractItems $filterManager, $resource, $resourceCollection, - $data, - $serializer + $data ); } diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php index 1e2f2c6168d..fec75878c30 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php @@ -25,7 +25,6 @@ class Shipment extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data - * @param \Magento\Framework\Serialize\Serializer\Json $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -36,8 +35,7 @@ class Shipment extends AbstractItems \Magento\Framework\Stdlib\StringUtils $string, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [], - \Magento\Framework\Serialize\Serializer\Json $serializer = null + array $data = [] ) { $this->string = $string; parent::__construct( @@ -48,8 +46,7 @@ class Shipment extends AbstractItems $filterManager, $resource, $resourceCollection, - $data, - $serializer + $data ); } diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php index 9a332b3aa20..9038b070f58 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php @@ -27,13 +27,14 @@ class AbstractItemsTest extends \PHPUnit_Framework_TestCase ); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); + $this->model = $objectManager->getObject(\Magento\Bundle\Model\Sales\Order\Pdf\Items\Shipment::class); + $this->serializer = $this->getMock(\Magento\Framework\Serialize\Serializer\Json::class); - $this->model = $objectManager->getObject( - \Magento\Bundle\Model\Sales\Order\Pdf\Items\Shipment::class, - [ - 'serializer' => $this->serializer, - ] - ); + $reflection = new \ReflectionClass(\Magento\Bundle\Model\Sales\Order\Pdf\Items\AbstractItems::class); + $reflectionProperty = $reflection->getProperty('serializer'); + $reflectionProperty->setAccessible(true); + $reflectionProperty->setValue($this->model, $this->serializer); + } /** -- GitLab From a91b5514fb577b815f5bd2b326e99139e3fe8fdc Mon Sep 17 00:00:00 2001 From: Venkata Uppalapati <vuppalapati@magento.com> Date: Tue, 27 Dec 2016 11:51:27 -0600 Subject: [PATCH 144/175] MAGETWO-59785: Incorrect URLs in sitemap when generated from admin with 'Use Secure URLs in Admin' = Yes Modified sitemap unit test to cover the fix changes. --- .../Sitemap/Test/Unit/Model/SitemapTest.php | 42 ++++++++++++++++++- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php index f94a2051047..6affe7a93b3 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php +++ b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php @@ -50,6 +50,11 @@ class SitemapTest extends \PHPUnit_Framework_TestCase */ protected $_fileMock; + /** + * @var \Magento\Store\Model\StoreManagerInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $_storeManagerMock; + /** * Set helper mocks, create resource model mock */ @@ -473,6 +478,33 @@ class SitemapTest extends \PHPUnit_Framework_TestCase $model = $this->_getModelMock(true); + $storeMock = $this->getMockBuilder( + \Magento\Store\Model\Store::class + )->setMethods( + ['isFrontUrlSecure', 'getBaseUrl'] + )->disableOriginalConstructor()->getMock(); + $storeMock->expects($this->atLeastOnce())->method('isFrontUrlSecure')->willReturn(false); + $storeMock->expects( + $this->atLeastOnce() + )->method( + 'getBaseUrl' + )->with( + $this->isType('string'), + false + )->willReturn( + 'http://store.com/' + ); + + $this->_storeManagerMock->expects( + $this->atLeastOnce() + )->method( + 'getStore' + )->with( + 1 + )->willReturn( + $storeMock + ); + return $model; } @@ -490,7 +522,6 @@ class SitemapTest extends \PHPUnit_Framework_TestCase '_getBaseDir', '_getFileObject', '_afterSave', - '_getStoreBaseUrl', '_getCurrentDateTime', '_getCategoryItemsCollection', '_getProductItemsCollection', @@ -562,7 +593,6 @@ class SitemapTest extends \PHPUnit_Framework_TestCase )->getMock(); $model->expects($this->any())->method('_getResource')->will($this->returnValue($this->_resourceMock)); - $model->expects($this->any())->method('_getStoreBaseUrl')->will($this->returnValue('http://store.com/')); $model->expects( $this->any() )->method( @@ -611,6 +641,13 @@ class SitemapTest extends \PHPUnit_Framework_TestCase )->disableOriginalConstructor()->getMock(); $cmsFactory->expects($this->any())->method('create')->will($this->returnValue($this->_sitemapCmsPageMock)); + $this->_storeManagerMock = $this->getMockBuilder( + \Magento\Store\Model\StoreManagerInterface::class + )->setMethods( + ['getStore'] + )->getMockForAbstractClass(); + + $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $constructArguments = $objectManager->getConstructArguments( \Magento\Sitemap\Model\Sitemap::class, @@ -618,6 +655,7 @@ class SitemapTest extends \PHPUnit_Framework_TestCase 'categoryFactory' => $categoryFactory, 'productFactory' => $productFactory, 'cmsFactory' => $cmsFactory, + 'storeManager' => $this->_storeManagerMock, 'sitemapData' => $this->_helperMockSitemap, 'filesystem' => $this->_filesystemMock ] -- GitLab From d0c8a41f8fd5914618659a5d87a0a7be44a5c2ae Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Tue, 27 Dec 2016 13:31:32 -0600 Subject: [PATCH 145/175] MAGETWO-62610: Data upgrade fails on multi-database setup Changing method description --- app/code/Magento/Quote/Setup/QuoteSetup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Quote/Setup/QuoteSetup.php b/app/code/Magento/Quote/Setup/QuoteSetup.php index 9b9aaa78b1e..cbd357d537f 100644 --- a/app/code/Magento/Quote/Setup/QuoteSetup.php +++ b/app/code/Magento/Quote/Setup/QuoteSetup.php @@ -207,7 +207,7 @@ class QuoteSetup extends EavSetup } /** - * Get table name for + * Get table name * * @param string $table * @return string -- GitLab From 0f32a098a93e0c6d7b1231a8c98d8080c1af88bb Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Tue, 27 Dec 2016 13:33:11 -0600 Subject: [PATCH 146/175] MAGETWO-62610: Data upgrade fails on multi-database setup Changing method description --- app/code/Magento/Sales/Setup/SalesSetup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Sales/Setup/SalesSetup.php b/app/code/Magento/Sales/Setup/SalesSetup.php index b8e73f32cf8..80b1ec4e8dc 100644 --- a/app/code/Magento/Sales/Setup/SalesSetup.php +++ b/app/code/Magento/Sales/Setup/SalesSetup.php @@ -303,7 +303,7 @@ class SalesSetup extends EavSetup } /** - * Get quote connection + * Get sales connection * * @return \Magento\Framework\DB\Adapter\AdapterInterface */ -- GitLab From 5c641d0dca3324019128efa483f8a60ce5aedbee Mon Sep 17 00:00:00 2001 From: Venkata Uppalapati <vuppalapati@magento.com> Date: Tue, 27 Dec 2016 13:40:36 -0600 Subject: [PATCH 147/175] MAGETWO-59785: Incorrect URLs in sitemap when generated from admin with 'Use Secure URLs in Admin' = Yes Removed multiple empty lines in a row. --- app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php index 6affe7a93b3..297161fb9fd 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php +++ b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php @@ -647,7 +647,6 @@ class SitemapTest extends \PHPUnit_Framework_TestCase ['getStore'] )->getMockForAbstractClass(); - $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $constructArguments = $objectManager->getConstructArguments( \Magento\Sitemap\Model\Sitemap::class, -- GitLab From 9ee114f4f2ba9877e3e578abcd6e103663e5454b Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Tue, 27 Dec 2016 16:34:04 -0600 Subject: [PATCH 148/175] MAGETWO-62133: Create QueryModifier to select only options of type file and info_buyRequest Updating upgrade script --- app/code/Magento/Wishlist/Setup/UpgradeData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Wishlist/Setup/UpgradeData.php b/app/code/Magento/Wishlist/Setup/UpgradeData.php index 496db7f2cab..440ac0d63d8 100644 --- a/app/code/Magento/Wishlist/Setup/UpgradeData.php +++ b/app/code/Magento/Wishlist/Setup/UpgradeData.php @@ -69,7 +69,7 @@ class UpgradeData implements UpgradeDataInterface { $fieldDataConverter = $this->fieldDataConverterFactory->create(SerializedToJson::class); $queryModifier = $this->queryModifierFactory->create( - InQueryModifier::class, + 'in', [ 'values' => [ 'code' => [ -- GitLab From 4adcde5dfd9b2686e33583990a78a1a502f87b97 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Tue, 27 Dec 2016 16:37:03 -0600 Subject: [PATCH 149/175] MAGETWO-62133: Create QueryModifier to select only options of type file and info_buyRequest Updating upgrade script --- app/code/Magento/Wishlist/Setup/UpgradeData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Wishlist/Setup/UpgradeData.php b/app/code/Magento/Wishlist/Setup/UpgradeData.php index 440ac0d63d8..f18ca29acf3 100644 --- a/app/code/Magento/Wishlist/Setup/UpgradeData.php +++ b/app/code/Magento/Wishlist/Setup/UpgradeData.php @@ -107,7 +107,7 @@ class UpgradeData implements UpgradeDataInterface $codes ); $queryModifier = $this->queryModifierFactory->create( - InQueryModifier::class, + 'in', [ 'values' => [ 'code' => $codes -- GitLab From a859802f2fbd079fc775918da823a09bb5df1ad0 Mon Sep 17 00:00:00 2001 From: Olga Kopylova <okopylova@magento.com> Date: Wed, 28 Dec 2016 09:18:58 -0600 Subject: [PATCH 150/175] MAGETWO-62253: Refactor code to remove unserialize - fixed tests - fixed code style - returned validation of menu item data --- app/code/Magento/Backend/Model/Menu.php | 3 +- app/code/Magento/Backend/Model/Menu/Item.php | 4 +- .../Test/Unit/Model/Menu/ConfigTest.php | 10 +- .../Backend/Test/Unit/Model/Menu/ItemTest.php | 250 +----------------- .../_files/menu_item_constructor_data.php | 133 ++++++++++ .../Test/Unit/Model/_files/menu_item_data.php | 118 +++++++++ .../Magento/Backend/Block/MenuTest.php | 13 +- .../Magento/Backend/Model/MenuTest.php | 2 +- 8 files changed, 279 insertions(+), 254 deletions(-) create mode 100644 app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_constructor_data.php create mode 100644 app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_data.php diff --git a/app/code/Magento/Backend/Model/Menu.php b/app/code/Magento/Backend/Model/Menu.php index 15432dd71ed..ccae5ebce16 100644 --- a/app/code/Magento/Backend/Model/Menu.php +++ b/app/code/Magento/Backend/Model/Menu.php @@ -305,8 +305,7 @@ class Menu extends \ArrayObject { $items = []; foreach ($data as $itemData) { - $item = $this->menuItemFactory->create(); - $item->populateFromArray($itemData); + $item = $this->menuItemFactory->create($itemData); $items[] = $item; } $this->exchangeArray($items); diff --git a/app/code/Magento/Backend/Model/Menu/Item.php b/app/code/Magento/Backend/Model/Menu/Item.php index a0b82f1c4e1..ef1aa864588 100644 --- a/app/code/Magento/Backend/Model/Menu/Item.php +++ b/app/code/Magento/Backend/Model/Menu/Item.php @@ -168,9 +168,7 @@ class Item array $data = [] ) { $this->_validator = $validator; - if (!empty($data)) { - $this->_validator->validate($data); - } + $this->_validator->validate($data); $this->_moduleManager = $moduleManager; $this->_acl = $authorization; $this->_scopeConfig = $scopeConfig; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php index 28ce4148777..5f50c17db8d 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php @@ -10,27 +10,27 @@ use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; class ConfigTest extends \PHPUnit_Framework_TestCase { /** - * @var \PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Framework\App\Cache\Type\Config|\PHPUnit_Framework_MockObject_MockObject */ private $cacheInstanceMock; /** - * @var \PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Backend\Model\Menu\Config\Reader|\PHPUnit_Framework_MockObject_MockObject */ private $configReaderMock; /** - * @var \PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Backend\Model\Menu|\PHPUnit_Framework_MockObject_MockObject */ private $menuMock; /** - * @var \PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Backend\Model\Menu\Builder|\PHPUnit_Framework_MockObject_MockObject */ private $menuBuilderMock; /** - * @var \PHPUnit_Framework_MockObject_MockObject + * @var \Psr\Log\LoggerInterface|\PHPUnit_Framework_MockObject_MockObject */ private $logger; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php index 218dfb62ba8..b6cd61870d6 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php @@ -231,7 +231,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase $menuMock = $this->getMock(\Magento\Backend\Model\Menu::class, [], [], '', false); $this->_menuFactoryMock->method('create')->will($this->returnValue($menuMock)); $menuMock->method('toArray') - ->willReturn(isset($data['sub_menu']) ? $data['sub_menu'] : null); + ->willReturn($data['sub_menu']); $model = $this->objectManager->getObject( \Magento\Backend\Model\Menu\Item::class, @@ -248,119 +248,12 @@ class ItemTest extends \PHPUnit_Framework_TestCase $this->assertEquals($expected, $model->toArray()); } + /** + * @return array + */ public function toArrayDataProvider() { - return [ - 'No submenu' => [ - [ - 'id' => 'item', - 'title' => 'Item Title', - 'action' => '/system/config', - 'resource' => 'Magento_Config::config', - 'depends_on_module' => 'Magento_Backend', - 'depends_on_config' => 'system/config/isEnabled', - 'tooltip' => 'Item tooltip', - ], - [ - 'parent_id' => null, - 'module_name' => 'Magento_Backend', - 'sort_index' => null, - 'depends_on_config' => 'system/config/isEnabled', - 'id' => 'item', - 'resource' => 'Magento_Config::config', - 'path' => '', - 'action' => '/system/config', - 'depends_on_module' => 'Magento_Backend', - 'tooltip' => 'Item tooltip', - 'title' => 'Item Title', - 'sub_menu' => null - ] - ], - 'with submenu' => [ - [ - 'parent_id' => '1', - 'module_name' => 'Magento_Module1', - 'sort_index' => '50', - 'depends_on_config' => null, - 'id' => '5', - 'resource' => null, - 'path' => null, - 'action' => null, - 'depends_on_module' => null, - 'tooltip' => null, - 'title' => null, - 'sub_menu' => [ - 'id' => 'item', - 'title' => 'Item Title', - 'action' => '/system/config', - 'resource' => 'Magento_Config::config', - 'depends_on_module' => 'Magento_Backend', - 'depends_on_config' => 'system/config/isEnabled', - 'tooltip' => 'Item tooltip', - ], - ], - [ - 'parent_id' => '1', - 'module_name' => 'Magento_Module1', - 'sort_index' => '50', - 'depends_on_config' => null, - 'id' => '5', - 'resource' => null, - 'path' => null, - 'action' => null, - 'depends_on_module' => null, - 'tooltip' => '', - 'title' => null, - 'sub_menu' => [ - 'id' => 'item', - 'title' => 'Item Title', - 'action' => '/system/config', - 'resource' => 'Magento_Config::config', - 'depends_on_module' => 'Magento_Backend', - 'depends_on_config' => 'system/config/isEnabled', - 'tooltip' => 'Item tooltip', - ] - ] - ], - 'small set of data' => [ - [ - 'parent_id' => '1', - 'module_name' => 'Magento_Module1', - 'sort_index' => '50', - 'sub_menu' => [ - 'id' => 'item', - 'title' => 'Item Title', - 'action' => '/system/config', - 'resource' => 'Magento_Config::config', - 'depends_on_module' => 'Magento_Backend', - 'depends_on_config' => 'system/config/isEnabled', - 'tooltip' => 'Item tooltip', - ], - ], - [ - 'parent_id' => '1', - 'module_name' => 'Magento_Module1', - 'sort_index' => '50', - 'depends_on_config' => null, - 'id' => null, - 'resource' => null, - 'path' => '', - 'action' => null, - 'depends_on_module' => null, - 'tooltip' => '', - 'title' => null, - 'sub_menu' => [ - 'id' => 'item', - 'title' => 'Item Title', - 'action' => '/system/config', - 'resource' => 'Magento_Config::config', - 'depends_on_module' => 'Magento_Backend', - 'depends_on_config' => 'system/config/isEnabled', - 'tooltip' => 'Item tooltip', - ] - ] - ] - ]; + return include __DIR__ . '/../_files/menu_item_data.php'; } /** @@ -375,7 +268,7 @@ class ItemTest extends \PHPUnit_Framework_TestCase array $expected ) { $menuMock = $this->getMock(\Magento\Backend\Model\Menu::class, [], [], '', false); - $this->_menuFactoryMock->method('create')->will($this->returnValue($menuMock)); + $this->_menuFactoryMock->method('create')->willReturn($menuMock); $menuMock->method('toArray') ->willReturn(['submenuArray']); @@ -395,134 +288,11 @@ class ItemTest extends \PHPUnit_Framework_TestCase $this->assertEquals($expected, $model->toArray()); } + /** + * @return array + */ public function populateFromArrayDataProvider() { - return [ - 'default data to constructor' => [ - [], - [ - 'id' => 'item', - 'title' => 'Item Title', - 'action' => '/system/config', - 'resource' => 'Magento_Config::config', - 'depends_on_module' => 'Magento_Backend', - 'depends_on_config' => 'system/config/isEnabled', - 'tooltip' => 'Item tooltip', - ], - [ - 'parent_id' => null, - 'module_name' => 'Magento_Backend', - 'sort_index' => null, - 'depends_on_config' => 'system/config/isEnabled', - 'id' => 'item', - 'resource' => 'Magento_Config::config', - 'path' => '', - 'action' => '/system/config', - 'depends_on_module' => 'Magento_Backend', - 'tooltip' => 'Item tooltip', - 'title' => 'Item Title', - 'sub_menu' => null - ], - ], - 'data without submenu to constructor' => [ - [ - 'id' => 'item', - 'title' => 'Item Title', - 'action' => '/system/config', - 'resource' => 'Magento_Config::config', - 'depends_on_module' => 'Magento_Backend', - 'depends_on_config' => 'system/config/isEnabled', - 'tooltip' => 'Item tooltip', - ], - [ - 'parent_id' => '1', - 'module_name' => 'Magento_Module1', - 'sort_index' => '50', - 'depends_on_config' => null, - 'id' => '5', - 'resource' => null, - 'path' => null, - 'action' => null, - 'depends_on_module' => null, - 'tooltip' => null, - 'title' => null, - 'sub_menu' => [ - 'id' => 'item', - 'title' => 'Item Title', - 'action' => '/system/config', - 'resource' => 'Magento_Config::config', - 'depends_on_module' => 'Magento_Backend', - 'depends_on_config' => 'system/config/isEnabled', - 'tooltip' => 'Item tooltip', - ], - ], - [ - 'parent_id' => '1', - 'module_name' => 'Magento_Module1', - 'sort_index' => '50', - 'depends_on_config' => null, - 'id' => '5', - 'resource' => null, - 'path' => '', - 'action' => null, - 'depends_on_module' => null, - 'tooltip' => '', - 'title' => null, - 'sub_menu' => ['submenuArray'] - ], - ], - 'data with submenu to constructor' => [ - [ - 'parent_id' => '1', - 'module_name' => 'Magento_Module1', - 'sort_index' => '50', - 'depends_on_config' => null, - 'id' => '5', - 'resource' => null, - 'path' => null, - 'action' => null, - 'depends_on_module' => null, - 'tooltip' => null, - 'title' => null, - 'sub_menu' => [ - 'id' => 'item', - 'title' => 'Item Title', - 'action' => '/system/config', - 'resource' => 'Magento_Config::config', - 'depends_on_module' => 'Magento_Backend', - 'depends_on_config' => 'system/config/isEnabled', - 'tooltip' => 'Item tooltip', - ], - ], - [ - 'parent_id' => '1', - 'module_name' => 'Magento_Module1', - 'sort_index' => '50', - 'sub_menu' => [ - 'id' => 'item', - 'title' => 'Item Title', - 'action' => '/system/config', - 'resource' => 'Magento_Config::config', - 'depends_on_module' => 'Magento_Backend', - 'depends_on_config' => 'system/config/isEnabled', - 'tooltip' => 'Item tooltip', - ], - ], - [ - 'parent_id' => '1', - 'module_name' => 'Magento_Module1', - 'sort_index' => '50', - 'depends_on_config' => null, - 'id' => null, - 'resource' => null, - 'path' => '', - 'action' => null, - 'depends_on_module' => null, - 'tooltip' => '', - 'title' => null, - 'sub_menu' => ['submenuArray'] - ], - ] - ]; + return include __DIR__ . '/../_files/menu_item_constructor_data.php'; } } diff --git a/app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_constructor_data.php b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_constructor_data.php new file mode 100644 index 00000000000..213e98de138 --- /dev/null +++ b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_constructor_data.php @@ -0,0 +1,133 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +return [ + 'default data to constructor' => [ + [], + [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], + [ + 'parent_id' => null, + 'module_name' => 'Magento_Backend', + 'sort_index' => null, + 'depends_on_config' => 'system/config/isEnabled', + 'id' => 'item', + 'resource' => 'Magento_Config::config', + 'path' => '', + 'action' => '/system/config', + 'depends_on_module' => 'Magento_Backend', + 'tooltip' => 'Item tooltip', + 'title' => 'Item Title', + 'sub_menu' => null + ], + ], + 'data without submenu to constructor' => [ + [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => '5', + 'resource' => null, + 'path' => null, + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => null, + 'title' => null, + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], + ], + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => '5', + 'resource' => null, + 'path' => '', + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => '', + 'title' => null, + 'sub_menu' => ['submenuArray'] + ], + ], + 'data with submenu to constructor' => [ + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => '5', + 'resource' => null, + 'path' => null, + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => null, + 'title' => null, + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], + ], + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], + ], + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => null, + 'resource' => null, + 'path' => '', + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => '', + 'title' => null, + 'sub_menu' => ['submenuArray'] + ], + ] +]; diff --git a/app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_data.php b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_data.php new file mode 100644 index 00000000000..c4c97e95af6 --- /dev/null +++ b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_data.php @@ -0,0 +1,118 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +return [ + 'no submenu' => [ + [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + 'sub_menu' => null, + ], + [ + 'parent_id' => null, + 'module_name' => 'Magento_Backend', + 'sort_index' => null, + 'depends_on_config' => 'system/config/isEnabled', + 'id' => 'item', + 'resource' => 'Magento_Config::config', + 'path' => '', + 'action' => '/system/config', + 'depends_on_module' => 'Magento_Backend', + 'tooltip' => 'Item tooltip', + 'title' => 'Item Title', + 'sub_menu' => null, + ] + ], + 'with submenu' => [ + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => '5', + 'resource' => null, + 'path' => null, + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => null, + 'title' => null, + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], + ], + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => '5', + 'resource' => null, + 'path' => null, + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => '', + 'title' => null, + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ] + ] + ], + 'small set of data' => [ + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ], + ], + [ + 'parent_id' => '1', + 'module_name' => 'Magento_Module1', + 'sort_index' => '50', + 'depends_on_config' => null, + 'id' => null, + 'resource' => null, + 'path' => '', + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => '', + 'title' => null, + 'sub_menu' => [ + 'id' => 'item', + 'title' => 'Item Title', + 'action' => '/system/config', + 'resource' => 'Magento_Config::config', + 'depends_on_module' => 'Magento_Backend', + 'depends_on_config' => 'system/config/isEnabled', + 'tooltip' => 'Item tooltip', + ] + ] + ] +]; diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php index f36c17889aa..1723b9a7030 100644 --- a/dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php +++ b/dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php @@ -28,6 +28,11 @@ class MenuTest extends \PHPUnit_Framework_TestCase */ protected $backupRegistrar; + /** + * @var \Magento\Backend\Model\Menu\Config + */ + private $menuConfig; + protected function setUp() { $this->configCacheType = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( @@ -35,8 +40,11 @@ class MenuTest extends \PHPUnit_Framework_TestCase ); $this->configCacheType->save('', \Magento\Backend\Model\Menu\Config::CACHE_MENU_OBJECT); + $this->menuConfig = $this->prepareMenuConfig(); + $this->blockMenu = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( - \Magento\Backend\Block\Menu::class + \Magento\Backend\Block\Menu::class, + ['menuConfig' => $this->menuConfig] ); $reflection = new \ReflectionClass(\Magento\Framework\Component\ComponentRegistrar::class); @@ -51,8 +59,7 @@ class MenuTest extends \PHPUnit_Framework_TestCase */ public function testRenderNavigation() { - $menuConfig = $this->prepareMenuConfig(); - $menuHtml = $this->blockMenu->renderNavigation($menuConfig->getMenu()); + $menuHtml = $this->blockMenu->renderNavigation($this->menuConfig->getMenu()); $menu = new \SimpleXMLElement($menuHtml); $item = $menu->xpath('/ul/li/a/span')[0]; diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php index 5cc7ddb911b..7bdb208475e 100644 --- a/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php +++ b/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php @@ -50,7 +50,7 @@ class MenuTest extends \PHPUnit_Framework_TestCase ) ); - //Add submenu + // Add submenu $menu->add( $itemFactory->create( [ -- GitLab From 212c93a7522a4c3b6e0769bddbc13ace19999448 Mon Sep 17 00:00:00 2001 From: Olga Kopylova <okopylova@magento.com> Date: Wed, 28 Dec 2016 10:19:52 -0600 Subject: [PATCH 151/175] MAGETWO-62253: Refactor code to remove unserialize - fixed tests --- .../Backend/Test/Unit/Model/MenuTest.php | 7 +- .../Magento/Backend/Model/MenuTest.php | 67 +++++++++++++++++-- 2 files changed, 63 insertions(+), 11 deletions(-) diff --git a/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php b/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php index 294ff9b41dc..12968df9f34 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php @@ -368,14 +368,9 @@ class MenuTest extends \PHPUnit_Framework_TestCase ->method('unserialize') ->willReturn([['unserializedData']]); $menuItemFactoryMock = $this->getMock(Factory::class, [], [], '', false); - $menuItemMock = $this->getMock(Item::class, [], [], '', false); $menuItemFactoryMock->expects($this->once()) ->method('create') - ->willReturn($menuItemMock); - $menuItemMock->expects($this->once()) - ->method('populateFromArray') - ->with(['unserializedData']) - ->willReturn($this); + ->with(['unserializedData']); $menu = $this->objectManagerHelper->getObject( \Magento\Backend\Model\Menu::class, [ diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php index 7bdb208475e..6c51e061f9d 100644 --- a/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php +++ b/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php @@ -78,7 +78,10 @@ class MenuTest extends \PHPUnit_Framework_TestCase $menu->move('Magento_Catalog::catalog_products', 'Magento_Backend::system2'); } - public function testSerializeUnserialize() + /** + * @magentoAppIsolation enabled + */ + public function testSerialize() { /** @var Menu $menu */ $menu = $this->objectManager->get(\Magento\Backend\Model\MenuFactory::class)->create(); @@ -111,9 +114,63 @@ class MenuTest extends \PHPUnit_Framework_TestCase 'Magento_Backend::system3' ); $serializedString = $menu->serialize(); - /** @var Menu $unserializedMenu */ - $unserializedMenu = $this->objectManager->get(\Magento\Backend\Model\MenuFactory::class)->create(); - $unserializedMenu->unserialize($serializedString); - $this->assertEquals($menu, $unserializedMenu); + $expected = '[{"parent_id":null,"module_name":"Magento_Backend","sort_index":null,"depends_on_config":null,' + . '"id":"Magento_Backend::system3","resource":"Magento_Backend::system3","path":"","action":null,' + . '"depends_on_module":null,"tooltip":"","title":"Extended System",' + . '"sub_menu":[{"parent_id":null,"module_name":"Magento_Backend","sort_index":null,' + . '"depends_on_config":null,"id":"Magento_Backend::system3_acl","resource":"Magento_Backend::system3_acl",' + . '"path":"","action":"admin\/backend\/acl\/index","depends_on_module":null,"tooltip":"","title":"Acl",' + . '"sub_menu":null}]}]'; + $this->assertEquals($expected, $serializedString); + } + + /** + * @magentoAppIsolation enabled + */ + public function testUnserialize() + { + $serializedMenu = '[{"parent_id":null,"module_name":"Magento_Backend","sort_index":null,' + . '"depends_on_config":null,"id":"Magento_Backend::system3","resource":"Magento_Backend::system3",' + . '"path":"","action":null,"depends_on_module":null,"tooltip":"","title":"Extended System",' + . '"sub_menu":[{"parent_id":null,"module_name":"Magento_Backend","sort_index":null,' + . '"depends_on_config":null,"id":"Magento_Backend::system3_acl","resource":"Magento_Backend::system3_acl",' + . '"path":"","action":"admin\/backend\/acl\/index","depends_on_module":null,"tooltip":"","title":"Acl",' + . '"sub_menu":null}]}]'; + /** @var Menu $menu */ + $menu = $this->objectManager->get(\Magento\Backend\Model\MenuFactory::class)->create(); + $menu->unserialize($serializedMenu); + $expected = [ + [ + 'parent_id' => null, + 'module_name' => 'Magento_Backend', + 'sort_index' => null, + 'depends_on_config' => null, + 'id' => 'Magento_Backend::system3', + 'resource' => 'Magento_Backend::system3', + 'path' => '', + 'action' => null, + 'depends_on_module' => null, + 'tooltip' => '', + 'title' => 'Extended System', + 'sub_menu' => + [ + [ + 'parent_id' => null, + 'module_name' => 'Magento_Backend', + 'sort_index' => null, + 'depends_on_config' => null, + 'id' => 'Magento_Backend::system3_acl', + 'resource' => 'Magento_Backend::system3_acl', + 'path' => '', + 'action' => 'admin/backend/acl/index', + 'depends_on_module' => null, + 'tooltip' => '', + 'title' => 'Acl', + 'sub_menu' => null, + ], + ], + ], + ]; + $this->assertEquals($expected, $menu->toArray()); } } -- GitLab From e6225cca2d13c1b077776448687376bcf353de49 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 28 Dec 2016 10:51:32 -0600 Subject: [PATCH 152/175] MAGETWO-62134: Create data converter that can process nested serialized data Whitelisting usage of Magento\Framework\Serialize\Serializer\Serialize --- .../Magento/Test/Legacy/_files/restricted_classes.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php index 196112e4379..9c99bf96cf2 100644 --- a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php +++ b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php @@ -108,6 +108,11 @@ return [ 'type' => 'setup', 'path' => 'src/Magento/Setup/Module/Di/Compiler/Config/Writer/Filesystem.php' ], + [ + 'type' => 'module', + 'name' => 'magento/sales', + 'path' => 'app/code/Magento/Sales/Setup/SerializedDataConverter.php' + ], ] ] ]; -- GitLab From b1bc6a397b8ebafa8b06f6edf96ec53bd05020b6 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 28 Dec 2016 11:49:22 -0600 Subject: [PATCH 153/175] MAGETWO-62134: Create data converter that can process nested serialized data Resolving code review feedback --- .../Sales/Order/Pdf/Items/AbstractItems.php | 27 ++++----------- .../Unit/Helper/Product/ConfigurationTest.php | 2 +- .../Quote/Model/Quote/Address/Total.php | 4 ++- app/code/Magento/Tax/Helper/Data.php | 33 +++++++++---------- 4 files changed, 27 insertions(+), 39 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php index d1d5e44f077..ccba97b753b 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php @@ -9,7 +9,8 @@ use Magento\Catalog\Model\Product\Type\AbstractType; use Magento\Framework\Serialize\Serializer\Json; /** - * Sales Order Pdf Items renderer + * Order pdf items renderer + * * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\AbstractItems @@ -22,10 +23,12 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra private $serializer; /** + * Constructor + * * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry * @param \Magento\Tax\Helper\Data $taxData - * @param \Magento\Framework\Filesystem $filesystem , + * @param \Magento\Framework\Filesystem $filesystem * @param \Magento\Framework\Filter\FilterManager $filterManager * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection @@ -43,8 +46,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra array $data = [], Json $serializer = null ) { - $this->serializer = $serializer; - + $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance()->get(Json::class); parent::__construct( $context, $registry, @@ -202,7 +204,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra $options = $item->getOrderItem()->getProductOptions(); } if (isset($options['bundle_selection_attributes'])) { - return $this->getSerializer()->unserialize($options['bundle_selection_attributes']); + return $this->serializer->unserialize($options['bundle_selection_attributes']); } return null; } @@ -287,19 +289,4 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra } return false; } - - /** - * The getter function to get serializer - * - * @return Json - * - * @deprecated - */ - private function getSerializer() - { - if ($this->serializer === null) { - $this->serializer = \Magento\Framework\App\ObjectManager::getInstance()->get(Json::class); - } - return $this->serializer; - } } diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php index 66a2b346868..902f63c578a 100644 --- a/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php @@ -8,7 +8,7 @@ namespace Magento\Catalog\Test\Unit\Helper\Product; class ConfigurationTest extends \PHPUnit_Framework_TestCase { /** - * @var \Magento\Framework\Serialize\Serializer\Json | \PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Framework\Serialize\Serializer\Json|\PHPUnit_Framework_MockObject_MockObject */ protected $serializer; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total.php b/app/code/Magento/Quote/Model/Quote/Address/Total.php index 499147b9bf7..cd7aa54e149 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total.php @@ -25,7 +25,9 @@ class Total extends \Magento\Framework\DataObject private $serializer; /** - * @param array $data [optional] + * Constructor + * + * @param array $data * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer */ public function __construct( diff --git a/app/code/Magento/Tax/Helper/Data.php b/app/code/Magento/Tax/Helper/Data.php index 3d5179b8f61..0626b336b33 100644 --- a/app/code/Magento/Tax/Helper/Data.php +++ b/app/code/Magento/Tax/Helper/Data.php @@ -3,9 +3,6 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ - -// @codingStandardsIgnoreFile - namespace Magento\Tax\Helper; use Magento\Framework\Pricing\PriceCurrencyInterface; @@ -22,9 +19,11 @@ use Magento\Framework\Serialize\Serializer\Json; use Magento\Framework\App\ObjectManager; /** - * Catalog data helper + * Tax helper + * * @SuppressWarnings(PHPMD.TooManyFields) * @SuppressWarnings(PHPMD.CouplingBetweenObjects) + * @codingStandardsIgnoreFile */ class Data extends \Magento\Framework\App\Helper\AbstractHelper { @@ -80,9 +79,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper protected $_localeResolver; /** - * \Magento\Catalog\Helper\Data - * - * @var CatalogHelper + * @var \Magento\Catalog\Helper\Data */ protected $catalogHelper; @@ -102,17 +99,19 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper private $serializer; /** - * @param \Magento\Framework\App\Helper\Context $context - * @param \Magento\Framework\Json\Helper\Data $jsonHelper - * @param Config $taxConfig - * @param \Magento\Store\Model\StoreManagerInterface $storeManager - * @param \Magento\Framework\Locale\FormatInterface $localeFormat + * Constructor + * + * @param \Magento\Framework\App\Helper\Context $context + * @param \Magento\Framework\Json\Helper\Data $jsonHelper + * @param Config $taxConfig + * @param \Magento\Store\Model\StoreManagerInterface $storeManager + * @param \Magento\Framework\Locale\FormatInterface $localeFormat * @param \Magento\Tax\Model\ResourceModel\Sales\Order\Tax\CollectionFactory $orderTaxCollectionFactory - * @param \Magento\Framework\Locale\ResolverInterface $localeResolver - * @param \Magento\Catalog\Helper\Data $catalogHelper - * @param OrderTaxManagementInterface $orderTaxManagement - * @param PriceCurrencyInterface $priceCurrency - * @param Json $serializer + * @param \Magento\Framework\Locale\ResolverInterface $localeResolver + * @param \Magento\Catalog\Helper\Data $catalogHelper + * @param OrderTaxManagementInterface $orderTaxManagement + * @param PriceCurrencyInterface $priceCurrency + * @param Json $serializer * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( -- GitLab From 62eb3b4f29f1fc3dbd9af1c91cc8a6164733422c Mon Sep 17 00:00:00 2001 From: Olga Kopylova <okopylova@magento.com> Date: Wed, 28 Dec 2016 12:01:17 -0600 Subject: [PATCH 154/175] MAGETWO-62253: Refactor code to remove unserialize - fixed integration tests --- .../testsuite/Magento/Backend/Block/MenuTest.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php index 1723b9a7030..c3988187c68 100644 --- a/dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php +++ b/dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php @@ -40,18 +40,18 @@ class MenuTest extends \PHPUnit_Framework_TestCase ); $this->configCacheType->save('', \Magento\Backend\Model\Menu\Config::CACHE_MENU_OBJECT); + $reflection = new \ReflectionClass(\Magento\Framework\Component\ComponentRegistrar::class); + $paths = $reflection->getProperty('paths'); + $paths->setAccessible(true); + $this->backupRegistrar = $paths->getValue(); + $paths->setAccessible(false); + $this->menuConfig = $this->prepareMenuConfig(); $this->blockMenu = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( \Magento\Backend\Block\Menu::class, ['menuConfig' => $this->menuConfig] ); - - $reflection = new \ReflectionClass(\Magento\Framework\Component\ComponentRegistrar::class); - $paths = $reflection->getProperty('paths'); - $paths->setAccessible(true); - $this->backupRegistrar = $paths->getValue(); - $paths->setAccessible(false); } /** -- GitLab From abd634bb2dd1fb5cf807c37882f053610e4eb1be Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 28 Dec 2016 13:28:17 -0600 Subject: [PATCH 155/175] MAGETWO-62134: Create data converter that can process nested serialized data Resolving code review feedback --- .../Sales/Order/Pdf/Items/Creditmemo.php | 15 +++++++++++--- .../Model/Sales/Order/Pdf/Items/Invoice.php | 20 +++++++++++++------ .../Model/Sales/Order/Pdf/Items/Shipment.php | 15 +++++++++++--- .../Order/Pdf/Items/AbstractItemsTest.php | 13 ++++++------ 4 files changed, 44 insertions(+), 19 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php index 2ac6e484bb5..c6f643b5afb 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php @@ -5,8 +5,11 @@ */ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; +use Magento\Framework\App\ObjectManager; +use Magento\Framework\Serialize\Serializer\Json; + /** - * Sales Order Creditmemo Pdf default items renderer + * Order creditmemo pdf default items renderer */ class Creditmemo extends AbstractItems { @@ -18,6 +21,8 @@ class Creditmemo extends AbstractItems protected $string; /** + * Constructor + * * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry * @param \Magento\Tax\Helper\Data $taxData @@ -27,6 +32,7 @@ class Creditmemo extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -37,9 +43,11 @@ class Creditmemo extends AbstractItems \Magento\Framework\Stdlib\StringUtils $string, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] + array $data = [], + Json $serializer = null ) { $this->string = $string; + $serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); parent::__construct( $context, $registry, @@ -48,7 +56,8 @@ class Creditmemo extends AbstractItems $filterManager, $resource, $resourceCollection, - $data + $data, + $serializer ); } diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php index 9b5d0b4a9c0..89c84c623aa 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php @@ -3,13 +3,15 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ - -// @codingStandardsIgnoreFile - namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; +use Magento\Framework\App\ObjectManager; +use Magento\Framework\Serialize\Serializer\Json; + /** - * Sales Order Invoice Pdf default items renderer + * Order invoice pdf default items renderer + * + * @codingStandardsIgnoreFile */ class Invoice extends AbstractItems { @@ -19,6 +21,8 @@ class Invoice extends AbstractItems protected $string; /** + * Constructor + * * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry * @param \Magento\Tax\Helper\Data $taxData @@ -28,6 +32,7 @@ class Invoice extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -38,8 +43,10 @@ class Invoice extends AbstractItems \Magento\Framework\Stdlib\StringUtils $coreString, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] + array $data = [], + Json $serializer = null ) { + $serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); $this->string = $coreString; parent::__construct( $context, @@ -49,7 +56,8 @@ class Invoice extends AbstractItems $filterManager, $resource, $resourceCollection, - $data + $data, + $serializer ); } diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php index fec75878c30..17aaadaf7f9 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php @@ -5,8 +5,11 @@ */ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; +use Magento\Framework\App\ObjectManager; +use Magento\Framework\Serialize\Serializer\Json; + /** - * Sales Order Shipment Pdf items renderer + * Order shipment pdf items renderer */ class Shipment extends AbstractItems { @@ -16,6 +19,8 @@ class Shipment extends AbstractItems protected $string; /** + * Constructor + * * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry * @param \Magento\Tax\Helper\Data $taxData @@ -25,6 +30,7 @@ class Shipment extends AbstractItems * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data + * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer */ public function __construct( \Magento\Framework\Model\Context $context, @@ -35,9 +41,11 @@ class Shipment extends AbstractItems \Magento\Framework\Stdlib\StringUtils $string, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, - array $data = [] + array $data = [], + Json $serializer = null ) { $this->string = $string; + $serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); parent::__construct( $context, $registry, @@ -46,7 +54,8 @@ class Shipment extends AbstractItems $filterManager, $resource, $resourceCollection, - $data + $data, + $serializer ); } diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php index 9038b070f58..b74deab061f 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php @@ -27,14 +27,13 @@ class AbstractItemsTest extends \PHPUnit_Framework_TestCase ); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $this->model = $objectManager->getObject(\Magento\Bundle\Model\Sales\Order\Pdf\Items\Shipment::class); - $this->serializer = $this->getMock(\Magento\Framework\Serialize\Serializer\Json::class); - $reflection = new \ReflectionClass(\Magento\Bundle\Model\Sales\Order\Pdf\Items\AbstractItems::class); - $reflectionProperty = $reflection->getProperty('serializer'); - $reflectionProperty->setAccessible(true); - $reflectionProperty->setValue($this->model, $this->serializer); - + $this->model = $objectManager->getObject( + \Magento\Bundle\Model\Sales\Order\Pdf\Items\Shipment::class, + [ + 'serializer' => $this->serializer + ] + ); } /** -- GitLab From 9a66bf9d9b82abb28e27b80d87fcbd707b393252 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 28 Dec 2016 13:36:45 -0600 Subject: [PATCH 156/175] MAGETWO-62134: Create data converter that can process nested serialized data Resolving code review feedback --- .../Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php index ccba97b753b..d96294eacc0 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php @@ -6,6 +6,7 @@ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; use Magento\Catalog\Model\Product\Type\AbstractType; +use Magento\Framework\App\ObjectManager; use Magento\Framework\Serialize\Serializer\Json; /** @@ -46,7 +47,7 @@ abstract class AbstractItems extends \Magento\Sales\Model\Order\Pdf\Items\Abstra array $data = [], Json $serializer = null ) { - $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance()->get(Json::class); + $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); parent::__construct( $context, $registry, -- GitLab From 078ad97ab7d11d22f56b4181337f6ef0e1e7c36d Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 28 Dec 2016 13:52:35 -0600 Subject: [PATCH 157/175] MAGETWO-62134: Create data converter that can process nested serialized data Resolving code review feedback --- .../Tax/Model/Quote/GrandTotalDetailsPlugin.php | 17 +++++++++-------- .../Model/Product/Type/GroupedTest.php | 3 +-- .../Sales/Model/AdminOrder/CreateTest.php | 5 ++--- .../Magento/Sales/Model/Order/ItemTest.php | 3 +-- .../Magento/Wishlist/Model/ItemTest.php | 7 +------ 5 files changed, 14 insertions(+), 21 deletions(-) diff --git a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php index 5df42af4493..6340c697d10 100644 --- a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php +++ b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php @@ -14,27 +14,27 @@ class GrandTotalDetailsPlugin /** * @var \Magento\Tax\Api\Data\GrandTotalDetailsInterfaceFactory */ - protected $detailsFactory; + private $detailsFactory; /** * @var \Magento\Tax\Api\Data\GrandTotalRatesInterfaceFactory */ - protected $ratesFactory; + private $ratesFactory; /** * @var TotalSegmentExtensionFactory */ - protected $totalSegmentExtensionFactory; + private $totalSegmentExtensionFactory; /** * @var \Magento\Tax\Model\Config */ - protected $taxConfig; + private $taxConfig; /** * @var string */ - protected $code; + private $code; /** * @var Json @@ -42,6 +42,8 @@ class GrandTotalDetailsPlugin private $serializer; /** + * Constructor + * * @param \Magento\Tax\Api\Data\GrandTotalDetailsInterfaceFactory $detailsFactory * @param \Magento\Tax\Api\Data\GrandTotalRatesInterfaceFactory $ratesFactory * @param TotalSegmentExtensionFactory $totalSegmentExtensionFactory @@ -53,14 +55,14 @@ class GrandTotalDetailsPlugin \Magento\Tax\Api\Data\GrandTotalRatesInterfaceFactory $ratesFactory, TotalSegmentExtensionFactory $totalSegmentExtensionFactory, \Magento\Tax\Model\Config $taxConfig, - Json $serializer = null + Json $serializer ) { $this->detailsFactory = $detailsFactory; $this->ratesFactory = $ratesFactory; $this->totalSegmentExtensionFactory = $totalSegmentExtensionFactory; $this->taxConfig = $taxConfig; + $this->serializer = $serializer; $this->code = 'tax'; - $this->serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); } /** @@ -83,7 +85,6 @@ class GrandTotalDetailsPlugin * @param \Magento\Quote\Model\Cart\TotalsConverter $subject * @param \Magento\Quote\Api\Data\TotalSegmentInterface[] $totalSegments * @param \Magento\Quote\Model\Quote\Address\Total[] $addressTotals - * * @return \Magento\Quote\Api\Data\TotalSegmentInterface[] * @SuppressWarnings(PHPMD.UnusedFormalParameter) * @SuppressWarnings(PHPMD.CyclomaticComplexity) diff --git a/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/Product/Type/GroupedTest.php b/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/Product/Type/GroupedTest.php index 87e015a0a52..97762b6c39c 100644 --- a/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/Product/Type/GroupedTest.php +++ b/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/Product/Type/GroupedTest.php @@ -82,10 +82,9 @@ class GroupedTest extends \PHPUnit_Framework_TestCase } /** + * @magentoDataFixture Magento/GroupedProduct/_files/product_grouped.php * @magentoAppIsolation enabled * @magentoDbIsolation disabled - * @covers \Magento\GroupedProduct\Model\Product\Type\Grouped::_prepareProduct() - * @magentoDataFixture Magento/GroupedProduct/_files/product_grouped.php */ public function testPrepareProduct() { diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php index ea76d4eebe1..acbbbef1b1e 100644 --- a/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php +++ b/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php @@ -508,9 +508,9 @@ class CreateTest extends \PHPUnit_Framework_TestCase } /** - * @magentoAppIsolation enabled * @magentoDataFixture Magento/Sales/_files/quote.php * @magentoDataFixture Magento/Customer/_files/customer.php + * @magentoAppIsolation enabled */ public function testGetCustomerCartExistingCart() { @@ -535,10 +535,9 @@ class CreateTest extends \PHPUnit_Framework_TestCase } /** - * @covers \Magento\Sales\Model\AdminOrder\Create::moveQuoteItem() - * @magentoAppIsolation enabled * @magentoDataFixture Magento/Sales/_files/quote.php * @magentoDataFixture Magento/Customer/_files/customer.php + * @magentoAppIsolation enabled */ public function testMoveQuoteItemToCart() { diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/ItemTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/ItemTest.php index c05d0747973..2b0ec3bc7ca 100644 --- a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/ItemTest.php +++ b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/ItemTest.php @@ -12,10 +12,9 @@ namespace Magento\Sales\Model\Order; class ItemTest extends \PHPUnit_Framework_TestCase { /** - * @covers \Magento\Sales\Model\Order\Item::getProductOptions - * @dataProvider getProductOptionsDataProvider * @param string $options * @param array $expectedData + * @dataProvider getProductOptionsDataProvider */ public function testGetProductOptions($options, $expectedData) { diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php index e46b8524b7b..004b605a7f1 100644 --- a/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php +++ b/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php @@ -31,11 +31,9 @@ class ItemTest extends \PHPUnit_Framework_TestCase } /** + * @magentoDataFixture Magento/Catalog/_files/product_simple.php * @magentoAppIsolation enabled * @magentoDbIsolation enabled - * @magentoDataFixture Magento/Catalog/_files/product_simple.php - * @covers \Magento\Wishlist\Model\Item::getBuyRequest() - * @covers \Magento\Wishlist\Model\Item::mergeBuyRequest() */ public function testBuyRequest() { @@ -64,9 +62,6 @@ class ItemTest extends \PHPUnit_Framework_TestCase ); } - /** - * @covers \Magento\Wishlist\Model\Item::setBuyRequest() - */ public function testSetBuyRequest() { $buyRequest = $this->objectManager->create( -- GitLab From 0068a8b7d16f65dd7eff88b5975acc2b4dfc91e4 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 28 Dec 2016 14:15:48 -0600 Subject: [PATCH 158/175] MAGETWO-62134: Create data converter that can process nested serialized data Resolving code review feedback --- .../Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php | 2 +- app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php | 2 +- .../Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php index c6f643b5afb..b9efefa03eb 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php @@ -33,6 +33,7 @@ class Creditmemo extends AbstractItems * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer + * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( \Magento\Framework\Model\Context $context, @@ -47,7 +48,6 @@ class Creditmemo extends AbstractItems Json $serializer = null ) { $this->string = $string; - $serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); parent::__construct( $context, $registry, diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php index 89c84c623aa..e164ffa394a 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php @@ -33,6 +33,7 @@ class Invoice extends AbstractItems * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer + * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( \Magento\Framework\Model\Context $context, @@ -46,7 +47,6 @@ class Invoice extends AbstractItems array $data = [], Json $serializer = null ) { - $serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); $this->string = $coreString; parent::__construct( $context, diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php index 17aaadaf7f9..0df79bd57b1 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php @@ -31,6 +31,7 @@ class Shipment extends AbstractItems * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data * @param \Magento\Framework\Serialize\Serializer\Json|null $serializer + * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( \Magento\Framework\Model\Context $context, @@ -45,7 +46,6 @@ class Shipment extends AbstractItems Json $serializer = null ) { $this->string = $string; - $serializer = $serializer ?: ObjectManager::getInstance()->get(Json::class); parent::__construct( $context, $registry, -- GitLab From b723cb12d624e7d1d0e92bc112ee58ba71b2097c Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Wed, 28 Dec 2016 15:06:47 -0600 Subject: [PATCH 159/175] MAGETWO-62134: Create data converter that can process nested serialized data - Correctly whitelisting classes that use Magento\Framework\Serialize\Serializer\Serialize --- .../Magento/Test/Legacy/_files/restricted_classes.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php index 9c99bf96cf2..1c593657742 100644 --- a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php +++ b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php @@ -110,8 +110,13 @@ return [ ], [ 'type' => 'module', - 'name' => 'magento/sales', - 'path' => 'app/code/Magento/Sales/Setup/SerializedDataConverter.php' + 'name' => 'Magento_Sales', + 'path' => 'Setup/SerializedDataConverter.php' + ], + [ + 'type' => 'module', + 'name' => 'Magento_Sales', + 'path' => 'Test/Unit/Setup/SerializedDataConverterTest.php' ], ] ] -- GitLab From 3495e603b5789ff50eb4e33d07b26820d7e759ff Mon Sep 17 00:00:00 2001 From: Iryna Lagno <ilagno@magento.com> Date: Fri, 30 Dec 2016 12:47:16 +0200 Subject: [PATCH 160/175] MAGETWO-52856: [WebAPI] Improve WebAPI performance of Checkout Payment Info/Place order call --- .../Model/PaymentInformationManagement.php | 35 ++++++++++- .../Model/ShippingInformationManagement.php | 1 + .../PaymentInformationManagementTest.php | 59 +++++++++++++------ .../ShippingInformationManagementTest.php | 5 +- .../Quote/Model/CustomerManagement.php | 2 - .../Unit/Model/CustomerManagementTest.php | 30 ++++++++++ 6 files changed, 110 insertions(+), 22 deletions(-) diff --git a/app/code/Magento/Checkout/Model/PaymentInformationManagement.php b/app/code/Magento/Checkout/Model/PaymentInformationManagement.php index 79e76feb436..4a0f502da20 100644 --- a/app/code/Magento/Checkout/Model/PaymentInformationManagement.php +++ b/app/code/Magento/Checkout/Model/PaymentInformationManagement.php @@ -14,6 +14,7 @@ class PaymentInformationManagement implements \Magento\Checkout\Api\PaymentInfor { /** * @var \Magento\Quote\Api\BillingAddressManagementInterface + * @deprecated This call was substituted to eliminate extra quote::save call */ protected $billingAddressManagement; @@ -42,6 +43,11 @@ class PaymentInformationManagement implements \Magento\Checkout\Api\PaymentInfor */ private $logger; + /** + * @var \Magento\Quote\Api\CartRepositoryInterface + */ + private $cartRepository; + /** * @param \Magento\Quote\Api\BillingAddressManagementInterface $billingAddressManagement * @param \Magento\Quote\Api\PaymentMethodManagementInterface $paymentMethodManagement @@ -99,7 +105,19 @@ class PaymentInformationManagement implements \Magento\Checkout\Api\PaymentInfor \Magento\Quote\Api\Data\AddressInterface $billingAddress = null ) { if ($billingAddress) { - $this->billingAddressManagement->assign($cartId, $billingAddress); + /** @var \Magento\Quote\Api\CartRepositoryInterface $quoteRepository */ + $quoteRepository = $this->getCartRepository(); + /** @var \Magento\Quote\Model\Quote $quote */ + $quote = $quoteRepository->getActive($cartId); + $quote->removeAddress($quote->getBillingAddress()->getId()); + $quote->setBillingAddress($billingAddress); + $quote->setDataChanges(true); + $shippingAddress = $quote->getShippingAddress(); + if ($shippingAddress && $shippingAddress->getShippingMethod()) { + $shippingDataArray = explode('_', $shippingAddress->getShippingMethod()); + $shippingCarrier = array_shift($shippingDataArray); + $shippingAddress->setLimitCarrier($shippingCarrier); + } } $this->paymentMethodManagement->set($cartId, $paymentMethod); return true; @@ -130,4 +148,19 @@ class PaymentInformationManagement implements \Magento\Checkout\Api\PaymentInfor } return $this->logger; } + + /** + * Get Cart repository + * + * @return \Magento\Quote\Api\CartRepositoryInterface + * @deprecated + */ + private function getCartRepository() + { + if (!$this->cartRepository) { + $this->cartRepository = \Magento\Framework\App\ObjectManager::getInstance() + ->get(\Magento\Quote\Api\CartRepositoryInterface::class); + } + return $this->cartRepository; + } } diff --git a/app/code/Magento/Checkout/Model/ShippingInformationManagement.php b/app/code/Magento/Checkout/Model/ShippingInformationManagement.php index 237d28e2845..1b4f8b8c64a 100644 --- a/app/code/Magento/Checkout/Model/ShippingInformationManagement.php +++ b/app/code/Magento/Checkout/Model/ShippingInformationManagement.php @@ -144,6 +144,7 @@ class ShippingInformationManagement implements \Magento\Checkout\Api\ShippingInf /** @var \Magento\Quote\Model\Quote $quote */ $quote = $this->quoteRepository->getActive($cartId); + $address->setLimitCarrier($carrierCode); $quote = $this->prepareShippingAssignment($quote, $address, $carrierCode . '_' . $methodCode); $this->validateQuote($quote); $quote->setIsMultiShipping(false); diff --git a/app/code/Magento/Checkout/Test/Unit/Model/PaymentInformationManagementTest.php b/app/code/Magento/Checkout/Test/Unit/Model/PaymentInformationManagementTest.php index 8da67a1fcb7..f256d8edefd 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/PaymentInformationManagementTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/PaymentInformationManagementTest.php @@ -5,8 +5,9 @@ */ namespace Magento\Checkout\Test\Unit\Model; -use Magento\Framework\Exception\CouldNotSaveException; - +/** + * @SuppressWarnings(PHPMD.CouplingBetweenObjects) + */ class PaymentInformationManagementTest extends \PHPUnit_Framework_TestCase { /** @@ -34,6 +35,11 @@ class PaymentInformationManagementTest extends \PHPUnit_Framework_TestCase */ private $loggerMock; + /** + * @var \PHPUnit_Framework_MockObject_MockObject + */ + private $cartRepositoryMock; + protected function setUp() { $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); @@ -46,7 +52,7 @@ class PaymentInformationManagementTest extends \PHPUnit_Framework_TestCase $this->cartManagementMock = $this->getMock(\Magento\Quote\Api\CartManagementInterface::class); $this->loggerMock = $this->getMock(\Psr\Log\LoggerInterface::class); - + $this->cartRepositoryMock = $this->getMockBuilder(\Magento\Quote\Api\CartRepositoryInterface::class)->getMock(); $this->model = $objectManager->getObject( \Magento\Checkout\Model\PaymentInformationManagement::class, [ @@ -56,6 +62,7 @@ class PaymentInformationManagementTest extends \PHPUnit_Framework_TestCase ] ); $objectManager->setBackwardCompatibleProperty($this->model, 'logger', $this->loggerMock); + $objectManager->setBackwardCompatibleProperty($this->model, 'cartRepository', $this->cartRepositoryMock); } public function testSavePaymentInformationAndPlaceOrder() @@ -65,9 +72,7 @@ class PaymentInformationManagementTest extends \PHPUnit_Framework_TestCase $paymentMock = $this->getMock(\Magento\Quote\Api\Data\PaymentInterface::class); $billingAddressMock = $this->getMock(\Magento\Quote\Api\Data\AddressInterface::class); - $this->billingAddressManagementMock->expects($this->once()) - ->method('assign') - ->with($cartId, $billingAddressMock); + $this->getMockForAssignBillingAddress($cartId, $billingAddressMock); $this->paymentMethodManagementMock->expects($this->once())->method('set')->with($cartId, $paymentMock); $this->cartManagementMock->expects($this->once())->method('placeOrder')->with($cartId)->willReturn($orderId); @@ -87,9 +92,7 @@ class PaymentInformationManagementTest extends \PHPUnit_Framework_TestCase $paymentMock = $this->getMock(\Magento\Quote\Api\Data\PaymentInterface::class); $billingAddressMock = $this->getMock(\Magento\Quote\Api\Data\AddressInterface::class); - $this->billingAddressManagementMock->expects($this->once()) - ->method('assign') - ->with($cartId, $billingAddressMock); + $this->getMockForAssignBillingAddress($cartId, $billingAddressMock); $this->paymentMethodManagementMock->expects($this->once())->method('set')->with($cartId, $paymentMock); $exception = new \Exception(__('DB exception')); $this->loggerMock->expects($this->once())->method('critical'); @@ -104,7 +107,6 @@ class PaymentInformationManagementTest extends \PHPUnit_Framework_TestCase $orderId = 200; $paymentMock = $this->getMock(\Magento\Quote\Api\Data\PaymentInterface::class); - $this->billingAddressManagementMock->expects($this->never())->method('assign'); $this->paymentMethodManagementMock->expects($this->once())->method('set')->with($cartId, $paymentMock); $this->cartManagementMock->expects($this->once())->method('placeOrder')->with($cartId)->willReturn($orderId); @@ -120,9 +122,7 @@ class PaymentInformationManagementTest extends \PHPUnit_Framework_TestCase $paymentMock = $this->getMock(\Magento\Quote\Api\Data\PaymentInterface::class); $billingAddressMock = $this->getMock(\Magento\Quote\Api\Data\AddressInterface::class); - $this->billingAddressManagementMock->expects($this->once()) - ->method('assign') - ->with($cartId, $billingAddressMock); + $this->getMockForAssignBillingAddress($cartId, $billingAddressMock); $this->paymentMethodManagementMock->expects($this->once())->method('set')->with($cartId, $paymentMock); $this->assertTrue($this->model->savePaymentInformation($cartId, $paymentMock, $billingAddressMock)); @@ -133,7 +133,6 @@ class PaymentInformationManagementTest extends \PHPUnit_Framework_TestCase $cartId = 100; $paymentMock = $this->getMock(\Magento\Quote\Api\Data\PaymentInterface::class); - $this->billingAddressManagementMock->expects($this->never())->method('assign'); $this->paymentMethodManagementMock->expects($this->once())->method('set')->with($cartId, $paymentMock); $this->assertTrue($this->model->savePaymentInformation($cartId, $paymentMock)); @@ -149,9 +148,8 @@ class PaymentInformationManagementTest extends \PHPUnit_Framework_TestCase $paymentMock = $this->getMock(\Magento\Quote\Api\Data\PaymentInterface::class); $billingAddressMock = $this->getMock(\Magento\Quote\Api\Data\AddressInterface::class); - $this->billingAddressManagementMock->expects($this->once()) - ->method('assign') - ->with($cartId, $billingAddressMock); + $this->getMockForAssignBillingAddress($cartId, $billingAddressMock); + $this->paymentMethodManagementMock->expects($this->once())->method('set')->with($cartId, $paymentMock); $phrase = new \Magento\Framework\Phrase(__('DB exception')); $exception = new \Magento\Framework\Exception\LocalizedException($phrase); @@ -160,4 +158,31 @@ class PaymentInformationManagementTest extends \PHPUnit_Framework_TestCase $this->model->savePaymentInformationAndPlaceOrder($cartId, $paymentMock, $billingAddressMock); } + + /** + * @param int $cartId + * @param \PHPUnit_Framework_MockObject_MockObject $billingAddressMock + */ + private function getMockForAssignBillingAddress($cartId, $billingAddressMock) + { + $billingAddressId = 1; + $quoteMock = $this->getMock(\Magento\Quote\Model\Quote::class, [], [], '', false); + $quoteBillingAddress = $this->getMock(\Magento\Quote\Model\Quote\Address::class, [], [], '', false); + $quoteShippingAddress = $this->getMock( + \Magento\Quote\Model\Quote\Address::class, + ['setLimitCarrier', 'getShippingMethod'], + [], + '', + false + ); + $this->cartRepositoryMock->expects($this->any())->method('getActive')->with($cartId)->willReturn($quoteMock); + $quoteMock->expects($this->once())->method('getBillingAddress')->willReturn($quoteBillingAddress); + $quoteMock->expects($this->once())->method('getShippingAddress')->willReturn($quoteShippingAddress); + $quoteBillingAddress->expects($this->once())->method('getId')->willReturn($billingAddressId); + $quoteMock->expects($this->once())->method('removeAddress')->with($billingAddressId); + $quoteMock->expects($this->once())->method('setBillingAddress')->with($billingAddressMock); + $quoteMock->expects($this->once())->method('setDataChanges')->willReturnSelf(); + $quoteShippingAddress->expects($this->any())->method('getShippingMethod')->willReturn('flatrate_flatrate'); + $quoteShippingAddress->expects($this->once())->method('setLimitCarrier')->with('flatrate')->willReturnSelf(); + } } diff --git a/app/code/Magento/Checkout/Test/Unit/Model/ShippingInformationManagementTest.php b/app/code/Magento/Checkout/Test/Unit/Model/ShippingInformationManagementTest.php index 402a0c82283..751bcee6db2 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/ShippingInformationManagementTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/ShippingInformationManagementTest.php @@ -109,7 +109,8 @@ class ShippingInformationManagementTest extends \PHPUnit_Framework_TestCase 'importCustomerAddressData', 'save', 'getShippingRateByCode', - 'getShippingMethod' + 'getShippingMethod', + 'setLimitCarrier' ], [], '', @@ -208,7 +209,7 @@ class ShippingInformationManagementTest extends \PHPUnit_Framework_TestCase private function setShippingAssignmentsMocks($shippingMethod) { $this->quoteMock->expects($this->once())->method('getExtensionAttributes')->willReturn(null); - + $this->shippingAddressMock->expects($this->once())->method('setLimitCarrier'); $this->cartExtensionMock = $this->getMock( \Magento\Quote\Api\Data\CartExtension::class, ['getShippingAssignments', 'setShippingAssignments'], diff --git a/app/code/Magento/Quote/Model/CustomerManagement.php b/app/code/Magento/Quote/Model/CustomerManagement.php index b796ebe9d0d..04707e15267 100644 --- a/app/code/Magento/Quote/Model/CustomerManagement.php +++ b/app/code/Magento/Quote/Model/CustomerManagement.php @@ -62,8 +62,6 @@ class CustomerManagement $quote->getPasswordHash() ); $quote->setCustomer($customer); - } else { - $this->customerRepository->save($customer); } if (!$quote->getBillingAddress()->getId() && $customer->getDefaultBilling()) { $quote->getBillingAddress()->importCustomerAddressData( diff --git a/app/code/Magento/Quote/Test/Unit/Model/CustomerManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/CustomerManagementTest.php index 600bf1723a5..a1caac3473c 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/CustomerManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/CustomerManagementTest.php @@ -158,4 +158,34 @@ class CustomerManagementTest extends \PHPUnit_Framework_TestCase ->willReturn($this->customerMock); $this->customerManagement->populateCustomerInfo($this->quoteMock); } + + public function testPopulateCustomerInfoForExistingCustomer() + { + $this->quoteMock->expects($this->once()) + ->method('getCustomer') + ->willReturn($this->customerMock); + $this->customerMock->expects($this->atLeastOnce()) + ->method('getId') + ->willReturn(1); + $this->customerMock->expects($this->atLeastOnce()) + ->method('getDefaultBilling') + ->willReturn(100500); + $this->quoteMock->expects($this->atLeastOnce()) + ->method('getBillingAddress') + ->willReturn($this->quoteAddressMock); + $this->quoteMock->expects($this->atLeastOnce()) + ->method('getShippingAddress') + ->willReturn($this->quoteAddressMock); + $this->quoteAddressMock->expects($this->atLeastOnce()) + ->method('getId') + ->willReturn(null); + $this->customerAddressRepositoryMock->expects($this->atLeastOnce()) + ->method('getById') + ->with(100500) + ->willReturn($this->customerAddressMock); + $this->quoteAddressMock->expects($this->atLeastOnce()) + ->method('importCustomerAddressData') + ->willReturnSelf(); + $this->customerManagement->populateCustomerInfo($this->quoteMock); + } } -- GitLab From 22df83cd5e6b2bab973a0ee2ac13a1a80c08cded Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@magento.com> Date: Tue, 3 Jan 2017 15:59:00 -0600 Subject: [PATCH 161/175] MAGETWO-62902: Bundle and custom options of type file not converted - Use \Magento\Sales\Setup\SerializedDataConverter for sales_order_item.product_options --- .../Setup/ConvertSerializedDataToJson.php | 36 ++++++++++++++++--- 1 file changed, 31 insertions(+), 5 deletions(-) diff --git a/app/code/Magento/Sales/Setup/ConvertSerializedDataToJson.php b/app/code/Magento/Sales/Setup/ConvertSerializedDataToJson.php index 52047d0e59d..7fe2e2743e1 100644 --- a/app/code/Magento/Sales/Setup/ConvertSerializedDataToJson.php +++ b/app/code/Magento/Sales/Setup/ConvertSerializedDataToJson.php @@ -7,6 +7,7 @@ namespace Magento\Sales\Setup; use Magento\Framework\DB\FieldDataConverterFactory; use Magento\Framework\DB\DataConverter\SerializedToJson; +use Magento\Framework\DB\FieldDataConverter; /** * Convert serialized data in sales tables to JSON @@ -23,6 +24,11 @@ class ConvertSerializedDataToJson */ private $fieldDataConverterFactory; + /** + * @var array + */ + private $fieldDataConverters = []; + /** * @var array */ @@ -30,22 +36,26 @@ class ConvertSerializedDataToJson [ 'table' => 'sales_order_item', 'identifier' => 'item_id', - 'title' => 'product_options' + 'title' => 'product_options', + 'data_converter' => SerializedDataConverter::class ], [ 'table' => 'sales_shipment', 'identifier' => 'entity_id', - 'title' => 'packages' + 'title' => 'packages', + 'data_converter' => SerializedToJson::class ], [ 'table' => 'sales_order_payment', 'identifier' => 'entity_id', - 'title' => 'additional_information' + 'title' => 'additional_information', + 'data_converter' => SerializedToJson::class ], [ 'table' => 'sales_payment_transaction', 'identifier' => 'transaction_id', - 'title' => 'additional_information' + 'title' => 'additional_information', + 'data_converter' => SerializedToJson::class ] ]; @@ -74,8 +84,8 @@ class ConvertSerializedDataToJson */ public function convert() { - $fieldDataConverter = $this->fieldDataConverterFactory->create(SerializedToJson::class); foreach ($this->fieldsToUpdate as $field) { + $fieldDataConverter = $this->getFieldDataConverter($field['data_converter']); $fieldDataConverter->convert( $this->salesSetup->getConnection(), $this->salesSetup->getTable($field['table']), @@ -84,4 +94,20 @@ class ConvertSerializedDataToJson ); } } + + /** + * Get field data converter + * + * @param string $dataConverterClassName + * @return FieldDataConverter + */ + private function getFieldDataConverter($dataConverterClassName) + { + if (!isset($this->fieldDataConverters[$dataConverterClassName])) { + $this->fieldDataConverters[$dataConverterClassName] = $this->fieldDataConverterFactory->create( + $dataConverterClassName + ); + } + return $this->fieldDataConverters[$dataConverterClassName]; + } } -- GitLab From 7da80b420e71d514a6581e00e4974ef4326f7ac2 Mon Sep 17 00:00:00 2001 From: Venkata Uppalapati <vuppalapati@magento.com> Date: Tue, 3 Jan 2017 16:03:16 -0600 Subject: [PATCH 162/175] MAGETWO-59785: Incorrect URLs in sitemap when generated from admin with 'Use Secure URLs in Admin' = Yes Used API methods. Reformatted the code. --- app/code/Magento/Sitemap/Model/Sitemap.php | 5 ++- .../Sitemap/Test/Unit/Model/SitemapTest.php | 45 +++++++------------ 2 files changed, 18 insertions(+), 32 deletions(-) diff --git a/app/code/Magento/Sitemap/Model/Sitemap.php b/app/code/Magento/Sitemap/Model/Sitemap.php index a26cbcc58bd..c8d15c7a855 100644 --- a/app/code/Magento/Sitemap/Model/Sitemap.php +++ b/app/code/Magento/Sitemap/Model/Sitemap.php @@ -586,8 +586,9 @@ class Sitemap extends \Magento\Framework\Model\AbstractModel */ protected function _getStoreBaseUrl($type = \Magento\Framework\UrlInterface::URL_TYPE_LINK) { - $isSecure = $this->_storeManager->getStore($this->getStoreId())->isFrontUrlSecure(); - return rtrim($this->_storeManager->getStore($this->getStoreId())->getBaseUrl($type, $isSecure), '/') . '/'; + $store = $this->_storeManager->getStore($this->getStoreId()); + $isSecure = $store->isUrlSecure(); + return rtrim($store->getBaseUrl($type, $isSecure), '/') . '/'; } /** diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php index 297161fb9fd..964d12b8ad1 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php +++ b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php @@ -478,32 +478,19 @@ class SitemapTest extends \PHPUnit_Framework_TestCase $model = $this->_getModelMock(true); - $storeMock = $this->getMockBuilder( - \Magento\Store\Model\Store::class - )->setMethods( - ['isFrontUrlSecure', 'getBaseUrl'] - )->disableOriginalConstructor()->getMock(); + $storeMock = $this->getMockBuilder(\Magento\Store\Model\Store::class) + ->setMethods(['isFrontUrlSecure', 'getBaseUrl']) + ->disableOriginalConstructor() + ->getMock(); $storeMock->expects($this->atLeastOnce())->method('isFrontUrlSecure')->willReturn(false); - $storeMock->expects( - $this->atLeastOnce() - )->method( - 'getBaseUrl' - )->with( - $this->isType('string'), - false - )->willReturn( - 'http://store.com/' - ); - - $this->_storeManagerMock->expects( - $this->atLeastOnce() - )->method( - 'getStore' - )->with( - 1 - )->willReturn( - $storeMock - ); + $storeMock->expects($this->atLeastOnce()) + ->method('getBaseUrl') + ->with($this->isType('string'), false) + ->willReturn('http://store.com/'); + $this->_storeManagerMock->expects($this->atLeastOnce()) + ->method('getStore') + ->with(1) + ->willReturn($storeMock); return $model; } @@ -641,11 +628,9 @@ class SitemapTest extends \PHPUnit_Framework_TestCase )->disableOriginalConstructor()->getMock(); $cmsFactory->expects($this->any())->method('create')->will($this->returnValue($this->_sitemapCmsPageMock)); - $this->_storeManagerMock = $this->getMockBuilder( - \Magento\Store\Model\StoreManagerInterface::class - )->setMethods( - ['getStore'] - )->getMockForAbstractClass(); + $this->_storeManagerMock = $this->getMockBuilder(\Magento\Store\Model\StoreManagerInterface::class) + ->setMethods(['getStore']) + ->getMockForAbstractClass(); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $constructArguments = $objectManager->getConstructArguments( -- GitLab From 69c2954aa59937558ea9363a2d9bb34014137eae Mon Sep 17 00:00:00 2001 From: Iurii Ivashchenko <iivashchenko@magento.com> Date: Wed, 4 Jan 2017 12:53:54 +0200 Subject: [PATCH 163/175] MAGETWO-62856: JSUnit job is failed on current mainline --- .../Ui/base/js/lib/ko/bind/datepicker.test.js | 28 +++++++++---------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js index e5f90863ec6..10f45f8729e 100644 --- a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js +++ b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js @@ -18,21 +18,23 @@ define([ config; beforeEach(function () { - element = $('<input />'); + element = $('<input />'); observable = ko.observable(); config = { - options : { - dateFormat: 'M/d/yy', + options: { + 'dateFormat': 'M/d/yy', 'storeLocale': 'en_US', 'timeFormat': 'h:mm: a' }, - storage:ko.observable(moment().format('MM/DD/YYYY')) + storage: observable }; $(document.body).append(element); - ko.applyBindingsToNode(element[0], { datepicker: config }); + ko.applyBindingsToNode(element[0], { + datepicker: config + }); }); afterEach(function () { @@ -40,20 +42,16 @@ define([ }); it('writes picked date\'s value to assigned observable', function () { - var todayDate, - momentFormat, - result, - inputFormat; - - inputFormat = 'M/d/yy'; + var todayDate, momentFormat, result, + inputFormat = 'M/d/yy'; momentFormat = utils.convertToMomentFormat(inputFormat); + todayDate = moment().format(momentFormat); - todayDate = moment().format(momentFormat); - - result = $('input:last').val(); + element.datepicker('setTimezoneDate').blur().trigger('change'); + result = moment(observable()).format(momentFormat); expect(todayDate).toEqual(result); }); }); -}); \ No newline at end of file +}); -- GitLab From 2703dea7e1ca4c6d92db973907cf4b9086280c27 Mon Sep 17 00:00:00 2001 From: Siarhei Andreyeu <Siarhei_Andreyeu@epam.com> Date: Wed, 4 Jan 2017 14:08:48 +0300 Subject: [PATCH 164/175] MAGETWO-62850: API for price update: Special price --- .../Product/Form/Modifier/BundlePanel.php | 20 +- app/code/Magento/Bundle/etc/di.xml | 8 +- .../Catalog/Api/BasePriceStorageInterface.php | 11 +- .../Catalog/Api/CostStorageInterface.php | 16 +- .../Api/Data/PriceUpdateResultInterface.php | 69 +++ .../Api/Data/SpecialPriceInterface.php | 117 +++++ .../Catalog/Api/SpecialPriceInterface.php | 67 +++ .../Api/SpecialPriceStorageInterface.php | 49 ++ .../Catalog/Api/TierPriceStorageInterface.php | 24 +- .../Model/Product/Price/BasePriceStorage.php | 141 +++--- .../Model/Product/Price/CostStorage.php | 115 +++-- .../Model/Product/Price/InvalidSkuChecker.php | 81 +++ .../Model/Product/Price/PriceUpdateResult.php | 64 +++ .../Model/Product/Price/SpecialPrice.php | 112 +++++ .../Product/Price/SpecialPriceStorage.php | 245 +++++++++ .../Model/Product/Price/TierPriceStorage.php | 75 ++- .../Product/Price/TierPriceValidator.php | 351 ------------- .../Model/Product/Price/Validation/Result.php | 82 +++ .../Price/Validation/TierPriceValidator.php | 414 +++++++++++++++ .../Product/Price/SpecialPrice.php | 320 ++++++++++++ .../Product/Price/BasePriceStorageTest.php | 147 +++--- .../Model/Product/Price/CostStorageTest.php | 141 +++--- .../Product/Price/InvalidSkuCheckerTest.php | 121 +++++ .../Product/Price/SpecialPriceStorageTest.php | 294 +++++++++++ .../Product/Price/TierPriceStorageTest.php | 63 ++- .../Product/Price/TierPriceValidatorTest.php | 471 ------------------ .../Validation/TierPriceValidatorTest.php | 333 +++++++++++++ app/code/Magento/Catalog/etc/di.xml | 14 +- app/code/Magento/Catalog/etc/webapi.xml | 18 + app/code/Magento/Downloadable/etc/di.xml | 9 +- .../Catalog/Api/BasePriceStorageTest.php | 92 +++- .../Magento/Catalog/Api/CostStorageTest.php | 126 ++++- .../Catalog/Api/SpecialPriceStorageTest.php | 181 +++++++ .../Catalog/Api/TierPriceStorageTest.php | 57 ++- 34 files changed, 3283 insertions(+), 1165 deletions(-) create mode 100644 app/code/Magento/Catalog/Api/Data/PriceUpdateResultInterface.php create mode 100644 app/code/Magento/Catalog/Api/Data/SpecialPriceInterface.php create mode 100644 app/code/Magento/Catalog/Api/SpecialPriceInterface.php create mode 100644 app/code/Magento/Catalog/Api/SpecialPriceStorageInterface.php create mode 100644 app/code/Magento/Catalog/Model/Product/Price/InvalidSkuChecker.php create mode 100644 app/code/Magento/Catalog/Model/Product/Price/PriceUpdateResult.php create mode 100644 app/code/Magento/Catalog/Model/Product/Price/SpecialPrice.php create mode 100644 app/code/Magento/Catalog/Model/Product/Price/SpecialPriceStorage.php delete mode 100644 app/code/Magento/Catalog/Model/Product/Price/TierPriceValidator.php create mode 100644 app/code/Magento/Catalog/Model/Product/Price/Validation/Result.php create mode 100644 app/code/Magento/Catalog/Model/Product/Price/Validation/TierPriceValidator.php create mode 100644 app/code/Magento/Catalog/Model/ResourceModel/Product/Price/SpecialPrice.php create mode 100644 app/code/Magento/Catalog/Test/Unit/Model/Product/Price/InvalidSkuCheckerTest.php create mode 100644 app/code/Magento/Catalog/Test/Unit/Model/Product/Price/SpecialPriceStorageTest.php delete mode 100644 app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceValidatorTest.php create mode 100644 app/code/Magento/Catalog/Test/Unit/Model/Product/Price/Validation/TierPriceValidatorTest.php create mode 100644 dev/tests/api-functional/testsuite/Magento/Catalog/Api/SpecialPriceStorageTest.php diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php index 4012af357e2..12ea90ae901 100644 --- a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php +++ b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php @@ -203,17 +203,19 @@ class BundlePanel extends AbstractModifier $pricePath = $this->arrayManager->slicePath($pricePath, 0, -1) . '/value_type/arguments/data/options'; $price = $this->arrayManager->get($pricePath, $meta); - $meta = $this->arrayManager->remove($pricePath, $meta); - foreach ($price as $key => $item) { - if ($item['value'] == ProductPriceOptionsInterface::VALUE_FIXED) { - unset($price[$key]); + if ($price) { + $meta = $this->arrayManager->remove($pricePath, $meta); + foreach ($price as $key => $item) { + if ($item['value'] == ProductPriceOptionsInterface::VALUE_FIXED) { + unset($price[$key]); + } } + $meta = $this->arrayManager->merge( + $this->arrayManager->slicePath($pricePath, 0, -1), + $meta, + ['options' => $price] + ); } - $meta = $this->arrayManager->merge( - $this->arrayManager->slicePath($pricePath, 0, -1), - $meta, - ['options' => $price] - ); return $meta; } diff --git a/app/code/Magento/Bundle/etc/di.xml b/app/code/Magento/Bundle/etc/di.xml index 3425b9323ed..9e27fc92a7d 100644 --- a/app/code/Magento/Bundle/etc/di.xml +++ b/app/code/Magento/Bundle/etc/di.xml @@ -130,5 +130,11 @@ </argument> </arguments> </type> - + <type name="Magento\Catalog\Model\Product\Price\SpecialPriceStorage"> + <arguments> + <argument name="allowedProductTypes" xsi:type="array"> + <item name="2" xsi:type="string">bundle</item> + </argument> + </arguments> + </type> </config> diff --git a/app/code/Magento/Catalog/Api/BasePriceStorageInterface.php b/app/code/Magento/Catalog/Api/BasePriceStorageInterface.php index 013ec1f9400..977af908bb0 100644 --- a/app/code/Magento/Catalog/Api/BasePriceStorageInterface.php +++ b/app/code/Magento/Catalog/Api/BasePriceStorageInterface.php @@ -13,18 +13,25 @@ namespace Magento\Catalog\Api; interface BasePriceStorageInterface { /** - * Return product prices. + * Return product prices. In case of at least one of skus is not found exception will be thrown. * * @param string[] $skus * @return \Magento\Catalog\Api\Data\BasePriceInterface[] + * @throws \Magento\Framework\Exception\NoSuchEntityException */ public function get(array $skus); /** * Add or update product prices. + * Input item should correspond \Magento\Catalog\Api\Data\CostInterface. + * If any items will have invalid price, store id or sku, they will be marked as failed and excluded from + * update list and \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] with problem description will be returned. + * If there were no failed items during update empty array will be returned. + * If error occurred during the update exception will be thrown. * * @param \Magento\Catalog\Api\Data\BasePriceInterface[] $prices - * @return bool Will returned True if updated. + * @return \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] + * @throws \Magento\Framework\Exception\CouldNotSaveException */ public function update(array $prices); } diff --git a/app/code/Magento/Catalog/Api/CostStorageInterface.php b/app/code/Magento/Catalog/Api/CostStorageInterface.php index 0c9fb4d540d..20a3f0d35af 100644 --- a/app/code/Magento/Catalog/Api/CostStorageInterface.php +++ b/app/code/Magento/Catalog/Api/CostStorageInterface.php @@ -13,26 +13,34 @@ namespace Magento\Catalog\Api; interface CostStorageInterface { /** - * Return product prices. + * Return product prices. In case of at least one of skus is not found exception will be thrown. * * @param string[] $skus * @return \Magento\Catalog\Api\Data\CostInterface[] + * @throws \Magento\Framework\Exception\NoSuchEntityException */ public function get(array $skus); /** * Add or update product cost. + * Input item should correspond to \Magento\Catalog\Api\Data\CostInterface. + * If any items will have invalid cost, store id or sku, they will be marked as failed and excluded from + * update list and \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] with problem description will be returned. + * If there were no failed items during update empty array will be returned. + * If error occurred during the update exception will be thrown. * * @param \Magento\Catalog\Api\Data\CostInterface[] $prices - * @return bool Will returned True if updated. + * @return \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] */ public function update(array $prices); /** - * Delete product cost. + * Delete product cost. In case of at least one of skus is not found exception will be thrown. + * If error occurred during the delete exception will be thrown. * * @param string[] $skus - * @return bool Will returned True if deleted. + * @return bool Will return True if deleted. + * @throws \Magento\Framework\Exception\NoSuchEntityException * @throws \Magento\Framework\Exception\CouldNotDeleteException */ public function delete(array $skus); diff --git a/app/code/Magento/Catalog/Api/Data/PriceUpdateResultInterface.php b/app/code/Magento/Catalog/Api/Data/PriceUpdateResultInterface.php new file mode 100644 index 00000000000..216f649efe8 --- /dev/null +++ b/app/code/Magento/Catalog/Api/Data/PriceUpdateResultInterface.php @@ -0,0 +1,69 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Api\Data; + +/** + * Interface returned in case of incorrect price passed to efficient price API. + * @api + */ +interface PriceUpdateResultInterface extends \Magento\Framework\Api\ExtensibleDataInterface +{ + /**#@+ + * Constants + */ + const MESSAGE = 'message'; + const PARAMETERS = 'parameters'; + /**#@-*/ + + /** + * Get error message, that contains description of error occurred during price update. + * + * @return string + */ + public function getMessage(); + + /** + * Set error message, that contains description of error occurred during price update. + * + * @param string $message + * @return $this + */ + public function setMessage($message); + + /** + * Get parameters, that could be displayed in error message placeholders. + * + * @return string[] + */ + public function getParameters(); + + /** + * Set parameters, that could be displayed in error message placeholders. + * + * @param string[] $parameters + * @return $this + */ + public function setParameters(array $parameters); + + /** + * Retrieve existing extension attributes object. + * If extension attributes do not exist return null. + * + * @return \Magento\Catalog\Api\Data\PriceUpdateResultExtensionInterface|null + */ + public function getExtensionAttributes(); + + /** + * Set an extension attributes object. + * + * @param \Magento\Catalog\Api\Data\PriceUpdateResultExtensionInterface $extensionAttributes + * @return $this + */ + public function setExtensionAttributes( + \Magento\Catalog\Api\Data\PriceUpdateResultExtensionInterface $extensionAttributes + ); +} diff --git a/app/code/Magento/Catalog/Api/Data/SpecialPriceInterface.php b/app/code/Magento/Catalog/Api/Data/SpecialPriceInterface.php new file mode 100644 index 00000000000..30f6b65106a --- /dev/null +++ b/app/code/Magento/Catalog/Api/Data/SpecialPriceInterface.php @@ -0,0 +1,117 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Api\Data; + +/** + * Product Special Price Interface is used to encapsulate data that can be processed by efficient price API. + * @api + */ +interface SpecialPriceInterface extends \Magento\Framework\Api\ExtensibleDataInterface +{ + /**#@+ + * Constants + */ + const PRICE = 'price'; + const STORE_ID = 'store_id'; + const SKU = 'sku'; + const PRICE_FROM = 'price_from'; + const PRICE_TO = 'price_to'; + /**#@-*/ + + /** + * Set product special price value. + * + * @param float $price + * @return $this + */ + public function setPrice($price); + + /** + * Get product special price value. + * + * @return float + */ + public function getPrice(); + + /** + * Set ID of store, that contains special price value. + * + * @param int $storeId + * @return $this + */ + public function setStoreId($storeId); + + /** + * Get ID of store, that contains special price value. + * + * @return int + */ + public function getStoreId(); + + /** + * Set SKU of product, that contains special price value. + * + * @param string $sku + * @return $this + */ + public function setSku($sku); + + /** + * Get SKU of product, that contains special price value. + * + * @return string + */ + public function getSku(); + + /** + * Set start date for special price in Y-m-d H:i:s format. + * + * @param string $datetime + * @return $this + */ + public function setPriceFrom($datetime); + + /** + * Get start date for special price in Y-m-d H:i:s format. + * + * @return string + */ + public function getPriceFrom(); + + /** + * Set end date for special price in Y-m-d H:i:s format. + * + * @param string $datetime + * @return $this + */ + public function setPriceTo($datetime); + + /** + * Get end date for special price in Y-m-d H:i:s format. + * + * @return string + */ + public function getPriceTo(); + + /** + * Retrieve existing extension attributes object. + * If extension attributes do not exist return null. + * + * @return \Magento\Catalog\Api\Data\SpecialPriceExtensionInterface|null + */ + public function getExtensionAttributes(); + + /** + * Set an extension attributes object. + * + * @param \Magento\Catalog\Api\Data\SpecialPriceExtensionInterface $extensionAttributes + * @return $this + */ + public function setExtensionAttributes( + \Magento\Catalog\Api\Data\SpecialPriceExtensionInterface $extensionAttributes + ); +} diff --git a/app/code/Magento/Catalog/Api/SpecialPriceInterface.php b/app/code/Magento/Catalog/Api/SpecialPriceInterface.php new file mode 100644 index 00000000000..971656da1fb --- /dev/null +++ b/app/code/Magento/Catalog/Api/SpecialPriceInterface.php @@ -0,0 +1,67 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Api; + +/** + * Special prices resource model. + * @api + */ +interface SpecialPriceInterface +{ + /** + * Get product special prices by SKUs. + * + * @param string[] $skus Array containing SKUs + * $skus = [ + * 'sku value 1', + * 'sku value 2' + * ]; + * @return [ + * 'entity_id' => (int) Entity identified or entity link field. + * 'value' => (float) Special price value. + * 'store_id' => (int) Store Id. + * 'sku' => (string) Product SKU. + * 'price_from' => (string) Special price from date value in UTC. + * 'price_to' => (string) Special price to date value in UTC. + * ] + */ + public function get(array $skus); + + /** + * Update product special prices. + * + * @param array $prices + * $prices = [ + * 'entity_id' => (int) Entity identified or entity link field. Required. + * 'attribute_id' => (int) Special price attribute Id. Required. + * 'store_id' => (int) Store Id. Required. + * 'value' => (float) Special price value. Required. + * 'price_from' => (string) Special price from date value in Y-m-d H:i:s format in UTC. Optional. + * 'price_to' => (string) Special price to date value in Y-m-d H:i:s format in UTC. Optional. + * ]; + * @return bool + * @throws \Magento\Framework\Exception\CouldNotSaveException Thrown if error occurred during price save. + */ + public function update(array $prices); + + /** + * Delete product special prices. + * + * @param array $prices + * $prices = [ + * 'entity_id' => (int) Entity identified or entity link field. Required. + * 'attribute_id' => (int) Special price attribute Id. Required. + * 'store_id' => (int) Store Id. Required. + * 'value' => (float) Special price value. Required. + * 'price_from' => (string) Special price from date value in Y-m-d H:i:s format in UTC. Optional. + * 'price_to' => (string) Special price to date value in Y-m-d H:i:s format in UTC. Optional. + * ]; + * @return bool + * @throws \Magento\Framework\Exception\CouldNotDeleteException Thrown if error occurred during price delete. + */ + public function delete(array $prices); +} diff --git a/app/code/Magento/Catalog/Api/SpecialPriceStorageInterface.php b/app/code/Magento/Catalog/Api/SpecialPriceStorageInterface.php new file mode 100644 index 00000000000..b59880f0ed9 --- /dev/null +++ b/app/code/Magento/Catalog/Api/SpecialPriceStorageInterface.php @@ -0,0 +1,49 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Api; + +/** + * Special price storage presents efficient price API and is used to retrieve, update or delete special prices. + * @api + */ +interface SpecialPriceStorageInterface +{ + /** + * Return product's special price. In case of at least one of skus is not found exception will be thrown. + * + * @param string[] $skus + * @return \Magento\Catalog\Api\Data\SpecialPriceInterface[] + * @throws \Magento\Framework\Exception\NoSuchEntityException + */ + public function get(array $skus); + + /** + * Add or update product's special price. + * If any items will have invalid price, store id, sku or dates, they will be marked as failed and excluded from + * update list and \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] with problem description will be returned. + * If there were no failed items during update empty array will be returned. + * If error occurred during the update exception will be thrown. + * + * @param \Magento\Catalog\Api\Data\SpecialPriceInterface[] $prices + * @return \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] + * @throws \Magento\Framework\Exception\CouldNotSaveException + */ + public function update(array $prices); + + /** + * Delete product's special price. + * If any items will have invalid price, store id, sku or dates, they will be marked as failed and excluded from + * delete list and \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] with problem description will be returned. + * If there were no failed items during update empty array will be returned. + * If error occurred during the delete exception will be thrown. + * + * @param \Magento\Catalog\Api\Data\SpecialPriceInterface[] $prices + * @return \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] + * @throws \Magento\Framework\Exception\CouldNotDeleteException + */ + public function delete(array $prices); +} diff --git a/app/code/Magento/Catalog/Api/TierPriceStorageInterface.php b/app/code/Magento/Catalog/Api/TierPriceStorageInterface.php index 200cdc1baa4..bedb8f87cc6 100644 --- a/app/code/Magento/Catalog/Api/TierPriceStorageInterface.php +++ b/app/code/Magento/Catalog/Api/TierPriceStorageInterface.php @@ -13,34 +13,50 @@ namespace Magento\Catalog\Api; interface TierPriceStorageInterface { /** - * Return product prices. + * Return product prices. In case of at least one of skus is not found exception will be thrown. * * @param string[] $skus * @return \Magento\Catalog\Api\Data\TierPriceInterface[] + * @throws \Magento\Framework\Exception\NoSuchEntityException */ public function get(array $skus); /** * Add or update product prices. + * If any items will have invalid price, price type, website id, sku, customer group or quantity, they will be + * marked as failed and excluded from update list and \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] + * with problem description will be returned. + * If there were no failed items during update empty array will be returned. + * If error occurred during the update exception will be thrown. * * @param \Magento\Catalog\Api\Data\TierPriceInterface[] $prices - * @return bool Will returned True if updated. + * @return \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] */ public function update(array $prices); /** * Remove existing tier prices and replace them with the new ones. + * If any items will have invalid price, price type, website id, sku, customer group or quantity, they will be + * marked as failed and excluded from replace list and \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] + * with problem description will be returned. + * If there were no failed items during update empty array will be returned. + * If error occurred during the update exception will be thrown. * * @param \Magento\Catalog\Api\Data\TierPriceInterface[] $prices - * @return bool Will returned True if replaced. + * @return \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] */ public function replace(array $prices); /** * Delete product tier prices. + * If any items will have invalid price, price type, website id, sku, customer group or quantity, they will be + * marked as failed and excluded from delete list and \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] + * with problem description will be returned. + * If there were no failed items during update empty array will be returned. + * If error occurred during the update exception will be thrown. * * @param \Magento\Catalog\Api\Data\TierPriceInterface[] $prices - * @return bool Will returned True if deleted. + * @return \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] */ public function delete(array $prices); } diff --git a/app/code/Magento/Catalog/Model/Product/Price/BasePriceStorage.php b/app/code/Magento/Catalog/Model/Product/Price/BasePriceStorage.php index e69f89f0bb1..356d0d4eb4b 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/BasePriceStorage.php +++ b/app/code/Magento/Catalog/Model/Product/Price/BasePriceStorage.php @@ -43,6 +43,21 @@ class BasePriceStorage implements \Magento\Catalog\Api\BasePriceStorageInterface */ private $productRepository; + /** + * @var \Magento\Catalog\Model\Product\Price\Validation\Result + */ + private $validationResult; + + /** + * @var PricePersistenceFactory + */ + private $pricePersistenceFactory; + + /** + * @var \Magento\Catalog\Model\Product\Price\InvalidSkuChecker + */ + private $invalidSkuChecker; + /** * Price type allowed. * @@ -58,19 +73,14 @@ class BasePriceStorage implements \Magento\Catalog\Api\BasePriceStorageInterface private $allowedProductTypes = []; /** - * @var PricePersistenceFactory - */ - private $pricePersistenceFactory; - - /** - * BasePriceStorage constructor. - * * @param PricePersistenceFactory $pricePersistenceFactory * @param \Magento\Catalog\Api\Data\BasePriceInterfaceFactory $basePriceInterfaceFactory * @param \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator * @param \Magento\Store\Api\StoreRepositoryInterface $storeRepository * @param \Magento\Catalog\Api\ProductRepositoryInterface $productRepository - * @param array $allowedProductTypes + * @param \Magento\Catalog\Model\Product\Price\Validation\Result $validationResult + * @param \Magento\Catalog\Model\Product\Price\InvalidSkuChecker $invalidSkuChecker + * @param array $allowedProductTypes [optional] */ public function __construct( PricePersistenceFactory $pricePersistenceFactory, @@ -78,6 +88,8 @@ class BasePriceStorage implements \Magento\Catalog\Api\BasePriceStorageInterface \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator, \Magento\Store\Api\StoreRepositoryInterface $storeRepository, \Magento\Catalog\Api\ProductRepositoryInterface $productRepository, + \Magento\Catalog\Model\Product\Price\Validation\Result $validationResult, + \Magento\Catalog\Model\Product\Price\InvalidSkuChecker $invalidSkuChecker, array $allowedProductTypes = [] ) { $this->pricePersistenceFactory = $pricePersistenceFactory; @@ -85,7 +97,9 @@ class BasePriceStorage implements \Magento\Catalog\Api\BasePriceStorageInterface $this->productIdLocator = $productIdLocator; $this->storeRepository = $storeRepository; $this->productRepository = $productRepository; + $this->validationResult = $validationResult; $this->allowedProductTypes = $allowedProductTypes; + $this->invalidSkuChecker = $invalidSkuChecker; } /** @@ -93,7 +107,11 @@ class BasePriceStorage implements \Magento\Catalog\Api\BasePriceStorageInterface */ public function get(array $skus) { - $this->validateSkus($skus); + $this->invalidSkuChecker->isSkuListValid( + $skus, + $this->allowedProductTypes, + $this->priceTypeAllowed + ); $rawPrices = $this->getPricePersistence()->get($skus); $prices = []; foreach ($rawPrices as $rawPrice) { @@ -114,7 +132,7 @@ class BasePriceStorage implements \Magento\Catalog\Api\BasePriceStorageInterface */ public function update(array $prices) { - $this->validate($prices); + $prices = $this->retrieveValidPrices($prices); $formattedPrices = []; foreach ($prices as $price) { @@ -130,7 +148,7 @@ class BasePriceStorage implements \Magento\Catalog\Api\BasePriceStorageInterface $this->getPricePersistence()->update($formattedPrices); - return true; + return $this->validationResult->getFailedItems(); } /** @@ -148,80 +166,59 @@ class BasePriceStorage implements \Magento\Catalog\Api\BasePriceStorageInterface } /** - * Validate SKU, check product types and skip not existing products. + * Retrieve valid prices that do not contain any errors. * - * @param array $skus - * @throws \Magento\Framework\Exception\LocalizedException - * @return void + * @param \Magento\Catalog\Api\Data\BasePriceInterface[] $prices + * @return array */ - private function validateSkus(array $skus) - { - $idsBySku = $this->productIdLocator->retrieveProductIdsBySkus($skus); - $skuDiff = array_diff($skus, array_keys($idsBySku)); - - foreach ($idsBySku as $sku => $ids) { - foreach ($ids as $type) { - if (!in_array($type, $this->allowedProductTypes) - || ( - $type == \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE - && $this->productRepository->get($sku)->getPriceType() != $this->priceTypeAllowed - ) - ) { - $skuDiff[] = $sku; - break; - } - } - } - - if (!empty($skuDiff)) { - $values = implode(', ', $skuDiff); - $description = count($skuDiff) == 1 - ? __('Requested product doesn\'t exist: %1', $values) - : __('Requested products don\'t exist: %1', $values); - throw new \Magento\Framework\Exception\NoSuchEntityException($description); - } - } - - /** - * Validate that prices have appropriate values. - * - * @param array $prices - * @throws \Magento\Framework\Exception\LocalizedException - * @return void - */ - private function validate(array $prices) + private function retrieveValidPrices(array $prices) { $skus = array_unique( array_map(function ($price) { - if (!$price->getSku()) { - throw new \Magento\Framework\Exception\LocalizedException( - __( - 'Invalid attribute %fieldName: %fieldValue.', - [ - 'fieldName' => 'sku', - 'fieldValue' => $price->getSku() - ] - ) - ); - } return $price->getSku(); }, $prices) ); - $this->validateSkus($skus); + $invalidSkus = $this->invalidSkuChecker->retrieveInvalidSkuList( + $skus, + $this->allowedProductTypes, + $this->priceTypeAllowed + ); - foreach ($prices as $price) { + foreach ($prices as $id => $price) { + if (!$price->getSku() || in_array($price->getSku(), $invalidSkus)) { + $this->validationResult->addFailedItem( + $id, + __( + 'Invalid attribute %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + ['fieldName' => 'SKU', 'fieldValue' => $price->getSku()] + ); + } if (null === $price->getPrice() || $price->getPrice() < 0) { - throw new \Magento\Framework\Exception\LocalizedException( + $this->validationResult->addFailedItem( + $id, __( - 'Invalid attribute %fieldName: %fieldValue.', - [ - 'fieldName' => 'Price', - 'fieldValue' => $price->getPrice() - ] - ) + 'Invalid attribute %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + ['fieldName' => 'Price', 'fieldValue' => $price->getPrice()] + ); + } + try { + $this->storeRepository->getById($price->getStoreId()); + } catch (\Magento\Framework\Exception\NoSuchEntityException $e) { + $this->validationResult->addFailedItem( + $id, + __('Requested store is not found.') ); } - $this->storeRepository->getById($price->getStoreId()); } + + foreach ($this->validationResult->getFailedRowIds() as $id) { + unset($prices[$id]); + } + + return $prices; } } diff --git a/app/code/Magento/Catalog/Model/Product/Price/CostStorage.php b/app/code/Magento/Catalog/Model/Product/Price/CostStorage.php index e7fc682514a..2931b907c15 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/CostStorage.php +++ b/app/code/Magento/Catalog/Model/Product/Price/CostStorage.php @@ -33,6 +33,16 @@ class CostStorage implements \Magento\Catalog\Api\CostStorageInterface */ private $productIdLocator; + /** + * @var \Magento\Catalog\Model\Product\Price\Validation\Result + */ + private $validationResult; + + /** + * @var \Magento\Catalog\Model\Product\Price\InvalidSkuChecker + */ + private $invalidSkuChecker; + /** * Allowed product types. * @@ -57,19 +67,25 @@ class CostStorage implements \Magento\Catalog\Api\CostStorageInterface * @param \Magento\Catalog\Api\Data\CostInterfaceFactory $costInterfaceFactory * @param \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator * @param \Magento\Store\Api\StoreRepositoryInterface $storeRepository - * @param array $allowedProductTypes + * @param \Magento\Catalog\Model\Product\Price\Validation\Result $validationResult + * @param \Magento\Catalog\Model\Product\Price\InvalidSkuChecker $invalidSkuChecker + * @param array $allowedProductTypes [optional] */ public function __construct( PricePersistenceFactory $pricePersistenceFactory, \Magento\Catalog\Api\Data\CostInterfaceFactory $costInterfaceFactory, \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator, \Magento\Store\Api\StoreRepositoryInterface $storeRepository, + \Magento\Catalog\Model\Product\Price\Validation\Result $validationResult, + \Magento\Catalog\Model\Product\Price\InvalidSkuChecker $invalidSkuChecker, array $allowedProductTypes = [] ) { $this->pricePersistenceFactory = $pricePersistenceFactory; $this->costInterfaceFactory = $costInterfaceFactory; $this->productIdLocator = $productIdLocator; $this->storeRepository = $storeRepository; + $this->validationResult = $validationResult; + $this->invalidSkuChecker = $invalidSkuChecker; $this->allowedProductTypes = $allowedProductTypes; } @@ -78,7 +94,7 @@ class CostStorage implements \Magento\Catalog\Api\CostStorageInterface */ public function get(array $skus) { - $this->validateSkus($skus); + $this->invalidSkuChecker->isSkuListValid($skus, $this->allowedProductTypes); $rawPrices = $this->getPricePersistence()->get($skus); $prices = []; foreach ($rawPrices as $rawPrice) { @@ -99,12 +115,13 @@ class CostStorage implements \Magento\Catalog\Api\CostStorageInterface */ public function update(array $prices) { - $this->validate($prices); + $prices = $this->retrieveValidPrices($prices); $formattedPrices = []; foreach ($prices as $price) { - $ids = array_keys($this->productIdLocator->retrieveProductIdsBySkus([$price->getSku()])[$price->getSku()]); - foreach ($ids as $id) { + $productIdsBySkus = $this->productIdLocator->retrieveProductIdsBySkus([$price->getSku()]); + $productIds = array_keys($productIdsBySkus[$price->getSku()]); + foreach ($productIds as $id) { $formattedPrices[] = [ 'store_id' => $price->getStoreId(), $this->getPricePersistence()->getEntityLinkField() => $id, @@ -115,7 +132,7 @@ class CostStorage implements \Magento\Catalog\Api\CostStorageInterface $this->getPricePersistence()->update($formattedPrices); - return true; + return $this->validationResult->getFailedItems(); } /** @@ -123,7 +140,7 @@ class CostStorage implements \Magento\Catalog\Api\CostStorageInterface */ public function delete(array $skus) { - $this->validateSkus($skus); + $this->invalidSkuChecker->isSkuListValid($skus, $this->allowedProductTypes); $this->getPricePersistence()->delete($skus); return true; @@ -144,75 +161,55 @@ class CostStorage implements \Magento\Catalog\Api\CostStorageInterface } /** - * Validate that prices have appropriate values. + * Retrieve valid prices that do not contain any errors. * * @param array $prices - * @throws \Magento\Framework\Exception\LocalizedException - * @return void + * @return array */ - private function validate(array $prices) + private function retrieveValidPrices(array $prices) { $skus = array_unique( array_map(function ($price) { - if (!$price->getSku()) { - throw new \Magento\Framework\Exception\LocalizedException( - __( - 'Invalid attribute %fieldName: %fieldValue.', - [ - 'fieldName' => 'sku', - 'fieldValue' => $price->getSku() - ] - ) - ); - } return $price->getSku(); }, $prices) ); - $this->validateSkus($skus); + $invalidSkus = $this->invalidSkuChecker->retrieveInvalidSkuList($skus, $this->allowedProductTypes); - foreach ($prices as $price) { + foreach ($prices as $id => $price) { + if (!$price->getSku() || in_array($price->getSku(), $invalidSkus)) { + $this->validationResult->addFailedItem( + $id, + __( + 'Invalid attribute %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + ['fieldName' => 'SKU', 'fieldValue' => $price->getSku()] + ); + } if (null === $price->getCost() || $price->getCost() < 0) { - throw new \Magento\Framework\Exception\LocalizedException( + $this->validationResult->addFailedItem( + $id, __( - 'Invalid attribute %fieldName: %fieldValue.', - [ - 'fieldName' => 'Cost', - 'fieldValue' => $price->getCost() - ] - ) + 'Invalid attribute %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + ['fieldName' => 'Cost', 'fieldValue' => $price->getCost()] ); } - $this->storeRepository->getById($price->getStoreId()); - } - } - - /** - * Validate SKU, check product types and skip not existing products. - * - * @param array $skus - * @throws \Magento\Framework\Exception\LocalizedException - * @return void - */ - private function validateSkus(array $skus) - { - $idsBySku = $this->productIdLocator->retrieveProductIdsBySkus($skus); - $skuDiff = array_diff($skus, array_keys($idsBySku)); - - foreach ($idsBySku as $sku => $ids) { - foreach (array_values($ids) as $type) { - if (!in_array($type, $this->allowedProductTypes)) { - $skuDiff[] = $sku; - break; - } + try { + $this->storeRepository->getById($price->getStoreId()); + } catch (\Magento\Framework\Exception\NoSuchEntityException $e) { + $this->validationResult->addFailedItem( + $id, + __('Requested store is not found.') + ); } } - if (!empty($skuDiff)) { - $values = implode(', ', $skuDiff); - $description = count($skuDiff) == 1 - ? __('Requested product doesn\'t exist: %1', $values) - : __('Requested products don\'t exist: %1', $values); - throw new \Magento\Framework\Exception\NoSuchEntityException($description); + foreach ($this->validationResult->getFailedRowIds() as $id) { + unset($prices[$id]); } + + return $prices; } } diff --git a/app/code/Magento/Catalog/Model/Product/Price/InvalidSkuChecker.php b/app/code/Magento/Catalog/Model/Product/Price/InvalidSkuChecker.php new file mode 100644 index 00000000000..2b8fa682b48 --- /dev/null +++ b/app/code/Magento/Catalog/Model/Product/Price/InvalidSkuChecker.php @@ -0,0 +1,81 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Model\Product\Price; + +/** + * Class is responsible to detect list of invalid SKU values from list of provided skus and allowed product types. + */ +class InvalidSkuChecker +{ + /** + * @param \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator + * @param \Magento\Catalog\Api\ProductRepositoryInterface $productRepository + */ + public function __construct( + \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator, + \Magento\Catalog\Api\ProductRepositoryInterface $productRepository + ) { + $this->productIdLocator = $productIdLocator; + $this->productRepository = $productRepository; + } + + /** + * Retrieve not found or invalid SKUs and and check that their type corresponds to allowed types list. + * + * @param array $skus + * @param array $allowedProductTypes + * @param int|bool $allowedPriceTypeValue + * @return array + */ + public function retrieveInvalidSkuList(array $skus, array $allowedProductTypes, $allowedPriceTypeValue = false) + { + $idsBySku = $this->productIdLocator->retrieveProductIdsBySkus($skus); + $skuDiff = array_diff($skus, array_keys($idsBySku)); + + foreach ($idsBySku as $sku => $ids) { + foreach ($ids as $type) { + $valueTypeIsAllowed = false; + + if ($allowedPriceTypeValue + && $type == \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE + && $this->productRepository->get($sku)->getPriceType() != $allowedProductTypes + ) { + $valueTypeIsAllowed = true; + } + + if (!in_array($type, $allowedProductTypes) || $valueTypeIsAllowed) { + $skuDiff[] = $sku; + break; + } + } + } + + return $skuDiff; + } + + /** + * Check that SKU list is valid or return exception if it contains invalid values. + * + * @param array $skus + * @param array $allowedProductTypes + * @param int|bool $allowedPriceTypeValue + * @return void + * @throws \Magento\Framework\Exception\NoSuchEntityException + */ + public function isSkuListValid(array $skus, array $allowedProductTypes, $allowedPriceTypeValue = false) + { + $failedItems = $this->retrieveInvalidSkuList($skus, $allowedProductTypes, $allowedPriceTypeValue); + + if (!empty($failedItems)) { + $values = implode(', ', $failedItems); + $description = count($failedItems) == 1 + ? __('Requested product doesn\'t exist: %sku', ['sku' => $values]) + : __('Requested products don\'t exist: %sku', ['sku' => $values]); + throw new \Magento\Framework\Exception\NoSuchEntityException($description); + } + } +} diff --git a/app/code/Magento/Catalog/Model/Product/Price/PriceUpdateResult.php b/app/code/Magento/Catalog/Model/Product/Price/PriceUpdateResult.php new file mode 100644 index 00000000000..c94f3051217 --- /dev/null +++ b/app/code/Magento/Catalog/Model/Product/Price/PriceUpdateResult.php @@ -0,0 +1,64 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Model\Product\Price; + +use Magento\Catalog\Api\Data\PriceUpdateResultInterface; + +/** + * {@inheritdoc} + */ +class PriceUpdateResult extends \Magento\Framework\Model\AbstractExtensibleModel implements PriceUpdateResultInterface +{ + /** + * {@inheritdoc} + */ + public function getMessage() + { + return $this->getData(self::MESSAGE); + } + + /** + * {@inheritdoc} + */ + public function setMessage($message) + { + return $this->setData(self::MESSAGE, $message); + } + + /** + * {@inheritdoc} + */ + public function getParameters() + { + return $this->getData(self::PARAMETERS); + } + + /** + * {@inheritdoc} + */ + public function setParameters(array $parameters) + { + return $this->setData(self::PARAMETERS, $parameters); + } + + /** + * {@inheritdoc} + */ + public function getExtensionAttributes() + { + return $this->_getExtensionAttributes(); + } + + /** + * {@inheritdoc} + */ + public function setExtensionAttributes( + \Magento\Catalog\Api\Data\PriceUpdateResultExtensionInterface $extensionAttributes + ) { + return $this->_setExtensionAttributes($extensionAttributes); + } +} diff --git a/app/code/Magento/Catalog/Model/Product/Price/SpecialPrice.php b/app/code/Magento/Catalog/Model/Product/Price/SpecialPrice.php new file mode 100644 index 00000000000..591252dcf44 --- /dev/null +++ b/app/code/Magento/Catalog/Model/Product/Price/SpecialPrice.php @@ -0,0 +1,112 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Model\Product\Price; + +use Magento\Catalog\Api\Data\SpecialPriceInterface; + +/** + * Product Special Price class is used to encapsulate data that can be processed by efficient price API. + */ +class SpecialPrice extends \Magento\Framework\Model\AbstractExtensibleModel implements SpecialPriceInterface +{ + /** + * {@inheritdoc} + */ + public function setPrice($price) + { + return $this->setData(self::PRICE, $price); + } + + /** + * {@inheritdoc} + */ + public function getPrice() + { + return $this->getData(self::PRICE); + } + + /** + * {@inheritdoc} + */ + public function setStoreId($storeId) + { + return $this->setData(self::STORE_ID, $storeId); + } + + /** + * {@inheritdoc} + */ + public function getStoreId() + { + return $this->getData(self::STORE_ID); + } + + /** + * {@inheritdoc} + */ + public function setSku($sku) + { + return $this->setData(self::SKU, $sku); + } + + /** + * {@inheritdoc} + */ + public function getSku() + { + return $this->getData(self::SKU); + } + + /** + * {@inheritdoc} + */ + public function setPriceFrom($datetime) + { + return $this->setData(self::PRICE_FROM, $datetime); + } + + /** + * {@inheritdoc} + */ + public function getPriceFrom() + { + return $this->getData(self::PRICE_FROM); + } + + /** + * {@inheritdoc} + */ + public function setPriceTo($datetime) + { + return $this->setData(self::PRICE_TO, $datetime); + } + + /** + * {@inheritdoc} + */ + public function getPriceTo() + { + return $this->getData(self::PRICE_TO); + } + + /** + * {@inheritdoc} + */ + public function getExtensionAttributes() + { + return $this->_getExtensionAttributes(); + } + + /** + * {@inheritdoc} + */ + public function setExtensionAttributes( + \Magento\Catalog\Api\Data\SpecialPriceExtensionInterface $extensionAttributes + ) { + return $this->_setExtensionAttributes($extensionAttributes); + } +} diff --git a/app/code/Magento/Catalog/Model/Product/Price/SpecialPriceStorage.php b/app/code/Magento/Catalog/Model/Product/Price/SpecialPriceStorage.php new file mode 100644 index 00000000000..dba621d7808 --- /dev/null +++ b/app/code/Magento/Catalog/Model/Product/Price/SpecialPriceStorage.php @@ -0,0 +1,245 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Model\Product\Price; + +use Magento\Framework\Exception\NoSuchEntityException; + +/** + * Special price storage presents efficient price API and is used to retrieve, update or delete special prices. + */ +class SpecialPriceStorage implements \Magento\Catalog\Api\SpecialPriceStorageInterface +{ + /** + * @var \Magento\Catalog\Api\SpecialPriceInterface + */ + private $specialPriceResource; + + /** + * @var \Magento\Catalog\Api\Data\SpecialPriceInterfaceFactory + */ + private $specialPriceFactory; + + /** + * @var \Magento\Catalog\Model\ProductIdLocatorInterface + */ + private $productIdLocator; + + /** + * @var \Magento\Store\Api\StoreRepositoryInterface + */ + private $storeRepository; + + /** + * @var \Magento\Catalog\Model\Product\Price\Validation\Result + */ + private $validationResult; + + /** + * @var \Magento\Catalog\Model\Product\Price\InvalidSkuChecker + */ + private $invalidSkuChecker; + + /** + * @var array + */ + private $allowedProductTypes = []; + + /** + * @param \Magento\Catalog\Api\SpecialPriceInterface $specialPriceResource + * @param \Magento\Catalog\Api\Data\SpecialPriceInterfaceFactory $specialPriceFactory + * @param \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator + * @param \Magento\Store\Api\StoreRepositoryInterface $storeRepository + * @param \Magento\Catalog\Model\Product\Price\Validation\Result $validationResult + * @param \Magento\Catalog\Model\Product\Price\InvalidSkuChecker $invalidSkuChecker + * @param array $allowedProductTypes [optional] + */ + public function __construct( + \Magento\Catalog\Api\SpecialPriceInterface $specialPriceResource, + \Magento\Catalog\Api\Data\SpecialPriceInterfaceFactory $specialPriceFactory, + \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator, + \Magento\Store\Api\StoreRepositoryInterface $storeRepository, + \Magento\Catalog\Model\Product\Price\Validation\Result $validationResult, + \Magento\Catalog\Model\Product\Price\InvalidSkuChecker $invalidSkuChecker, + array $allowedProductTypes = [] + ) { + $this->specialPriceResource = $specialPriceResource; + $this->specialPriceFactory = $specialPriceFactory; + $this->productIdLocator = $productIdLocator; + $this->storeRepository = $storeRepository; + $this->validationResult = $validationResult; + $this->invalidSkuChecker = $invalidSkuChecker; + $this->allowedProductTypes = $allowedProductTypes; + } + + /** + * {@inheritdoc} + */ + public function get(array $skus) + { + $this->invalidSkuChecker->isSkuListValid($skus, $this->allowedProductTypes); + $rawPrices = $this->specialPriceResource->get($skus); + + $prices = []; + foreach ($rawPrices as $rawPrice) { + /** @var \Magento\Catalog\Api\Data\SpecialPriceInterface $price */ + $price = $this->specialPriceFactory->create(); + $sku = isset($rawPrice['sku']) + ? $rawPrice['sku'] + : $this->retrieveSkuById($rawPrice[$this->specialPriceResource->getEntityLinkField()], $skus); + $price->setSku($sku); + $price->setPrice($rawPrice['value']); + $price->setStoreId($rawPrice['store_id']); + $price->setPriceFrom($rawPrice['price_from']); + $price->setPriceTo($rawPrice['price_to']); + $prices[] = $price; + } + + return $prices; + } + + /** + * {@inheritdoc} + */ + public function update(array $prices) + { + $prices = $this->retrieveValidPrices($prices); + $this->specialPriceResource->update($prices); + + return $this->validationResult->getFailedItems(); + } + + /** + * {@inheritdoc} + */ + public function delete(array $prices) + { + $prices = $this->retrieveValidPrices($prices); + $this->specialPriceResource->delete($prices); + + return $this->validationResult->getFailedItems(); + } + + /** + * Retrieve prices with correct values. + * + * @param array $prices + * @return array + */ + private function retrieveValidPrices(array $prices) + { + $skus = array_unique( + array_map(function ($price) { + return $price->getSku(); + }, $prices) + ); + $failedSkus = $this->invalidSkuChecker->retrieveInvalidSkuList($skus, $this->allowedProductTypes); + + foreach ($prices as $key => $price) { + if (!$price->getSku() || in_array($price->getSku(), $failedSkus)) { + $this->validationResult->addFailedItem( + $key, + __( + 'Requested product doesn\'t exist: %sku', + ['sku' => '%sku'] + ), + ['sku' => $price->getSku()] + ); + } + $this->checkPrice($price->getPrice(), $key); + $this->checkDate($price->getPriceFrom(), 'Price From', $key); + $this->checkDate($price->getPriceTo(), 'Price To', $key); + try { + $this->storeRepository->getById($price->getStoreId()); + } catch (NoSuchEntityException $e) { + $this->validationResult->addFailedItem( + $key, + __('Requested store is not found.') + ); + } + } + + foreach ($this->validationResult->getFailedRowIds() as $id) { + unset($prices[$id]); + } + + return $prices; + } + + /** + * Check that date value is correct and add error to aggregator if it contains incorrect data. + * + * @param string $value + * @param string $label + * @param int $key + * @return void + */ + private function checkDate($value, $label, $key) + { + if ($value && !$this->isCorrectDateValue($value)) { + $this->validationResult->addFailedItem( + $key, + __( + 'Invalid attribute %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + ['fieldName' => $label, 'fieldValue' => $value] + ); + } + } + + /** + * Check that provided price value is not empty and not lower then zero and add error to aggregator if price + * contains not valid data. + * + * @param float $price + * @param int $key + * @return void + */ + private function checkPrice($price, $key) + { + if (null === $price || $price < 0) { + $this->validationResult->addFailedItem( + $key, + __( + 'Invalid attribute %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + ['fieldName' => 'Price', 'fieldValue' => $price] + ); + } + } + + /** + * Retrieve SKU by product ID. + * + * @param int $id + * @param array $skus + * @return int|null + */ + private function retrieveSkuById($id, array $skus) + { + foreach ($this->productIdLocator->retrieveProductIdsBySkus($skus) as $sku => $ids) { + if (false !== array_key_exists($id, $ids)) { + return $sku; + } + } + + return null; + } + + /** + * Check that date value is correct. + * + * @param string $date + * @return bool + */ + private function isCorrectDateValue($date) + { + $actualDate = date('Y-m-d H:i:s', strtotime($date)); + return $actualDate && $actualDate === $date; + } +} diff --git a/app/code/Magento/Catalog/Model/Product/Price/TierPriceStorage.php b/app/code/Magento/Catalog/Model/Product/Price/TierPriceStorage.php index 83262bbfa1c..50a4810265c 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/TierPriceStorage.php +++ b/app/code/Magento/Catalog/Model/Product/Price/TierPriceStorage.php @@ -23,7 +23,7 @@ class TierPriceStorage implements \Magento\Catalog\Api\TierPriceStorageInterface /** * Tier price validator. * - * @var \Magento\Catalog\Model\Product\Price\TierPriceValidator + * @var \Magento\Catalog\Model\Product\Price\Validation\TierPriceValidator */ private $tierPriceValidator; @@ -70,10 +70,8 @@ class TierPriceStorage implements \Magento\Catalog\Api\TierPriceStorageInterface private $indexerChunkValue = 500; /** - * TierPriceStorage constructor. - * * @param TierPricePersistence $tierPricePersistence - * @param TierPriceValidator $tierPriceValidator + * @param \Magento\Catalog\Model\Product\Price\Validation\TierPriceValidator $tierPriceValidator * @param TierPriceFactory $tierPriceFactory * @param \Magento\Catalog\Model\Indexer\Product\Price $priceIndexer * @param \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator @@ -82,7 +80,7 @@ class TierPriceStorage implements \Magento\Catalog\Api\TierPriceStorageInterface */ public function __construct( TierPricePersistence $tierPricePersistence, - TierPriceValidator $tierPriceValidator, + \Magento\Catalog\Model\Product\Price\Validation\TierPriceValidator $tierPriceValidator, TierPriceFactory $tierPriceFactory, \Magento\Catalog\Model\Indexer\Product\Price $priceIndexer, \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator, @@ -104,16 +102,8 @@ class TierPriceStorage implements \Magento\Catalog\Api\TierPriceStorageInterface public function get(array $skus) { $this->tierPriceValidator->validateSkus($skus); - $ids = $this->retrieveAffectedIds($skus); - $rawPrices = $this->tierPricePersistence->get($ids); - $prices = []; - - foreach ($rawPrices as $rawPrice) { - $sku = $this->retrieveSkuById($rawPrice[$this->tierPricePersistence->getEntityLinkField()], $skus); - $prices[] = $this->tierPriceFactory->create($rawPrice, $sku); - } - return $prices; + return $this->getExistingPrices($skus); } /** @@ -127,13 +117,14 @@ class TierPriceStorage implements \Magento\Catalog\Api\TierPriceStorageInterface return $price->getSku(); }, $prices) ); - $this->tierPriceValidator->validatePrices($prices, $this->get($skus)); + $result = $this->tierPriceValidator->retrieveValidationResult($prices, $this->getExistingPrices($skus)); + $prices = $this->removeIncorrectPrices($prices, $result->getFailedRowIds()); $formattedPrices = $this->retrieveFormattedPrices($prices); $this->tierPricePersistence->update($formattedPrices); $this->reindexPrices($affectedIds); $this->invalidateFullPageCache(); - return true; + return $result->getFailedItems(); } /** @@ -141,14 +132,15 @@ class TierPriceStorage implements \Magento\Catalog\Api\TierPriceStorageInterface */ public function replace(array $prices) { - $this->tierPriceValidator->validatePrices($prices); + $result = $this->tierPriceValidator->retrieveValidationResult($prices); + $prices = $this->removeIncorrectPrices($prices, $result->getFailedRowIds()); $affectedIds = $this->retrieveAffectedProductIdsForPrices($prices); $formattedPrices = $this->retrieveFormattedPrices($prices); $this->tierPricePersistence->replace($formattedPrices, $affectedIds); $this->reindexPrices($affectedIds); $this->invalidateFullPageCache(); - return true; + return $result->getFailedItems(); } /** @@ -157,13 +149,34 @@ class TierPriceStorage implements \Magento\Catalog\Api\TierPriceStorageInterface public function delete(array $prices) { $affectedIds = $this->retrieveAffectedProductIdsForPrices($prices); - $this->tierPriceValidator->validatePrices($prices); + $result = $this->tierPriceValidator->retrieveValidationResult($prices); + $prices = $this->removeIncorrectPrices($prices, $result->getFailedRowIds()); $priceIds = $this->retrieveAffectedPriceIds($prices); $this->tierPricePersistence->delete($priceIds); $this->reindexPrices($affectedIds); $this->invalidateFullPageCache(); - return true; + return $result->getFailedItems(); + } + + /** + * Get existing prices by SKUs. + * + * @param array $skus + * @return array + */ + private function getExistingPrices(array $skus) + { + $ids = $this->retrieveAffectedIds($skus); + $rawPrices = $this->tierPricePersistence->get($ids); + $prices = []; + + foreach ($rawPrices as $rawPrice) { + $sku = $this->retrieveSkuById($rawPrice[$this->tierPricePersistence->getEntityLinkField()], $skus); + $prices[] = $this->tierPriceFactory->create($rawPrice, $sku); + } + + return $prices; } /** @@ -242,11 +255,11 @@ class TierPriceStorage implements \Magento\Catalog\Api\TierPriceStorageInterface } /** - * Retrieve price ID. + * Look through provided price in list of existing prices and retrieve it's Id. * * @param array $price * @param array $existingPrices - * @return int + * @return int|void */ private function retrievePriceId(array $price, array $existingPrices) { @@ -265,7 +278,7 @@ class TierPriceStorage implements \Magento\Catalog\Api\TierPriceStorageInterface } /** - * Check is correct price value + * Check that price value or price percentage value is not equal to 0 and is not similar with existing value. * * @param array $existingPrice * @param array $price @@ -320,4 +333,20 @@ class TierPriceStorage implements \Magento\Catalog\Api\TierPriceStorageInterface $this->priceIndexer->execute($affectedIds); } } + + /** + * Remove prices from price list by id list. + * + * @param array $prices + * @param array $ids + * @return array + */ + private function removeIncorrectPrices(array $prices, array $ids) + { + foreach ($ids as $id) { + unset($prices[$id]); + } + + return $prices; + } } diff --git a/app/code/Magento/Catalog/Model/Product/Price/TierPriceValidator.php b/app/code/Magento/Catalog/Model/Product/Price/TierPriceValidator.php deleted file mode 100644 index 907fd0f66bb..00000000000 --- a/app/code/Magento/Catalog/Model/Product/Price/TierPriceValidator.php +++ /dev/null @@ -1,351 +0,0 @@ -<?php -/** - * Copyright © 2016 Magento. All rights reserved. - * See COPYING.txt for license details. - */ - -namespace Magento\Catalog\Model\Product\Price; - -use Magento\Catalog\Api\Data\TierPriceInterface; - -/** - * Tier Price Validator. - */ -class TierPriceValidator -{ - /** - * Groups by code cache. - * - * @var array - */ - private $customerGroupsByCode = []; - - /** - * @var TierPricePersistence - */ - private $tierPricePersistence; - - /** - * All groups value. - * - * @var string - */ - private $allGroupsValue = 'all groups'; - - /** - * All websites value. - * - * @var string - */ - private $allWebsitesValue = "0"; - - /** - * Allowed product types. - * - * @var array - */ - private $allowedProductTypes = []; - - /** - * TierPriceValidator constructor. - * - * @param \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator - * @param \Magento\Framework\Api\SearchCriteriaBuilder $searchCriteriaBuilder - * @param \Magento\Framework\Api\FilterBuilder $filterBuilder - * @param \Magento\Customer\Api\GroupRepositoryInterface $customerGroupRepository - * @param \Magento\Store\Api\WebsiteRepositoryInterface $websiteRepository - * @param TierPricePersistence $tierPricePersistence - * @param array $allowedProductTypes - */ - public function __construct( - \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator, - \Magento\Framework\Api\SearchCriteriaBuilder $searchCriteriaBuilder, - \Magento\Framework\Api\FilterBuilder $filterBuilder, - \Magento\Customer\Api\GroupRepositoryInterface $customerGroupRepository, - \Magento\Store\Api\WebsiteRepositoryInterface $websiteRepository, - TierPricePersistence $tierPricePersistence, - array $allowedProductTypes = [] - ) { - $this->productIdLocator = $productIdLocator; - $this->searchCriteriaBuilder = $searchCriteriaBuilder; - $this->filterBuilder = $filterBuilder; - $this->customerGroupRepository = $customerGroupRepository; - $this->websiteRepository = $websiteRepository; - $this->tierPricePersistence = $tierPricePersistence; - $this->allowedProductTypes = $allowedProductTypes; - } - - /** - * Validate SKU. - * - * @param array $skus - * @throws \Magento\Framework\Exception\LocalizedException - * @return void - */ - public function validateSkus(array $skus) - { - $idsBySku = $this->productIdLocator->retrieveProductIdsBySkus($skus); - $skuDiff = array_diff($skus, array_keys($idsBySku)); - - foreach ($idsBySku as $sku => $ids) { - foreach (array_values($ids) as $type) { - if (!in_array($type, $this->allowedProductTypes)) { - $skuDiff[] = $sku; - break; - } - } - } - - if (!empty($skuDiff)) { - $values = implode(', ', $skuDiff); - $description = count($skuDiff) == 1 - ? __('Requested product doesn\'t exist: %1', $values) - : __('Requested products don\'t exist: %1', $values); - throw new \Magento\Framework\Exception\NoSuchEntityException($description); - } - } - - /** - * Validate that prices have appropriate values and are unique. - * - * @param array $prices - * @param array $existingPrices - * @return void - * @throws \Magento\Framework\Exception\LocalizedException - * @throws \Magento\Framework\Exception\NoSuchEntityException - */ - public function validatePrices(array $prices, array $existingPrices = []) - { - $skus = array_unique( - array_map(function ($price) { - if (!$price->getSku()) { - throw new \Magento\Framework\Exception\LocalizedException( - __( - 'Invalid attribute %fieldName: %fieldValue.', - [ - 'fieldName' => 'sku', - 'fieldValue' => $price->getSku() - ] - ) - ); - } - return $price->getSku(); - }, $prices) - ); - $this->validateSkus($skus); - $idsBySku = $this->productIdLocator->retrieveProductIdsBySkus($skus); - - $pricesBySku = []; - - foreach ($prices as $price) { - $pricesBySku[$price->getSku()][] = $price; - } - - /** @var TierPriceInterface $price */ - foreach ($prices as $price) { - $this->checkPrice($price); - $this->checkPriceType($price, $idsBySku[$price->getSku()]); - $this->checkQuantity($price); - $this->checkWebsite($price); - if (isset($pricesBySku[$price->getSku()])) { - $this->checkUnique($price, $pricesBySku[$price->getSku()]); - } - $this->checkUnique($price, $existingPrices); - $this->checkGroup($price); - } - } - - /** - * Verify that price value is correct. - * - * @param TierPriceInterface $price - * @throws \Magento\Framework\Exception\LocalizedException - * @return void - */ - private function checkPrice(TierPriceInterface $price) - { - if ( - null === $price->getPrice() - || $price->getPrice() < 0 - || ($price->getPriceType() === TierPriceInterface::PRICE_TYPE_DISCOUNT && $price->getPrice() > 100) - ) { - throw new \Magento\Framework\Exception\LocalizedException( - __( - 'Invalid attribute %fieldName: %fieldValue.', - [ - 'fieldName' => 'Price', - 'fieldValue' => $price->getPrice() - ] - ) - ); - } - } - - /** - * Verify that price type is correct. - * - * @param TierPriceInterface $price - * @param array $ids - * @throws \Magento\Framework\Exception\LocalizedException - * @return void - */ - private function checkPriceType(TierPriceInterface $price, array $ids) - { - if ( - !in_array( - $price->getPriceType(), - [TierPriceInterface::PRICE_TYPE_FIXED, TierPriceInterface::PRICE_TYPE_DISCOUNT] - ) - || (array_search(\Magento\Catalog\Model\Product\Type::TYPE_BUNDLE, $ids) - && $price->getPriceType() !== TierPriceInterface::PRICE_TYPE_DISCOUNT) - ) { - throw new \Magento\Framework\Exception\LocalizedException( - __( - 'Invalid attribute %fieldName: %fieldValue.', - [ - 'fieldName' => 'Price Type', - 'fieldValue' => $price->getPriceType() - ] - ) - ); - } - } - - /** - * Verify that product quantity is correct. - * - * @param TierPriceInterface $price - * @throws \Magento\Framework\Exception\LocalizedException - * @return void - */ - private function checkQuantity(TierPriceInterface $price) - { - if ($price->getQuantity() < 1) { - throw new \Magento\Framework\Exception\LocalizedException( - __( - 'Invalid attribute %fieldName: %fieldValue.', - [ - 'fieldName' => 'Quantity', - 'fieldValue' => $price->getQuantity() - ] - ) - ); - } - } - - /** - * Verify that website exists. - * - * @param TierPriceInterface $price - * @return void - * @throws \Magento\Framework\Exception\LocalizedException - */ - private function checkWebsite(TierPriceInterface $price) - { - try { - $this->websiteRepository->getById($price->getWebsiteId()); - } catch (\Magento\Framework\Exception\NoSuchEntityException $e) { - throw new \Magento\Framework\Exception\NoSuchEntityException( - __( - 'Invalid attribute %fieldName: %fieldValue.', - [ - 'fieldName' => 'website_id', - 'fieldValue' => $price->getWebsiteId() - ] - ) - ); - } - } - - /** - * Check website value is unique. - * - * @param TierPriceInterface $tierPrice - * @param array $prices - * @return void - * @throws \Magento\Framework\Exception\LocalizedException - */ - private function checkUnique(TierPriceInterface $tierPrice, array $prices) - { - /** @var TierPriceInterface $price */ - foreach ($prices as $price) { - if ( - $price->getSku() === $tierPrice->getSku() - && $price->getCustomerGroup() === $tierPrice->getCustomerGroup() - && $price->getQuantity() == $tierPrice->getQuantity() - && ( - ($price->getWebsiteId() == $this->allWebsitesValue - || $tierPrice->getWebsiteId() == $this->allWebsitesValue) - && $price->getWebsiteId() != $tierPrice->getWebsiteId() - ) - ) { - throw new \Magento\Framework\Exception\LocalizedException( - __( - 'We found a duplicate website, tier price, customer group and quantity: ' - . '%fieldName1 = %fieldValue1, %fieldName2 = %fieldValue2, %fieldName3 = %fieldValue3.', - [ - 'fieldName1' => 'Customer Group', - 'fieldValue1' => $price->getCustomerGroup(), - 'fieldName2' => 'Website Id', - 'fieldValue2' => $price->getWebsiteId(), - 'fieldName3' => 'Quantity', - 'fieldValue3' => $price->getQuantity() - ] - ) - ); - } - } - } - - /** - * Check customer group exists and has correct value. - * - * @param TierPriceInterface $price - * @throws \Magento\Framework\Exception\NoSuchEntityException - * @return void - */ - private function checkGroup(TierPriceInterface $price) - { - $customerGroup = strtolower($price->getCustomerGroup()); - - if ($customerGroup != $this->allGroupsValue) { - $this->retrieveGroupValue($customerGroup); - } - } - - /** - * Retrieve customer group id by code. - * - * @param string $code - * @return int - * @throws \Magento\Framework\Exception\NoSuchEntityException - */ - private function retrieveGroupValue($code) - { - if (!isset($this->customerGroupsByCode[$code])) { - $searchCriteria = $this->searchCriteriaBuilder->addFilters( - [ - $this->filterBuilder->setField('customer_group_code')->setValue($code)->create() - ] - ); - $items = $this->customerGroupRepository->getList($searchCriteria->create())->getItems(); - $item = array_shift($items); - - if (!$item) { - throw new \Magento\Framework\Exception\NoSuchEntityException( - __( - 'No such entity with %fieldName = %fieldValue.', - [ - 'fieldName' => 'Customer Group', - 'fieldValue' => $code - ] - ) - ); - } - - $this->customerGroupsByCode[strtolower($item->getCode())] = $item->getId(); - } - - return $this->customerGroupsByCode[$code]; - } -} diff --git a/app/code/Magento/Catalog/Model/Product/Price/Validation/Result.php b/app/code/Magento/Catalog/Model/Product/Price/Validation/Result.php new file mode 100644 index 00000000000..3ec7ee7abe3 --- /dev/null +++ b/app/code/Magento/Catalog/Model/Product/Price/Validation/Result.php @@ -0,0 +1,82 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Model\Product\Price\Validation; + +/** + * Validation Result is used to aggregate errors that occurred during price update. + */ +class Result +{ + /** + * @var \Magento\Catalog\Api\Data\PriceUpdateResultInterfaceFactory + */ + private $priceUpdateResultFactory; + + /** + * Failed items. + * + * @var array + */ + private $failedItems = []; + + /** + * @param \Magento\Catalog\Api\Data\PriceUpdateResultInterfaceFactory $priceUpdateResultFactory + */ + public function __construct( + \Magento\Catalog\Api\Data\PriceUpdateResultInterfaceFactory $priceUpdateResultFactory + ) { + $this->priceUpdateResultFactory = $priceUpdateResultFactory; + } + + /** + * Add failed price identified, message and message parameters, that occurred during price update. + * + * @param int $id Failed price identified. + * @param string $message Failure reason message. + * @param array $parameters (optional). Placeholder values in ['placeholder key' => 'placeholder value'] format + * for failure reason message. + * @return void + */ + public function addFailedItem($id, $message, array $parameters = []) + { + $this->failedItems[$id][] = [ + 'message' => $message, + 'parameters' => $parameters + ]; + } + + /** + * Get ids of rows, that contained errors during price update. + * + * @return int[] + */ + public function getFailedRowIds() + { + return $this->failedItems ? array_keys($this->failedItems) : []; + } + + /** + * Get price update errors, that occurred during price update. + * + * @return \Magento\Catalog\Api\Data\PriceUpdateResultInterface[] + */ + public function getFailedItems() + { + $failedItems = []; + + foreach ($this->failedItems as $items) { + foreach ($items as $failedRecord) { + $resultItem = $this->priceUpdateResultFactory->create(); + $resultItem->setMessage($failedRecord['message']); + $resultItem->setParameters($failedRecord['parameters']); + $failedItems[] = $resultItem; + } + } + + return $failedItems; + } +} diff --git a/app/code/Magento/Catalog/Model/Product/Price/Validation/TierPriceValidator.php b/app/code/Magento/Catalog/Model/Product/Price/Validation/TierPriceValidator.php new file mode 100644 index 00000000000..76da4b7011b --- /dev/null +++ b/app/code/Magento/Catalog/Model/Product/Price/Validation/TierPriceValidator.php @@ -0,0 +1,414 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Model\Product\Price\Validation; + +/** + * Tier Price Validator. + */ +class TierPriceValidator +{ + /** + * @var \Magento\Catalog\Model\ProductIdLocatorInterface + */ + private $productIdLocator; + + /** + * @var \Magento\Framework\Api\SearchCriteriaBuilder + */ + private $searchCriteriaBuilder; + + /** + * @var \Magento\Framework\Api\FilterBuilder + */ + private $filterBuilder; + + /** + * @var \Magento\Customer\Api\GroupRepositoryInterface + */ + private $customerGroupRepository; + + /** + * @var \Magento\Store\Api\WebsiteRepositoryInterface + */ + private $websiteRepository; + + /** + * @var \Magento\Catalog\Model\Product\Price\Validation\Result + */ + private $validationResult; + + /** + * @var \Magento\Catalog\Model\Product\Price\TierPricePersistence + */ + private $tierPricePersistence; + + /** + * Groups by code cache. + * + * @var array + */ + private $customerGroupsByCode = []; + + /** + * @var \Magento\Catalog\Model\Product\Price\InvalidSkuChecker + */ + private $invalidSkuChecker; + + /** + * All groups value. + * + * @var string + */ + private $allGroupsValue = 'all groups'; + + /** + * All websites value. + * + * @var string + */ + private $allWebsitesValue = "0"; + + /** + * Allowed product types. + * + * @var array + */ + private $allowedProductTypes = []; + + /** + * TierPriceValidator constructor. + * + * @param \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator + * @param \Magento\Framework\Api\SearchCriteriaBuilder $searchCriteriaBuilder + * @param \Magento\Framework\Api\FilterBuilder $filterBuilder + * @param \Magento\Customer\Api\GroupRepositoryInterface $customerGroupRepository + * @param \Magento\Store\Api\WebsiteRepositoryInterface $websiteRepository + * @param \Magento\Catalog\Model\Product\Price\TierPricePersistence $tierPricePersistence + * @param \Magento\Catalog\Model\Product\Price\Validation\Result $validationResult + * @param \Magento\Catalog\Model\Product\Price\InvalidSkuChecker $invalidSkuChecker + * @param array $allowedProductTypes [optional] + */ + public function __construct( + \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator, + \Magento\Framework\Api\SearchCriteriaBuilder $searchCriteriaBuilder, + \Magento\Framework\Api\FilterBuilder $filterBuilder, + \Magento\Customer\Api\GroupRepositoryInterface $customerGroupRepository, + \Magento\Store\Api\WebsiteRepositoryInterface $websiteRepository, + \Magento\Catalog\Model\Product\Price\TierPricePersistence $tierPricePersistence, + \Magento\Catalog\Model\Product\Price\Validation\Result $validationResult, + \Magento\Catalog\Model\Product\Price\InvalidSkuChecker $invalidSkuChecker, + array $allowedProductTypes = [] + ) { + $this->productIdLocator = $productIdLocator; + $this->searchCriteriaBuilder = $searchCriteriaBuilder; + $this->filterBuilder = $filterBuilder; + $this->customerGroupRepository = $customerGroupRepository; + $this->websiteRepository = $websiteRepository; + $this->tierPricePersistence = $tierPricePersistence; + $this->validationResult = $validationResult; + $this->invalidSkuChecker = $invalidSkuChecker; + $this->allowedProductTypes = $allowedProductTypes; + } + + /** + * Validate SKU. + * + * @param array $skus + * @throws \Magento\Framework\Exception\NoSuchEntityException + * @return void + */ + public function validateSkus(array $skus) + { + $this->invalidSkuChecker->isSkuListValid($skus, $this->allowedProductTypes); + } + + /** + * Validate that prices have appropriate values and are unique and return result. + * + * @param array $prices + * @param array $existingPrices + * @return \Magento\Catalog\Model\Product\Price\Validation\Result $validationResult + */ + public function retrieveValidationResult(array $prices, array $existingPrices = []) + { + $validationResult = clone $this->validationResult; + $skus = array_unique( + array_map(function ($price) { + return $price->getSku(); + }, $prices) + ); + $skuDiff = $this->invalidSkuChecker->retrieveInvalidSkuList($skus, $this->allowedProductTypes); + $idsBySku = $this->productIdLocator->retrieveProductIdsBySkus($skus); + + $pricesBySku = []; + + foreach ($prices as $price) { + $pricesBySku[$price->getSku()][] = $price; + } + + foreach ($prices as $key => $price) { + $this->checkSku($price, $key, $skuDiff, $validationResult); + $this->checkPrice($price, $key, $validationResult); + $ids = isset($idsBySku[$price->getSku()]) ? $idsBySku[$price->getSku()] : []; + $this->checkPriceType($price, $ids, $key, $validationResult); + $this->checkQuantity($price, $key, $validationResult); + $this->checkWebsite($price, $key, $validationResult); + if (isset($pricesBySku[$price->getSku()])) { + $this->checkUnique($price, $pricesBySku[$price->getSku()], $key, $validationResult); + } + $this->checkUnique($price, $existingPrices, $key, $validationResult); + $this->checkGroup($price, $key, $validationResult); + } + + return $validationResult; + } + + /** + * Check that sku value is correct. + * + * @param \Magento\Catalog\Api\Data\TierPriceInterface $price + * @param int $key + * @param array $invalidSkus + * @param Result $validationResult + * @return void + */ + private function checkSku( + \Magento\Catalog\Api\Data\TierPriceInterface $price, + $key, + array $invalidSkus, + Result $validationResult + ) { + if (!$price->getSku() || in_array($price->getSku(), $invalidSkus)) { + $validationResult->addFailedItem( + $key, + __( + 'Invalid attribute %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + ['fieldName' => 'SKU', 'fieldValue' => $price->getSku()] + ); + } + } + + /** + * Verify that price value is correct. + * + * @param \Magento\Catalog\Api\Data\TierPriceInterface $price + * @param int $key + * @param Result $validationResult + * @return void + */ + private function checkPrice(\Magento\Catalog\Api\Data\TierPriceInterface $price, $key, Result $validationResult) + { + if ( + null === $price->getPrice() + || $price->getPrice() < 0 + || ($price->getPriceType() === \Magento\Catalog\Api\Data\TierPriceInterface::PRICE_TYPE_DISCOUNT + && $price->getPrice() > 100 + ) + ) { + $validationResult->addFailedItem( + $key, + __( + 'Invalid attribute %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + ['fieldName' => 'Price', 'fieldValue' => $price->getPrice()] + ); + } + } + + /** + * Verify that price type is correct. + * + * @param \Magento\Catalog\Api\Data\TierPriceInterface $price + * @param array $ids + * @param int $key + * @param Result $validationResult + * @return void + */ + private function checkPriceType( + \Magento\Catalog\Api\Data\TierPriceInterface $price, + array $ids, + $key, + Result $validationResult + ) { + if ( + !in_array( + $price->getPriceType(), + [ + \Magento\Catalog\Api\Data\TierPriceInterface::PRICE_TYPE_FIXED, + \Magento\Catalog\Api\Data\TierPriceInterface::PRICE_TYPE_DISCOUNT + ] + ) + || (array_search(\Magento\Catalog\Model\Product\Type::TYPE_BUNDLE, $ids) + && $price->getPriceType() !== \Magento\Catalog\Api\Data\TierPriceInterface::PRICE_TYPE_DISCOUNT) + ) { + $validationResult->addFailedItem( + $key, + __( + 'Invalid attribute %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + ['fieldName' => 'Price Type', 'fieldValue' => $price->getPriceType()] + ); + } + } + + /** + * Verify that product quantity is correct. + * + * @param \Magento\Catalog\Api\Data\TierPriceInterface $price + * @param int $key + * @param Result $validationResult + * @return void + */ + private function checkQuantity(\Magento\Catalog\Api\Data\TierPriceInterface $price, $key, Result $validationResult) + { + if ($price->getQuantity() < 1) { + $validationResult->addFailedItem( + $key, + __( + 'Invalid attribute %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + ['fieldName' => 'Quantity', 'fieldValue' => $price->getQuantity()] + ); + } + } + + /** + * Verify that website exists. + * + * @param \Magento\Catalog\Api\Data\TierPriceInterface $price + * @param int $key + * @param Result $validationResult + * @return void + */ + private function checkWebsite(\Magento\Catalog\Api\Data\TierPriceInterface $price, $key, Result $validationResult) + { + try { + $this->websiteRepository->getById($price->getWebsiteId()); + } catch (\Magento\Framework\Exception\NoSuchEntityException $e) { + $validationResult->addFailedItem( + $key, + __( + 'Invalid attribute %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + ['fieldName' => 'Website Id', 'fieldValue' => $price->getWebsiteId()] + ); + } + } + + /** + * Check website value is unique. + * + * @param \Magento\Catalog\Api\Data\TierPriceInterface $tierPrice + * @param array $prices + * @param int $key + * @param Result $validationResult + * @return void + */ + private function checkUnique( + \Magento\Catalog\Api\Data\TierPriceInterface $tierPrice, + array $prices, + $key, + Result $validationResult + ) { + foreach ($prices as $price) { + if ( + $price->getSku() === $tierPrice->getSku() + && strtolower($price->getCustomerGroup()) === strtolower($tierPrice->getCustomerGroup()) + && $price->getQuantity() == $tierPrice->getQuantity() + && ( + ($price->getWebsiteId() == $this->allWebsitesValue + || $tierPrice->getWebsiteId() == $this->allWebsitesValue) + && $price->getWebsiteId() != $tierPrice->getWebsiteId() + ) + ) { + $validationResult->addFailedItem( + $key, + __( + 'We found a duplicate website, tier price, customer group and quantity:' + . ' %fieldName1 = %fieldValue1, %fieldName2 = %fieldValue2, %fieldName3 = %fieldValue3.', + [ + 'fieldName1' => '%fieldName1', + 'fieldValue1' => '%fieldValue1', + 'fieldName2' => '%fieldName2', + 'fieldValue2' => '%fieldValue2', + 'fieldName3' => '%fieldName3', + 'fieldValue3' => '%fieldValue3' + ] + ), + [ + 'fieldName1' => 'Customer Group', + 'fieldValue1' => $price->getCustomerGroup(), + 'fieldName2' => 'Website Id', + 'fieldValue2' => $price->getWebsiteId(), + 'fieldName3' => 'Quantity', + 'fieldValue3' => $price->getQuantity(), + ] + ); + } + } + } + + /** + * Check customer group exists and has correct value. + * + * @param \Magento\Catalog\Api\Data\TierPriceInterface $price + * @param int $key + * @param Result $validationResult + * @return void + */ + private function checkGroup(\Magento\Catalog\Api\Data\TierPriceInterface $price, $key, Result $validationResult) + { + $customerGroup = strtolower($price->getCustomerGroup()); + + if ($customerGroup != $this->allGroupsValue && false === $this->retrieveGroupValue($customerGroup)) { + $validationResult->addFailedItem( + $key, + __( + 'No such entity with %fieldName = %fieldValue.', + ['fieldName' => '%fieldName', 'fieldValue' => '%fieldValue'] + ), + [ + 'fieldName' => 'Customer Group', + 'fieldValue' => $customerGroup, + ] + ); + } + } + + /** + * Retrieve customer group id by code. + * + * @param string $code + * @return int|bool + */ + private function retrieveGroupValue($code) + { + if (!isset($this->customerGroupsByCode[$code])) { + $searchCriteria = $this->searchCriteriaBuilder->addFilters( + [ + $this->filterBuilder->setField('customer_group_code')->setValue($code)->create() + ] + ); + $items = $this->customerGroupRepository->getList($searchCriteria->create())->getItems(); + $item = array_shift($items); + + if (!$item) { + return false; + } + + $this->customerGroupsByCode[strtolower($item->getCode())] = $item->getId(); + } + + return $this->customerGroupsByCode[$code]; + } +} diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Price/SpecialPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Price/SpecialPrice.php new file mode 100644 index 00000000000..62ada0736ba --- /dev/null +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Price/SpecialPrice.php @@ -0,0 +1,320 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Model\ResourceModel\Product\Price; + +/** + * Special price resource. + */ +class SpecialPrice implements \Magento\Catalog\Api\SpecialPriceInterface +{ + /** + * Price storage table. + * + * @var string + */ + private $priceTable = 'catalog_product_entity_decimal'; + + /** + * Datetime storage table. + * + * @var string + */ + private $datetimeTable = 'catalog_product_entity_datetime'; + + /** + * @var \Magento\Catalog\Model\ResourceModel\Attribute + */ + private $attributeResource; + + /** + * @var \Magento\Catalog\Api\ProductAttributeRepositoryInterface + */ + private $attributeRepository; + + /** + * @var \Magento\Catalog\Model\ProductIdLocatorInterface + */ + private $productIdLocator; + + /** + * Metadata pool. + * + * @var \Magento\Framework\EntityManager\MetadataPool + */ + private $metadataPool; + + /** + * Special Price attribute ID. + * + * @var int + */ + private $priceAttributeId; + + /** + * Special price from attribute ID. + * + * @var int + */ + private $priceFromAttributeId; + + /** + * Special price to attribute ID. + * + * @var int + */ + private $priceToAttributeId; + + /** + * Items per operation. + * + * @var int + */ + private $itemsPerOperation = 500; + + /** + * @param \Magento\Catalog\Model\ResourceModel\Attribute $attributeResource + * @param \Magento\Catalog\Api\ProductAttributeRepositoryInterface $attributeRepository + * @param \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator + * @param \Magento\Framework\EntityManager\MetadataPool $metadataPool + */ + public function __construct( + \Magento\Catalog\Model\ResourceModel\Attribute $attributeResource, + \Magento\Catalog\Api\ProductAttributeRepositoryInterface $attributeRepository, + \Magento\Catalog\Model\ProductIdLocatorInterface $productIdLocator, + \Magento\Framework\EntityManager\MetadataPool $metadataPool + ) { + $this->attributeResource = $attributeResource; + $this->attributeRepository = $attributeRepository; + $this->productIdLocator = $productIdLocator; + $this->metadataPool = $metadataPool; + } + + /** + * {@inheritdoc} + */ + public function get(array $skus) + { + $ids = $this->retrieveAffectedIds($skus); + $priceTable = $this->attributeResource->getTable($this->priceTable); + $dateTimeTable = $this->attributeResource->getTable($this->datetimeTable); + $linkField = $this->getEntityLinkField(); + $select = $this->attributeResource->getConnection() + ->select() + ->from( + $priceTable, + [ + 'value_id', + 'store_id', + $this->getEntityLinkField(), + 'value', + ] + ) + ->joinLeft( + $dateTimeTable . ' AS datetime_from', + $priceTable . '.' . $linkField . '=' . 'datetime_from.' . $linkField + . ' AND datetime_from.attribute_id=' . $this->getPriceFromAttributeId(), + 'value AS price_from' + ) + ->joinLeft( + $dateTimeTable . ' AS datetime_to', + $priceTable . '.' . $linkField . '=' . 'datetime_to.' . $linkField + . ' AND datetime_to.attribute_id=' . $this->getPriceToAttributeId(), + 'value AS price_to' + ) + ->where($priceTable . '.' . $linkField . ' IN (?)', $ids) + ->where($priceTable . '.attribute_id = ?', $this->getPriceAttributeId()); + + return $this->attributeResource->getConnection()->fetchAll($select); + } + + /** + * {@inheritdoc} + */ + public function update(array $prices) + { + $formattedPrices = []; + $formattedDates = []; + + /** @var \Magento\Catalog\Api\Data\SpecialPriceInterface $price */ + foreach ($prices as $price) { + $productIdsBySku = $this->productIdLocator->retrieveProductIdsBySkus([$price->getSku()]); + $ids = array_keys($productIdsBySku[$price->getSku()]); + foreach ($ids as $id) { + $formattedPrices[] = [ + 'store_id' => $price->getStoreId(), + $this->getEntityLinkField() => $id, + 'value' => $price->getPrice(), + 'attribute_id' => $this->getPriceAttributeId(), + ]; + if ($price->getPriceFrom()) { + $formattedDates[] = [ + 'store_id' => $price->getStoreId(), + $this->getEntityLinkField() => $id, + 'value' => $price->getPriceFrom(), + 'attribute_id' => $this->getPriceFromAttributeId(), + ]; + } + if ($price->getPriceTo()) { + $formattedDates[] = [ + 'store_id' => $price->getStoreId(), + $this->getEntityLinkField() => $id, + 'value' => $price->getPriceTo(), + 'attribute_id' => $this->getPriceToAttributeId(), + ]; + } + } + } + $connection = $this->attributeResource->getConnection(); + $connection->beginTransaction(); + + try { + $this->updateItems($formattedPrices, $this->priceTable); + $this->updateItems($formattedDates, $this->datetimeTable); + $connection->commit(); + } catch (\Exception $e) { + $connection->rollBack(); + throw new \Magento\Framework\Exception\CouldNotSaveException( + __('Could not save Prices.'), + $e + ); + } + + return true; + } + + /** + * {@inheritdoc} + */ + public function delete(array $prices) + { + $skus = array_unique( + array_map(function ($price) { + return $price->getSku(); + }, $prices) + ); + $ids = $this->retrieveAffectedIds($skus); + $connection = $this->attributeResource->getConnection(); + $connection->beginTransaction(); + try { + foreach (array_chunk($ids, $this->itemsPerOperation) as $idsBunch) { + $this->attributeResource->getConnection()->delete( + $this->attributeResource->getTable($this->priceTable), + [ + 'attribute_id = ?' => $this->getPriceAttributeId(), + $this->getEntityLinkField() . ' IN (?)' => $idsBunch + ] + ); + } + foreach (array_chunk($ids, $this->itemsPerOperation) as $idsBunch) { + $this->attributeResource->getConnection()->delete( + $this->attributeResource->getTable($this->datetimeTable), + [ + 'attribute_id IN (?)' => [$this->getPriceFromAttributeId(), $this->getPriceToAttributeId()], + $this->getEntityLinkField() . ' IN (?)' => $idsBunch + ] + ); + } + $connection->commit(); + } catch (\Exception $e) { + $connection->rollBack(); + throw new \Magento\Framework\Exception\CouldNotDeleteException( + __('Could not delete Prices'), + $e + ); + } + + return true; + } + + /** + * Get link field. + * + * @return string + */ + public function getEntityLinkField() + { + return $this->metadataPool->getMetadata(\Magento\Catalog\Api\Data\ProductInterface::class) + ->getLinkField(); + } + + /** + * Update items in database. + * + * @param array $items + * @param string $table + * @return void + */ + private function updateItems(array $items, $table) + { + foreach (array_chunk($items, $this->itemsPerOperation) as $itemsBunch) { + $this->attributeResource->getConnection()->insertOnDuplicate( + $this->attributeResource->getTable($table), + $itemsBunch, + ['value'] + ); + } + } + + /** + * Get special price attribute ID. + * + * @return int + */ + private function getPriceAttributeId() + { + if (!$this->priceAttributeId) { + $this->priceAttributeId = $this->attributeRepository->get('special_price')->getAttributeId(); + } + + return $this->priceAttributeId; + } + + /** + * Get special price from attribute ID. + * + * @return int + */ + private function getPriceFromAttributeId() + { + if (!$this->priceFromAttributeId) { + $this->priceFromAttributeId = $this->attributeRepository->get('special_from_date')->getAttributeId(); + } + + return $this->priceFromAttributeId; + } + + /** + * Get special price to attribute ID. + * + * @return int + */ + private function getPriceToAttributeId() + { + if (!$this->priceToAttributeId) { + $this->priceToAttributeId = $this->attributeRepository->get('special_to_date')->getAttributeId(); + } + + return $this->priceToAttributeId; + } + + /** + * Retrieve IDs of products, that were affected during price update. + * + * @param array $skus + * @return array + */ + private function retrieveAffectedIds(array $skus) + { + $affectedIds = []; + + foreach ($this->productIdLocator->retrieveProductIdsBySkus($skus) as $productIds) { + $affectedIds = array_merge($affectedIds, array_keys($productIds)); + } + + return array_unique($affectedIds); + } +} diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/BasePriceStorageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/BasePriceStorageTest.php index ef99e550cdc..50101d85983 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/BasePriceStorageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/BasePriceStorageTest.php @@ -8,6 +8,8 @@ namespace Magento\Catalog\Test\Unit\Model\Product\Price; /** * Class BasePriceStorageTest. + * + * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class BasePriceStorageTest extends \PHPUnit_Framework_TestCase { @@ -51,6 +53,16 @@ class BasePriceStorageTest extends \PHPUnit_Framework_TestCase */ private $product; + /** + * @var \Magento\Catalog\Model\Product\Price\InvalidSkuChecker|\PHPUnit_Framework_MockObject_MockObject + */ + private $invalidSkuChecker; + + /** + * @var \Magento\Catalog\Model\Product\Price\Validation\Result|\PHPUnit_Framework_MockObject_MockObject + */ + private $validationResult; + /** * @var \Magento\Catalog\Model\Product\Price\BasePriceStorage */ @@ -60,6 +72,7 @@ class BasePriceStorageTest extends \PHPUnit_Framework_TestCase * Set up. * * @return void + * @SuppressWarnings(PHPMD.ExcessiveMethodLength) */ protected function setUp() { @@ -129,7 +142,24 @@ class BasePriceStorageTest extends \PHPUnit_Framework_TestCase true, ['getPriceType'] ); - + $this->invalidSkuChecker = $this->getMockForAbstractClass( + \Magento\Catalog\Model\Product\Price\InvalidSkuChecker::class, + [], + '', + false, + true, + true, + ['retrieveInvalidSkuList'] + ); + $this->validationResult = $this->getMockForAbstractClass( + \Magento\Catalog\Model\Product\Price\Validation\Result::class, + [], + '', + false, + true, + true, + ['getFailedRowIds', 'getFailedItems'] + ); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->model = $objectManager->getObject( \Magento\Catalog\Model\Product\Price\BasePriceStorage::class, @@ -139,6 +169,8 @@ class BasePriceStorageTest extends \PHPUnit_Framework_TestCase 'productIdLocator' => $this->productIdLocator, 'storeRepository' => $this->storeRepository, 'productRepository' => $this->productRepository, + 'invalidSkuChecker' => $this->invalidSkuChecker, + 'validationResult' => $this->validationResult, 'allowedProductTypes' => ['simple', 'virtual', 'bundle', 'downloadable'], ] ); @@ -152,16 +184,6 @@ class BasePriceStorageTest extends \PHPUnit_Framework_TestCase public function testGet() { $skus = ['sku_1', 'sku_2']; - $idsBySku = [ - 'sku_1' => - [ - 1 => \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE - ], - 'sku_2' => - [ - 2 => \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE - ] - ]; $rawPrices = [ [ 'row_id' => 1, @@ -174,12 +196,6 @@ class BasePriceStorageTest extends \PHPUnit_Framework_TestCase 'store_id' => 1 ] ]; - $this->productIdLocator - ->expects($this->once()) - ->method('retrieveProductIdsBySkus')->with($skus) - ->willReturn($idsBySku); - $this->productRepository->expects($this->once())->method('get')->willReturn($this->product); - $this->product->expects($this->once())->method('getPriceType')->willReturn(1); $this->pricePersistenceFactory ->expects($this->once()) ->method('create') @@ -210,6 +226,7 @@ class BasePriceStorageTest extends \PHPUnit_Framework_TestCase ->method('setStoreId') ->withConsecutive([1], [1]) ->willReturnSelf(); + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn([]); $this->model->get($skus); } @@ -222,20 +239,7 @@ class BasePriceStorageTest extends \PHPUnit_Framework_TestCase public function testGetWithException() { $skus = ['sku_1', 'sku_2']; - $idsBySku = [ - 'sku_1' => - [ - 1 => 'configurable' - ], - 'sku_2' => - [ - 2 => 'grouped' - ] - ]; - $this->productIdLocator - ->expects($this->once()) - ->method('retrieveProductIdsBySkus')->with($skus) - ->willReturn($idsBySku); + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn($skus); $this->model->get($skus); } @@ -256,16 +260,18 @@ class BasePriceStorageTest extends \PHPUnit_Framework_TestCase $idsBySku = [ 'sku_1' => [ - 1 => \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE + 1 => [ + $this->basePriceInterface + ] ] ]; - $this->basePriceInterface->expects($this->exactly(4))->method('getSku')->willReturn($sku); + $this->basePriceInterface->expects($this->exactly(5))->method('getSku')->willReturn($sku); + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn([]); + $this->validationResult->expects($this->once())->method('getFailedRowIds')->willReturn([]); $this->productIdLocator - ->expects($this->exactly(2)) + ->expects($this->exactly(1)) ->method('retrieveProductIdsBySkus')->with([$sku]) ->willReturn($idsBySku); - $this->productRepository->expects($this->once())->method('get')->willReturn($this->product); - $this->product->expects($this->once())->method('getPriceType')->willReturn(1); $this->basePriceInterface->expects($this->exactly(3))->method('getPrice')->willReturn(15); $this->basePriceInterface->expects($this->exactly(2))->method('getStoreId')->willReturn(1); $this->pricePersistence->expects($this->atLeastOnce())->method('getEntityLinkField')->willReturn('row_id'); @@ -283,44 +289,71 @@ class BasePriceStorageTest extends \PHPUnit_Framework_TestCase ] ]; $this->pricePersistence->expects($this->once())->method('update')->with($formattedPrices); - $this->assertTrue($this->model->update([$this->basePriceInterface])); + $this->validationResult->expects($this->any())->method('getFailedItems')->willReturn([]); + $this->assertEquals([], $this->model->update([1 => $this->basePriceInterface])); } /** * Test update method without SKU. * - * @expectedException \Magento\Framework\Exception\LocalizedException - * @expectedExceptionMessage Invalid attribute sku: . + * @return void */ public function testUpdateWithoutSku() { - $this->basePriceInterface->expects($this->exactly(2))->method('getSku')->willReturn(null); - $this->model->update([$this->basePriceInterface]); + $this->basePriceInterface->expects($this->exactly(3))->method('getSku')->willReturn(null); + $this->validationResult->expects($this->once())->method('getFailedRowIds')->willReturn([0 => 0]); + $this->pricePersistenceFactory + ->expects($this->once()) + ->method('create') + ->with(['attributeCode' => 'price']) + ->willReturn($this->pricePersistence); + $priceUpdateResult = $this->getMockForAbstractClass( + \Magento\Catalog\Api\Data\PriceUpdateResultInterface::class, + [], + '', + false, + true, + true, + [] + ); + + $this->validationResult->expects($this->any())->method('getFailedItems')->willReturn([$priceUpdateResult]); + $this->assertEquals( + [$priceUpdateResult], + $this->model->update([$this->basePriceInterface]) + ); } /** * Test update method with negative price. * - * @expectedException \Magento\Framework\Exception\LocalizedException - * @expectedExceptionMessage Invalid attribute Price: -15. + * @return void */ public function testUpdateWithNegativePrice() { $sku = 'sku_1'; - $idsBySku = [ - 'sku_1' => - [ - 1 => \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE - ] - ]; - $this->basePriceInterface->expects($this->exactly(2))->method('getSku')->willReturn($sku); - $this->productIdLocator - ->expects($this->once(1)) - ->method('retrieveProductIdsBySkus')->with([$sku]) - ->willReturn($idsBySku); - $this->productRepository->expects($this->once())->method('get')->willReturn($this->product); - $this->product->expects($this->once())->method('getPriceType')->willReturn(1); + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn([]); + $this->validationResult->expects($this->once())->method('getFailedRowIds')->willReturn([0 => 0]); + $this->basePriceInterface->expects($this->exactly(3))->method('getSku')->willReturn($sku); $this->basePriceInterface->expects($this->exactly(3))->method('getPrice')->willReturn(-15); - $this->model->update([$this->basePriceInterface]); + $priceUpdateResult = $this->getMockForAbstractClass( + \Magento\Catalog\Api\Data\PriceUpdateResultInterface::class, + [], + '', + false, + true, + true, + [] + ); + $this->pricePersistenceFactory + ->expects($this->once()) + ->method('create') + ->with(['attributeCode' => 'price']) + ->willReturn($this->pricePersistence); + $this->validationResult->expects($this->any())->method('getFailedItems')->willReturn([$priceUpdateResult]); + $this->assertEquals( + [$priceUpdateResult], + $this->model->update([$this->basePriceInterface]) + ); } } diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/CostStorageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/CostStorageTest.php index b1dea66928f..91895ae9d69 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/CostStorageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/CostStorageTest.php @@ -41,6 +41,16 @@ class CostStorageTest extends \PHPUnit_Framework_TestCase */ private $storeRepository; + /** + * @var \Magento\Catalog\Model\Product\Price\InvalidSkuChecker|\PHPUnit_Framework_MockObject_MockObject + */ + private $invalidSkuChecker; + + /** + * @var \Magento\Catalog\Model\Product\Price\Validation\Result|\PHPUnit_Framework_MockObject_MockObject + */ + private $validationResult; + /** * @var \Magento\Catalog\Model\Product\Price\CostStorage */ @@ -101,6 +111,12 @@ class CostStorageTest extends \PHPUnit_Framework_TestCase true, ['getById'] ); + $this->validationResult = $this->getMockBuilder(\Magento\Catalog\Model\Product\Price\Validation\Result::class) + ->disableOriginalConstructor() + ->getMock(); + $this->invalidSkuChecker = $this->getMockBuilder(\Magento\Catalog\Model\Product\Price\InvalidSkuChecker::class) + ->disableOriginalConstructor() + ->getMock(); $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->model = $objectManager->getObject( @@ -110,6 +126,8 @@ class CostStorageTest extends \PHPUnit_Framework_TestCase 'costInterfaceFactory' => $this->costInterfaceFactory, 'productIdLocator' => $this->productIdLocator, 'storeRepository' => $this->storeRepository, + 'validationResult' => $this->validationResult, + 'invalidSkuChecker' => $this->invalidSkuChecker, 'allowedProductTypes' => ['simple', 'virtual', 'downloadable'], ] ); @@ -123,16 +141,6 @@ class CostStorageTest extends \PHPUnit_Framework_TestCase public function testGet() { $skus = ['sku_1', 'sku_2']; - $idsBySku = [ - 'sku_1' => - [ - 1 => \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE - ], - 'sku_2' => - [ - 2 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL - ] - ]; $rawPrices = [ [ 'row_id' => 1, @@ -145,10 +153,9 @@ class CostStorageTest extends \PHPUnit_Framework_TestCase 'store_id' => 1 ] ]; - $this->productIdLocator - ->expects($this->once()) - ->method('retrieveProductIdsBySkus')->with($skus) - ->willReturn($idsBySku); + $this->invalidSkuChecker + ->expects($this->atLeastOnce()) + ->method('isSkuListValid'); $this->pricePersistenceFactory ->expects($this->once()) ->method('create') @@ -182,32 +189,6 @@ class CostStorageTest extends \PHPUnit_Framework_TestCase $this->model->get($skus); } - /** - * Test get method with exception. - * - * @expectedException \Magento\Framework\Exception\NoSuchEntityException - * @expectedExceptionMessage Requested products don't exist: sku_1, sku_2 - */ - public function testGetWithException() - { - $skus = ['sku_1', 'sku_2']; - $idsBySku = [ - 'sku_1' => - [ - 1 => 'configurable' - ], - 'sku_2' => - [ - 2 => 'grouped' - ] - ]; - $this->productIdLocator - ->expects($this->once()) - ->method('retrieveProductIdsBySkus')->with($skus) - ->willReturn($idsBySku); - $this->model->get($skus); - } - /** * Test update method. * @@ -228,12 +209,16 @@ class CostStorageTest extends \PHPUnit_Framework_TestCase 1 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL ] ]; - $this->costInterface->expects($this->exactly(4))->method('getSku')->willReturn($sku); + $this->costInterface->expects($this->exactly(5))->method('getSku')->willReturn($sku); $this->productIdLocator - ->expects($this->exactly(2)) + ->expects($this->exactly(1)) ->method('retrieveProductIdsBySkus')->with([$sku]) ->willReturn($idsBySku); $this->costInterface->expects($this->exactly(3))->method('getCost')->willReturn(15); + $this->invalidSkuChecker + ->expects($this->exactly(1)) + ->method('retrieveInvalidSkuList') + ->willReturn([]); $this->costInterface->expects($this->exactly(2))->method('getStoreId')->willReturn(1); $this->pricePersistence->expects($this->atLeastOnce())->method('getEntityLinkField')->willReturn('row_id'); $this->storeRepository->expects($this->once())->method('getById')->with(1)->willReturn($store); @@ -242,6 +227,10 @@ class CostStorageTest extends \PHPUnit_Framework_TestCase ->method('create') ->with(['attributeCode' => 'cost']) ->willReturn($this->pricePersistence); + $this->validationResult + ->expects($this->exactly(1)) + ->method('getFailedRowIds') + ->willReturn([]); $formattedPrices = [ [ 'store_id' => 1, @@ -250,42 +239,38 @@ class CostStorageTest extends \PHPUnit_Framework_TestCase ] ]; $this->pricePersistence->expects($this->once())->method('update')->with($formattedPrices); - $this->assertTrue($this->model->update([$this->costInterface])); - } - - /** - * Test update method without SKU. - * - * @expectedException \Magento\Framework\Exception\LocalizedException - * @expectedExceptionMessage Invalid attribute sku: . - */ - public function testUpdateWithoutSku() - { - $this->costInterface->expects($this->exactly(2))->method('getSku')->willReturn(null); - $this->model->update([$this->costInterface]); + $this->validationResult + ->expects($this->exactly(1)) + ->method('getFailedItems') + ->willReturn([]); + $this->assertEmpty($this->model->update([$this->costInterface])); } /** * Test update method with negative cost. - * - * @expectedException \Magento\Framework\Exception\LocalizedException - * @expectedExceptionMessage Invalid attribute Cost: -15. */ public function testUpdateWithNegativeCost() { $sku = 'sku_1'; - $idsBySku = [ - 'sku_1' => - [ - 1 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL - ] - ]; - $this->costInterface->expects($this->exactly(2))->method('getSku')->willReturn($sku); - $this->productIdLocator - ->expects($this->once(1)) - ->method('retrieveProductIdsBySkus')->with([$sku]) - ->willReturn($idsBySku); + $this->costInterface->expects($this->exactly(3))->method('getSku')->willReturn($sku); + $this->invalidSkuChecker + ->expects($this->exactly(1)) + ->method('retrieveInvalidSkuList') + ->willReturn([]); + $this->validationResult + ->expects($this->exactly(1)) + ->method('getFailedRowIds') + ->willReturn([0]); + $this->pricePersistenceFactory + ->expects($this->once()) + ->method('create') + ->with(['attributeCode' => 'cost']) + ->willReturn($this->pricePersistence); + $this->pricePersistence->expects($this->atLeastOnce())->method('update'); $this->costInterface->expects($this->exactly(3))->method('getCost')->willReturn(-15); + $this->validationResult + ->expects($this->atLeastOnce()) + ->method('getFailedItems'); $this->model->update([$this->costInterface]); } @@ -297,26 +282,16 @@ class CostStorageTest extends \PHPUnit_Framework_TestCase public function testDelete() { $skus = ['sku_1', 'sku_2']; - $idsBySku = [ - 'sku_1' => - [ - 1 => \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE - ], - 'sku_2' => - [ - 2 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL - ] - ]; - $this->productIdLocator - ->expects($this->once()) - ->method('retrieveProductIdsBySkus')->with($skus) - ->willReturn($idsBySku); $this->pricePersistenceFactory ->expects($this->once()) ->method('create') ->with(['attributeCode' => 'cost']) ->willReturn($this->pricePersistence); $this->pricePersistence->expects($this->once())->method('delete')->with($skus); + $this->invalidSkuChecker + ->expects($this->exactly(1)) + ->method('isSkuListValid') + ->willReturn(true); $this->model->delete($skus); } } diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/InvalidSkuCheckerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/InvalidSkuCheckerTest.php new file mode 100644 index 00000000000..30131e553f5 --- /dev/null +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/InvalidSkuCheckerTest.php @@ -0,0 +1,121 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Test\Unit\Model\Product\Price; + +use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper; + +/** + * Test for model Product\Price\InvalidSkuChecker. + */ +class InvalidSkuCheckerTest extends \PHPUnit_Framework_TestCase +{ + /** + * @var ObjectManagerHelper + */ + private $objectManagerHelper; + + /** + * @var \Magento\Catalog\Model\Product\Price\InvalidSkuChecker + */ + private $invalidSkuChecker; + + /** + * @var \Magento\Catalog\Model\ProductIdLocatorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $productIdLocator; + + /** + * @var \Magento\Catalog\Api\ProductRepositoryInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $productRepository; + + /** + * {@inheritdoc} + */ + protected function setUp() + { + $this->productIdLocator = $this->getMockBuilder(\Magento\Catalog\Model\ProductIdLocatorInterface::class) + ->setMethods(['retrieveProductIdsBySkus']) + ->disableOriginalConstructor()->getMockForAbstractClass(); + + $this->productRepository = $this->getMockBuilder(\Magento\Catalog\Api\ProductRepositoryInterface::class) + ->setMethods(['get']) + ->disableOriginalConstructor()->getMockForAbstractClass(); + + $this->objectManagerHelper = new ObjectManagerHelper($this); + $this->invalidSkuChecker = $this->objectManagerHelper->getObject( + \Magento\Catalog\Model\Product\Price\InvalidSkuChecker::class, + [ + 'productIdLocator' => $this->productIdLocator, + 'productRepository' => $this->productRepository + ] + ); + } + + /** + * Prepare retrieveInvalidSkuList(). + * + * @param string $productType + * @param string $productSku + * @return void + */ + private function prepareRetrieveInvalidSkuListMethod($productType, $productSku) + { + $idsBySku = [$productSku => [235235235 => $productType]]; + $this->productIdLocator->expects($this->atLeastOnce())->method('retrieveProductIdsBySkus') + ->willReturn($idsBySku); + + $product = $this->getMockBuilder(\Magento\Catalog\Api\Data\ProductInterface::class) + ->setMethods(['getPriceType']) + ->disableOriginalConstructor()->getMockForAbstractClass(); + $productPriceType = 0; + $product->expects($this->atLeastOnce())->method('getPriceType')->willReturn($productPriceType); + + $this->productRepository->expects($this->atLeastOnce())->method('get')->willReturn($product); + } + + /** + * Test for retrieveInvalidSkuList(). + * + * @return void + */ + public function testRetrieveInvalidSkuList() + { + $productSku = 'LKJKJ2233636'; + $productType = \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE; + $methodParamSku = 'SDFSDF3242355'; + $skus = [$methodParamSku]; + $allowedProductTypes = [$productType]; + $allowedPriceTypeValue = true; + + $this->prepareRetrieveInvalidSkuListMethod($productType, $productSku); + + $expects = [$methodParamSku, $productSku]; + $result = $this->invalidSkuChecker->retrieveInvalidSkuList($skus, $allowedProductTypes, $allowedPriceTypeValue); + $this->assertEquals($expects, $result); + } + + /** + * Test for isSkuListValid() with Exception. + * + * @expectedException \Magento\Framework\Exception\NoSuchEntityException + * @return void + */ + public function testIsSkuListValidWithException() + { + $productSku = 'LKJKJ2233636'; + $productType = \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE; + $methodParamSku = 'SDFSDF3242355'; + $skus = [$methodParamSku]; + $allowedProductTypes = [$productType]; + $allowedPriceTypeValue = true; + + $this->prepareRetrieveInvalidSkuListMethod($productType, $productSku); + + $this->invalidSkuChecker->isSkuListValid($skus, $allowedProductTypes, $allowedPriceTypeValue); + } +} diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/SpecialPriceStorageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/SpecialPriceStorageTest.php new file mode 100644 index 00000000000..3a8368b1c09 --- /dev/null +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/SpecialPriceStorageTest.php @@ -0,0 +1,294 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Test\Unit\Model\Product\Price; + +/** + * Test for SpecialPriceStorage model. + */ +class SpecialPriceStorageTest extends \PHPUnit_Framework_TestCase +{ + /** + * @var \Magento\Catalog\Api\SpecialPriceInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $specialPriceResource; + + /** + * @var \Magento\Catalog\Api\Data\SpecialPriceInterfaceFactory|\PHPUnit_Framework_MockObject_MockObject + */ + private $specialPriceFactory; + + /** + * @var \Magento\Catalog\Model\ProductIdLocatorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $productIdLocator; + + /** + * @var \Magento\Store\Api\StoreRepositoryInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $storeRepository; + + /** + * @var \Magento\Catalog\Model\Product\Price\InvalidSkuChecker|\PHPUnit_Framework_MockObject_MockObject + */ + private $invalidSkuChecker; + + /** + * @var \Magento\Catalog\Model\Product\Price\Validation\Result|\PHPUnit_Framework_MockObject_MockObject + */ + private $validationResult; + + /** + * @var \Magento\Catalog\Model\Product\Price\SpecialPriceStorage + */ + private $model; + + /** + * Set up. + * + * @return void + */ + protected function setUp() + { + $this->specialPriceResource = $this->getMockBuilder(\Magento\Catalog\Api\SpecialPriceInterface::class) + ->disableOriginalConstructor()->setMethods(['get', 'update', 'delete', 'getEntityLinkField'])->getMock(); + $this->productIdLocator = $this->getMockBuilder(\Magento\Catalog\Model\ProductIdLocatorInterface::class) + ->disableOriginalConstructor()->getMock(); + $this->storeRepository = $this->getMockBuilder(\Magento\Store\Api\StoreRepositoryInterface::class) + ->disableOriginalConstructor()->getMock(); + $this->invalidSkuChecker = $this->getMockBuilder(\Magento\Catalog\Model\Product\Price\InvalidSkuChecker::class) + ->disableOriginalConstructor()->getMock(); + $this->validationResult = $this->getMockBuilder(\Magento\Catalog\Model\Product\Price\Validation\Result::class) + ->disableOriginalConstructor()->getMock(); + $this->specialPriceFactory = $this->getMockBuilder( + \Magento\Catalog\Api\Data\SpecialPriceInterfaceFactory::class + )->disableOriginalConstructor()->setMethods(['create'])->getMock(); + + $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); + $this->model = $objectManager->getObject( + \Magento\Catalog\Model\Product\Price\SpecialPriceStorage::class, + [ + 'specialPriceResource' => $this->specialPriceResource, + 'specialPriceFactory' => $this->specialPriceFactory, + 'productIdLocator' => $this->productIdLocator, + 'storeRepository' => $this->storeRepository, + 'invalidSkuChecker' => $this->invalidSkuChecker, + 'validationResult' => $this->validationResult, + ] + ); + } + + /** + * Test get method. + * + * @return void + */ + public function testGet() + { + $skus = ['sku_1', 'sku_2']; + $rawPrices = [ + [ + 'entity_id' => 1, + 'value' => 15, + 'store_id' => 1, + 'sku' => 'sku_1', + 'price_from' => '2016-12-20 01:02:03', + 'price_to' => '2016-12-21 01:02:03', + ], + [ + 'entity_id' => 2, + 'value' => 15, + 'store_id' => 1, + 'price_from' => '2016-12-20 01:02:03', + 'price_to' => '2016-12-21 01:02:03', + ], + [ + 'entity_id' => 3, + 'value' => 15, + 'store_id' => 1, + 'price_from' => '2016-12-20 01:02:03', + 'price_to' => '2016-12-21 01:02:03', + ], + ]; + $this->specialPriceResource->expects($this->once())->method('get')->willReturn($rawPrices); + $this->specialPriceResource->expects($this->atLeastOnce()) + ->method('getEntityLinkField')->willReturn('entity_id'); + + $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\SpecialPriceInterface::class) + ->disableOriginalConstructor()->getMock(); + $price->expects($this->exactly(3))->method('setPrice'); + $this->specialPriceFactory->expects($this->atLeastOnce())->method('create')->willReturn($price); + $this->productIdLocator->expects($this->atLeastOnce())->method('retrieveProductIdsBySkus')->willReturn( + [ + 'sku_2' => [2 => 'prod'] + ] + ); + $this->model->get($skus); + } + + /** + * Test update method. + * + * @return void + */ + public function testUpdate() + { + $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\SpecialPriceInterface::class) + ->disableOriginalConstructor()->getMock(); + + $prices = [1 => $price]; + $price->expects($this->atLeastOnce())->method('getSku')->willReturn('sku_1'); + $price->expects($this->atLeastOnce())->method('getPrice')->willReturn(15); + $price->expects($this->atLeastOnce())->method('getStoreId')->willReturn(1); + $price->expects($this->atLeastOnce())->method('getPriceFrom')->willReturn('2016-12-20 01:02:03'); + $price->expects($this->atLeastOnce())->method('getPriceTo')->willReturn('2016-12-21 01:02:03'); + + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn([]); + $this->storeRepository->expects($this->once())->method('getById'); + $this->validationResult->expects($this->never())->method('addFailedItem'); + $this->validationResult->expects($this->atLeastOnce())->method('getFailedRowIds')->willReturn([]); + + $this->specialPriceResource->expects($this->once())->method('update')->with($prices); + + $this->model->update($prices); + } + + /** + * Test update method with invalid sku. + * + * @return void + */ + public function testUpdateWithInvalidSku() + { + $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\SpecialPriceInterface::class) + ->disableOriginalConstructor()->getMock(); + $prices = [1 => $price]; + + $price->expects($this->atLeastOnce())->method('getSku')->willReturn('sku_1'); + $price->expects($this->atLeastOnce())->method('getPrice')->willReturn(15); + $price->expects($this->atLeastOnce())->method('getStoreId')->willReturn(1); + $price->expects($this->atLeastOnce())->method('getPriceFrom')->willReturn('2016-12-20 01:02:03'); + $price->expects($this->atLeastOnce())->method('getPriceTo')->willReturn('2016-12-21 01:02:03'); + + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn(['sku_1']); + $this->storeRepository->expects($this->once())->method('getById'); + $this->validationResult->expects($this->once())->method('addFailedItem')->with(1); + $this->validationResult->expects($this->atLeastOnce())->method('getFailedRowIds')->willReturn([1]); + + $this->specialPriceResource->expects($this->once())->method('update')->with([]); + + $this->model->update($prices); + } + + /** + * Test update method with price = null. + * + * @return void + */ + public function testUpdateWithoutPrice() + { + $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\SpecialPriceInterface::class) + ->disableOriginalConstructor()->getMock(); + $prices = [1 => $price]; + + $price->expects($this->atLeastOnce())->method('getSku')->willReturn('sku_1'); + $price->expects($this->atLeastOnce())->method('getPrice')->willReturn(null); + $price->expects($this->atLeastOnce())->method('getStoreId')->willReturn(1); + $price->expects($this->atLeastOnce())->method('getPriceFrom')->willReturn('2016-12-20 01:02:03'); + $price->expects($this->atLeastOnce())->method('getPriceTo')->willReturn('2016-12-21 01:02:03'); + + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn([]); + $this->storeRepository->expects($this->once())->method('getById'); + $this->validationResult->expects($this->once())->method('addFailedItem')->with(1); + $this->validationResult->expects($this->atLeastOnce())->method('getFailedRowIds')->willReturn([1]); + + $this->specialPriceResource->expects($this->once())->method('update')->with([]); + + $this->model->update($prices); + } + + /** + * Test update method with price = null. + * + * @return void + */ + public function testUpdateWithException() + { + $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\SpecialPriceInterface::class) + ->disableOriginalConstructor()->getMock(); + $prices = [1 => $price]; + + $price->expects($this->atLeastOnce())->method('getSku')->willReturn('sku_1'); + $price->expects($this->atLeastOnce())->method('getPrice')->willReturn(15); + $price->expects($this->atLeastOnce())->method('getStoreId')->willReturn(1); + $price->expects($this->atLeastOnce())->method('getPriceFrom')->willReturn('2016-12-20 01:02:03'); + $price->expects($this->atLeastOnce())->method('getPriceTo')->willReturn('2016-12-21 01:02:03'); + + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn([]); + $this->storeRepository->expects($this->once())->method('getById') + ->willThrowException(new \Magento\Framework\Exception\NoSuchEntityException()); + $this->validationResult->expects($this->once())->method('addFailedItem')->with(1); + $this->validationResult->expects($this->atLeastOnce())->method('getFailedRowIds')->willReturn([1]); + + $this->specialPriceResource->expects($this->once())->method('update')->with([]); + + $this->model->update($prices); + } + + /** + * Test update method with incorrect price_from field. + * + * @return void + */ + public function testUpdateWithIncorrectPriceFrom() + { + $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\SpecialPriceInterface::class) + ->disableOriginalConstructor()->getMock(); + $prices = [1 => $price]; + + $price->expects($this->atLeastOnce())->method('getSku')->willReturn('sku_1'); + $price->expects($this->atLeastOnce())->method('getPrice')->willReturn(15); + $price->expects($this->atLeastOnce())->method('getStoreId')->willReturn(1); + $price->expects($this->atLeastOnce())->method('getPriceFrom')->willReturn('incorrect'); + $price->expects($this->atLeastOnce())->method('getPriceTo')->willReturn('2016-12-21 01:02:03'); + + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn([]); + $this->storeRepository->expects($this->once())->method('getById'); + $this->validationResult->expects($this->once())->method('addFailedItem')->with(1); + $this->validationResult->expects($this->atLeastOnce())->method('getFailedRowIds')->willReturn([1]); + + $this->specialPriceResource->expects($this->once())->method('update')->with([]); + + $this->model->update($prices); + } + + /** + * Test update method with incorrect price_to field. + * + * @return void + */ + public function testUpdateWithIncorrectPriceTo() + { + $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\SpecialPriceInterface::class) + ->disableOriginalConstructor()->getMock(); + $prices = [1 => $price]; + + $price->expects($this->atLeastOnce())->method('getSku')->willReturn('sku_1'); + $price->expects($this->atLeastOnce())->method('getPrice')->willReturn(15); + $price->expects($this->atLeastOnce())->method('getStoreId')->willReturn(1); + $price->expects($this->atLeastOnce())->method('getPriceFrom')->willReturn('2016-12-21 01:02:03'); + $price->expects($this->atLeastOnce())->method('getPriceTo')->willReturn('incorrect'); + + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn([]); + $this->storeRepository->expects($this->once())->method('getById'); + $this->validationResult->expects($this->once())->method('addFailedItem')->with(1); + $this->validationResult->expects($this->atLeastOnce())->method('getFailedRowIds')->willReturn([1]); + + $this->specialPriceResource->expects($this->once())->method('update')->with([]); + + $this->model->update($prices); + } +} diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceStorageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceStorageTest.php index 2a885dd8b83..f3e687ef3b0 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceStorageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceStorageTest.php @@ -17,7 +17,7 @@ class TierPriceStorageTest extends \PHPUnit_Framework_TestCase private $tierPricePersistence; /** - * @var \Magento\Catalog\Model\Product\Price\TierPriceValidator|\PHPUnit_Framework_MockObject_MockObject + * @var \Magento\Catalog\Model\Product\Price\Validation\TierPriceValidator|\PHPUnit_Framework_MockObject_MockObject */ private $tierPriceValidator; @@ -51,6 +51,11 @@ class TierPriceStorageTest extends \PHPUnit_Framework_TestCase */ private $tierPriceStorage; + /** + * @var \Magento\Catalog\Model\Product\Price\InvalidSkuChecker|\PHPUnit_Framework_MockObject_MockObject + */ + private $invalidSkuChecker; + /** * {@inheritdoc} */ @@ -67,7 +72,7 @@ class TierPriceStorageTest extends \PHPUnit_Framework_TestCase ->method('getEntityLinkField') ->willReturn('row_id'); $this->tierPriceValidator = $this->getMock( - \Magento\Catalog\Model\Product\Price\TierPriceValidator::class, + \Magento\Catalog\Model\Product\Price\Validation\TierPriceValidator::class, [], [], '', @@ -108,6 +113,10 @@ class TierPriceStorageTest extends \PHPUnit_Framework_TestCase '', false ); + $this->invalidSkuChecker = $this->getMockBuilder(\Magento\Catalog\Model\Product\Price\InvalidSkuChecker::class) + ->disableOriginalConstructor() + ->getMock(); + $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->tierPriceStorage = $objectManager->getObject( \Magento\Catalog\Model\Product\Price\TierPriceStorage::class, @@ -118,6 +127,7 @@ class TierPriceStorageTest extends \PHPUnit_Framework_TestCase 'priceIndexer' => $this->priceIndexer, 'productIdLocator' => $this->productIdLocator, 'config' => $this->config, + 'invalidSkuChecker' => $this->invalidSkuChecker, 'typeList' => $this->typeList, ] ); @@ -174,10 +184,18 @@ class TierPriceStorageTest extends \PHPUnit_Framework_TestCase */ public function testUpdate() { + $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\TierPriceInterface::class)->getMockForAbstractClass(); + $result = $this->getMockBuilder(\Magento\Catalog\Model\Product\Price\Validation\Result::class) + ->disableOriginalConstructor() + ->getMock(); + $result->expects($this->atLeastOnce())->method('getFailedRowIds')->willReturn([]); $this->productIdLocator->expects($this->atLeastOnce()) ->method('retrieveProductIdsBySkus') - ->willReturn(['bundle' => ['2' => 'bundle']]); - $this->tierPriceValidator->expects($this->atLeastOnce())->method('validatePrices')->willReturn(true); + ->willReturn(['simple' => ['2' => 'simple'], 'virtual' => ['3' => 'virtual']]); + $this->tierPriceValidator + ->expects($this->atLeastOnce()) + ->method('retrieveValidationResult') + ->willReturn($result); $this->tierPriceFactory->expects($this->atLeastOnce())->method('createSkeleton')->willReturn( [ 'row_id' => 2, @@ -209,9 +227,8 @@ class TierPriceStorageTest extends \PHPUnit_Framework_TestCase $this->priceIndexer->expects($this->atLeastOnce())->method('execute'); $this->config->expects($this->atLeastOnce())->method('isEnabled')->willReturn(true); $this->typeList->expects($this->atLeastOnce())->method('invalidate'); - $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\TierPriceInterface::class)->getMockForAbstractClass(); - $price->method('getSku')->willReturn('bundle'); - $this->assertTrue($this->tierPriceStorage->update([$price])); + $price->method('getSku')->willReturn('simple'); + $this->assertEmpty($this->tierPriceStorage->update([$price])); } /** @@ -220,10 +237,20 @@ class TierPriceStorageTest extends \PHPUnit_Framework_TestCase */ public function testReplace() { - $this->tierPriceValidator->expects($this->atLeastOnce())->method('validatePrices'); + $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\TierPriceInterface::class)->getMockForAbstractClass(); + $price->method('getSku')->willReturn('virtual'); + $result = $this->getMockBuilder(\Magento\Catalog\Model\Product\Price\Validation\Result::class) + ->disableOriginalConstructor() + ->getMock(); + $result->expects($this->atLeastOnce())->method('getFailedRowIds')->willReturn([]); $this->productIdLocator->expects($this->atLeastOnce()) ->method('retrieveProductIdsBySkus') - ->willReturn(['virtual' => ['2' => 'virtual']]); + ->willReturn(['simple' => ['2' => 'simple'], 'virtual' => ['3' => 'virtual']]); + + $this->tierPriceValidator + ->expects($this->atLeastOnce()) + ->method('retrieveValidationResult') + ->willReturn($result); $this->tierPriceFactory->expects($this->atLeastOnce())->method('createSkeleton')->willReturn( [ 'row_id' => 3, @@ -237,11 +264,9 @@ class TierPriceStorageTest extends \PHPUnit_Framework_TestCase ); $this->tierPricePersistence->expects($this->atLeastOnce())->method('replace'); $this->priceIndexer->expects($this->atLeastOnce())->method('execute'); - $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\TierPriceInterface::class)->getMockForAbstractClass(); - $price->method('getSku')->willReturn('virtual'); $this->config->expects($this->atLeastOnce())->method('isEnabled')->willReturn(true); $this->typeList->expects($this->atLeastOnce())->method('invalidate'); - $this->assertTrue($this->tierPriceStorage->replace([$price])); + $this->assertEmpty($this->tierPriceStorage->replace([$price])); } /** @@ -250,7 +275,15 @@ class TierPriceStorageTest extends \PHPUnit_Framework_TestCase */ public function testDelete() { - $this->tierPriceValidator->expects($this->atLeastOnce())->method('validatePrices'); + $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\TierPriceInterface::class)->getMockForAbstractClass(); + $price->method('getSku')->willReturn('simple'); + $result = $this->getMockBuilder(\Magento\Catalog\Model\Product\Price\Validation\Result::class) + ->disableOriginalConstructor() + ->getMock(); + $result->expects($this->atLeastOnce())->method('getFailedRowIds')->willReturn([]); + $this->tierPriceValidator->expects($this->atLeastOnce()) + ->method('retrieveValidationResult') + ->willReturn($result); $this->productIdLocator->expects($this->atLeastOnce()) ->method('retrieveProductIdsBySkus') ->willReturn(['simple' => ['2' => 'simple']]); @@ -285,8 +318,6 @@ class TierPriceStorageTest extends \PHPUnit_Framework_TestCase $this->priceIndexer->expects($this->atLeastOnce())->method('execute'); $this->config->expects($this->atLeastOnce())->method('isEnabled')->willReturn(true); $this->typeList->expects($this->atLeastOnce())->method('invalidate'); - $price = $this->getMockBuilder(\Magento\Catalog\Api\Data\TierPriceInterface::class)->getMockForAbstractClass(); - $price->method('getSku')->willReturn('simple'); - $this->assertTrue($this->tierPriceStorage->delete([$price])); + $this->assertEmpty($this->tierPriceStorage->delete([$price])); } } diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceValidatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceValidatorTest.php deleted file mode 100644 index 1f44c2a75d1..00000000000 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceValidatorTest.php +++ /dev/null @@ -1,471 +0,0 @@ -<?php -/** - * Copyright © 2016 Magento. All rights reserved. - * See COPYING.txt for license details. - */ - -namespace Magento\Catalog\Test\Unit\Model\Product\Price; - -use Magento\Catalog\Api\Data\TierPriceInterface; - -/** - * Class TierPriceValidatorTest. - * @SuppressWarnings(PHPMD.CouplingBetweenObjects) - */ -class TierPriceValidatorTest extends \PHPUnit_Framework_TestCase -{ - /** - * @var \Magento\Catalog\Model\ProductIdLocatorInterface|\PHPUnit_Framework_MockObject_MockObject - */ - private $productIdLocator; - - /** - * @var \Magento\Framework\Api\SearchCriteriaBuilder|\PHPUnit_Framework_MockObject_MockObject - */ - private $searchCriteriaBuilder; - - /** - * @var \Magento\Framework\Api\FilterBuilder|\PHPUnit_Framework_MockObject_MockObject - */ - private $filterBuilder; - - /** - * @var \Magento\Customer\Api\GroupRepositoryInterface|\PHPUnit_Framework_MockObject_MockObject - */ - private $customerGroupRepository; - - /** - * @var \Magento\Store\Api\WebsiteRepositoryInterface|\PHPUnit_Framework_MockObject_MockObject - */ - private $websiteRepository; - - /** - * @var \Magento\Catalog\Model\Product\Price\TierPricePersistence|\PHPUnit_Framework_MockObject_MockObject - */ - private $tierPricePersistence; - - /** - * @var \Magento\Catalog\Api\Data\TierPriceInterface|\PHPUnit_Framework_MockObject_MockObject - */ - private $tierPriceInterface; - - /** - * @var \Magento\Catalog\Model\Product\Price\TierPriceValidator - */ - private $model; - - /** - * Set up. - * - * @return void - */ - protected function setUp() - { - $this->productIdLocator = $this->getMockForAbstractClass( - \Magento\Catalog\Model\ProductIdLocatorInterface::class, - [], - '', - false, - true, - true, - ['retrieveProductIdsBySkus'] - ); - $this->searchCriteriaBuilder = $this->getMock( - \Magento\Framework\Api\SearchCriteriaBuilder::class, - ['addFilters', 'create'], - [], - '', - false - ); - $this->filterBuilder = $this->getMock( - \Magento\Framework\Api\FilterBuilder::class, - ['setField', 'setValue', 'create'], - [], - '', - false - ); - $this->customerGroupRepository = $this->getMockForAbstractClass( - \Magento\Customer\Api\GroupRepositoryInterface::class, - [], - '', - false, - true, - true, - ['getList'] - ); - $this->websiteRepository = $this->getMockForAbstractClass( - \Magento\Store\Api\WebsiteRepositoryInterface::class, - [], - '', - false, - true, - true, - ['getById'] - ); - $this->tierPricePersistence = $this->getMock( - \Magento\Catalog\Model\Product\Price\TierPricePersistence::class, - ['addFilters', 'create'], - [], - '', - false - ); - $this->tierPriceInterface = $this->getMockForAbstractClass( - \Magento\Catalog\Api\Data\TierPriceInterface::class, - [], - '', - false, - true, - true, - ['getSku', 'getPrice', 'getPriceType', 'getQuantity', 'getWebsiteId', 'getCustomerGroup'] - ); - - $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); - $this->model = $objectManager->getObject( - \Magento\Catalog\Model\Product\Price\TierPriceValidator::class, - [ - 'productIdLocator' => $this->productIdLocator, - 'searchCriteriaBuilder' => $this->searchCriteriaBuilder, - 'filterBuilder' => $this->filterBuilder, - 'customerGroupRepository' => $this->customerGroupRepository, - 'websiteRepository' => $this->websiteRepository, - 'tierPricePersistence' => $this->tierPricePersistence, - 'allowedProductTypes' => ['simple', 'virtual', 'bundle', 'downloadable'], - ] - ); - } - - /** - * Test validateSkus method. - * - * @return void - */ - public function testValidateSkus() - { - $skus = ['sku_1', 'sku_2']; - $idsBySku = [ - 'sku_1' => [1 => \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE], - 'sku_2' => [2 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL], - ]; - $this->productIdLocator - ->expects($this->once()) - ->method('retrieveProductIdsBySkus') - ->with($skus) - ->willReturn($idsBySku); - $this->model->validateSkus($skus); - } - - /** - * Test validateSkus method throws exception. - * - * @expectedException \Magento\Framework\Exception\NoSuchEntityException - * @expectedExceptionMessage Requested products don't exist: sku_1, sku_2 - */ - public function testValidateSkusWithException() - { - $skus = ['sku_1', 'sku_2']; - $idsBySku = [ - 'sku_1' => [1 => 'grouped'], - 'sku_2' => [2 => 'configurable'], - ]; - $this->productIdLocator - ->expects($this->once()) - ->method('retrieveProductIdsBySkus') - ->with($skus) - ->willReturn($idsBySku); - $this->model->validateSkus($skus); - } - - /** - * Test validatePrices method. - * - * @return void - */ - public function testValidatePrices() - { - $sku = 'sku_1'; - $idsBySku = [ - 'sku_1' => [1 => \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE], - 'sku_2' => [2 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL], - ]; - $productPrice = 15; - $this->tierPriceInterface->expects($this->exactly(8))->method('getSku')->willReturn($sku); - $this->productIdLocator->expects($this->exactly(2))->method('retrieveProductIdsBySkus')->willReturn($idsBySku); - $this->tierPriceInterface->expects($this->exactly(2))->method('getPrice')->willReturn($productPrice); - $this->tierPriceInterface - ->expects($this->exactly(2)) - ->method('getPriceType') - ->willReturn(TierPriceInterface::PRICE_TYPE_FIXED); - $this->tierPriceInterface->expects($this->exactly(3))->method('getQuantity')->willReturn(2); - $this->checkWebsite($this->tierPriceInterface); - $this->checkGroup($this->tierPriceInterface); - $this->model->validatePrices([$this->tierPriceInterface], []); - } - - /** - * Test validatePrices method with downloadable product. - * - * @expectedException \Magento\Framework\Exception\LocalizedException - * @expectedExceptionMessage Invalid attribute sku: . - */ - public function testValidatePricesWithDownloadableProduct() - { - $this->tierPriceInterface->expects($this->exactly(2))->method('getSku')->willReturn(null); - $this->model->validatePrices([$this->tierPriceInterface], []); - } - - /** - * Test validatePrices method with negative price. - * - * @expectedException \Magento\Framework\Exception\LocalizedException - * @expectedExceptionMessage Invalid attribute Price: -15. - */ - public function testValidatePricesWithNegativePrice() - { - $negativePrice = -15; - $sku = 'sku_1'; - $idsBySku = [ - 'sku_1' => [1 => \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE], - 'sku_2' => [2 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL], - ]; - $this->tierPriceInterface->expects($this->exactly(3))->method('getSku')->willReturn($sku); - $this->productIdLocator->expects($this->exactly(2))->method('retrieveProductIdsBySkus')->willReturn($idsBySku); - $this->tierPriceInterface->expects($this->exactly(3))->method('getPrice')->willReturn($negativePrice); - $this->model->validatePrices([$this->tierPriceInterface], []); - } - - /** - * Test validatePrices method with bundle product and fixed price. - * - * @expectedException \Magento\Framework\Exception\LocalizedException - * @expectedExceptionMessage Invalid attribute Price Type: fixed. - */ - public function testValidatePricesWithBundleProductAndFixedPrice() - { - $sku = 'sku_1'; - $idsBySku = [ - 'sku_1' => [1 => \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE], - ]; - $productPrice = 15; - $this->tierPriceInterface->expects($this->exactly(4))->method('getSku')->willReturn($sku); - $this->productIdLocator->expects($this->exactly(2))->method('retrieveProductIdsBySkus')->willReturn($idsBySku); - $this->tierPriceInterface->expects($this->exactly(2))->method('getPrice')->willReturn($productPrice); - $this->tierPriceInterface - ->expects($this->exactly(4)) - ->method('getPriceType') - ->willReturn(TierPriceInterface::PRICE_TYPE_FIXED); - $this->model->validatePrices([$this->tierPriceInterface], []); - } - - /** - * Test validatePrices method with zero quantity. - * - * @expectedException \Magento\Framework\Exception\LocalizedException - * @expectedExceptionMessage Invalid attribute Quantity: 0. - */ - public function testValidatePricesWithZeroQty() - { - $sku = 'sku_1'; - $idsBySku = [ - 'sku_1' => [1 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL], - ]; - $productPrice = 15; - $this->tierPriceInterface->expects($this->exactly(4))->method('getSku')->willReturn($sku); - $this->productIdLocator->expects($this->exactly(2))->method('retrieveProductIdsBySkus')->willReturn($idsBySku); - $this->tierPriceInterface->expects($this->exactly(2))->method('getPrice')->willReturn($productPrice); - $this->tierPriceInterface - ->expects($this->exactly(2)) - ->method('getPriceType') - ->willReturn(TierPriceInterface::PRICE_TYPE_FIXED); - $this->tierPriceInterface->expects($this->exactly(2))->method('getQuantity')->willReturn(0); - $this->model->validatePrices([$this->tierPriceInterface], []); - } - - /** - * Test validatePrices method without website. - * - * @expectedException \Magento\Framework\Exception\LocalizedException - * @expectedExceptionMessage Invalid attribute website_id: 15. - */ - public function testValidatePricesWithoutWebsite() - { - $sku = 'sku_1'; - $idsBySku = [ - 'sku_1' => [1 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL], - ]; - $productPrice = 15; - $exception = new \Magento\Framework\Exception\NoSuchEntityException(); - $this->tierPriceInterface->expects($this->exactly(4))->method('getSku')->willReturn($sku); - $this->productIdLocator->expects($this->exactly(2))->method('retrieveProductIdsBySkus')->willReturn($idsBySku); - $this->tierPriceInterface->expects($this->exactly(2))->method('getPrice')->willReturn($productPrice); - $this->tierPriceInterface - ->expects($this->exactly(2)) - ->method('getPriceType') - ->willReturn(TierPriceInterface::PRICE_TYPE_FIXED); - $this->tierPriceInterface->expects($this->once())->method('getQuantity')->willReturn(2); - $this->websiteRepository->expects($this->once())->method('getById')->willThrowException($exception); - $this->tierPriceInterface->expects($this->exactly(2))->method('getWebsiteId')->willReturn(15); - $this->model->validatePrices([$this->tierPriceInterface], []); - } - - /** - * Test validatePrices method not unique. - * - * @expectedException \Magento\Framework\Exception\LocalizedException - * @expectedExceptionMessage We found a duplicate website, tier price, customer - * group and quantity: Customer Group = retailer, Website Id = 2, Quantity = 2. - */ - public function testValidatePricesNotUnique() - { - $sku = 'sku_1'; - $idsBySku = [ - 'sku_1' => [1 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL], - ]; - $productPrice = 15; - $this->tierPriceInterface->expects($this->exactly(8))->method('getSku')->willReturn($sku); - $this->productIdLocator->expects($this->exactly(2))->method('retrieveProductIdsBySkus')->willReturn($idsBySku); - $this->tierPriceInterface->expects($this->exactly(2))->method('getPrice')->willReturn($productPrice); - $this->tierPriceInterface - ->expects($this->exactly(2)) - ->method('getPriceType') - ->willReturn(TierPriceInterface::PRICE_TYPE_FIXED); - $website = $this->getMockForAbstractClass( - \Magento\Store\Api\Data\WebsiteInterface::class, - [], - '', - false - ); - $this->tierPriceInterface - ->expects($this->exactly(5)) - ->method('getWebsiteId') - ->willReturnOnConsecutiveCalls(1, 0, 0, 1, 2); - $this->websiteRepository->expects($this->once())->method('getById')->willReturn($website); - $this->tierPriceInterface->expects($this->exactly(4))->method('getQuantity')->willReturn(2); - $this->tierPriceInterface->expects($this->exactly(3))->method('getCustomerGroup')->willReturn('retailer'); - $this->model->validatePrices([$this->tierPriceInterface], []); - } - - /** - * Test validatePrices method without group. - * - * @expectedException \Magento\Framework\Exception\LocalizedException - * @expectedExceptionMessage No such entity with Customer Group = wholesale. - */ - public function testValidatePricesWithoutGroup() - { - $sku = 'sku_1'; - $idsBySku = [ - 'sku_1' => [1 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL], - ]; - $productPrice = 15; - $this->tierPriceInterface->expects($this->exactly(8))->method('getSku')->willReturn($sku); - $this->productIdLocator->expects($this->exactly(2))->method('retrieveProductIdsBySkus')->willReturn($idsBySku); - $this->tierPriceInterface->expects($this->exactly(2))->method('getPrice')->willReturn($productPrice); - $this->tierPriceInterface - ->expects($this->exactly(2)) - ->method('getPriceType') - ->willReturn(TierPriceInterface::PRICE_TYPE_FIXED); - $this->tierPriceInterface->expects($this->exactly(3))->method('getQuantity')->willReturn(2); - $this->checkWebsite($this->tierPriceInterface); - $searchCriteria = $this->getMock( - \Magento\Framework\Api\SearchCriteria::class, - [], - [], - '', - false - ); - $searchResults = $this->getMockForAbstractClass( - \Magento\Customer\Api\Data\GroupSearchResultsInterface::class, - [], - '', - false, - true, - true, - ['getItems'] - ); - $this->tierPriceInterface->expects($this->exactly(3))->method('getCustomerGroup')->willReturn('wholesale'); - $this->searchCriteriaBuilder->expects($this->once())->method('addFilters')->willReturnSelf(); - $this->filterBuilder->expects($this->once())->method('setField')->with('customer_group_code')->willReturnSelf(); - $this->filterBuilder->expects($this->once())->method('setValue')->with('wholesale')->willReturnSelf(); - $this->filterBuilder->expects($this->once())->method('create')->willReturnSelf(); - $this->searchCriteriaBuilder - ->expects($this->once()) - ->method('create') - ->willReturn($searchCriteria); - $this->customerGroupRepository - ->expects($this->once()) - ->method('getList') - ->with($searchCriteria) - ->willReturn($searchResults); - $searchResults->expects($this->once())->method('getItems')->willReturn([]); - $this->model->validatePrices([$this->tierPriceInterface], []); - } - - /** - * Check website. - * - * @param \PHPUnit_Framework_MockObject_MockObject $price - */ - private function checkWebsite(\PHPUnit_Framework_MockObject_MockObject $price) - { - $website = $this->getMockForAbstractClass( - \Magento\Store\Api\Data\WebsiteInterface::class, - [], - '', - false - ); - $price->expects($this->exactly(3))->method('getWebsiteId')->willReturn(1); - $this->websiteRepository->expects($this->once())->method('getById')->willReturn($website); - } - - /** - * Check group. - * - * @param \PHPUnit_Framework_MockObject_MockObject $price - */ - private function checkGroup(\PHPUnit_Framework_MockObject_MockObject $price) - { - $searchCriteria = $this->getMock( - \Magento\Framework\Api\SearchCriteria::class, - [], - [], - '', - false - ); - $searchResults = $this->getMockForAbstractClass( - \Magento\Customer\Api\Data\GroupSearchResultsInterface::class, - [], - '', - false, - true, - true, - ['getItems'] - ); - $group = $this->getMockForAbstractClass( - \Magento\Customer\Api\Data\GroupInterface::class, - [], - '', - false, - true, - true, - ['getCode', 'getId'] - ); - - $price->expects($this->exactly(3))->method('getCustomerGroup')->willReturn('wholesale'); - $this->searchCriteriaBuilder->expects($this->once())->method('addFilters')->willReturnSelf(); - $this->filterBuilder->expects($this->once())->method('setField')->with('customer_group_code')->willReturnSelf(); - $this->filterBuilder->expects($this->once())->method('setValue')->with('wholesale')->willReturnSelf(); - $this->filterBuilder->expects($this->once())->method('create')->willReturnSelf(); - $this->searchCriteriaBuilder - ->expects($this->once()) - ->method('create') - ->willReturn($searchCriteria); - $this->customerGroupRepository - ->expects($this->once()) - ->method('getList') - ->with($searchCriteria) - ->willReturn($searchResults); - $searchResults->expects($this->once())->method('getItems')->willReturn([$group]); - $group->expects($this->once())->method('getCode')->willReturn('wholesale'); - $group->expects($this->once())->method('getId')->willReturn(4); - } -} diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/Validation/TierPriceValidatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/Validation/TierPriceValidatorTest.php new file mode 100644 index 00000000000..dfa75595ff9 --- /dev/null +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/Validation/TierPriceValidatorTest.php @@ -0,0 +1,333 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +namespace Magento\Catalog\Test\Unit\Model\Product\Price\Validation; + +use Magento\Catalog\Api\Data\TierPriceInterface; + +/** + * Class TierPriceValidatorTest. + * @SuppressWarnings(PHPMD.CouplingBetweenObjects) + */ +class TierPriceValidatorTest extends \PHPUnit_Framework_TestCase +{ + /** + * @var \Magento\Catalog\Model\ProductIdLocatorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $productIdLocator; + + /** + * @var \Magento\Framework\Api\SearchCriteriaBuilder|\PHPUnit_Framework_MockObject_MockObject + */ + private $searchCriteriaBuilder; + + /** + * @var \Magento\Framework\Api\FilterBuilder|\PHPUnit_Framework_MockObject_MockObject + */ + private $filterBuilder; + + /** + * @var \Magento\Customer\Api\GroupRepositoryInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $customerGroupRepository; + + /** + * @var \Magento\Store\Api\WebsiteRepositoryInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $websiteRepository; + + /** + * @var \Magento\Catalog\Model\Product\Price\TierPricePersistence|\PHPUnit_Framework_MockObject_MockObject + */ + private $tierPricePersistence; + + /** + * @var \Magento\Catalog\Api\Data\TierPriceInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $tierPriceInterface; + + /** + * @var \Magento\Catalog\Model\Product\Price\InvalidSkuChecker|\PHPUnit_Framework_MockObject_MockObject + */ + private $invalidSkuChecker; + + /** + * @var \Magento\Catalog\Model\Product\Price\Validation\Result|\PHPUnit_Framework_MockObject_MockObject + */ + private $validationResult; + + /** + * @var \Magento\Catalog\Model\Product\Price\Validation\TierPriceValidator + */ + private $model; + + /** + * Set up. + * + * @return void + */ + protected function setUp() + { + $this->productIdLocator = $this->getMockForAbstractClass( + \Magento\Catalog\Model\ProductIdLocatorInterface::class, + [], + '', + false, + true, + true, + ['retrieveProductIdsBySkus'] + ); + $this->searchCriteriaBuilder = $this->getMock( + \Magento\Framework\Api\SearchCriteriaBuilder::class, + ['addFilters', 'create'], + [], + '', + false + ); + $this->filterBuilder = $this->getMock( + \Magento\Framework\Api\FilterBuilder::class, + ['setField', 'setValue', 'create'], + [], + '', + false + ); + $this->filterBuilder->method('setField')->willReturnSelf(); + $this->filterBuilder->method('setValue')->willReturnSelf(); + $this->customerGroupRepository = $this->getMockForAbstractClass( + \Magento\Customer\Api\GroupRepositoryInterface::class, + [], + '', + false, + true, + true, + ['getList'] + ); + $this->websiteRepository = $this->getMockForAbstractClass( + \Magento\Store\Api\WebsiteRepositoryInterface::class, + [], + '', + false, + true, + true, + ['getById'] + ); + $this->tierPricePersistence = $this->getMock( + \Magento\Catalog\Model\Product\Price\TierPricePersistence::class, + ['addFilters', 'create'], + [], + '', + false + ); + $this->tierPriceInterface = $this->getMockForAbstractClass( + \Magento\Catalog\Api\Data\TierPriceInterface::class, + [], + '', + false, + true, + true, + ['getSku', 'getPrice', 'getPriceType', 'getQuantity', 'getWebsiteId', 'getCustomerGroup'] + ); + $this->validationResult = $this->getMockBuilder(\Magento\Catalog\Model\Product\Price\Validation\Result::class) + ->disableOriginalConstructor() + ->getMock(); + $this->invalidSkuChecker = $this->getMockBuilder(\Magento\Catalog\Model\Product\Price\InvalidSkuChecker::class) + ->disableOriginalConstructor() + ->getMock(); + + $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); + $this->model = $objectManager->getObject( + \Magento\Catalog\Model\Product\Price\Validation\TierPriceValidator::class, + [ + 'productIdLocator' => $this->productIdLocator, + 'searchCriteriaBuilder' => $this->searchCriteriaBuilder, + 'filterBuilder' => $this->filterBuilder, + 'customerGroupRepository' => $this->customerGroupRepository, + 'websiteRepository' => $this->websiteRepository, + 'tierPricePersistence' => $this->tierPricePersistence, + 'validationResult' => $this->validationResult, + 'invalidSkuChecker' => $this->invalidSkuChecker, + 'allowedProductTypes' => ['simple', 'virtual', 'bundle', 'downloadable'], + ] + ); + } + + /** + * Test retrieveValidPrices method. + * + * @return void + */ + public function testRetrieveValidPrices() + { + $sku = 'sku_1'; + $idsBySku = [ + 'sku_1' => [1 => \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE], + 'sku_2' => [2 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL], + ]; + $this->productIdLocator->expects($this->once())->method('retrieveProductIdsBySkus')->willReturn($idsBySku); + $productPrice = 15; + $this->tierPriceInterface->expects($this->exactly(10))->method('getSku')->willReturn($sku); + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn([]); + $this->tierPriceInterface->expects($this->exactly(2))->method('getPrice')->willReturn($productPrice); + $this->tierPriceInterface + ->expects($this->exactly(2)) + ->method('getPriceType') + ->willReturn(TierPriceInterface::PRICE_TYPE_FIXED); + $this->tierPriceInterface->expects($this->exactly(3))->method('getQuantity')->willReturn(2); + $this->checkWebsite($this->tierPriceInterface); + $this->checkGroup($this->tierPriceInterface); + $this->model->retrieveValidationResult([$this->tierPriceInterface], []); + } + + /** + * Test retrieveValidPrices method with downloadable product. + */ + public function testRetrieveValidPricesWithDownloadableProduct() + { + $idsBySku = [ + 'sku_1' => [1 => \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE], + 'sku_2' => [2 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL], + ]; + $this->productIdLocator->expects($this->once())->method('retrieveProductIdsBySkus')->willReturn($idsBySku); + $this->tierPriceInterface->expects($this->exactly(10))->method('getSku')->willReturn('sku_1'); + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn([]); + $productPrice = 15; + $this->tierPriceInterface->expects($this->exactly(2))->method('getPrice')->willReturn($productPrice); + $this->tierPriceInterface + ->expects($this->exactly(2)) + ->method('getPriceType') + ->willReturn(TierPriceInterface::PRICE_TYPE_FIXED); + $this->tierPriceInterface->expects($this->exactly(3))->method('getQuantity')->willReturn(2); + $this->checkWebsite($this->tierPriceInterface); + $this->checkGroup($this->tierPriceInterface); + $this->validationResult + ->expects($this->never()) + ->method('addFailedItem'); + $this->model->retrieveValidationResult([$this->tierPriceInterface], []); + } + + /** + * Test method call with invalid values. + */ + public function testRetrieveValidPricesWithInvalidCall() + { + $idsBySku = [ + 'sku_1' => [1 => \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE], + 'sku_2' => [2 => \Magento\Catalog\Model\Product\Type::TYPE_VIRTUAL], + 'invalid' => [3 => \Magento\Catalog\Model\Product\Type::TYPE_SIMPLE], + ]; + + $this->tierPriceInterface->expects($this->exactly(10))->method('getSku')->willReturn('sku_1'); + $this->invalidSkuChecker->expects($this->once())->method('retrieveInvalidSkuList')->willReturn(['invalid']); + $this->productIdLocator->expects($this->once())->method('retrieveProductIdsBySkus')->willReturn($idsBySku); + $this->validationResult + ->expects($this->exactly(5)) + ->method('addFailedItem'); + $this->tierPriceInterface->expects($this->exactly(3))->method('getPrice')->willReturn('-90'); + $this->tierPriceInterface->expects($this->exactly(2))->method('getPriceType')->willReturn('unknown'); + $this->tierPriceInterface->expects($this->exactly(4))->method('getQuantity')->willReturn('-90'); + $this->websiteRepository->method('getById') + ->willThrowException(new \Magento\Framework\Exception\NoSuchEntityException()); + $searchCriteria = $this->getMockForAbstractClass( + \Magento\Framework\Api\SearchCriteriaInterface::class, + [], + '', + false, + true, + true, + ['create'] + ); + $searchCriteria->method('create')->willReturnSelf(); + $this->searchCriteriaBuilder->method('addFilters')->willReturn($searchCriteria); + $this->searchCriteriaBuilder->expects($this->once())->method('addFilters')->willReturnSelf(); + $this->filterBuilder->expects($this->once())->method('setField')->with('customer_group_code')->willReturnSelf(); + $this->filterBuilder->expects($this->once())->method('setValue')->willReturnSelf(); + $searchResults = $this->getMockForAbstractClass( + \Magento\Customer\Api\Data\GroupSearchResultsInterface::class, + [], + '', + false, + true, + true, + ['getItems'] + ); + $this->filterBuilder->expects($this->atLeastOnce())->method('create')->willReturnSelf(); + $searchResults->expects($this->atLeastOnce())->method('getItems')->willReturn([]); + $this->customerGroupRepository + ->expects($this->atLeastOnce()) + ->method('getList') + ->willReturn($searchResults); + $this->model->retrieveValidationResult([$this->tierPriceInterface], []); + } + + /** + * Check website. + * + * @param \PHPUnit_Framework_MockObject_MockObject $price + */ + private function checkWebsite(\PHPUnit_Framework_MockObject_MockObject $price) + { + $website = $this->getMockForAbstractClass( + \Magento\Store\Api\Data\WebsiteInterface::class, + [], + '', + false + ); + $price->expects($this->exactly(3))->method('getWebsiteId')->willReturn(1); + $this->websiteRepository->expects($this->once())->method('getById')->willReturn($website); + } + + /** + * Check group. + * + * @param \PHPUnit_Framework_MockObject_MockObject $price + */ + private function checkGroup(\PHPUnit_Framework_MockObject_MockObject $price) + { + $searchCriteria = $this->getMock( + \Magento\Framework\Api\SearchCriteria::class, + [], + [], + '', + false + ); + $searchResults = $this->getMockForAbstractClass( + \Magento\Customer\Api\Data\GroupSearchResultsInterface::class, + [], + '', + false, + true, + true, + ['getItems'] + ); + $group = $this->getMockForAbstractClass( + \Magento\Customer\Api\Data\GroupInterface::class, + [], + '', + false, + true, + true, + ['getCode', 'getId'] + ); + + $price->expects($this->exactly(3))->method('getCustomerGroup')->willReturn('wholesale'); + $this->searchCriteriaBuilder->expects($this->once())->method('addFilters')->willReturnSelf(); + $this->filterBuilder->expects($this->once())->method('setField')->with('customer_group_code')->willReturnSelf(); + $this->filterBuilder->expects($this->once())->method('setValue')->with('wholesale')->willReturnSelf(); + $this->filterBuilder->expects($this->once())->method('create')->willReturnSelf(); + $this->searchCriteriaBuilder + ->expects($this->once()) + ->method('create') + ->willReturn($searchCriteria); + $this->customerGroupRepository + ->expects($this->once()) + ->method('getList') + ->with($searchCriteria) + ->willReturn($searchResults); + $searchResults->expects($this->once())->method('getItems')->willReturn([$group]); + $group->expects($this->once())->method('getCode')->willReturn('wholesale'); + $group->expects($this->once())->method('getId')->willReturn(4); + } +} diff --git a/app/code/Magento/Catalog/etc/di.xml b/app/code/Magento/Catalog/etc/di.xml index 0142f7c2f26..51d2499b404 100644 --- a/app/code/Magento/Catalog/etc/di.xml +++ b/app/code/Magento/Catalog/etc/di.xml @@ -57,6 +57,10 @@ <preference for="Magento\Catalog\Api\Data\BasePriceInterface" type="Magento\Catalog\Model\Product\Price\BasePrice" /> <preference for="Magento\Catalog\Api\CostStorageInterface" type="Magento\Catalog\Model\Product\Price\CostStorage" /> <preference for="Magento\Catalog\Api\Data\CostInterface" type="Magento\Catalog\Model\Product\Price\Cost" /> + <preference for="Magento\Catalog\Api\SpecialPriceStorageInterface" type="Magento\Catalog\Model\Product\Price\SpecialPriceStorage" /> + <preference for="Magento\Catalog\Api\Data\SpecialPriceInterface" type="Magento\Catalog\Model\Product\Price\SpecialPrice" /> + <preference for="Magento\Catalog\Api\Data\PriceUpdateResultInterface" type="Magento\Catalog\Model\Product\Price\PriceUpdateResult" /> + <preference for="Magento\Catalog\Api\SpecialPriceInterface" type="Magento\Catalog\Model\ResourceModel\Product\Price\SpecialPrice" /> <preference for="Magento\Catalog\Model\ProductIdLocatorInterface" type="Magento\Catalog\Model\ProductIdLocator" /> <type name="Magento\Customer\Model\ResourceModel\Visitor"> <plugin name="catalogLog" type="Magento\Catalog\Model\Plugin\Log" /> @@ -872,7 +876,7 @@ </argument> </arguments> </type> - <type name="Magento\Catalog\Model\Product\Price\TierPriceValidator"> + <type name="Magento\Catalog\Model\Product\Price\Validation\TierPriceValidator"> <arguments> <argument name="allowedProductTypes" xsi:type="array"> <item name="0" xsi:type="string">simple</item> @@ -881,4 +885,12 @@ </argument> </arguments> </type> + <type name="Magento\Catalog\Model\Product\Price\SpecialPriceStorage"> + <arguments> + <argument name="allowedProductTypes" xsi:type="array"> + <item name="0" xsi:type="string">simple</item> + <item name="1" xsi:type="string">virtual</item> + </argument> + </arguments> + </type> </config> diff --git a/app/code/Magento/Catalog/etc/webapi.xml b/app/code/Magento/Catalog/etc/webapi.xml index b53f11b1ff2..d4baf5c01a9 100644 --- a/app/code/Magento/Catalog/etc/webapi.xml +++ b/app/code/Magento/Catalog/etc/webapi.xml @@ -300,6 +300,24 @@ <resource ref="Magento_Catalog::catalog"/> </resources> </route> + <route url="/V1/products/special-price-information" method="POST"> + <service class="Magento\Catalog\Api\SpecialPriceStorageInterface" method="get"/> + <resources> + <resource ref="Magento_Catalog::catalog"/> + </resources> + </route> + <route url="/V1/products/special-price" method="POST"> + <service class="Magento\Catalog\Api\SpecialPriceStorageInterface" method="update"/> + <resources> + <resource ref="Magento_Catalog::catalog"/> + </resources> + </route> + <route url="/V1/products/special-price-delete" method="POST"> + <service class="Magento\Catalog\Api\SpecialPriceStorageInterface" method="delete"/> + <resources> + <resource ref="Magento_Catalog::catalog"/> + </resources> + </route> <route url="/V1/categories/:categoryId" method="DELETE"> <service class="Magento\Catalog\Api\CategoryRepositoryInterface" method="deleteByIdentifier" /> diff --git a/app/code/Magento/Downloadable/etc/di.xml b/app/code/Magento/Downloadable/etc/di.xml index 8e3d0bb6c5c..f26785e3e34 100644 --- a/app/code/Magento/Downloadable/etc/di.xml +++ b/app/code/Magento/Downloadable/etc/di.xml @@ -130,7 +130,7 @@ </argument> </arguments> </type> - <type name="Magento\Catalog\Model\Product\Price\TierPriceValidator"> + <type name="Magento\Catalog\Model\Product\Price\Validation\TierPriceValidator"> <arguments> <argument name="allowedProductTypes" xsi:type="array"> <item name="3" xsi:type="string">downloadable</item> @@ -144,4 +144,11 @@ </argument> </arguments> </type> + <type name="Magento\Catalog\Model\Product\Price\SpecialPriceStorage"> + <arguments> + <argument name="allowedProductTypes" xsi:type="array"> + <item name="3" xsi:type="string">downloadable</item> + </argument> + </arguments> + </type> </config> diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/BasePriceStorageTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/BasePriceStorageTest.php index aad068ce6f0..80a2e1e176b 100644 --- a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/BasePriceStorageTest.php +++ b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/BasePriceStorageTest.php @@ -7,6 +7,7 @@ namespace Magento\Catalog\Api; use Magento\TestFramework\TestCase\WebapiAbstract; +use Magento\Framework\Webapi\Exception as HTTPExceptionCodes; /** * BasePriceStorage test. @@ -58,6 +59,40 @@ class BasePriceStorageTest extends WebapiAbstract $this->assertEquals($product->getSku(), $response[0]['sku']); } + /** + * Test get method, called with not existing SKU. + */ + public function testGetWithInvalidSku() + { + $serviceInfo = [ + 'rest' => [ + 'resourcePath' => '/V1/products/base-prices-information', + 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST + ], + 'soap' => [ + 'service' => self::SERVICE_NAME, + 'serviceVersion' => self::SERVICE_VERSION, + 'operation' => self::SERVICE_NAME . 'Get', + ], + ]; + $expected = 'Requested product doesn\'t exist: %sku'; + + try { + $this->_webApiCall($serviceInfo, ['skus' => ['sku_of_not_exiting_product']]); + $this->fail("Expected throwing exception"); + } catch (\SoapFault $e) { + $this->assertContains( + $expected, + $e->getMessage(), + "SoapFault does not contain expected message." + ); + } catch (\Exception $e) { + $error = $this->processRestExceptionResult($e); + $this->assertEquals($expected, $error['message']); + $this->assertEquals(HTTPExceptionCodes::HTTP_NOT_FOUND, $e->getCode()); + } + } + /** * Test update method. * @@ -94,7 +129,62 @@ class BasePriceStorageTest extends WebapiAbstract /** @var \Magento\Catalog\Api\Data\ProductInterface $product */ $product = $productRepository->get(self::SIMPLE_PRODUCT_SKU); - $this->assertNotEmpty($response); + $this->assertEmpty($response); $this->assertEquals($product->getPrice(), $newPrice); } + + /** + * Test update method call with invalid parameters. + */ + public function testUpdateWithInvalidParameters() + { + $serviceInfo = [ + 'rest' => [ + 'resourcePath' => '/V1/products/base-prices', + 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST + ], + 'soap' => [ + 'service' => self::SERVICE_NAME, + 'serviceVersion' => self::SERVICE_VERSION, + 'operation' => self::SERVICE_NAME . 'Update', + ], + ]; + $newPrice = -9999; + $storeId = 9999; + $response = $this->_webApiCall( + $serviceInfo, + [ + 'prices' => [ + [ + 'sku' => 'not_existing_sku', + 'price' => $newPrice, + 'store_id' => $storeId, + ] + ] + ] + ); + + $expectedResponse = [ + 0 => [ + 'message' => 'Invalid attribute %fieldName = %fieldValue.', + 'parameters' => [ + 'SKU', + 'not_existing_sku', + ] + ], + 1 => [ + 'message' => 'Invalid attribute %fieldName = %fieldValue.', + 'parameters' => [ + 'Price', + '-9999', + ] + ], + 2 => [ + 'message' => 'Requested store is not found.', + 'parameters' => [] + ] + ]; + + $this->assertEquals($expectedResponse, $response); + } } diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CostStorageTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CostStorageTest.php index 6af9960a524..5aae15ae61a 100644 --- a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CostStorageTest.php +++ b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CostStorageTest.php @@ -7,6 +7,7 @@ namespace Magento\Catalog\Api; use Magento\TestFramework\TestCase\WebapiAbstract; +use Magento\Framework\Webapi\Exception as HTTPExceptionCodes; /** * CostStorage test. @@ -60,6 +61,40 @@ class CostStorageTest extends WebapiAbstract $this->assertEquals($product->getCost(), $cost); } + /** + * Test get method, called with not existing SKUs. + */ + public function testGetWithInvalidSku() + { + $serviceInfo = [ + 'rest' => [ + 'resourcePath' => '/V1/products/cost-information', + 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST + ], + 'soap' => [ + 'service' => self::SERVICE_NAME, + 'serviceVersion' => self::SERVICE_VERSION, + 'operation' => self::SERVICE_NAME . 'Get', + ], + ]; + $expected = 'Requested products don\'t exist: %sku'; + + try { + $this->_webApiCall($serviceInfo, ['skus' => ['sku_of_not_exiting_product', 'invalid_sku']]); + $this->fail("Expected throwing exception"); + } catch (\SoapFault $e) { + $this->assertContains( + $expected, + $e->getMessage(), + "SoapFault does not contain expected message." + ); + } catch (\Exception $e) { + $error = $this->processRestExceptionResult($e); + $this->assertEquals($expected, $error['message']); + $this->assertEquals(HTTPExceptionCodes::HTTP_NOT_FOUND, $e->getCode()); + } + } + /** * Test update method. * @@ -95,10 +130,65 @@ class CostStorageTest extends WebapiAbstract $productRepository = $this->objectManager->create(\Magento\Catalog\Api\ProductRepositoryInterface::class); /** @var \Magento\Catalog\Api\Data\ProductInterface $product */ $product = $productRepository->get(self::SIMPLE_PRODUCT_SKU); - $this->assertNotEmpty($response); + $this->assertEmpty($response); $this->assertEquals($product->getCost(), $newCost); } + /** + * Test update method call without SKU. + */ + public function testUpdateWithInvalidParameters() + { + $serviceInfo = [ + 'rest' => [ + 'resourcePath' => '/V1/products/cost', + 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST + ], + 'soap' => [ + 'service' => self::SERVICE_NAME, + 'serviceVersion' => self::SERVICE_VERSION, + 'operation' => self::SERVICE_NAME . 'Update', + ], + ]; + $newCost = -9999; + $storeId = 9999; + $response = $this->_webApiCall( + $serviceInfo, + [ + 'prices' => [ + [ + 'sku' => 'not_existing_sku', + 'cost' => $newCost, + 'store_id' => $storeId + ] + ] + ] + ); + + $expectedResponse = [ + 0 => [ + 'message' => 'Invalid attribute %fieldName = %fieldValue.', + 'parameters' => [ + 'SKU', + 'not_existing_sku', + ] + ], + 1 => [ + 'message' => 'Invalid attribute %fieldName = %fieldValue.', + 'parameters' => [ + 'Cost', + '-9999', + ] + ], + 2 => [ + 'message' => 'Requested store is not found.', + 'parameters' => [] + ] + ]; + + $this->assertEquals($expectedResponse, $response); + } + /** * Test delete method. * @@ -126,4 +216,38 @@ class CostStorageTest extends WebapiAbstract $this->assertTrue($response); $this->assertNull($product->getCost()); } + + /** + * Test delete method, called with not existing SKUs. + */ + public function testDeleteWithInvalidSku() + { + $serviceInfo = [ + 'rest' => [ + 'resourcePath' => '/V1/products/cost-delete', + 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST + ], + 'soap' => [ + 'service' => self::SERVICE_NAME, + 'serviceVersion' => self::SERVICE_VERSION, + 'operation' => self::SERVICE_NAME . 'Delete', + ], + ]; + $expectedResponseMessage = 'Requested product doesn\'t exist: %sku'; + + try { + $this->_webApiCall($serviceInfo, ['skus' => ['sku_of_not_exiting_product']]); + $this->fail("Expected throwing exception"); + } catch (\SoapFault $e) { + $this->assertContains( + $expectedResponseMessage, + $e->getMessage(), + "SoapFault does not contain expected message." + ); + } catch (\Exception $e) { + $error = $this->processRestExceptionResult($e); + $this->assertEquals($expectedResponseMessage, $error['message']); + $this->assertEquals(HTTPExceptionCodes::HTTP_NOT_FOUND, $e->getCode()); + } + } } diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/SpecialPriceStorageTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/SpecialPriceStorageTest.php new file mode 100644 index 00000000000..bc5ebfaf68b --- /dev/null +++ b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/SpecialPriceStorageTest.php @@ -0,0 +1,181 @@ +<?php +/** + * Copyright © 2016 Magento. All rights reserved. + * See COPYING.txt for license details. + */ +namespace Magento\Catalog\Api; + +use Magento\TestFramework\TestCase\WebapiAbstract; +use Magento\Framework\Webapi\Exception as HTTPExceptionCodes; + +/** + * SpecialPriceStorage test. + */ +class SpecialPriceStorageTest extends WebapiAbstract +{ + const SERVICE_NAME = 'catalogSpecialPriceStorageV1'; + const SERVICE_VERSION = 'V1'; + const SIMPLE_PRODUCT_SKU = 'simple'; + + /** + * @var \Magento\TestFramework\ObjectManager + */ + private $objectManager; + + /** + * Set up. + */ + protected function setUp() + { + $this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager(); + } + + /** + * Test get method. + * + * @magentoApiDataFixture Magento/Catalog/_files/product_simple.php + */ + public function testGet() + { + $specialPrice = 3057; + $productRepository = $this->objectManager->create(\Magento\Catalog\Api\ProductRepositoryInterface::class); + $product = $productRepository->get(self::SIMPLE_PRODUCT_SKU, true); + $product->setData('special_price', $specialPrice); + $productRepository->save($product); + $serviceInfo = [ + 'rest' => [ + 'resourcePath' => '/V1/products/special-price-information', + 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST + ], + 'soap' => [ + 'service' => self::SERVICE_NAME, + 'serviceVersion' => self::SERVICE_VERSION, + 'operation' => self::SERVICE_NAME . 'Get', + ], + ]; + $response = $this->_webApiCall($serviceInfo, ['skus' => [self::SIMPLE_PRODUCT_SKU]]); + /** @var \Magento\Catalog\Api\Data\ProductInterface $product */ + $product = $productRepository->get(self::SIMPLE_PRODUCT_SKU); + $this->assertNotEmpty($response); + $this->assertEquals($product->getSpecialPrice(), $response[0]['price']); + } + + /** + * Test get method, called with not existing SKUs. + */ + public function testGetWithInvalidSku() + { + $serviceInfo = [ + 'rest' => [ + 'resourcePath' => '/V1/products/special-price-information', + 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST + ], + 'soap' => [ + 'service' => self::SERVICE_NAME, + 'serviceVersion' => self::SERVICE_VERSION, + 'operation' => self::SERVICE_NAME . 'Get', + ], + ]; + $expected = 'Requested products don\'t exist: %sku'; + try { + $this->_webApiCall($serviceInfo, ['skus' => ['sku_of_not_exiting_product', 'invalid_sku_1']]); + $this->fail("Expected throwing exception"); + } catch (\SoapFault $e) { + $this->assertContains( + $expected, + $e->getMessage(), + "SoapFault does not contain expected message." + ); + } catch (\Exception $e) { + $error = $this->processRestExceptionResult($e); + $this->assertEquals($expected, $error['message']); + $this->assertEquals(HTTPExceptionCodes::HTTP_NOT_FOUND, $e->getCode()); + } + } + + /** + * Test update method. + * + * @magentoApiDataFixture Magento/Catalog/_files/product_virtual.php + */ + public function testUpdate() + { + $sku = 'virtual-product'; + $serviceInfo = [ + 'rest' => [ + 'resourcePath' => '/V1/products/special-price', + 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST + ], + 'soap' => [ + 'service' => self::SERVICE_NAME, + 'serviceVersion' => self::SERVICE_VERSION, + 'operation' => self::SERVICE_NAME . 'Update', + ], + ]; + $storeId = 0; + $newPrice = 31337; + $response = $this->_webApiCall( + $serviceInfo, + [ + 'prices' => [ + [ + 'price' => $newPrice, + 'store_id' => $storeId, + 'sku' => $sku, + 'price_from' => '2037-01-19 03:14:07', + 'price_to' => '2038-01-19 03:14:07', + ] + ] + ] + ); + $this->assertEmpty($response); + } + + /** + * Test delete method. + * + * @magentoApiDataFixture Magento/Catalog/_files/product_simple.php + */ + public function testDelete() + { + $specialPrice = 3057; + /** @var \Magento\Catalog\Api\ProductRepositoryInterface $productRepository */ + $productRepository = $this->objectManager->create(\Magento\Catalog\Api\ProductRepositoryInterface::class); + $fromDate = '1970-01-01 00:00:01'; + $toDate = '2038-01-19 03:14:07'; + $product = $productRepository->get(self::SIMPLE_PRODUCT_SKU, true); + $product->setData('special_price', $specialPrice) + ->setData('special_from_date', $fromDate) + ->setData('special_to_date', $toDate); + $productRepository->save($product); + $serviceInfo = [ + 'rest' => [ + 'resourcePath' => '/V1/products/special-price-delete', + 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST + ], + 'soap' => [ + 'service' => self::SERVICE_NAME, + 'serviceVersion' => self::SERVICE_VERSION, + 'operation' => self::SERVICE_NAME . 'Delete', + ], + ]; + $response = $this->_webApiCall( + $serviceInfo, + [ + 'prices' => [ + [ + 'price' => $specialPrice, + 'store_id' => 0, + 'sku' => self::SIMPLE_PRODUCT_SKU, + 'price_from' => $fromDate, + 'price_to' => $toDate, + ] + ] + ] + ); + /** @var \Magento\Catalog\Api\Data\ProductInterface $product */ + $product = $productRepository->get(self::SIMPLE_PRODUCT_SKU, false, null, true); + $this->assertEmpty($response); + $this->assertNull($product->getSpecialPrice()); + } +} diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/TierPriceStorageTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/TierPriceStorageTest.php index 232c6325721..899f344a43d 100644 --- a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/TierPriceStorageTest.php +++ b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/TierPriceStorageTest.php @@ -93,17 +93,59 @@ class TierPriceStorageTest extends WebapiAbstract 'price_type' => \Magento\Catalog\Api\Data\TierPriceInterface::PRICE_TYPE_FIXED, 'website_id' => 0, 'sku' => self::SIMPLE_PRODUCT_SKU, - 'customer_group' => 'ALL GROUPS', + 'customer_group' => 'not logged in', 'quantity' => $tierPrice->getQty() ]; $response = $this->_webApiCall($serviceInfo, ['prices' => [$updatedPrice, $newPrice]]); $productRepository = $this->objectManager->create(\Magento\Catalog\Api\ProductRepositoryInterface::class); $tierPrices = $productRepository->get(self::SIMPLE_PRODUCT_SKU)->getTierPrices(); - $this->assertTrue($response); + $this->assertEmpty($response); $this->assertTrue($this->isPriceCorrect($newPrice, $tierPrices)); $this->assertTrue($this->isPriceCorrect($updatedPrice, $tierPrices)); } + /** + * Call update method with specifying new website value for tier price with all websites value. + * + * @magentoApiDataFixture Magento/Catalog/_files/product_simple.php + */ + public function testUpdateWebsiteForAllWebsites() + { + $serviceInfo = [ + 'rest' => [ + 'resourcePath' => '/V1/products/tier-prices', + 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST + ], + 'soap' => [ + 'service' => self::SERVICE_NAME, + 'serviceVersion' => self::SERVICE_VERSION, + 'operation' => self::SERVICE_NAME . 'Update', + ], + ]; + $invalidPrice = [ + 'price' => 40, + 'price_type' => \Magento\Catalog\Api\Data\TierPriceInterface::PRICE_TYPE_FIXED, + 'website_id' => 2, + 'sku' => self::SIMPLE_PRODUCT_SKU, + 'customer_group' => 'not logged in', + 'quantity' => 3 + ]; + $response = $this->_webApiCall($serviceInfo, ['prices' => [$invalidPrice]]); + $this->assertNotEmpty($response); + $this->assertEquals('Invalid attribute %fieldName = %fieldValue.', $response[0]['message']); + $this->assertEquals('Website Id', $response[0]['parameters'][0]); + $this->assertEquals('2', $response[0]['parameters'][1]); + $message = 'We found a duplicate website, tier price, customer group and quantity: %fieldName1 ' + . '= %fieldValue1, %fieldName2 = %fieldValue2, %fieldName3 = %fieldValue3.'; + $this->assertEquals($message, $response[1]['message']); + $this->assertEquals('Customer Group', $response[1]['parameters'][0]); + $this->assertEquals('NOT LOGGED IN', $response[1]['parameters'][1]); + $this->assertEquals('Website Id', $response[1]['parameters'][2]); + $this->assertEquals('0', $response[1]['parameters'][3]); + $this->assertEquals('Quantity', $response[1]['parameters'][4]); + $this->assertEquals('3.0000', $response[1]['parameters'][5]); + } + /** * Test replace method. * @@ -136,7 +178,7 @@ class TierPriceStorageTest extends WebapiAbstract 'price_type' => \Magento\Catalog\Api\Data\TierPriceInterface::PRICE_TYPE_FIXED, 'website_id' => 0, 'sku' => self::SIMPLE_PRODUCT_SKU, - 'customer_group' => 'general', + 'customer_group' => 'not logged in', 'quantity' => 33 ] ]; @@ -144,12 +186,8 @@ class TierPriceStorageTest extends WebapiAbstract $productRepository = $this->objectManager->create(\Magento\Catalog\Api\ProductRepositoryInterface::class); /** @var \Magento\Catalog\Api\Data\ProductInterface $product */ $tierPrices = $productRepository->get(self::SIMPLE_PRODUCT_SKU)->getTierPrices(); - $this->assertTrue($response); + $this->assertEmpty($response); $this->assertEquals(count($newPrices), count($tierPrices)); - - foreach ($newPrices as $newPrice) { - $this->assertTrue($this->isPriceCorrect($newPrice, $tierPrices)); - } } /** @@ -197,7 +235,7 @@ class TierPriceStorageTest extends WebapiAbstract $productRepository = $this->objectManager->create(\Magento\Catalog\Api\ProductRepositoryInterface::class); $tierPrices = $productRepository->get(self::SIMPLE_PRODUCT_SKU)->getTierPrices(); $tierPrice = $tierPrices[0]; - $this->assertTrue($response); + $this->assertEmpty($response); $this->assertEquals(1, count($tierPrices)); $this->assertEquals($pricesToStore, $tierPrice); } @@ -223,6 +261,7 @@ class TierPriceStorageTest extends WebapiAbstract && $tierPrice->getExtensionAttributes()->getWebsiteId() == $price['website_id'] ) { $isCorrect = true; + break; } } -- GitLab From 09fd7335ed6cd3ae9d6459cd4d3caf56f374c904 Mon Sep 17 00:00:00 2001 From: Iurii Ivashchenko <iivashchenko@magento.com> Date: Wed, 4 Jan 2017 13:19:31 +0200 Subject: [PATCH 165/175] MAGETWO-62856: JSUnit job is failed on current mainline --- .../Magento/Ui/base/js/lib/ko/bind/datepicker.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js index 10f45f8729e..3e99c1c454c 100644 --- a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js +++ b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ @@ -23,9 +23,9 @@ define([ config = { options: { - 'dateFormat': 'M/d/yy', - 'storeLocale': 'en_US', - 'timeFormat': 'h:mm: a' + dateFormat: 'M/d/yy', + storeLocale: 'en_US', + timeFormat: 'h:mm: a' }, storage: observable }; -- GitLab From 56eb34b40aaa0034b87030dd0dc5f968e2f246af Mon Sep 17 00:00:00 2001 From: Stanislav Lopukhov <slopukhov@magento.com> Date: Wed, 4 Jan 2017 13:46:31 +0200 Subject: [PATCH 166/175] MAGETWO-62919: Update the year in the copyright --- app/code/Magento/Ui/Model/Manager.php | 2 +- app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php | 2 +- lib/internal/Magento/Framework/App/Http/Context.php | 2 +- lib/internal/Magento/Framework/App/PageCache/Kernel.php | 2 +- .../Magento/Framework/App/Test/Unit/Http/ContextTest.php | 2 +- .../Magento/Framework/App/Test/Unit/PageCache/KernelTest.php | 2 +- lib/internal/Magento/Framework/View/Layout.php | 2 +- .../Magento/Framework/View/Layout/ScheduledStructure.php | 2 +- lib/internal/Magento/Framework/View/Page/Config/Structure.php | 2 +- lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app/code/Magento/Ui/Model/Manager.php b/app/code/Magento/Ui/Model/Manager.php index 8029bbf959f..a2a4f05eb8b 100644 --- a/app/code/Magento/Ui/Model/Manager.php +++ b/app/code/Magento/Ui/Model/Manager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Ui\Model; diff --git a/app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php b/app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php index fe60a646d5a..0e50950cc95 100644 --- a/app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php +++ b/app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ diff --git a/lib/internal/Magento/Framework/App/Http/Context.php b/lib/internal/Magento/Framework/App/Http/Context.php index 4d1f5e01d10..59ab6f7602c 100644 --- a/lib/internal/Magento/Framework/App/Http/Context.php +++ b/lib/internal/Magento/Framework/App/Http/Context.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\App\Http; diff --git a/lib/internal/Magento/Framework/App/PageCache/Kernel.php b/lib/internal/Magento/Framework/App/PageCache/Kernel.php index fc2521ac747..02d6646c67d 100644 --- a/lib/internal/Magento/Framework/App/PageCache/Kernel.php +++ b/lib/internal/Magento/Framework/App/PageCache/Kernel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\App\PageCache; diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Http/ContextTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Http/ContextTest.php index 2c6b3dda237..8ce4f006861 100644 --- a/lib/internal/Magento/Framework/App/Test/Unit/Http/ContextTest.php +++ b/lib/internal/Magento/Framework/App/Test/Unit/Http/ContextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ diff --git a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php index 1a85b481e53..7e65b174abd 100644 --- a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php +++ b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\App\Test\Unit\PageCache; diff --git a/lib/internal/Magento/Framework/View/Layout.php b/lib/internal/Magento/Framework/View/Layout.php index d8b6e78f219..ac3938c94c5 100755 --- a/lib/internal/Magento/Framework/View/Layout.php +++ b/lib/internal/Magento/Framework/View/Layout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\View; diff --git a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php index e7405aa0f78..117fb827814 100644 --- a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php +++ b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\View\Layout; diff --git a/lib/internal/Magento/Framework/View/Page/Config/Structure.php b/lib/internal/Magento/Framework/View/Page/Config/Structure.php index d7d3d446926..d7fe402044e 100644 --- a/lib/internal/Magento/Framework/View/Page/Config/Structure.php +++ b/lib/internal/Magento/Framework/View/Page/Config/Structure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ diff --git a/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php b/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php index 879875ca8d9..640ece658ed 100755 --- a/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php +++ b/lib/internal/Magento/Framework/View/Test/Unit/LayoutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\View\Test\Unit; -- GitLab From 76cde8dcfec9b80ef5c4b7979d8b1497f227a2f2 Mon Sep 17 00:00:00 2001 From: Venkata Uppalapati <vuppalapati@magento.com> Date: Wed, 4 Jan 2017 09:30:14 -0600 Subject: [PATCH 167/175] MAGETWO-59785: Incorrect URLs in sitemap when generated from admin with 'Use Secure URLs in Admin' = Yes Removed '_' from variable name. --- app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php index 964d12b8ad1..7ad6b6d4a21 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php +++ b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php @@ -53,7 +53,7 @@ class SitemapTest extends \PHPUnit_Framework_TestCase /** * @var \Magento\Store\Model\StoreManagerInterface|\PHPUnit_Framework_MockObject_MockObject */ - private $_storeManagerMock; + private $storeManagerMock; /** * Set helper mocks, create resource model mock @@ -487,7 +487,7 @@ class SitemapTest extends \PHPUnit_Framework_TestCase ->method('getBaseUrl') ->with($this->isType('string'), false) ->willReturn('http://store.com/'); - $this->_storeManagerMock->expects($this->atLeastOnce()) + $this->storeManagerMock->expects($this->atLeastOnce()) ->method('getStore') ->with(1) ->willReturn($storeMock); @@ -628,7 +628,7 @@ class SitemapTest extends \PHPUnit_Framework_TestCase )->disableOriginalConstructor()->getMock(); $cmsFactory->expects($this->any())->method('create')->will($this->returnValue($this->_sitemapCmsPageMock)); - $this->_storeManagerMock = $this->getMockBuilder(\Magento\Store\Model\StoreManagerInterface::class) + $this->storeManagerMock = $this->getMockBuilder(\Magento\Store\Model\StoreManagerInterface::class) ->setMethods(['getStore']) ->getMockForAbstractClass(); @@ -639,7 +639,7 @@ class SitemapTest extends \PHPUnit_Framework_TestCase 'categoryFactory' => $categoryFactory, 'productFactory' => $productFactory, 'cmsFactory' => $cmsFactory, - 'storeManager' => $this->_storeManagerMock, + 'storeManager' => $this->storeManagerMock, 'sitemapData' => $this->_helperMockSitemap, 'filesystem' => $this->_filesystemMock ] -- GitLab From 13dbc0ee1f424d6ace1422abb9dce759c967da12 Mon Sep 17 00:00:00 2001 From: Venkata Uppalapati <vuppalapati@magento.com> Date: Wed, 4 Jan 2017 09:46:42 -0600 Subject: [PATCH 168/175] MAGETWO-59785: Incorrect URLs in sitemap when generated from admin with 'Use Secure URLs in Admin' = Yes Updated copyright year to 2017 --- app/code/Magento/Sitemap/Model/Sitemap.php | 2 +- app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Sitemap/Model/Sitemap.php b/app/code/Magento/Sitemap/Model/Sitemap.php index c8d15c7a855..ac94b05e5af 100644 --- a/app/code/Magento/Sitemap/Model/Sitemap.php +++ b/app/code/Magento/Sitemap/Model/Sitemap.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php index 7ad6b6d4a21..d0f5f4a68c1 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php +++ b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2017 Magento. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Test\Unit\Model; -- GitLab From eb30343a092b1dd8004bcaf0883c73996014886f Mon Sep 17 00:00:00 2001 From: Sergii Kovalenko <skovalenko@magento.com> Date: Thu, 5 Jan 2017 13:01:45 +0200 Subject: [PATCH 169/175] MAGETWO-62855: Copyright Year Update 2017 --- Gruntfile.js.sample | 2 +- app/autoload.php | 2 +- app/bootstrap.php | 2 +- .../AdminNotification/Block/Grid/Renderer/Actions.php | 2 +- .../AdminNotification/Block/Grid/Renderer/Notice.php | 2 +- .../AdminNotification/Block/Grid/Renderer/Severity.php | 2 +- app/code/Magento/AdminNotification/Block/Inbox.php | 2 +- .../Magento/AdminNotification/Block/System/Messages.php | 2 +- .../Block/System/Messages/UnreadMessagePopup.php | 2 +- app/code/Magento/AdminNotification/Block/ToolbarEntry.php | 2 +- app/code/Magento/AdminNotification/Block/Window.php | 2 +- .../AdminNotification/Controller/Adminhtml/Notification.php | 2 +- .../Controller/Adminhtml/Notification/AjaxMarkAsRead.php | 2 +- .../Controller/Adminhtml/Notification/Index.php | 2 +- .../Controller/Adminhtml/Notification/MarkAsRead.php | 2 +- .../Controller/Adminhtml/Notification/MassMarkAsRead.php | 2 +- .../Controller/Adminhtml/Notification/MassRemove.php | 2 +- .../Controller/Adminhtml/Notification/Remove.php | 2 +- .../Controller/Adminhtml/System/Message/ListAction.php | 2 +- .../AdminNotification/Model/Config/Source/Frequency.php | 2 +- app/code/Magento/AdminNotification/Model/Feed.php | 2 +- app/code/Magento/AdminNotification/Model/Inbox.php | 2 +- app/code/Magento/AdminNotification/Model/InboxInterface.php | 2 +- .../Magento/AdminNotification/Model/NotificationService.php | 2 +- .../Model/ResourceModel/Grid/Collection.php | 2 +- .../Magento/AdminNotification/Model/ResourceModel/Inbox.php | 2 +- .../Model/ResourceModel/Inbox/Collection.php | 2 +- .../Model/ResourceModel/Inbox/Collection/Critical.php | 2 +- .../Model/ResourceModel/Inbox/Collection/Unread.php | 2 +- .../Model/ResourceModel/System/Message.php | 2 +- .../Model/ResourceModel/System/Message/Collection.php | 2 +- .../System/Message/Collection/Synchronized.php | 2 +- app/code/Magento/AdminNotification/Model/System/Message.php | 2 +- .../AdminNotification/Model/System/Message/Baseurl.php | 2 +- .../Model/System/Message/CacheOutdated.php | 2 +- .../Model/System/Message/Media/AbstractSynchronization.php | 2 +- .../Model/System/Message/Media/Synchronization/Error.php | 2 +- .../Model/System/Message/Media/Synchronization/Success.php | 2 +- .../AdminNotification/Model/System/Message/Security.php | 2 +- .../Observer/PredispatchAdminActionControllerObserver.php | 2 +- app/code/Magento/AdminNotification/Setup/InstallSchema.php | 2 +- .../AdminNotification/Test/Unit/Block/ToolbarEntryTest.php | 2 +- .../Magento/AdminNotification/Test/Unit/Model/FeedTest.php | 2 +- .../Test/Unit/Model/NotificationServiceTest.php | 2 +- .../Test/Unit/Model/System/Message/CacheOutdatedTest.php | 2 +- .../System/Message/Media/Synchronization/ErrorTest.php | 2 +- .../Test/Unit/Model/System/Message/SecurityTest.php | 2 +- .../Ui/Component/DataProvider/DataProvider.php | 2 +- app/code/Magento/AdminNotification/etc/acl.xml | 2 +- app/code/Magento/AdminNotification/etc/adminhtml/di.xml | 2 +- app/code/Magento/AdminNotification/etc/adminhtml/events.xml | 2 +- app/code/Magento/AdminNotification/etc/adminhtml/menu.xml | 2 +- app/code/Magento/AdminNotification/etc/adminhtml/routes.xml | 2 +- app/code/Magento/AdminNotification/etc/adminhtml/system.xml | 2 +- app/code/Magento/AdminNotification/etc/config.xml | 2 +- app/code/Magento/AdminNotification/etc/di.xml | 2 +- app/code/Magento/AdminNotification/etc/module.xml | 2 +- app/code/Magento/AdminNotification/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_notification_block.xml | 2 +- .../view/adminhtml/layout/adminhtml_notification_index.xml | 2 +- .../AdminNotification/view/adminhtml/layout/default.xml | 2 +- .../AdminNotification/view/adminhtml/requirejs-config.js | 4 ++-- .../view/adminhtml/templates/notification/window.phtml | 4 ++-- .../view/adminhtml/templates/system/messages.phtml | 2 +- .../view/adminhtml/templates/system/messages/popup.phtml | 2 +- .../view/adminhtml/templates/toolbar_entry.phtml | 2 +- .../view/adminhtml/ui_component/notification_area.xml | 2 +- .../view/adminhtml/web/js/grid/columns/message.js | 2 +- .../AdminNotification/view/adminhtml/web/js/grid/listing.js | 2 +- .../view/adminhtml/web/system/notification.js | 2 +- .../view/adminhtml/web/template/grid/cells/message.html | 4 ++-- .../view/adminhtml/web/template/grid/listing.html | 2 +- .../AdminNotification/view/adminhtml/web/toolbar_entry.js | 4 ++-- .../Controller/Adminhtml/Export/GetFilter.php | 2 +- .../Model/Export/AdvancedPricing.php | 2 +- .../Model/Import/AdvancedPricing.php | 2 +- .../Model/Import/AdvancedPricing/Validator.php | 2 +- .../Model/Import/AdvancedPricing/Validator/TierPrice.php | 2 +- .../Import/AdvancedPricing/Validator/TierPriceType.php | 2 +- .../Model/Import/AdvancedPricing/Validator/Website.php | 2 +- .../Model/Indexer/Product/Price/Plugin/Import.php | 2 +- .../Test/Unit/Model/Export/AdvancedPricingTest.php | 2 +- .../Import/AdvancedPricing/Validator/TierPriceTest.php | 2 +- .../Import/AdvancedPricing/Validator/TierPriceTypeTest.php | 2 +- .../Model/Import/AdvancedPricing/Validator/WebsiteTest.php | 2 +- .../Unit/Model/Import/AdvancedPricing/ValidatorTest.php | 2 +- .../Test/Unit/Model/Import/AdvancedPricingTest.php | 2 +- .../Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php | 2 +- .../AdvancedPricingImportExport/etc/adminhtml/routes.xml | 4 ++-- app/code/Magento/AdvancedPricingImportExport/etc/di.xml | 2 +- app/code/Magento/AdvancedPricingImportExport/etc/export.xml | 2 +- app/code/Magento/AdvancedPricingImportExport/etc/import.xml | 2 +- app/code/Magento/AdvancedPricingImportExport/etc/module.xml | 2 +- .../Magento/AdvancedPricingImportExport/registration.php | 2 +- app/code/Magento/Authorization/Model/Acl/AclRetriever.php | 2 +- app/code/Magento/Authorization/Model/Acl/Loader/Role.php | 2 +- app/code/Magento/Authorization/Model/Acl/Loader/Rule.php | 2 +- app/code/Magento/Authorization/Model/Acl/Role/Generic.php | 2 +- app/code/Magento/Authorization/Model/Acl/Role/Group.php | 2 +- app/code/Magento/Authorization/Model/Acl/Role/User.php | 2 +- .../Magento/Authorization/Model/CompositeUserContext.php | 2 +- .../Model/ResourceModel/Permissions/Collection.php | 2 +- app/code/Magento/Authorization/Model/ResourceModel/Role.php | 2 +- .../Authorization/Model/ResourceModel/Role/Collection.php | 2 +- .../Model/ResourceModel/Role/Grid/Collection.php | 2 +- .../Magento/Authorization/Model/ResourceModel/Rules.php | 2 +- .../Authorization/Model/ResourceModel/Rules/Collection.php | 2 +- app/code/Magento/Authorization/Model/Role.php | 2 +- app/code/Magento/Authorization/Model/Rules.php | 2 +- .../Magento/Authorization/Model/UserContextInterface.php | 2 +- .../Magento/Authorization/Setup/AuthorizationFactory.php | 2 +- app/code/Magento/Authorization/Setup/InstallData.php | 2 +- app/code/Magento/Authorization/Setup/InstallSchema.php | 2 +- .../Authorization/Test/Unit/Model/Acl/AclRetrieverTest.php | 2 +- .../Authorization/Test/Unit/Model/Acl/Loader/RoleTest.php | 2 +- .../Authorization/Test/Unit/Model/Acl/Loader/RuleTest.php | 2 +- .../Test/Unit/Model/CompositeUserContextTest.php | 2 +- app/code/Magento/Authorization/etc/di.xml | 2 +- app/code/Magento/Authorization/etc/module.xml | 2 +- app/code/Magento/Authorization/registration.php | 2 +- .../Block/Adminhtml/Order/View/Info/FraudDetails.php | 2 +- app/code/Magento/Authorizenet/Block/Transparent/Iframe.php | 2 +- .../Authorizenet/Directpost/Payment/AddConfigured.php | 2 +- .../Adminhtml/Authorizenet/Directpost/Payment/Cancel.php | 2 +- .../Directpost/Payment/ConfigureProductToAdd.php | 2 +- .../Authorizenet/Directpost/Payment/ConfigureQuoteItems.php | 2 +- .../Adminhtml/Authorizenet/Directpost/Payment/Index.php | 2 +- .../Adminhtml/Authorizenet/Directpost/Payment/LoadBlock.php | 2 +- .../Adminhtml/Authorizenet/Directpost/Payment/Place.php | 2 +- .../Authorizenet/Directpost/Payment/ProcessData.php | 2 +- .../Adminhtml/Authorizenet/Directpost/Payment/Redirect.php | 2 +- .../Adminhtml/Authorizenet/Directpost/Payment/Reorder.php | 2 +- .../Authorizenet/Directpost/Payment/ReturnQuote.php | 2 +- .../Adminhtml/Authorizenet/Directpost/Payment/Save.php | 2 +- .../Authorizenet/Directpost/Payment/ShowUpdateResult.php | 2 +- .../Adminhtml/Authorizenet/Directpost/Payment/Start.php | 2 +- .../Magento/Authorizenet/Controller/Directpost/Payment.php | 2 +- .../Controller/Directpost/Payment/BackendResponse.php | 2 +- .../Authorizenet/Controller/Directpost/Payment/Place.php | 2 +- .../Authorizenet/Controller/Directpost/Payment/Redirect.php | 2 +- .../Authorizenet/Controller/Directpost/Payment/Response.php | 2 +- .../Controller/Directpost/Payment/ReturnQuote.php | 2 +- app/code/Magento/Authorizenet/Helper/Backend/Data.php | 2 +- app/code/Magento/Authorizenet/Helper/Data.php | 2 +- app/code/Magento/Authorizenet/Helper/DataFactory.php | 2 +- app/code/Magento/Authorizenet/Model/Authorizenet.php | 2 +- app/code/Magento/Authorizenet/Model/Debug.php | 2 +- app/code/Magento/Authorizenet/Model/Directpost.php | 2 +- app/code/Magento/Authorizenet/Model/Directpost/Request.php | 2 +- .../Authorizenet/Model/Directpost/Request/Factory.php | 2 +- app/code/Magento/Authorizenet/Model/Directpost/Response.php | 2 +- .../Authorizenet/Model/Directpost/Response/Factory.php | 2 +- app/code/Magento/Authorizenet/Model/Directpost/Session.php | 2 +- app/code/Magento/Authorizenet/Model/Request.php | 2 +- app/code/Magento/Authorizenet/Model/Request/Factory.php | 2 +- app/code/Magento/Authorizenet/Model/ResourceModel/Debug.php | 2 +- .../Authorizenet/Model/ResourceModel/Debug/Collection.php | 2 +- app/code/Magento/Authorizenet/Model/Response.php | 2 +- app/code/Magento/Authorizenet/Model/Response/Factory.php | 2 +- app/code/Magento/Authorizenet/Model/Source/Cctype.php | 2 +- .../Magento/Authorizenet/Model/Source/PaymentAction.php | 2 +- app/code/Magento/Authorizenet/Model/TransactionService.php | 2 +- .../Authorizenet/Observer/AddFieldsToResponseObserver.php | 2 +- .../Authorizenet/Observer/SaveOrderAfterSubmitObserver.php | 2 +- .../Observer/UpdateAllEditIncrementsObserver.php | 2 +- .../Authorizenet/Directpost/Payment/RedirectTest.php | 2 +- .../Test/Unit/Controller/Directpost/Payment/PlaceTest.php | 2 +- .../Unit/Controller/Directpost/Payment/RedirectTest.php | 2 +- .../Authorizenet/Test/Unit/Helper/Backend/DataTest.php | 2 +- app/code/Magento/Authorizenet/Test/Unit/Helper/DataTest.php | 2 +- .../Test/Unit/Model/Directpost/Request/FactoryTest.php | 2 +- .../Test/Unit/Model/Directpost/Response/FactoryTest.php | 2 +- .../Test/Unit/Model/Directpost/ResponseTest.php | 2 +- .../Authorizenet/Test/Unit/Model/Directpost/SessionTest.php | 2 +- .../Magento/Authorizenet/Test/Unit/Model/DirectpostTest.php | 2 +- .../Authorizenet/Test/Unit/Model/Request/FactoryTest.php | 2 +- .../Authorizenet/Test/Unit/Model/Response/FactoryTest.php | 2 +- .../Authorizenet/Test/Unit/Model/TransactionServiceTest.php | 2 +- .../Test/Unit/Observer/AddFieldsToResponseObserverTest.php | 2 +- app/code/Magento/Authorizenet/etc/adminhtml/di.xml | 2 +- app/code/Magento/Authorizenet/etc/adminhtml/events.xml | 2 +- app/code/Magento/Authorizenet/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Authorizenet/etc/adminhtml/system.xml | 2 +- app/code/Magento/Authorizenet/etc/config.xml | 2 +- app/code/Magento/Authorizenet/etc/di.xml | 2 +- app/code/Magento/Authorizenet/etc/frontend/di.xml | 2 +- app/code/Magento/Authorizenet/etc/frontend/events.xml | 2 +- app/code/Magento/Authorizenet/etc/frontend/page_types.xml | 2 +- app/code/Magento/Authorizenet/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Authorizenet/etc/frontend/sections.xml | 2 +- app/code/Magento/Authorizenet/etc/module.xml | 2 +- app/code/Magento/Authorizenet/registration.php | 2 +- .../adminhtml_authorizenet_directpost_payment_redirect.xml | 2 +- .../view/adminhtml/layout/sales_order_create_index.xml | 4 ++-- .../layout/sales_order_create_load_block_billing_method.xml | 4 ++-- .../Authorizenet/view/adminhtml/layout/sales_order_view.xml | 2 +- .../view/adminhtml/templates/directpost/iframe.phtml | 2 +- .../view/adminhtml/templates/directpost/info.phtml | 2 +- .../adminhtml/templates/order/view/info/fraud_details.phtml | 4 ++-- .../Authorizenet/view/adminhtml/web/js/direct-post.js | 2 +- .../authorizenet_directpost_payment_backendresponse.xml | 2 +- .../layout/authorizenet_directpost_payment_redirect.xml | 2 +- .../layout/authorizenet_directpost_payment_response.xml | 2 +- .../view/frontend/layout/checkout_index_index.xml | 4 ++-- .../Magento/Authorizenet/view/frontend/requirejs-config.js | 2 +- .../view/frontend/web/js/view/payment/authorizenet.js | 4 ++-- .../view/payment/method-renderer/authorizenet-directpost.js | 2 +- .../web/template/payment/authorizenet-directpost.html | 2 +- app/code/Magento/Backend/App/AbstractAction.php | 2 +- app/code/Magento/Backend/App/Action.php | 2 +- app/code/Magento/Backend/App/Action/Context.php | 2 +- .../Magento/Backend/App/Action/Plugin/Authentication.php | 2 +- .../Magento/Backend/App/Action/Plugin/MassactionKey.php | 2 +- app/code/Magento/Backend/App/Area/FrontNameResolver.php | 2 +- app/code/Magento/Backend/App/BackendApp.php | 2 +- app/code/Magento/Backend/App/BackendAppList.php | 2 +- app/code/Magento/Backend/App/Config.php | 2 +- app/code/Magento/Backend/App/ConfigInterface.php | 2 +- app/code/Magento/Backend/App/DefaultPath.php | 2 +- app/code/Magento/Backend/App/Request/PathInfoProcessor.php | 2 +- app/code/Magento/Backend/App/Response/Http/FileFactory.php | 2 +- app/code/Magento/Backend/App/Router.php | 2 +- app/code/Magento/Backend/App/Router/NoRouteHandler.php | 2 +- app/code/Magento/Backend/App/UserConfig.php | 2 +- app/code/Magento/Backend/Block/AbstractBlock.php | 2 +- app/code/Magento/Backend/Block/Admin/Formkey.php | 2 +- app/code/Magento/Backend/Block/Cache.php | 2 +- app/code/Magento/Backend/Block/Cache/Additional.php | 2 +- .../Magento/Backend/Block/Cache/Grid/Column/Statuses.php | 2 +- .../Grid/Massaction/ProductionModeVisibilityChecker.php | 2 +- .../Magento/Backend/Block/Catalog/Product/Tab/Container.php | 2 +- app/code/Magento/Backend/Block/Context.php | 2 +- app/code/Magento/Backend/Block/Dashboard.php | 2 +- .../Magento/Backend/Block/Dashboard/AbstractDashboard.php | 2 +- app/code/Magento/Backend/Block/Dashboard/Bar.php | 2 +- app/code/Magento/Backend/Block/Dashboard/Diagrams.php | 2 +- app/code/Magento/Backend/Block/Dashboard/Graph.php | 2 +- app/code/Magento/Backend/Block/Dashboard/Grid.php | 2 +- app/code/Magento/Backend/Block/Dashboard/Grids.php | 2 +- app/code/Magento/Backend/Block/Dashboard/Orders/Grid.php | 2 +- app/code/Magento/Backend/Block/Dashboard/Sales.php | 2 +- .../Block/Dashboard/Searches/Renderer/Searchquery.php | 2 +- app/code/Magento/Backend/Block/Dashboard/Tab/Amounts.php | 2 +- .../Magento/Backend/Block/Dashboard/Tab/Customers/Most.php | 2 +- .../Backend/Block/Dashboard/Tab/Customers/Newest.php | 2 +- app/code/Magento/Backend/Block/Dashboard/Tab/Orders.php | 2 +- .../Backend/Block/Dashboard/Tab/Products/Ordered.php | 2 +- .../Magento/Backend/Block/Dashboard/Tab/Products/Viewed.php | 2 +- app/code/Magento/Backend/Block/Dashboard/Totals.php | 2 +- app/code/Magento/Backend/Block/Denied.php | 2 +- app/code/Magento/Backend/Block/GlobalSearch.php | 2 +- app/code/Magento/Backend/Block/Media/Uploader.php | 2 +- app/code/Magento/Backend/Block/Menu.php | 2 +- app/code/Magento/Backend/Block/Page.php | 2 +- app/code/Magento/Backend/Block/Page/Copyright.php | 2 +- app/code/Magento/Backend/Block/Page/Footer.php | 2 +- app/code/Magento/Backend/Block/Page/Header.php | 2 +- app/code/Magento/Backend/Block/Page/Notices.php | 2 +- app/code/Magento/Backend/Block/Page/RequireJs.php | 2 +- .../Backend/Block/Page/System/Config/Robots/Reset.php | 2 +- app/code/Magento/Backend/Block/Store/Switcher.php | 2 +- .../Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php | 2 +- .../Block/Store/Switcher/Form/Renderer/Fieldset/Element.php | 2 +- app/code/Magento/Backend/Block/System/Account/Edit.php | 2 +- app/code/Magento/Backend/Block/System/Account/Edit/Form.php | 2 +- app/code/Magento/Backend/Block/System/Cache/Edit.php | 2 +- app/code/Magento/Backend/Block/System/Cache/Form.php | 2 +- app/code/Magento/Backend/Block/System/Design.php | 2 +- app/code/Magento/Backend/Block/System/Design/Edit.php | 2 +- .../Backend/Block/System/Design/Edit/Tab/General.php | 2 +- app/code/Magento/Backend/Block/System/Design/Edit/Tabs.php | 2 +- app/code/Magento/Backend/Block/System/Store/Delete.php | 2 +- app/code/Magento/Backend/Block/System/Store/Delete/Form.php | 2 +- .../Magento/Backend/Block/System/Store/Delete/Group.php | 2 +- .../Magento/Backend/Block/System/Store/Delete/Website.php | 2 +- app/code/Magento/Backend/Block/System/Store/Edit.php | 2 +- .../Backend/Block/System/Store/Edit/AbstractForm.php | 2 +- .../Magento/Backend/Block/System/Store/Edit/Form/Group.php | 2 +- .../Magento/Backend/Block/System/Store/Edit/Form/Store.php | 2 +- .../Backend/Block/System/Store/Edit/Form/Website.php | 2 +- .../Backend/Block/System/Store/Grid/Render/Group.php | 2 +- .../Backend/Block/System/Store/Grid/Render/Store.php | 2 +- .../Backend/Block/System/Store/Grid/Render/Website.php | 2 +- app/code/Magento/Backend/Block/System/Store/Store.php | 2 +- app/code/Magento/Backend/Block/Template.php | 2 +- app/code/Magento/Backend/Block/Template/Context.php | 2 +- app/code/Magento/Backend/Block/Text/ListText.php | 2 +- app/code/Magento/Backend/Block/Widget.php | 2 +- app/code/Magento/Backend/Block/Widget/Accordion.php | 2 +- app/code/Magento/Backend/Block/Widget/Accordion/Item.php | 2 +- app/code/Magento/Backend/Block/Widget/Breadcrumbs.php | 2 +- app/code/Magento/Backend/Block/Widget/Button.php | 2 +- app/code/Magento/Backend/Block/Widget/Button/ButtonList.php | 2 +- .../Backend/Block/Widget/Button/ContextInterface.php | 2 +- app/code/Magento/Backend/Block/Widget/Button/Item.php | 2 +- .../Magento/Backend/Block/Widget/Button/SplitButton.php | 2 +- app/code/Magento/Backend/Block/Widget/Button/Toolbar.php | 2 +- .../Backend/Block/Widget/Button/Toolbar/Container.php | 2 +- .../Backend/Block/Widget/Button/ToolbarInterface.php | 2 +- app/code/Magento/Backend/Block/Widget/Container.php | 2 +- .../Magento/Backend/Block/Widget/ContainerInterface.php | 2 +- app/code/Magento/Backend/Block/Widget/Context.php | 2 +- app/code/Magento/Backend/Block/Widget/Form.php | 2 +- app/code/Magento/Backend/Block/Widget/Form/Container.php | 2 +- app/code/Magento/Backend/Block/Widget/Form/Element.php | 2 +- .../Backend/Block/Widget/Form/Element/Dependence.php | 2 +- .../Magento/Backend/Block/Widget/Form/Element/Gallery.php | 2 +- app/code/Magento/Backend/Block/Widget/Form/Generic.php | 2 +- .../Magento/Backend/Block/Widget/Form/Renderer/Element.php | 2 +- .../Magento/Backend/Block/Widget/Form/Renderer/Fieldset.php | 2 +- .../Backend/Block/Widget/Form/Renderer/Fieldset/Element.php | 2 +- app/code/Magento/Backend/Block/Widget/Grid.php | 2 +- app/code/Magento/Backend/Block/Widget/Grid/Column.php | 2 +- .../Magento/Backend/Block/Widget/Grid/Column/Extended.php | 2 +- .../Block/Widget/Grid/Column/Filter/AbstractFilter.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Checkbox.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Country.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Date.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Datetime.php | 2 +- .../Block/Widget/Grid/Column/Filter/FilterInterface.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Massaction.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Price.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Radio.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Range.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Select.php | 2 +- .../Block/Widget/Grid/Column/Filter/Select/Extended.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/SkipList.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Store.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Text.php | 2 +- .../Backend/Block/Widget/Grid/Column/Filter/Theme.php | 2 +- .../Magento/Backend/Block/Widget/Grid/Column/Multistore.php | 2 +- .../Block/Widget/Grid/Column/Renderer/AbstractRenderer.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Action.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Button.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php | 2 +- .../Widget/Grid/Column/Renderer/Checkboxes/Extended.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Concat.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Country.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Currency.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Date.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Datetime.php | 2 +- .../Block/Widget/Grid/Column/Renderer/DraggableHandle.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Input.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Ip.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Longtext.php | 2 +- .../Block/Widget/Grid/Column/Renderer/Massaction.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Number.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Options.php | 2 +- .../Block/Widget/Grid/Column/Renderer/Options/Converter.php | 2 +- .../Block/Widget/Grid/Column/Renderer/Options/Extended.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Price.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Radio.php | 2 +- .../Block/Widget/Grid/Column/Renderer/Radio/Extended.php | 2 +- .../Block/Widget/Grid/Column/Renderer/RendererInterface.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Select.php | 2 +- .../Block/Widget/Grid/Column/Renderer/Select/Extended.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Store.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Text.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php | 2 +- app/code/Magento/Backend/Block/Widget/Grid/ColumnSet.php | 2 +- app/code/Magento/Backend/Block/Widget/Grid/Container.php | 2 +- app/code/Magento/Backend/Block/Widget/Grid/Export.php | 2 +- .../Magento/Backend/Block/Widget/Grid/ExportInterface.php | 2 +- app/code/Magento/Backend/Block/Widget/Grid/Extended.php | 2 +- app/code/Magento/Backend/Block/Widget/Grid/Massaction.php | 2 +- .../Block/Widget/Grid/Massaction/AbstractMassaction.php | 2 +- .../Backend/Block/Widget/Grid/Massaction/Additional.php | 2 +- .../Backend/Block/Widget/Grid/Massaction/Extended.php | 2 +- .../Magento/Backend/Block/Widget/Grid/Massaction/Item.php | 2 +- .../Grid/Massaction/Item/Additional/AdditionalInterface.php | 2 +- .../Grid/Massaction/Item/Additional/DefaultAdditional.php | 2 +- .../Widget/Grid/Massaction/VisibilityCheckerInterface.php | 2 +- app/code/Magento/Backend/Block/Widget/Grid/Serializer.php | 2 +- app/code/Magento/Backend/Block/Widget/Tab.php | 2 +- app/code/Magento/Backend/Block/Widget/Tab/TabInterface.php | 2 +- app/code/Magento/Backend/Block/Widget/Tabs.php | 2 +- .../Backend/Console/Command/AbstractCacheCommand.php | 2 +- .../Backend/Console/Command/AbstractCacheManageCommand.php | 2 +- .../Backend/Console/Command/AbstractCacheSetCommand.php | 2 +- .../Console/Command/AbstractCacheTypeManageCommand.php | 2 +- .../Magento/Backend/Console/Command/CacheCleanCommand.php | 2 +- .../Magento/Backend/Console/Command/CacheDisableCommand.php | 2 +- .../Magento/Backend/Console/Command/CacheEnableCommand.php | 2 +- .../Magento/Backend/Console/Command/CacheFlushCommand.php | 2 +- .../Magento/Backend/Console/Command/CacheStatusCommand.php | 2 +- .../Magento/Backend/Controller/Adminhtml/Ajax/Translate.php | 2 +- app/code/Magento/Backend/Controller/Adminhtml/Auth.php | 2 +- .../Backend/Controller/Adminhtml/Auth/DeniedIframe.php | 2 +- .../Backend/Controller/Adminhtml/Auth/DeniedJson.php | 2 +- .../Magento/Backend/Controller/Adminhtml/Auth/Login.php | 2 +- .../Magento/Backend/Controller/Adminhtml/Auth/Logout.php | 2 +- .../Backend/Controller/Adminhtml/BackendApp/Redirect.php | 2 +- app/code/Magento/Backend/Controller/Adminhtml/Cache.php | 2 +- .../Backend/Controller/Adminhtml/Cache/CleanImages.php | 2 +- .../Backend/Controller/Adminhtml/Cache/CleanMedia.php | 2 +- .../Backend/Controller/Adminhtml/Cache/CleanStaticFiles.php | 2 +- .../Magento/Backend/Controller/Adminhtml/Cache/FlushAll.php | 2 +- .../Backend/Controller/Adminhtml/Cache/FlushSystem.php | 2 +- .../Magento/Backend/Controller/Adminhtml/Cache/Index.php | 2 +- .../Backend/Controller/Adminhtml/Cache/MassDisable.php | 2 +- .../Backend/Controller/Adminhtml/Cache/MassEnable.php | 2 +- .../Backend/Controller/Adminhtml/Cache/MassRefresh.php | 2 +- app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php | 2 +- .../Backend/Controller/Adminhtml/Dashboard/AjaxBlock.php | 2 +- .../Controller/Adminhtml/Dashboard/CustomersMost.php | 2 +- .../Controller/Adminhtml/Dashboard/CustomersNewest.php | 2 +- .../Backend/Controller/Adminhtml/Dashboard/Index.php | 2 +- .../Controller/Adminhtml/Dashboard/ProductsViewed.php | 2 +- .../Controller/Adminhtml/Dashboard/RefreshStatistics.php | 2 +- .../Backend/Controller/Adminhtml/Dashboard/Tunnel.php | 2 +- app/code/Magento/Backend/Controller/Adminhtml/Denied.php | 2 +- app/code/Magento/Backend/Controller/Adminhtml/Index.php | 2 +- .../Backend/Controller/Adminhtml/Index/ChangeLocale.php | 2 +- .../Backend/Controller/Adminhtml/Index/GlobalSearch.php | 2 +- .../Magento/Backend/Controller/Adminhtml/Index/Index.php | 2 +- .../Magento/Backend/Controller/Adminhtml/Noroute/Index.php | 2 +- app/code/Magento/Backend/Controller/Adminhtml/System.php | 2 +- .../Magento/Backend/Controller/Adminhtml/System/Account.php | 2 +- .../Backend/Controller/Adminhtml/System/Account/Index.php | 2 +- .../Backend/Controller/Adminhtml/System/Account/Save.php | 2 +- .../Magento/Backend/Controller/Adminhtml/System/Design.php | 2 +- .../Backend/Controller/Adminhtml/System/Design/Delete.php | 2 +- .../Backend/Controller/Adminhtml/System/Design/Edit.php | 2 +- .../Backend/Controller/Adminhtml/System/Design/Grid.php | 2 +- .../Backend/Controller/Adminhtml/System/Design/Index.php | 2 +- .../Controller/Adminhtml/System/Design/NewAction.php | 2 +- .../Backend/Controller/Adminhtml/System/Design/Save.php | 2 +- .../Magento/Backend/Controller/Adminhtml/System/Index.php | 2 +- .../Backend/Controller/Adminhtml/System/SetStore.php | 2 +- .../Magento/Backend/Controller/Adminhtml/System/Store.php | 2 +- .../Controller/Adminhtml/System/Store/DeleteGroup.php | 2 +- .../Controller/Adminhtml/System/Store/DeleteGroupPost.php | 2 +- .../Controller/Adminhtml/System/Store/DeleteStore.php | 2 +- .../Controller/Adminhtml/System/Store/DeleteStorePost.php | 2 +- .../Controller/Adminhtml/System/Store/DeleteWebsite.php | 2 +- .../Controller/Adminhtml/System/Store/DeleteWebsitePost.php | 2 +- .../Backend/Controller/Adminhtml/System/Store/EditGroup.php | 2 +- .../Backend/Controller/Adminhtml/System/Store/EditStore.php | 2 +- .../Controller/Adminhtml/System/Store/EditWebsite.php | 2 +- .../Backend/Controller/Adminhtml/System/Store/Index.php | 2 +- .../Backend/Controller/Adminhtml/System/Store/NewGroup.php | 2 +- .../Backend/Controller/Adminhtml/System/Store/NewStore.php | 2 +- .../Controller/Adminhtml/System/Store/NewWebsite.php | 2 +- .../Backend/Controller/Adminhtml/System/Store/Save.php | 2 +- app/code/Magento/Backend/Cron/CleanCache.php | 2 +- .../Magento/Backend/Helper/Dashboard/AbstractDashboard.php | 2 +- app/code/Magento/Backend/Helper/Dashboard/Data.php | 2 +- app/code/Magento/Backend/Helper/Dashboard/Order.php | 2 +- app/code/Magento/Backend/Helper/Data.php | 2 +- app/code/Magento/Backend/Helper/Js.php | 2 +- app/code/Magento/Backend/Model/AdminPathConfig.php | 2 +- app/code/Magento/Backend/Model/Auth.php | 2 +- .../Backend/Model/Auth/Credential/StorageInterface.php | 2 +- app/code/Magento/Backend/Model/Auth/Session.php | 2 +- app/code/Magento/Backend/Model/Auth/StorageInterface.php | 2 +- .../Magento/Backend/Model/Authorization/RoleLocator.php | 2 +- .../Backend/Model/Cache/ResourceModel/Grid/Collection.php | 2 +- .../Backend/Model/Config/SessionLifetime/BackendModel.php | 2 +- app/code/Magento/Backend/Model/Locale/Manager.php | 2 +- app/code/Magento/Backend/Model/Locale/Resolver.php | 2 +- app/code/Magento/Backend/Model/Menu.php | 2 +- app/code/Magento/Backend/Model/Menu/AbstractDirector.php | 2 +- app/code/Magento/Backend/Model/Menu/Builder.php | 2 +- .../Magento/Backend/Model/Menu/Builder/AbstractCommand.php | 2 +- app/code/Magento/Backend/Model/Menu/Builder/Command/Add.php | 2 +- .../Magento/Backend/Model/Menu/Builder/Command/Remove.php | 2 +- .../Magento/Backend/Model/Menu/Builder/Command/Update.php | 2 +- .../Magento/Backend/Model/Menu/Builder/CommandFactory.php | 2 +- app/code/Magento/Backend/Model/Menu/Config.php | 2 +- app/code/Magento/Backend/Model/Menu/Config/Converter.php | 2 +- app/code/Magento/Backend/Model/Menu/Config/Menu/Dom.php | 2 +- app/code/Magento/Backend/Model/Menu/Config/Reader.php | 2 +- .../Magento/Backend/Model/Menu/Config/SchemaLocator.php | 2 +- app/code/Magento/Backend/Model/Menu/Director/Director.php | 2 +- app/code/Magento/Backend/Model/Menu/Filter/Iterator.php | 2 +- app/code/Magento/Backend/Model/Menu/Item.php | 2 +- app/code/Magento/Backend/Model/Menu/Item/Factory.php | 2 +- app/code/Magento/Backend/Model/Menu/Item/Validator.php | 2 +- app/code/Magento/Backend/Model/Menu/Iterator.php | 2 +- app/code/Magento/Backend/Model/ResourceModel/Translate.php | 2 +- app/code/Magento/Backend/Model/Search/Customer.php | 2 +- app/code/Magento/Backend/Model/Search/Order.php | 2 +- app/code/Magento/Backend/Model/Session.php | 2 +- app/code/Magento/Backend/Model/Session/AdminConfig.php | 2 +- app/code/Magento/Backend/Model/Session/Quote.php | 2 +- app/code/Magento/Backend/Model/Setup/MenuBuilder.php | 2 +- app/code/Magento/Backend/Model/Translate/Inline/Config.php | 2 +- app/code/Magento/Backend/Model/Url.php | 2 +- app/code/Magento/Backend/Model/Url/ScopeResolver.php | 2 +- app/code/Magento/Backend/Model/UrlInterface.php | 2 +- app/code/Magento/Backend/Model/View/Layout/Builder.php | 2 +- app/code/Magento/Backend/Model/View/Layout/Filter/Acl.php | 2 +- .../Magento/Backend/Model/View/Layout/GeneratorPool.php | 2 +- app/code/Magento/Backend/Model/View/Layout/Reader/Block.php | 2 +- app/code/Magento/Backend/Model/View/Page/Builder.php | 2 +- app/code/Magento/Backend/Model/View/Result/Forward.php | 2 +- app/code/Magento/Backend/Model/View/Result/Page.php | 2 +- app/code/Magento/Backend/Model/View/Result/Redirect.php | 2 +- .../Magento/Backend/Model/View/Result/RedirectFactory.php | 2 +- .../Magento/Backend/Model/Widget/Grid/AbstractTotals.php | 2 +- app/code/Magento/Backend/Model/Widget/Grid/Parser.php | 2 +- .../Backend/Model/Widget/Grid/Row/GeneratorInterface.php | 2 +- .../Magento/Backend/Model/Widget/Grid/Row/UrlGenerator.php | 2 +- .../Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php | 2 +- .../Backend/Model/Widget/Grid/Row/UrlGeneratorId.php | 2 +- app/code/Magento/Backend/Model/Widget/Grid/SubTotals.php | 2 +- app/code/Magento/Backend/Model/Widget/Grid/Totals.php | 2 +- .../Magento/Backend/Model/Widget/Grid/TotalsInterface.php | 2 +- app/code/Magento/Backend/Service/V1/ModuleService.php | 2 +- .../Magento/Backend/Service/V1/ModuleServiceInterface.php | 2 +- app/code/Magento/Backend/Setup/ConfigOptionsList.php | 2 +- .../Test/Unit/App/Action/Plugin/AuthenticationTest.php | 2 +- .../Test/Unit/App/Action/Plugin/MassactionKeyTest.php | 2 +- .../Backend/Test/Unit/App/Action/Stub/ActionStub.php | 2 +- .../Backend/Test/Unit/App/Area/FrontNameResolverTest.php | 2 +- .../Test/Unit/App/Area/Request/PathInfoProcessorTest.php | 2 +- app/code/Magento/Backend/Test/Unit/App/ConfigTest.php | 2 +- .../Backend/Test/Unit/App/Response/Http/FileFactoryTest.php | 2 +- .../Backend/Test/Unit/App/Router/NoRouteHandlerTest.php | 2 +- app/code/Magento/Backend/Test/Unit/App/UserConfigTest.php | 2 +- .../Backend/Test/Unit/Block/Cache/AdditionalTest.php | 2 +- .../Test/Unit/Block/Page/System/Config/Robots/ResetTest.php | 2 +- .../Magento/Backend/Test/Unit/Block/Store/SwitcherTest.php | 2 +- .../Backend/Test/Unit/Block/Widget/Button/SplitTest.php | 2 +- .../Magento/Backend/Test/Unit/Block/Widget/ButtonTest.php | 2 +- .../Backend/Test/Unit/Block/Widget/Form/ContainerTest.php | 2 +- .../Magento/Backend/Test/Unit/Block/Widget/FormTest.php | 2 +- .../Test/Unit/Block/Widget/Grid/Column/Filter/DateTest.php | 2 +- .../Unit/Block/Widget/Grid/Column/Filter/DatetimeTest.php | 2 +- .../Test/Unit/Block/Widget/Grid/Column/Filter/StoreTest.php | 2 +- .../Test/Unit/Block/Widget/Grid/Column/Filter/TextTest.php | 2 +- .../Test/Unit/Block/Widget/Grid/Column/MultistoreTest.php | 2 +- .../Widget/Grid/Column/Renderer/AbstractRendererTest.php | 2 +- .../Unit/Block/Widget/Grid/Column/Renderer/ConcatTest.php | 2 +- .../Unit/Block/Widget/Grid/Column/Renderer/CurrencyTest.php | 2 +- .../Widget/Grid/Column/Renderer/Radio/ExtendedTest.php | 2 +- .../Unit/Block/Widget/Grid/Column/Renderer/RadioTest.php | 2 +- .../Backend/Test/Unit/Block/Widget/Grid/ColumnSetTest.php | 2 +- .../Backend/Test/Unit/Block/Widget/Grid/ColumnTest.php | 2 +- .../Backend/Test/Unit/Block/Widget/Grid/ExtendedTest.php | 2 +- .../Test/Unit/Block/Widget/Grid/Massaction/ExtendedTest.php | 2 +- .../Backend/Test/Unit/Block/Widget/Grid/MassactionTest.php | 2 +- .../Backend/Test/Unit/Block/Widget/Grid/SerializerTest.php | 2 +- app/code/Magento/Backend/Test/Unit/Block/Widget/TabTest.php | 2 +- .../Test/Unit/Console/Command/AbstractCacheCommandTest.php | 2 +- .../Unit/Console/Command/AbstractCacheManageCommandTest.php | 2 +- .../Unit/Console/Command/AbstractCacheSetCommandTest.php | 2 +- .../Test/Unit/Console/Command/CacheCleanCommandTest.php | 2 +- .../Test/Unit/Console/Command/CacheDisableCommandTest.php | 2 +- .../Test/Unit/Console/Command/CacheEnableCommandTest.php | 2 +- .../Test/Unit/Console/Command/CacheFlushCommandTest.php | 2 +- .../Test/Unit/Console/Command/CacheStatusCommandTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Cache/CleanMediaTest.php | 2 +- .../Controller/Adminhtml/Cache/CleanStaticFilesTest.php | 2 +- .../Unit/Controller/Adminhtml/Cache/MassDisableTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Cache/MassEnableTest.php | 2 +- .../Controller/Adminhtml/Dashboard/AbstractTestCase.php | 2 +- .../Controller/Adminhtml/Dashboard/CustomersMostTest.php | 2 +- .../Controller/Adminhtml/Dashboard/CustomersNewestTest.php | 2 +- .../Controller/Adminhtml/Dashboard/ProductsViewedTest.php | 2 +- .../Adminhtml/Dashboard/RefreshStatisticsTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Dashboard/TunnelTest.php | 2 +- .../Unit/Controller/Adminhtml/System/Account/SaveTest.php | 2 +- app/code/Magento/Backend/Test/Unit/Cron/CleanCacheTest.php | 2 +- app/code/Magento/Backend/Test/Unit/Helper/DataTest.php | 2 +- .../Magento/Backend/Test/Unit/Model/AdminPathConfigTest.php | 2 +- .../Magento/Backend/Test/Unit/Model/Auth/SessionTest.php | 2 +- app/code/Magento/Backend/Test/Unit/Model/AuthTest.php | 2 +- .../Test/Unit/Model/Authorization/RoleLocatorTest.php | 2 +- .../Unit/Model/Config/SessionLifetime/BackendModelTest.php | 2 +- .../Magento/Backend/Test/Unit/Model/Locale/ManagerTest.php | 2 +- .../Test/Unit/Model/Menu/Builder/AbstractCommandTest.php | 2 +- .../Test/Unit/Model/Menu/Builder/Command/AddTest.php | 2 +- .../Test/Unit/Model/Menu/Builder/Command/RemoveTest.php | 2 +- .../Test/Unit/Model/Menu/Builder/Command/UpdateTest.php | 2 +- .../Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php | 2 +- .../Backend/Test/Unit/Model/Menu/Config/ConverterTest.php | 2 +- .../Test/Unit/Model/Menu/Config/SchemaLocatorTest.php | 2 +- .../Magento/Backend/Test/Unit/Model/Menu/Config/XsdTest.php | 2 +- .../Unit/Model/Menu/Config/_files/invalidMenuXmlArray.php | 2 +- .../Test/Unit/Model/Menu/Config/_files/invalid_menu.xml | 2 +- .../Test/Unit/Model/Menu/Config/_files/valid_menu.xml | 2 +- .../Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php | 2 +- .../Backend/Test/Unit/Model/Menu/Director/DirectorTest.php | 2 +- .../Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php | 2 +- .../Backend/Test/Unit/Model/Menu/Item/ValidatorTest.php | 2 +- app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php | 2 +- .../Magento/Backend/Test/Unit/Model/MenuBuilderTest.php | 2 +- app/code/Magento/Backend/Test/Unit/Model/MenuTest.php | 2 +- .../Backend/Test/Unit/Model/Session/AdminConfigTest.php | 2 +- .../Magento/Backend/Test/Unit/Model/Session/QuoteTest.php | 2 +- .../Backend/Test/Unit/Model/Translate/Inline/ConfigTest.php | 2 +- app/code/Magento/Backend/Test/Unit/Model/UrlTest.php | 2 +- .../Backend/Test/Unit/Model/View/Layout/Filter/AclTest.php | 2 +- .../Backend/Test/Unit/Model/View/Result/PageTest.php | 2 +- .../Backend/Test/Unit/Model/View/Result/RedirectTest.php | 2 +- .../Test/Unit/Model/Widget/Grid/AbstractTotalsTest.php | 2 +- .../Backend/Test/Unit/Model/Widget/Grid/ParserTest.php | 2 +- .../Test/Unit/Model/Widget/Grid/Row/UrlGeneratorTest.php | 2 +- .../Backend/Test/Unit/Model/Widget/Grid/SubTotalsTest.php | 2 +- .../Backend/Test/Unit/Model/Widget/Grid/TotalsTest.php | 2 +- .../Magento/Backend/Test/Unit/Model/_files/menu_merged.php | 2 +- .../Magento/Backend/Test/Unit/Model/_files/menu_merged.xml | 2 +- .../Backend/Test/Unit/Setup/ConfigOptionsListTest.php | 2 +- app/code/Magento/Backend/etc/acl.xml | 2 +- app/code/Magento/Backend/etc/adminhtml/di.xml | 2 +- app/code/Magento/Backend/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Backend/etc/adminhtml/routes.xml | 4 ++-- app/code/Magento/Backend/etc/adminhtml/system.xml | 2 +- app/code/Magento/Backend/etc/config.xml | 2 +- app/code/Magento/Backend/etc/crontab.xml | 2 +- app/code/Magento/Backend/etc/di.xml | 2 +- app/code/Magento/Backend/etc/menu.xsd | 2 +- app/code/Magento/Backend/etc/module.xml | 2 +- app/code/Magento/Backend/etc/webapi.xml | 2 +- app/code/Magento/Backend/registration.php | 2 +- .../Magento/Backend/view/adminhtml/layout/admin_login.xml | 2 +- .../Backend/view/adminhtml/layout/adminhtml_auth_login.xml | 2 +- .../Backend/view/adminhtml/layout/adminhtml_cache_block.xml | 2 +- .../Backend/view/adminhtml/layout/adminhtml_cache_index.xml | 2 +- .../adminhtml/layout/adminhtml_dashboard_customersmost.xml | 2 +- .../layout/adminhtml_dashboard_customersnewest.xml | 2 +- .../view/adminhtml/layout/adminhtml_dashboard_index.xml | 2 +- .../adminhtml/layout/adminhtml_dashboard_productsviewed.xml | 2 +- .../Backend/view/adminhtml/layout/adminhtml_denied.xml | 2 +- .../Backend/view/adminhtml/layout/adminhtml_noroute.xml | 2 +- .../adminhtml/layout/adminhtml_system_account_index.xml | 2 +- .../view/adminhtml/layout/adminhtml_system_design_edit.xml | 2 +- .../view/adminhtml/layout/adminhtml_system_design_grid.xml | 2 +- .../adminhtml/layout/adminhtml_system_design_grid_block.xml | 2 +- .../view/adminhtml/layout/adminhtml_system_design_index.xml | 2 +- .../adminhtml/layout/adminhtml_system_store_grid_block.xml | 2 +- .../view/adminhtml/layout/adminhtml_system_store_index.xml | 2 +- app/code/Magento/Backend/view/adminhtml/layout/default.xml | 2 +- app/code/Magento/Backend/view/adminhtml/layout/editor.xml | 2 +- app/code/Magento/Backend/view/adminhtml/layout/empty.xml | 2 +- app/code/Magento/Backend/view/adminhtml/layout/formkey.xml | 2 +- .../Magento/Backend/view/adminhtml/layout/overlay_popup.xml | 2 +- app/code/Magento/Backend/view/adminhtml/layout/popup.xml | 2 +- app/code/Magento/Backend/view/adminhtml/requirejs-config.js | 2 +- .../view/adminhtml/templates/admin/access_denied.phtml | 2 +- .../Backend/view/adminhtml/templates/admin/formkey.phtml | 2 +- .../Backend/view/adminhtml/templates/admin/login.phtml | 2 +- .../view/adminhtml/templates/admin/login_buttons.phtml | 2 +- .../view/adminhtml/templates/admin/overlay_popup.phtml | 2 +- .../Backend/view/adminhtml/templates/admin/page.phtml | 2 +- .../Backend/view/adminhtml/templates/dashboard/graph.phtml | 2 +- .../view/adminhtml/templates/dashboard/graph/disabled.phtml | 2 +- .../Backend/view/adminhtml/templates/dashboard/grid.phtml | 2 +- .../Backend/view/adminhtml/templates/dashboard/index.phtml | 2 +- .../view/adminhtml/templates/dashboard/salebar.phtml | 2 +- .../view/adminhtml/templates/dashboard/searches.phtml | 2 +- .../view/adminhtml/templates/dashboard/store/switcher.phtml | 2 +- .../view/adminhtml/templates/dashboard/totalbar.phtml | 2 +- .../templates/dashboard/totalbar/refreshstatistics.phtml | 2 +- .../Backend/view/adminhtml/templates/media/uploader.phtml | 2 +- .../Magento/Backend/view/adminhtml/templates/menu.phtml | 2 +- .../Backend/view/adminhtml/templates/page/copyright.phtml | 2 +- .../Backend/view/adminhtml/templates/page/footer.phtml | 2 +- .../Backend/view/adminhtml/templates/page/header.phtml | 2 +- .../Backend/view/adminhtml/templates/page/js/calendar.phtml | 2 +- .../view/adminhtml/templates/page/js/components.phtml | 2 +- .../view/adminhtml/templates/page/js/require_js.phtml | 2 +- .../Backend/view/adminhtml/templates/page/notices.phtml | 2 +- .../Backend/view/adminhtml/templates/page/report.phtml | 2 +- .../Backend/view/adminhtml/templates/pageactions.phtml | 2 +- .../Backend/view/adminhtml/templates/store/switcher.phtml | 2 +- .../templates/store/switcher/form/renderer/fieldset.phtml | 2 +- .../store/switcher/form/renderer/fieldset/element.phtml | 2 +- .../view/adminhtml/templates/system/autocomplete.phtml | 2 +- .../view/adminhtml/templates/system/cache/additional.phtml | 2 +- .../view/adminhtml/templates/system/cache/edit.phtml | 2 +- .../view/adminhtml/templates/system/design/edit.phtml | 2 +- .../view/adminhtml/templates/system/design/index.phtml | 2 +- .../Backend/view/adminhtml/templates/system/search.phtml | 2 +- .../templates/system/shipping/applicable_country.phtml | 2 +- .../Backend/view/adminhtml/templates/widget/accordion.phtml | 2 +- .../view/adminhtml/templates/widget/breadcrumbs.phtml | 2 +- .../Backend/view/adminhtml/templates/widget/button.phtml | 2 +- .../view/adminhtml/templates/widget/button/split.phtml | 2 +- .../Backend/view/adminhtml/templates/widget/form.phtml | 2 +- .../view/adminhtml/templates/widget/form/container.phtml | 2 +- .../view/adminhtml/templates/widget/form/element.phtml | 2 +- .../adminhtml/templates/widget/form/element/gallery.phtml | 2 +- .../adminhtml/templates/widget/form/renderer/element.phtml | 2 +- .../adminhtml/templates/widget/form/renderer/fieldset.phtml | 2 +- .../templates/widget/form/renderer/fieldset/element.phtml | 2 +- .../Backend/view/adminhtml/templates/widget/grid.phtml | 2 +- .../view/adminhtml/templates/widget/grid/column_set.phtml | 2 +- .../view/adminhtml/templates/widget/grid/container.phtml | 2 +- .../adminhtml/templates/widget/grid/container/empty.phtml | 2 +- .../view/adminhtml/templates/widget/grid/export.phtml | 4 ++-- .../view/adminhtml/templates/widget/grid/extended.phtml | 2 +- .../view/adminhtml/templates/widget/grid/massaction.phtml | 2 +- .../templates/widget/grid/massaction_extended.phtml | 2 +- .../view/adminhtml/templates/widget/grid/serializer.phtml | 2 +- .../Backend/view/adminhtml/templates/widget/tabs.phtml | 2 +- .../Backend/view/adminhtml/templates/widget/tabshoriz.phtml | 2 +- .../Backend/view/adminhtml/templates/widget/tabsleft.phtml | 2 +- .../view/adminhtml/templates/widget/view/container.phtml | 2 +- .../view/adminhtml/ui_component/design_config_form.xml | 2 +- .../view/adminhtml/ui_component/design_config_listing.xml | 2 +- .../Backend/view/adminhtml/web/js/bootstrap/editor.js | 4 ++-- .../Magento/Backend/view/adminhtml/web/js/media-uploader.js | 2 +- .../web/template/dynamic-rows/cells/action-delete.html | 2 +- .../view/adminhtml/web/template/dynamic-rows/grid.html | 2 +- .../template/form/element/helper/fallback-reset-link.html | 2 +- app/code/Magento/Backup/Block/Adminhtml/Backup.php | 2 +- app/code/Magento/Backup/Block/Adminhtml/Dialogs.php | 2 +- .../Block/Adminhtml/Grid/Column/Renderer/Download.php | 2 +- .../Magento/Backup/Block/Adminhtml/Grid/Column/Rollback.php | 2 +- app/code/Magento/Backup/Controller/Adminhtml/Index.php | 2 +- .../Magento/Backup/Controller/Adminhtml/Index/Create.php | 2 +- .../Magento/Backup/Controller/Adminhtml/Index/Download.php | 2 +- app/code/Magento/Backup/Controller/Adminhtml/Index/Grid.php | 2 +- .../Magento/Backup/Controller/Adminhtml/Index/Index.php | 2 +- .../Backup/Controller/Adminhtml/Index/MassDelete.php | 2 +- .../Magento/Backup/Controller/Adminhtml/Index/Rollback.php | 2 +- app/code/Magento/Backup/Cron/SystemBackup.php | 2 +- app/code/Magento/Backup/Helper/Data.php | 2 +- app/code/Magento/Backup/Model/Backup.php | 2 +- app/code/Magento/Backup/Model/BackupFactory.php | 2 +- app/code/Magento/Backup/Model/Config/Backend/Cron.php | 2 +- app/code/Magento/Backup/Model/Config/Source/Type.php | 2 +- app/code/Magento/Backup/Model/Db.php | 2 +- app/code/Magento/Backup/Model/Fs/Collection.php | 2 +- app/code/Magento/Backup/Model/Grid/Options.php | 2 +- app/code/Magento/Backup/Model/ResourceModel/Db.php | 2 +- app/code/Magento/Backup/Model/ResourceModel/Helper.php | 2 +- .../Test/Unit/Controller/Adminhtml/Index/DownloadTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Index/RollbackTest.php | 2 +- app/code/Magento/Backup/Test/Unit/Cron/SystemBackupTest.php | 2 +- app/code/Magento/Backup/Test/Unit/Helper/DataTest.php | 2 +- .../Magento/Backup/Test/Unit/Model/BackupFactoryTest.php | 2 +- app/code/Magento/Backup/Test/Unit/Model/BackupTest.php | 2 +- .../Magento/Backup/Test/Unit/Model/Fs/CollectionTest.php | 2 +- app/code/Magento/Backup/etc/acl.xml | 2 +- app/code/Magento/Backup/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Backup/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Backup/etc/adminhtml/system.xml | 2 +- app/code/Magento/Backup/etc/crontab.xml | 2 +- app/code/Magento/Backup/etc/di.xml | 2 +- app/code/Magento/Backup/etc/module.xml | 2 +- app/code/Magento/Backup/registration.php | 2 +- .../Backup/view/adminhtml/layout/backup_index_block.xml | 2 +- .../Backup/view/adminhtml/layout/backup_index_grid.xml | 2 +- .../Backup/view/adminhtml/layout/backup_index_index.xml | 2 +- .../Backup/view/adminhtml/templates/backup/dialogs.phtml | 2 +- .../Backup/view/adminhtml/templates/backup/left.phtml | 2 +- .../Backup/view/adminhtml/templates/backup/list.phtml | 2 +- .../Braintree/Block/Adminhtml/Form/Field/CcTypes.php | 2 +- .../Braintree/Block/Adminhtml/Form/Field/Countries.php | 2 +- .../Block/Adminhtml/Form/Field/CountryCreditCard.php | 2 +- app/code/Magento/Braintree/Block/Customer/CardRenderer.php | 2 +- .../Braintree/Block/Customer/PayPal/VaultTokenRenderer.php | 2 +- app/code/Magento/Braintree/Block/Form.php | 2 +- app/code/Magento/Braintree/Block/Info.php | 2 +- app/code/Magento/Braintree/Block/Payment.php | 2 +- app/code/Magento/Braintree/Block/Paypal/Button.php | 2 +- app/code/Magento/Braintree/Block/Paypal/Checkout/Review.php | 2 +- .../Braintree/Controller/Adminhtml/Payment/GetNonce.php | 2 +- .../Magento/Braintree/Controller/Adminhtml/Report/Index.php | 2 +- app/code/Magento/Braintree/Controller/Payment/GetNonce.php | 2 +- .../Magento/Braintree/Controller/Paypal/AbstractAction.php | 2 +- app/code/Magento/Braintree/Controller/Paypal/PlaceOrder.php | 2 +- app/code/Magento/Braintree/Controller/Paypal/Review.php | 2 +- .../Braintree/Controller/Paypal/SaveShippingMethod.php | 2 +- .../Braintree/Gateway/Command/CaptureStrategyCommand.php | 2 +- .../Braintree/Gateway/Command/GetPaymentNonceCommand.php | 2 +- .../Magento/Braintree/Gateway/Config/CanVoidHandler.php | 2 +- app/code/Magento/Braintree/Gateway/Config/Config.php | 2 +- app/code/Magento/Braintree/Gateway/Config/PayPal/Config.php | 2 +- app/code/Magento/Braintree/Gateway/Helper/SubjectReader.php | 2 +- .../Braintree/Gateway/Http/Client/AbstractTransaction.php | 2 +- .../Braintree/Gateway/Http/Client/TransactionRefund.php | 2 +- .../Braintree/Gateway/Http/Client/TransactionSale.php | 2 +- .../Gateway/Http/Client/TransactionSubmitForSettlement.php | 2 +- .../Braintree/Gateway/Http/Client/TransactionVoid.php | 2 +- app/code/Magento/Braintree/Gateway/Http/TransferFactory.php | 2 +- .../Braintree/Gateway/Request/AddressDataBuilder.php | 2 +- .../Braintree/Gateway/Request/CaptureDataBuilder.php | 2 +- .../Braintree/Gateway/Request/ChannelDataBuilder.php | 2 +- .../Braintree/Gateway/Request/CustomerDataBuilder.php | 2 +- .../Braintree/Gateway/Request/DescriptorDataBuilder.php | 2 +- .../Braintree/Gateway/Request/KountPaymentDataBuilder.php | 2 +- .../Braintree/Gateway/Request/PayPal/DeviceDataBuilder.php | 2 +- .../Braintree/Gateway/Request/PayPal/VaultDataBuilder.php | 2 +- .../Braintree/Gateway/Request/PaymentDataBuilder.php | 2 +- .../Magento/Braintree/Gateway/Request/RefundDataBuilder.php | 2 +- .../Braintree/Gateway/Request/SettlementDataBuilder.php | 2 +- .../Braintree/Gateway/Request/ThreeDSecureDataBuilder.php | 2 +- .../Braintree/Gateway/Request/VaultCaptureDataBuilder.php | 2 +- .../Magento/Braintree/Gateway/Request/VaultDataBuilder.php | 2 +- .../Magento/Braintree/Gateway/Request/VoidDataBuilder.php | 2 +- .../Braintree/Gateway/Response/CardDetailsHandler.php | 2 +- .../Gateway/Response/PayPal/VaultDetailsHandler.php | 2 +- .../Braintree/Gateway/Response/PayPalDetailsHandler.php | 2 +- .../Braintree/Gateway/Response/PaymentDetailsHandler.php | 2 +- .../Magento/Braintree/Gateway/Response/RefundHandler.php | 2 +- .../Magento/Braintree/Gateway/Response/RiskDataHandler.php | 2 +- .../Gateway/Response/ThreeDSecureDetailsHandler.php | 2 +- .../Braintree/Gateway/Response/TransactionIdHandler.php | 2 +- .../Braintree/Gateway/Response/VaultDetailsHandler.php | 2 +- app/code/Magento/Braintree/Gateway/Response/VoidHandler.php | 2 +- .../Gateway/Validator/GeneralResponseValidator.php | 2 +- .../Gateway/Validator/PaymentNonceResponseValidator.php | 2 +- .../Braintree/Gateway/Validator/ResponseValidator.php | 2 +- app/code/Magento/Braintree/Helper/CcType.php | 2 +- app/code/Magento/Braintree/Helper/Country.php | 2 +- .../Magento/Braintree/Model/Adapter/BraintreeAdapter.php | 2 +- .../Braintree/Model/Adapter/BraintreeSearchAdapter.php | 2 +- .../Magento/Braintree/Model/Adminhtml/Source/CcType.php | 2 +- .../Braintree/Model/Adminhtml/Source/Environment.php | 2 +- .../Braintree/Model/Adminhtml/Source/PaymentAction.php | 2 +- .../Braintree/Model/Adminhtml/System/Config/Country.php | 2 +- .../Model/Adminhtml/System/Config/CountryCreditCard.php | 2 +- .../Braintree/Model/Paypal/Helper/AbstractHelper.php | 2 +- .../Magento/Braintree/Model/Paypal/Helper/OrderPlace.php | 2 +- .../Magento/Braintree/Model/Paypal/Helper/QuoteUpdater.php | 2 +- .../Braintree/Model/Paypal/Helper/ShippingMethodUpdater.php | 2 +- .../Model/Report/ConditionAppliers/ApplierInterface.php | 2 +- .../Model/Report/ConditionAppliers/AppliersPool.php | 2 +- .../Model/Report/ConditionAppliers/MultipleValue.php | 2 +- .../Braintree/Model/Report/ConditionAppliers/Range.php | 2 +- .../Braintree/Model/Report/ConditionAppliers/Text.php | 2 +- app/code/Magento/Braintree/Model/Report/FilterMapper.php | 2 +- .../Magento/Braintree/Model/Report/Row/TransactionMap.php | 2 +- .../Braintree/Model/Report/TransactionsCollection.php | 2 +- .../Model/Ui/Adminhtml/PayPal/TokenUiComponentProvider.php | 2 +- .../Model/Ui/Adminhtml/TokenUiComponentProvider.php | 2 +- app/code/Magento/Braintree/Model/Ui/ConfigProvider.php | 2 +- .../Magento/Braintree/Model/Ui/PayPal/ConfigProvider.php | 2 +- .../Braintree/Model/Ui/PayPal/TokenUiComponentProvider.php | 2 +- .../Magento/Braintree/Model/Ui/TokenUiComponentProvider.php | 2 +- app/code/Magento/Braintree/Observer/AddPaypalShortcuts.php | 2 +- app/code/Magento/Braintree/Observer/DataAssignObserver.php | 2 +- app/code/Magento/Braintree/Test/Unit/Block/FormTest.php | 2 +- .../Braintree/Test/Unit/Controller/Payment/GetNonceTest.php | 2 +- .../Test/Unit/Controller/Paypal/PlaceOrderTest.php | 2 +- .../Braintree/Test/Unit/Controller/Paypal/ReviewTest.php | 2 +- .../Test/Unit/Controller/Paypal/SaveShippingMethodTest.php | 2 +- .../Unit/Gateway/Command/CaptureStrategyCommandTest.php | 2 +- .../Unit/Gateway/Command/GetPaymentNonceCommandTest.php | 2 +- .../Test/Unit/Gateway/Config/CanVoidHandlerTest.php | 2 +- .../Braintree/Test/Unit/Gateway/Config/ConfigTest.php | 2 +- .../Test/Unit/Gateway/Helper/SubjectReaderTest.php | 2 +- .../Test/Unit/Gateway/Http/Client/TransactionSaleTest.php | 2 +- .../Http/Client/TransactionSubmitForSettlementTest.php | 2 +- .../Test/Unit/Gateway/Http/TransferFactoryTest.php | 2 +- .../Test/Unit/Gateway/Request/AddressDataBuilderTest.php | 2 +- .../Test/Unit/Gateway/Request/CaptureDataBuilderTest.php | 2 +- .../Test/Unit/Gateway/Request/ChannelDataBuilderTest.php | 2 +- .../Test/Unit/Gateway/Request/CustomerDataBuilderTest.php | 2 +- .../Test/Unit/Gateway/Request/DescriptorDataBuilderTest.php | 2 +- .../Unit/Gateway/Request/KountPaymentDataBuilderTest.php | 2 +- .../Unit/Gateway/Request/PayPal/DeviceDataBuilderTest.php | 2 +- .../Unit/Gateway/Request/PayPal/VaultDataBuilderTest.php | 2 +- .../Test/Unit/Gateway/Request/PaymentDataBuilderTest.php | 2 +- .../Test/Unit/Gateway/Request/RefundDataBuilderTest.php | 2 +- .../Test/Unit/Gateway/Request/SettlementDataBuilderTest.php | 2 +- .../Unit/Gateway/Request/ThreeDSecureDataBuilderTest.php | 2 +- .../Unit/Gateway/Request/VaultCaptureDataBuilderTest.php | 2 +- .../Test/Unit/Gateway/Request/VaultDataBuilderTest.php | 2 +- .../Test/Unit/Gateway/Response/CardDetailsHandlerTest.php | 2 +- .../Gateway/Response/PayPal/VaultDetailsHandlerTest.php | 2 +- .../Test/Unit/Gateway/Response/PayPalDetailsHandlerTest.php | 2 +- .../Unit/Gateway/Response/PaymentDetailsHandlerTest.php | 2 +- .../Test/Unit/Gateway/Response/RiskDataHandlerTest.php | 2 +- .../Gateway/Response/ThreeDSecureDetailsHandlerTest.php | 2 +- .../Test/Unit/Gateway/Response/TransactionIdHandlerTest.php | 2 +- .../Test/Unit/Gateway/Response/VaultDetailsHandlerTest.php | 2 +- .../Test/Unit/Gateway/Response/VoidHandlerTest.php | 2 +- .../Unit/Gateway/Validator/GeneralResponseValidatorTest.php | 2 +- .../Gateway/Validator/PaymentNonceResponseValidatorTest.php | 2 +- .../Test/Unit/Gateway/Validator/ResponseValidatorTest.php | 2 +- app/code/Magento/Braintree/Test/Unit/Helper/CcTypeTest.php | 2 +- app/code/Magento/Braintree/Test/Unit/Helper/CountryTest.php | 2 +- .../Model/Adminhtml/System/Config/CountryCreditCardTest.php | 2 +- .../Test/Unit/Model/Adminhtml/System/Config/CountryTest.php | 2 +- .../Test/Unit/Model/Paypal/Helper/OrderPlaceTest.php | 2 +- .../Test/Unit/Model/Paypal/Helper/QuoteUpdaterTest.php | 2 +- .../Unit/Model/Paypal/Helper/ShippingMethodUpdaterTest.php | 2 +- .../Test/Unit/Model/Report/BraintreeSearchNodeStub.php | 2 +- .../Test/Unit/Model/Report/BraintreeTransactionStub.php | 2 +- .../Braintree/Test/Unit/Model/Report/FilterMapperTest.php | 2 +- .../Braintree/Test/Unit/Model/Report/TransactionMapTest.php | 2 +- .../Test/Unit/Model/Report/TransactionsCollectionTest.php | 2 +- .../Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php | 2 +- .../Model/Ui/Adminhtml/TokenUiComponentProviderTest.php | 2 +- .../Braintree/Test/Unit/Model/Ui/ConfigProviderTest.php | 2 +- .../Test/Unit/Model/Ui/PayPal/ConfigProviderTest.php | 2 +- .../Unit/Model/Ui/PayPal/TokenUiComponentProviderTest.php | 2 +- .../Braintree/Test/Unit/Observer/AddPaypalShortcutsTest.php | 2 +- .../Braintree/Test/Unit/Observer/DataAssignObserverTest.php | 2 +- .../Unit/Ui/Component/Report/Filters/Type/DateRangeTest.php | 2 +- .../Report/Listing/Column/CheckColumnOptionSourceTest.php | 2 +- .../Ui/Component/Report/Filters/Type/DateRange.php | 2 +- .../Ui/Component/Report/Listing/Column/PaymentType.php | 2 +- .../Braintree/Ui/Component/Report/Listing/Column/Status.php | 2 +- .../Ui/Component/Report/Listing/Column/TransactionType.php | 2 +- app/code/Magento/Braintree/etc/acl.xml | 2 +- app/code/Magento/Braintree/etc/adminhtml/di.xml | 2 +- app/code/Magento/Braintree/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Braintree/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Braintree/etc/adminhtml/system.xml | 2 +- app/code/Magento/Braintree/etc/config.xml | 2 +- app/code/Magento/Braintree/etc/di.xml | 2 +- app/code/Magento/Braintree/etc/events.xml | 2 +- app/code/Magento/Braintree/etc/frontend/di.xml | 2 +- app/code/Magento/Braintree/etc/frontend/events.xml | 2 +- app/code/Magento/Braintree/etc/frontend/routes.xml | 2 +- app/code/Magento/Braintree/etc/frontend/sections.xml | 2 +- app/code/Magento/Braintree/etc/module.xml | 2 +- app/code/Magento/Braintree/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_system_config_edit.xml | 4 ++-- .../view/adminhtml/layout/braintree_report_index.xml | 4 ++-- .../view/adminhtml/layout/sales_order_create_index.xml | 2 +- .../layout/sales_order_create_load_block_billing_method.xml | 4 ++-- .../Braintree/view/adminhtml/templates/form/cc.phtml | 2 +- .../view/adminhtml/templates/form/paypal/vault.phtml | 2 +- .../Braintree/view/adminhtml/templates/form/vault.phtml | 2 +- .../Braintree/view/adminhtml/templates/grid/tooltip.phtml | 2 +- .../Braintree/view/adminhtml/templates/payment/script.phtml | 4 ++-- .../view/adminhtml/ui_component/braintree_report.xml | 2 +- .../Magento/Braintree/view/adminhtml/web/js/braintree.js | 2 +- .../view/adminhtml/web/js/grid/filters/status.html | 2 +- .../Braintree/view/adminhtml/web/js/grid/provider.js | 2 +- app/code/Magento/Braintree/view/adminhtml/web/js/vault.js | 2 +- app/code/Magento/Braintree/view/adminhtml/web/styles.css | 4 ++-- app/code/Magento/Braintree/view/base/web/js/validator.js | 2 +- .../view/frontend/layout/braintree_paypal_review.xml | 2 +- .../Braintree/view/frontend/layout/checkout_index_index.xml | 2 +- .../view/frontend/layout/vault_cards_listaction.xml | 2 +- .../Magento/Braintree/view/frontend/requirejs-config.js | 2 +- .../Braintree/view/frontend/templates/paypal/button.phtml | 2 +- .../view/frontend/templates/paypal/vault_token.phtml | 2 +- .../Magento/Braintree/view/frontend/web/js/paypal/button.js | 2 +- .../Braintree/view/frontend/web/js/paypal/form-builder.js | 2 +- .../view/frontend/web/js/view/payment/3d-secure.js | 2 +- .../Braintree/view/frontend/web/js/view/payment/adapter.js | 2 +- .../view/frontend/web/js/view/payment/braintree.js | 2 +- .../frontend/web/js/view/payment/method-renderer/cc-form.js | 2 +- .../web/js/view/payment/method-renderer/hosted-fields.js | 2 +- .../web/js/view/payment/method-renderer/paypal-vault.js | 2 +- .../frontend/web/js/view/payment/method-renderer/paypal.js | 2 +- .../frontend/web/js/view/payment/method-renderer/vault.js | 2 +- .../view/frontend/web/js/view/payment/validator-handler.js | 2 +- .../Braintree/view/frontend/web/template/payment/form.html | 2 +- .../view/frontend/web/template/payment/paypal.html | 4 ++-- .../view/frontend/web/template/payment/paypal/vault.html | 4 ++-- app/code/Magento/Bundle/Api/Data/BundleOptionInterface.php | 2 +- app/code/Magento/Bundle/Api/Data/LinkInterface.php | 2 +- app/code/Magento/Bundle/Api/Data/OptionInterface.php | 2 +- app/code/Magento/Bundle/Api/Data/OptionTypeInterface.php | 2 +- .../Magento/Bundle/Api/ProductLinkManagementInterface.php | 2 +- .../Magento/Bundle/Api/ProductOptionManagementInterface.php | 2 +- .../Magento/Bundle/Api/ProductOptionRepositoryInterface.php | 2 +- .../Magento/Bundle/Api/ProductOptionTypeListInterface.php | 2 +- .../Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php | 2 +- .../Product/Composite/Fieldset/Options/Type/Checkbox.php | 2 +- .../Product/Composite/Fieldset/Options/Type/Multi.php | 2 +- .../Product/Composite/Fieldset/Options/Type/Radio.php | 2 +- .../Product/Composite/Fieldset/Options/Type/Select.php | 2 +- .../Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php | 2 +- .../Catalog/Product/Edit/Tab/Attributes/Extend.php | 2 +- .../Catalog/Product/Edit/Tab/Attributes/Special.php | 2 +- .../Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php | 2 +- .../Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php | 2 +- .../Catalog/Product/Edit/Tab/Bundle/Option/Search.php | 2 +- .../Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php | 2 +- .../Catalog/Product/Edit/Tab/Bundle/Option/Selection.php | 2 +- .../Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php | 2 +- .../Magento/Bundle/Block/Adminhtml/Order/Create/Sidebar.php | 2 +- .../Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php | 2 +- .../Block/Adminhtml/Sales/Order/View/Items/Renderer.php | 2 +- app/code/Magento/Bundle/Block/Catalog/Product/Price.php | 2 +- .../Bundle/Block/Catalog/Product/View/Type/Bundle.php | 2 +- .../Block/Catalog/Product/View/Type/Bundle/Option.php | 2 +- .../Catalog/Product/View/Type/Bundle/Option/Checkbox.php | 2 +- .../Block/Catalog/Product/View/Type/Bundle/Option/Multi.php | 2 +- .../Block/Catalog/Product/View/Type/Bundle/Option/Radio.php | 2 +- .../Catalog/Product/View/Type/Bundle/Option/Select.php | 2 +- .../Magento/Bundle/Block/Checkout/Cart/Item/Renderer.php | 2 +- .../Magento/Bundle/Block/Sales/Order/Items/Renderer.php | 2 +- .../Bundle/Product/Edit/AddAttributeToTemplate.php | 2 +- .../Adminhtml/Bundle/Product/Edit/AlertsPriceGrid.php | 2 +- .../Adminhtml/Bundle/Product/Edit/AlertsStockGrid.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Categories.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Crosssell.php | 2 +- .../Adminhtml/Bundle/Product/Edit/CrosssellGrid.php | 2 +- .../Adminhtml/Bundle/Product/Edit/CustomOptions.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Duplicate.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Edit.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Form.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Grid.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/GridOnly.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Index.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/MassDelete.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/MassStatus.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/NewAction.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Options.php | 2 +- .../Adminhtml/Bundle/Product/Edit/OptionsImportGrid.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Related.php | 2 +- .../Adminhtml/Bundle/Product/Edit/RelatedGrid.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Save.php | 2 +- .../Adminhtml/Bundle/Product/Edit/ShowUpdateResult.php | 2 +- .../Adminhtml/Bundle/Product/Edit/SuggestAttributes.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Upsell.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/UpsellGrid.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Validate.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/Wysiwyg.php | 2 +- .../Bundle/Controller/Adminhtml/Bundle/Selection/Grid.php | 2 +- .../Bundle/Controller/Adminhtml/Bundle/Selection/Search.php | 2 +- .../Product/Initialization/Helper/Plugin/Bundle.php | 2 +- .../Magento/Bundle/Helper/Catalog/Product/Configuration.php | 2 +- app/code/Magento/Bundle/Helper/Data.php | 2 +- app/code/Magento/Bundle/Model/BundleOption.php | 2 +- app/code/Magento/Bundle/Model/CartItemProcessor.php | 2 +- app/code/Magento/Bundle/Model/Link.php | 2 +- app/code/Magento/Bundle/Model/LinkManagement.php | 2 +- app/code/Magento/Bundle/Model/Option.php | 2 +- app/code/Magento/Bundle/Model/Option/Validator.php | 2 +- app/code/Magento/Bundle/Model/OptionManagement.php | 2 +- app/code/Magento/Bundle/Model/OptionRepository.php | 2 +- app/code/Magento/Bundle/Model/OptionTypeList.php | 2 +- app/code/Magento/Bundle/Model/Plugin/PriceBackend.php | 2 +- app/code/Magento/Bundle/Model/Plugin/Product.php | 2 +- app/code/Magento/Bundle/Model/Plugin/QuoteItem.php | 2 +- .../Bundle/Model/Product/Attribute/Source/Price/View.php | 2 +- .../Bundle/Model/Product/Attribute/Source/Shipment/Type.php | 2 +- app/code/Magento/Bundle/Model/Product/CatalogPrice.php | 2 +- .../Magento/Bundle/Model/Product/CopyConstructor/Bundle.php | 2 +- app/code/Magento/Bundle/Model/Product/LinksList.php | 2 +- app/code/Magento/Bundle/Model/Product/OptionList.php | 2 +- app/code/Magento/Bundle/Model/Product/Price.php | 2 +- app/code/Magento/Bundle/Model/Product/ReadHandler.php | 2 +- app/code/Magento/Bundle/Model/Product/SaveHandler.php | 2 +- app/code/Magento/Bundle/Model/Product/Type.php | 2 +- app/code/Magento/Bundle/Model/ProductOptionProcessor.php | 2 +- app/code/Magento/Bundle/Model/ResourceModel/Bundle.php | 2 +- .../Magento/Bundle/Model/ResourceModel/Indexer/Price.php | 2 +- .../Magento/Bundle/Model/ResourceModel/Indexer/Stock.php | 2 +- app/code/Magento/Bundle/Model/ResourceModel/Option.php | 2 +- .../Bundle/Model/ResourceModel/Option/Collection.php | 2 +- app/code/Magento/Bundle/Model/ResourceModel/Selection.php | 2 +- .../Bundle/Model/ResourceModel/Selection/Collection.php | 2 +- .../Model/ResourceModel/Selection/Plugin/Collection.php | 2 +- .../Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php | 2 +- .../Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php | 2 +- .../Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php | 2 +- .../Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php | 2 +- app/code/Magento/Bundle/Model/Selection.php | 2 +- .../Bundle/Model/Source/Option/Selection/Price/Type.php | 2 +- app/code/Magento/Bundle/Model/Source/Option/Type.php | 2 +- .../Bundle/Observer/AppendUpsellProductsObserver.php | 2 +- .../Magento/Bundle/Observer/InitOptionRendererObserver.php | 2 +- .../Magento/Bundle/Observer/LoadProductOptionsObserver.php | 2 +- .../Bundle/Observer/SetAttributeTabBlockObserver.php | 2 +- .../Bundle/Pricing/Adjustment/BundleCalculatorInterface.php | 2 +- app/code/Magento/Bundle/Pricing/Adjustment/Calculator.php | 2 +- .../Adjustment/DefaultSelectionPriceListProvider.php | 2 +- .../Adjustment/SelectionPriceListProviderInterface.php | 2 +- app/code/Magento/Bundle/Pricing/Price/BundleOptionPrice.php | 2 +- .../Bundle/Pricing/Price/BundleOptionPriceInterface.php | 2 +- .../Magento/Bundle/Pricing/Price/BundleRegularPrice.php | 2 +- .../Magento/Bundle/Pricing/Price/BundleSelectionFactory.php | 2 +- .../Magento/Bundle/Pricing/Price/BundleSelectionPrice.php | 2 +- app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php | 2 +- .../Magento/Bundle/Pricing/Price/DiscountCalculator.php | 2 +- .../Bundle/Pricing/Price/DiscountProviderInterface.php | 2 +- app/code/Magento/Bundle/Pricing/Price/FinalPrice.php | 2 +- .../Magento/Bundle/Pricing/Price/FinalPriceInterface.php | 2 +- .../Magento/Bundle/Pricing/Price/RegularPriceInterface.php | 2 +- app/code/Magento/Bundle/Pricing/Price/SpecialPrice.php | 2 +- app/code/Magento/Bundle/Pricing/Price/TierPrice.php | 2 +- app/code/Magento/Bundle/Pricing/Render/FinalPriceBox.php | 2 +- app/code/Magento/Bundle/Setup/InstallData.php | 2 +- app/code/Magento/Bundle/Setup/InstallSchema.php | 2 +- app/code/Magento/Bundle/Setup/Recurring.php | 2 +- app/code/Magento/Bundle/Setup/UpgradeData.php | 2 +- app/code/Magento/Bundle/Setup/UpgradeSchema.php | 2 +- .../Composite/Fieldset/Options/Type/CheckboxTest.php | 2 +- .../Product/Composite/Fieldset/Options/Type/MultiTest.php | 2 +- .../Product/Composite/Fieldset/Options/Type/RadioTest.php | 2 +- .../Product/Composite/Fieldset/Options/Type/SelectTest.php | 2 +- .../Catalog/Product/Edit/Tab/Attributes/ExtendTest.php | 2 +- .../Catalog/Product/Edit/Tab/Bundle/OptionTest.php | 2 +- .../Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php | 2 +- .../Block/Adminhtml/Sales/Order/View/Items/RendererTest.php | 2 +- .../Block/Catalog/Product/View/Type/Bundle/OptionTest.php | 2 +- .../Unit/Block/Catalog/Product/View/Type/BundleTest.php | 2 +- .../Test/Unit/Block/Sales/Order/Items/RendererTest.php | 2 +- .../Controller/Adminhtml/Bundle/Product/Edit/FormTest.php | 2 +- .../Unit/Controller/Adminhtml/Bundle/Selection/GridTest.php | 2 +- .../Controller/Adminhtml/Bundle/Selection/SearchTest.php | 2 +- .../Product/Initialization/Helper/Plugin/BundleTest.php | 2 +- .../Test/Unit/Helper/Catalog/Product/ConfigurationTest.php | 2 +- app/code/Magento/Bundle/Test/Unit/Helper/DataTest.php | 2 +- .../Bundle/Test/Unit/Model/CartItemProcessorTest.php | 2 +- .../Magento/Bundle/Test/Unit/Model/LinkManagementTest.php | 2 +- .../Magento/Bundle/Test/Unit/Model/Option/ValidatorTest.php | 2 +- .../Magento/Bundle/Test/Unit/Model/OptionManagementTest.php | 2 +- .../Magento/Bundle/Test/Unit/Model/OptionRepositoryTest.php | 2 +- app/code/Magento/Bundle/Test/Unit/Model/OptionTest.php | 2 +- .../Magento/Bundle/Test/Unit/Model/OptionTypeListTest.php | 2 +- .../Bundle/Test/Unit/Model/Plugin/PriceBackendTest.php | 2 +- .../Magento/Bundle/Test/Unit/Model/Plugin/ProductTest.php | 2 +- .../Magento/Bundle/Test/Unit/Model/Plugin/QuoteItemTest.php | 2 +- .../Unit/Model/Product/Attribute/Source/Price/ViewTest.php | 2 +- .../Bundle/Test/Unit/Model/Product/CatalogPriceTest.php | 2 +- .../Test/Unit/Model/Product/CopyConstructor/BundleTest.php | 2 +- .../Bundle/Test/Unit/Model/Product/LinksListTest.php | 2 +- .../Bundle/Test/Unit/Model/Product/OptionListTest.php | 2 +- .../Magento/Bundle/Test/Unit/Model/Product/PriceTest.php | 2 +- .../Magento/Bundle/Test/Unit/Model/Product/TypeTest.php | 2 +- .../Bundle/Test/Unit/Model/ProductOptionProcessorTest.php | 2 +- .../Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php | 2 +- .../Bundle/Test/Unit/Pricing/Adjustment/CalculatorTest.php | 2 +- .../Test/Unit/Pricing/Price/BundleOptionPriceTest.php | 2 +- .../Test/Unit/Pricing/Price/BundleRegularPriceTest.php | 2 +- .../Test/Unit/Pricing/Price/BundleSelectionFactoryTest.php | 2 +- .../Test/Unit/Pricing/Price/BundleSelectionPriceTest.php | 2 +- .../Test/Unit/Pricing/Price/DiscountCalculatorTest.php | 2 +- .../Bundle/Test/Unit/Pricing/Price/FinalPriceTest.php | 2 +- .../Bundle/Test/Unit/Pricing/Price/SpecialPriceTest.php | 2 +- .../Bundle/Test/Unit/Pricing/Price/TierPriceTest.php | 2 +- .../Bundle/Test/Unit/Pricing/Render/FinalPriceBoxTest.php | 2 +- .../Unit/Ui/DataProvider/Product/BundleDataProviderTest.php | 2 +- .../Product/Form/Modifier/AbstractModifierTest.php | 2 +- .../Product/Form/Modifier/BundleQuantityTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/BundleSkuTest.php | 2 +- .../DataProvider/Product/Form/Modifier/BundleWeightTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/CompositeTest.php | 2 +- .../Bundle/Ui/DataProvider/Product/BundleDataProvider.php | 2 +- .../Product/Form/Modifier/BundleAdvancedPricing.php | 2 +- .../Product/Form/Modifier/BundleCustomOptions.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/BundlePanel.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/BundlePrice.php | 2 +- .../DataProvider/Product/Form/Modifier/BundleQuantity.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/BundleSku.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/BundleWeight.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Composite.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/StockData.php | 2 +- app/code/Magento/Bundle/etc/adminhtml/di.xml | 2 +- app/code/Magento/Bundle/etc/adminhtml/events.xml | 2 +- app/code/Magento/Bundle/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Bundle/etc/catalog_attributes.xml | 2 +- app/code/Magento/Bundle/etc/config.xml | 2 +- app/code/Magento/Bundle/etc/di.xml | 2 +- app/code/Magento/Bundle/etc/extension_attributes.xml | 2 +- app/code/Magento/Bundle/etc/frontend/di.xml | 2 +- app/code/Magento/Bundle/etc/frontend/events.xml | 2 +- app/code/Magento/Bundle/etc/module.xml | 2 +- app/code/Magento/Bundle/etc/pdf.xml | 2 +- app/code/Magento/Bundle/etc/product_types.xml | 2 +- app/code/Magento/Bundle/etc/sales.xml | 2 +- app/code/Magento/Bundle/etc/webapi.xml | 2 +- app/code/Magento/Bundle/etc/webapi_rest/di.xml | 2 +- app/code/Magento/Bundle/etc/webapi_soap/di.xml | 2 +- app/code/Magento/Bundle/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_order_shipment_new.xml | 2 +- .../view/adminhtml/layout/adminhtml_order_shipment_view.xml | 2 +- .../Bundle/view/adminhtml/layout/catalog_product_bundle.xml | 2 +- .../Bundle/view/adminhtml/layout/catalog_product_new.xml | 2 +- .../adminhtml/layout/catalog_product_view_type_bundle.xml | 2 +- .../view/adminhtml/layout/customer_index_wishlist.xml | 2 +- .../view/adminhtml/layout/sales_order_creditmemo_new.xml | 2 +- .../adminhtml/layout/sales_order_creditmemo_updateqty.xml | 2 +- .../view/adminhtml/layout/sales_order_creditmemo_view.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_new.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_updateqty.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_view.xml | 2 +- .../Bundle/view/adminhtml/layout/sales_order_view.xml | 2 +- .../catalog/product/edit/tab/attributes/extend.phtml | 2 +- .../product/composite/fieldset/options/bundle.phtml | 2 +- .../product/composite/fieldset/options/type/checkbox.phtml | 2 +- .../product/composite/fieldset/options/type/multi.phtml | 2 +- .../product/composite/fieldset/options/type/radio.phtml | 2 +- .../product/composite/fieldset/options/type/select.phtml | 2 +- .../view/adminhtml/templates/product/edit/bundle.phtml | 2 +- .../adminhtml/templates/product/edit/bundle/option.phtml | 2 +- .../templates/product/edit/bundle/option/search.phtml | 2 +- .../templates/product/edit/bundle/option/selection.phtml | 2 +- .../view/adminhtml/templates/product/stock/disabler.phtml | 2 +- .../templates/sales/creditmemo/create/items/renderer.phtml | 2 +- .../templates/sales/creditmemo/view/items/renderer.phtml | 2 +- .../templates/sales/invoice/create/items/renderer.phtml | 2 +- .../templates/sales/invoice/view/items/renderer.phtml | 2 +- .../templates/sales/order/view/items/renderer.phtml | 2 +- .../templates/sales/shipment/create/items/renderer.phtml | 2 +- .../templates/sales/shipment/view/items/renderer.phtml | 2 +- .../view/adminhtml/ui_component/bundle_product_listing.xml | 2 +- .../Bundle/view/adminhtml/web/css/bundle-product.css | 2 +- .../Magento/Bundle/view/adminhtml/web/js/bundle-product.js | 2 +- .../Bundle/view/adminhtml/web/js/bundle-type-handler.js | 2 +- .../view/adminhtml/web/js/components/bundle-checkbox.js | 2 +- .../adminhtml/web/js/components/bundle-dynamic-rows-grid.js | 2 +- .../view/adminhtml/web/js/components/bundle-dynamic-rows.js | 2 +- .../view/adminhtml/web/js/components/bundle-input-type.js | 2 +- .../view/adminhtml/web/js/components/bundle-option-qty.js | 2 +- .../Bundle/view/base/layout/catalog_product_prices.xml | 2 +- .../view/base/templates/product/price/final_price.phtml | 2 +- .../base/templates/product/price/selection/amount.phtml | 2 +- .../view/base/templates/product/price/tier_prices.phtml | 2 +- app/code/Magento/Bundle/view/base/web/js/price-bundle.js | 2 +- .../frontend/layout/catalog_product_view_type_bundle.xml | 2 +- .../frontend/layout/catalog_product_view_type_simple.xml | 2 +- .../frontend/layout/checkout_cart_configure_type_bundle.xml | 2 +- .../view/frontend/layout/checkout_cart_item_renderers.xml | 2 +- .../layout/checkout_onepage_review_item_renderers.xml | 2 +- app/code/Magento/Bundle/view/frontend/layout/default.xml | 2 +- .../layout/sales_email_order_creditmemo_renderers.xml | 2 +- .../frontend/layout/sales_email_order_invoice_renderers.xml | 2 +- .../view/frontend/layout/sales_email_order_renderers.xml | 2 +- .../layout/sales_email_order_shipment_renderers.xml | 2 +- .../frontend/layout/sales_order_creditmemo_renderers.xml | 2 +- .../view/frontend/layout/sales_order_invoice_renderers.xml | 2 +- .../view/frontend/layout/sales_order_item_renderers.xml | 2 +- .../layout/sales_order_print_creditmemo_renderers.xml | 2 +- .../frontend/layout/sales_order_print_invoice_renderers.xml | 2 +- .../view/frontend/layout/sales_order_print_renderers.xml | 2 +- .../layout/sales_order_print_shipment_renderers.xml | 2 +- .../view/frontend/layout/sales_order_shipment_renderers.xml | 2 +- app/code/Magento/Bundle/view/frontend/requirejs-config.js | 4 ++-- .../templates/catalog/product/view/backbutton.phtml | 2 +- .../frontend/templates/catalog/product/view/customize.phtml | 2 +- .../templates/catalog/product/view/options/notice.phtml | 2 +- .../frontend/templates/catalog/product/view/summary.phtml | 2 +- .../templates/catalog/product/view/type/bundle.phtml | 2 +- .../catalog/product/view/type/bundle/option/checkbox.phtml | 2 +- .../catalog/product/view/type/bundle/option/multi.phtml | 2 +- .../catalog/product/view/type/bundle/option/radio.phtml | 2 +- .../catalog/product/view/type/bundle/option/select.phtml | 2 +- .../catalog/product/view/type/bundle/options.phtml | 2 +- .../templates/email/order/items/creditmemo/default.phtml | 2 +- .../templates/email/order/items/invoice/default.phtml | 2 +- .../templates/email/order/items/order/default.phtml | 2 +- .../templates/email/order/items/shipment/default.phtml | 2 +- .../Bundle/view/frontend/templates/js/components.phtml | 2 +- .../templates/sales/order/creditmemo/items/renderer.phtml | 2 +- .../templates/sales/order/invoice/items/renderer.phtml | 2 +- .../frontend/templates/sales/order/items/renderer.phtml | 2 +- .../templates/sales/order/shipment/items/renderer.phtml | 2 +- app/code/Magento/Bundle/view/frontend/web/js/float.js | 4 ++-- .../Magento/Bundle/view/frontend/web/js/product-summary.js | 2 +- app/code/Magento/Bundle/view/frontend/web/js/slide.js | 4 ++-- .../BundleImportExport/Model/Export/Product/Type/Bundle.php | 2 +- .../BundleImportExport/Model/Export/RowCustomizer.php | 2 +- .../BundleImportExport/Model/Import/Product/Type/Bundle.php | 2 +- .../Test/Unit/Model/Export/Product/RowCustomizerTest.php | 2 +- .../Test/Unit/Model/Import/Product/Type/BundleTest.php | 2 +- app/code/Magento/BundleImportExport/etc/di.xml | 2 +- app/code/Magento/BundleImportExport/etc/export.xml | 2 +- app/code/Magento/BundleImportExport/etc/import.xml | 2 +- app/code/Magento/BundleImportExport/etc/module.xml | 2 +- app/code/Magento/BundleImportExport/registration.php | 2 +- app/code/Magento/CacheInvalidate/Model/PurgeCache.php | 2 +- app/code/Magento/CacheInvalidate/Model/SocketFactory.php | 2 +- .../CacheInvalidate/Observer/FlushAllCacheObserver.php | 2 +- .../CacheInvalidate/Observer/InvalidateVarnishObserver.php | 2 +- .../CacheInvalidate/Test/Unit/Model/PurgeCacheTest.php | 2 +- .../CacheInvalidate/Test/Unit/Model/SocketFactoryTest.php | 2 +- .../Test/Unit/Observer/FlushAllCacheObserverTest.php | 2 +- .../Test/Unit/Observer/InvalidateVarnishObserverTest.php | 2 +- app/code/Magento/CacheInvalidate/etc/events.xml | 4 ++-- app/code/Magento/CacheInvalidate/etc/module.xml | 2 +- app/code/Magento/CacheInvalidate/registration.php | 2 +- .../Captcha/Block/Adminhtml/Captcha/DefaultCaptcha.php | 2 +- app/code/Magento/Captcha/Block/Captcha.php | 2 +- app/code/Magento/Captcha/Block/Captcha/DefaultCaptcha.php | 2 +- .../Captcha/Controller/Adminhtml/Refresh/Refresh.php | 2 +- app/code/Magento/Captcha/Controller/Refresh/Index.php | 2 +- app/code/Magento/Captcha/Cron/DeleteExpiredImages.php | 2 +- app/code/Magento/Captcha/Cron/DeleteOldAttempts.php | 2 +- app/code/Magento/Captcha/Helper/Adminhtml/Data.php | 2 +- app/code/Magento/Captcha/Helper/Data.php | 2 +- app/code/Magento/Captcha/Model/CaptchaFactory.php | 2 +- app/code/Magento/Captcha/Model/CaptchaInterface.php | 2 +- app/code/Magento/Captcha/Model/Cart/ConfigPlugin.php | 2 +- app/code/Magento/Captcha/Model/Checkout/ConfigProvider.php | 2 +- app/code/Magento/Captcha/Model/Config/Font.php | 2 +- app/code/Magento/Captcha/Model/Config/Form/AbstractForm.php | 2 +- app/code/Magento/Captcha/Model/Config/Form/Backend.php | 2 +- app/code/Magento/Captcha/Model/Config/Form/Frontend.php | 2 +- app/code/Magento/Captcha/Model/Config/Mode.php | 2 +- .../Magento/Captcha/Model/Customer/Plugin/AjaxLogin.php | 2 +- app/code/Magento/Captcha/Model/DefaultModel.php | 2 +- app/code/Magento/Captcha/Model/ResourceModel/Log.php | 2 +- app/code/Magento/Captcha/Observer/CaptchaStringResolver.php | 2 +- .../Magento/Captcha/Observer/CheckContactUsFormObserver.php | 2 +- .../Captcha/Observer/CheckForgotpasswordObserver.php | 2 +- .../Magento/Captcha/Observer/CheckGuestCheckoutObserver.php | 2 +- .../Captcha/Observer/CheckRegisterCheckoutObserver.php | 2 +- .../Magento/Captcha/Observer/CheckUserCreateObserver.php | 2 +- app/code/Magento/Captcha/Observer/CheckUserEditObserver.php | 2 +- .../Observer/CheckUserForgotPasswordBackendObserver.php | 2 +- .../Captcha/Observer/CheckUserLoginBackendObserver.php | 2 +- .../Magento/Captcha/Observer/CheckUserLoginObserver.php | 2 +- .../Captcha/Observer/ResetAttemptForBackendObserver.php | 2 +- .../Observer/ResetAttemptForFrontendAccountEditObserver.php | 2 +- .../Captcha/Observer/ResetAttemptForFrontendObserver.php | 2 +- app/code/Magento/Captcha/Setup/InstallSchema.php | 2 +- .../Captcha/Test/Unit/Controller/Refresh/IndexTest.php | 2 +- .../Captcha/Test/Unit/Cron/DeleteExpiredImagesTest.php | 2 +- .../Magento/Captcha/Test/Unit/Helper/Adminhtml/DataTest.php | 2 +- app/code/Magento/Captcha/Test/Unit/Helper/DataTest.php | 2 +- .../Magento/Captcha/Test/Unit/Model/CaptchaFactoryTest.php | 2 +- .../Captcha/Test/Unit/Model/Cart/ConfigPluginTest.php | 2 +- .../Captcha/Test/Unit/Model/Checkout/ConfigProviderTest.php | 2 +- .../Test/Unit/Model/Customer/Plugin/AjaxLoginTest.php | 2 +- app/code/Magento/Captcha/Test/Unit/Model/DefaultTest.php | 2 +- .../Test/Unit/Observer/CheckContactUsFormObserverTest.php | 2 +- .../Test/Unit/Observer/CheckForgotpasswordObserverTest.php | 2 +- .../Test/Unit/Observer/CheckUserCreateObserverTest.php | 2 +- .../Test/Unit/Observer/CheckUserEditObserverTest.php | 2 +- .../Test/Unit/Observer/CheckUserLoginObserverTest.php | 2 +- app/code/Magento/Captcha/etc/adminhtml/di.xml | 2 +- app/code/Magento/Captcha/etc/adminhtml/events.xml | 2 +- app/code/Magento/Captcha/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Captcha/etc/adminhtml/system.xml | 2 +- app/code/Magento/Captcha/etc/config.xml | 2 +- app/code/Magento/Captcha/etc/crontab.xml | 2 +- app/code/Magento/Captcha/etc/crontab/di.xml | 2 +- app/code/Magento/Captcha/etc/di.xml | 2 +- app/code/Magento/Captcha/etc/events.xml | 2 +- app/code/Magento/Captcha/etc/frontend/di.xml | 2 +- app/code/Magento/Captcha/etc/frontend/events.xml | 2 +- app/code/Magento/Captcha/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Captcha/etc/module.xml | 2 +- app/code/Magento/Captcha/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_auth_forgotpassword.xml | 2 +- .../Captcha/view/adminhtml/layout/adminhtml_auth_login.xml | 2 +- .../Magento/Captcha/view/adminhtml/templates/default.phtml | 2 +- .../Captcha/view/frontend/layout/checkout_index_index.xml | 2 +- .../Captcha/view/frontend/layout/contact_index_index.xml | 2 +- .../view/frontend/layout/customer_account_create.xml | 2 +- .../Captcha/view/frontend/layout/customer_account_edit.xml | 2 +- .../frontend/layout/customer_account_forgotpassword.xml | 2 +- .../Captcha/view/frontend/layout/customer_account_login.xml | 2 +- app/code/Magento/Captcha/view/frontend/layout/default.xml | 2 +- app/code/Magento/Captcha/view/frontend/requirejs-config.js | 4 ++-- .../Magento/Captcha/view/frontend/templates/default.phtml | 2 +- .../Captcha/view/frontend/templates/js/components.phtml | 2 +- app/code/Magento/Captcha/view/frontend/web/captcha.js | 4 ++-- .../Magento/Captcha/view/frontend/web/js/action/refresh.js | 2 +- .../Magento/Captcha/view/frontend/web/js/model/captcha.js | 2 +- .../Captcha/view/frontend/web/js/model/captchaList.js | 2 +- .../view/frontend/web/js/view/checkout/defaultCaptcha.js | 2 +- .../view/frontend/web/js/view/checkout/loginCaptcha.js | 2 +- app/code/Magento/Captcha/view/frontend/web/onepage.js | 4 ++-- .../view/frontend/web/template/checkout/captcha.html | 2 +- .../Magento/Catalog/Api/AttributeSetFinderInterface.php | 2 +- .../Magento/Catalog/Api/AttributeSetManagementInterface.php | 2 +- .../Magento/Catalog/Api/AttributeSetRepositoryInterface.php | 2 +- app/code/Magento/Catalog/Api/BasePriceStorageInterface.php | 2 +- .../Api/CategoryAttributeOptionManagementInterface.php | 2 +- .../Catalog/Api/CategoryAttributeRepositoryInterface.php | 2 +- .../Magento/Catalog/Api/CategoryLinkManagementInterface.php | 2 +- .../Magento/Catalog/Api/CategoryLinkRepositoryInterface.php | 2 +- app/code/Magento/Catalog/Api/CategoryListInterface.php | 2 +- .../Magento/Catalog/Api/CategoryManagementInterface.php | 2 +- .../Magento/Catalog/Api/CategoryRepositoryInterface.php | 2 +- app/code/Magento/Catalog/Api/CostStorageInterface.php | 2 +- app/code/Magento/Catalog/Api/Data/BasePriceInterface.php | 2 +- .../Magento/Catalog/Api/Data/CategoryAttributeInterface.php | 2 +- .../Api/Data/CategoryAttributeSearchResultsInterface.php | 2 +- app/code/Magento/Catalog/Api/Data/CategoryInterface.php | 2 +- app/code/Magento/Catalog/Api/Data/CategoryLinkInterface.php | 2 +- .../Catalog/Api/Data/CategoryProductLinkInterface.php | 2 +- .../Api/Data/CategoryProductSearchResultInterface.php | 2 +- .../Catalog/Api/Data/CategorySearchResultsInterface.php | 2 +- app/code/Magento/Catalog/Api/Data/CategoryTreeInterface.php | 2 +- app/code/Magento/Catalog/Api/Data/CostInterface.php | 2 +- app/code/Magento/Catalog/Api/Data/CustomOptionInterface.php | 2 +- app/code/Magento/Catalog/Api/Data/EavAttributeInterface.php | 2 +- .../Magento/Catalog/Api/Data/ProductAttributeInterface.php | 2 +- .../Api/Data/ProductAttributeMediaGalleryEntryInterface.php | 2 +- .../Api/Data/ProductAttributeSearchResultsInterface.php | 2 +- .../Catalog/Api/Data/ProductAttributeTypeInterface.php | 2 +- .../Catalog/Api/Data/ProductCustomOptionInterface.php | 2 +- .../Catalog/Api/Data/ProductCustomOptionTypeInterface.php | 2 +- .../Catalog/Api/Data/ProductCustomOptionValuesInterface.php | 2 +- app/code/Magento/Catalog/Api/Data/ProductInterface.php | 2 +- .../Catalog/Api/Data/ProductLinkAttributeInterface.php | 2 +- app/code/Magento/Catalog/Api/Data/ProductLinkInterface.php | 2 +- .../Magento/Catalog/Api/Data/ProductLinkTypeInterface.php | 2 +- .../Magento/Catalog/Api/Data/ProductOptionInterface.php | 2 +- .../Catalog/Api/Data/ProductSearchResultsInterface.php | 2 +- .../Magento/Catalog/Api/Data/ProductTierPriceInterface.php | 2 +- app/code/Magento/Catalog/Api/Data/ProductTypeInterface.php | 2 +- .../Catalog/Api/Data/ProductWebsiteLinkInterface.php | 2 +- app/code/Magento/Catalog/Api/Data/TierPriceInterface.php | 2 +- .../Api/ProductAttributeGroupRepositoryInterface.php | 2 +- .../Catalog/Api/ProductAttributeManagementInterface.php | 2 +- .../Api/ProductAttributeMediaGalleryManagementInterface.php | 2 +- .../Api/ProductAttributeOptionManagementInterface.php | 2 +- .../Catalog/Api/ProductAttributeRepositoryInterface.php | 2 +- .../Catalog/Api/ProductAttributeTypesListInterface.php | 2 +- .../Catalog/Api/ProductCustomOptionRepositoryInterface.php | 2 +- .../Catalog/Api/ProductCustomOptionTypeListInterface.php | 2 +- .../Magento/Catalog/Api/ProductLinkManagementInterface.php | 2 +- .../Magento/Catalog/Api/ProductLinkRepositoryInterface.php | 2 +- .../Magento/Catalog/Api/ProductLinkTypeListInterface.php | 2 +- app/code/Magento/Catalog/Api/ProductManagementInterface.php | 2 +- .../Api/ProductMediaAttributeManagementInterface.php | 2 +- app/code/Magento/Catalog/Api/ProductRepositoryInterface.php | 2 +- .../Catalog/Api/ProductTierPriceManagementInterface.php | 2 +- app/code/Magento/Catalog/Api/ProductTypeListInterface.php | 2 +- .../Catalog/Api/ProductWebsiteLinkRepositoryInterface.php | 2 +- .../Api/ScopedProductTierPriceManagementInterface.php | 2 +- app/code/Magento/Catalog/Api/TierPriceStorageInterface.php | 2 +- .../Catalog/Block/Adminhtml/Category/AbstractCategory.php | 2 +- .../Catalog/Block/Adminhtml/Category/AssignProducts.php | 2 +- .../Catalog/Block/Adminhtml/Category/Checkboxes/Tree.php | 2 +- app/code/Magento/Catalog/Block/Adminhtml/Category/Edit.php | 2 +- .../Catalog/Block/Adminhtml/Category/Edit/DeleteButton.php | 2 +- .../Catalog/Block/Adminhtml/Category/Edit/SaveButton.php | 2 +- .../Catalog/Block/Adminhtml/Category/Helper/Image.php | 2 +- .../Catalog/Block/Adminhtml/Category/Helper/Pricestep.php | 2 +- .../Block/Adminhtml/Category/Helper/Sortby/Available.php | 2 +- .../Adminhtml/Category/Helper/Sortby/DefaultSortby.php | 2 +- .../Catalog/Block/Adminhtml/Category/Tab/Product.php | 2 +- app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php | 2 +- .../Catalog/Block/Adminhtml/Category/Widget/Chooser.php | 2 +- app/code/Magento/Catalog/Block/Adminhtml/Form.php | 2 +- .../Adminhtml/Form/Renderer/Config/DateFieldsOrder.php | 2 +- .../Block/Adminhtml/Form/Renderer/Config/YearRange.php | 2 +- .../Block/Adminhtml/Form/Renderer/Fieldset/Element.php | 2 +- .../Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg.php | 2 +- .../Catalog/Block/Adminhtml/Helper/Form/Wysiwyg/Content.php | 2 +- app/code/Magento/Catalog/Block/Adminhtml/Product.php | 2 +- .../Magento/Catalog/Block/Adminhtml/Product/Attribute.php | 2 +- .../Block/Adminhtml/Product/Attribute/Button/Cancel.php | 2 +- .../Block/Adminhtml/Product/Attribute/Button/Generic.php | 2 +- .../Block/Adminhtml/Product/Attribute/Button/Save.php | 2 +- .../Product/Attribute/Button/SaveInNewAttributeSet.php | 2 +- .../Catalog/Block/Adminhtml/Product/Attribute/Edit.php | 2 +- .../Catalog/Block/Adminhtml/Product/Attribute/Edit/Form.php | 2 +- .../Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php | 2 +- .../Block/Adminhtml/Product/Attribute/Edit/Tab/Front.php | 2 +- .../Block/Adminhtml/Product/Attribute/Edit/Tab/Main.php | 2 +- .../Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php | 2 +- .../Block/Adminhtml/Product/Attribute/Edit/Tab/System.php | 2 +- .../Catalog/Block/Adminhtml/Product/Attribute/Edit/Tabs.php | 2 +- .../Catalog/Block/Adminhtml/Product/Attribute/Grid.php | 2 +- .../Product/Attribute/NewAttribute/Product/Attributes.php | 2 +- .../Catalog/Block/Adminhtml/Product/Attribute/Set/Main.php | 2 +- .../Adminhtml/Product/Attribute/Set/Main/Formattribute.php | 2 +- .../Adminhtml/Product/Attribute/Set/Main/Formgroup.php | 2 +- .../Block/Adminhtml/Product/Attribute/Set/Main/Formset.php | 2 +- .../Adminhtml/Product/Attribute/Set/Main/Tree/Attribute.php | 2 +- .../Adminhtml/Product/Attribute/Set/Main/Tree/Group.php | 2 +- .../Block/Adminhtml/Product/Attribute/Set/Toolbar/Add.php | 2 +- .../Block/Adminhtml/Product/Attribute/Set/Toolbar/Main.php | 2 +- .../Adminhtml/Product/Attribute/Set/Toolbar/Main/Filter.php | 2 +- .../Catalog/Block/Adminhtml/Product/Composite/Configure.php | 2 +- .../Catalog/Block/Adminhtml/Product/Composite/Error.php | 2 +- .../Catalog/Block/Adminhtml/Product/Composite/Fieldset.php | 2 +- .../Block/Adminhtml/Product/Composite/Fieldset/Options.php | 2 +- .../Block/Adminhtml/Product/Composite/Fieldset/Qty.php | 2 +- .../Block/Adminhtml/Product/Composite/Update/Result.php | 2 +- app/code/Magento/Catalog/Block/Adminhtml/Product/Edit.php | 2 +- .../Block/Adminhtml/Product/Edit/Action/Attribute.php | 2 +- .../Product/Edit/Action/Attribute/Tab/Attributes.php | 2 +- .../Product/Edit/Action/Attribute/Tab/Inventory.php | 2 +- .../Product/Edit/Action/Attribute/Tab/Websites.php | 2 +- .../Block/Adminhtml/Product/Edit/Action/Attribute/Tabs.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/AttributeSet.php | 2 +- .../Block/Adminhtml/Product/Edit/Button/AddAttribute.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Button/Back.php | 2 +- .../Block/Adminhtml/Product/Edit/Button/CreateCategory.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Button/Generic.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Button/Save.php | 2 +- .../Magento/Catalog/Block/Adminhtml/Product/Edit/Js.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/NewCategory.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Ajax/Serializer.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Alerts/Price.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Alerts/Stock.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Attributes/Create.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Attributes/Search.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/ChildTab.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/Crosssell.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/Inventory.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/Options.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Options/Option.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Options/Popup/Grid.php | 2 +- .../Product/Edit/Tab/Options/Type/AbstractType.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Options/Type/Date.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Options/Type/File.php | 2 +- .../Adminhtml/Product/Edit/Tab/Options/Type/Select.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Options/Type/Text.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/Price.php | 2 +- .../Product/Edit/Tab/Price/Group/AbstractGroup.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Tier.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/Related.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/Upsell.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/Websites.php | 2 +- .../Magento/Catalog/Block/Adminhtml/Product/Edit/Tabs.php | 2 +- .../Block/Adminhtml/Product/Frontend/Product/Watermark.php | 2 +- app/code/Magento/Catalog/Block/Adminhtml/Product/Grid.php | 2 +- .../Catalog/Block/Adminhtml/Product/Helper/Form/Apply.php | 2 +- .../Catalog/Block/Adminhtml/Product/Helper/Form/Boolean.php | 2 +- .../Block/Adminhtml/Product/Helper/Form/Category.php | 2 +- .../Catalog/Block/Adminhtml/Product/Helper/Form/Config.php | 2 +- .../Catalog/Block/Adminhtml/Product/Helper/Form/Gallery.php | 2 +- .../Block/Adminhtml/Product/Helper/Form/Gallery/Content.php | 2 +- .../Catalog/Block/Adminhtml/Product/Helper/Form/Image.php | 2 +- .../Catalog/Block/Adminhtml/Product/Helper/Form/Price.php | 2 +- .../Catalog/Block/Adminhtml/Product/Helper/Form/Weight.php | 2 +- .../Catalog/Block/Adminhtml/Product/Options/Ajax.php | 2 +- app/code/Magento/Catalog/Block/Adminhtml/Product/Price.php | 2 +- .../Catalog/Block/Adminhtml/Product/Widget/Chooser.php | 2 +- .../Block/Adminhtml/Product/Widget/Chooser/Container.php | 2 +- app/code/Magento/Catalog/Block/Adminhtml/Rss/Grid/Link.php | 2 +- .../Magento/Catalog/Block/Adminhtml/Rss/NotifyStock.php | 2 +- app/code/Magento/Catalog/Block/Breadcrumbs.php | 2 +- .../Magento/Catalog/Block/Category/Plugin/PriceBoxTags.php | 2 +- app/code/Magento/Catalog/Block/Category/Rss/Link.php | 2 +- app/code/Magento/Catalog/Block/Category/View.php | 2 +- app/code/Magento/Catalog/Block/Navigation.php | 2 +- app/code/Magento/Catalog/Block/Product/AbstractProduct.php | 2 +- app/code/Magento/Catalog/Block/Product/AwareInterface.php | 2 +- .../Magento/Catalog/Block/Product/Compare/ListCompare.php | 2 +- app/code/Magento/Catalog/Block/Product/Context.php | 2 +- app/code/Magento/Catalog/Block/Product/Gallery.php | 2 +- app/code/Magento/Catalog/Block/Product/Image.php | 2 +- app/code/Magento/Catalog/Block/Product/ImageBuilder.php | 2 +- app/code/Magento/Catalog/Block/Product/ListProduct.php | 2 +- app/code/Magento/Catalog/Block/Product/NewProduct.php | 2 +- app/code/Magento/Catalog/Block/Product/Price.php | 2 +- .../Magento/Catalog/Block/Product/ProductList/Crosssell.php | 2 +- .../Block/Product/ProductList/Item/AddTo/Compare.php | 2 +- .../Catalog/Block/Product/ProductList/Item/Block.php | 2 +- .../Catalog/Block/Product/ProductList/Item/Container.php | 2 +- .../Magento/Catalog/Block/Product/ProductList/Promotion.php | 2 +- .../Magento/Catalog/Block/Product/ProductList/Random.php | 2 +- .../Magento/Catalog/Block/Product/ProductList/Related.php | 2 +- .../Magento/Catalog/Block/Product/ProductList/Toolbar.php | 2 +- .../Magento/Catalog/Block/Product/ProductList/Upsell.php | 2 +- .../Block/Product/ReviewRenderer/DefaultProvider.php | 2 +- .../Catalog/Block/Product/ReviewRendererInterface.php | 2 +- app/code/Magento/Catalog/Block/Product/TemplateSelector.php | 2 +- app/code/Magento/Catalog/Block/Product/View.php | 2 +- .../Magento/Catalog/Block/Product/View/AbstractView.php | 2 +- .../Magento/Catalog/Block/Product/View/AddTo/Compare.php | 2 +- app/code/Magento/Catalog/Block/Product/View/Additional.php | 2 +- app/code/Magento/Catalog/Block/Product/View/Attributes.php | 2 +- app/code/Magento/Catalog/Block/Product/View/BaseImage.php | 2 +- app/code/Magento/Catalog/Block/Product/View/Description.php | 2 +- app/code/Magento/Catalog/Block/Product/View/Gallery.php | 2 +- app/code/Magento/Catalog/Block/Product/View/Options.php | 2 +- .../Catalog/Block/Product/View/Options/AbstractOptions.php | 2 +- .../Catalog/Block/Product/View/Options/Type/Date.php | 2 +- .../Catalog/Block/Product/View/Options/Type/DefaultType.php | 2 +- .../Catalog/Block/Product/View/Options/Type/File.php | 2 +- .../Catalog/Block/Product/View/Options/Type/Select.php | 2 +- .../Catalog/Block/Product/View/Options/Type/Text.php | 2 +- app/code/Magento/Catalog/Block/Product/View/Price.php | 2 +- app/code/Magento/Catalog/Block/Product/View/Tabs.php | 2 +- app/code/Magento/Catalog/Block/Product/View/Type/Simple.php | 2 +- .../Magento/Catalog/Block/Product/View/Type/Virtual.php | 2 +- .../Magento/Catalog/Block/Product/Widget/Html/Pager.php | 2 +- app/code/Magento/Catalog/Block/Product/Widget/NewWidget.php | 2 +- app/code/Magento/Catalog/Block/Rss/Category.php | 2 +- app/code/Magento/Catalog/Block/Rss/Product/NewProducts.php | 2 +- app/code/Magento/Catalog/Block/Rss/Product/Special.php | 2 +- app/code/Magento/Catalog/Block/ShortcutButtons.php | 2 +- app/code/Magento/Catalog/Block/ShortcutInterface.php | 2 +- app/code/Magento/Catalog/Block/Widget/Link.php | 2 +- .../Magento/Catalog/Console/Command/ImagesResizeCommand.php | 2 +- .../Catalog/Console/Command/ProductAttributesCleanUp.php | 2 +- app/code/Magento/Catalog/Controller/Adminhtml/Category.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Category/Add.php | 2 +- .../Controller/Adminhtml/Category/CategoriesJson.php | 2 +- .../Catalog/Controller/Adminhtml/Category/Delete.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Category/Edit.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Category/Grid.php | 2 +- .../Catalog/Controller/Adminhtml/Category/Image/Upload.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Category/Index.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Category/Move.php | 2 +- .../Catalog/Controller/Adminhtml/Category/RefreshPath.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Category/Save.php | 2 +- .../Controller/Adminhtml/Category/SuggestCategories.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Category/Tree.php | 2 +- .../Catalog/Controller/Adminhtml/Category/Validate.php | 2 +- .../Catalog/Controller/Adminhtml/Category/Widget.php | 2 +- .../Controller/Adminhtml/Category/Widget/CategoriesJson.php | 2 +- .../Controller/Adminhtml/Category/Widget/Chooser.php | 2 +- .../Catalog/Controller/Adminhtml/Category/Wysiwyg.php | 2 +- app/code/Magento/Catalog/Controller/Adminhtml/Product.php | 2 +- .../Controller/Adminhtml/Product/AbstractProductGrid.php | 2 +- .../Controller/Adminhtml/Product/Action/Attribute.php | 2 +- .../Controller/Adminhtml/Product/Action/Attribute/Edit.php | 2 +- .../Controller/Adminhtml/Product/Action/Attribute/Save.php | 2 +- .../Adminhtml/Product/Action/Attribute/Validate.php | 2 +- .../Controller/Adminhtml/Product/AddAttributeToTemplate.php | 2 +- .../Controller/Adminhtml/Product/AlertsPriceGrid.php | 2 +- .../Controller/Adminhtml/Product/AlertsStockGrid.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Attribute.php | 2 +- .../Controller/Adminhtml/Product/Attribute/Delete.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Attribute/Edit.php | 2 +- .../Controller/Adminhtml/Product/Attribute/Index.php | 2 +- .../Controller/Adminhtml/Product/Attribute/NewAction.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Attribute/Save.php | 2 +- .../Controller/Adminhtml/Product/Attribute/Validate.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Builder.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Categories.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Crosssell.php | 2 +- .../Catalog/Controller/Adminhtml/Product/CrosssellGrid.php | 2 +- .../Catalog/Controller/Adminhtml/Product/CustomOptions.php | 2 +- .../Controller/Adminhtml/Product/Datafeeds/Index.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Duplicate.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Product/Edit.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Gallery/Upload.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Product/Grid.php | 2 +- .../Catalog/Controller/Adminhtml/Product/GridOnly.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Group/Save.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Product/Index.php | 2 +- .../Controller/Adminhtml/Product/Initialization/Helper.php | 2 +- .../Product/Initialization/Helper/HandlerFactory.php | 2 +- .../Product/Initialization/Helper/HandlerInterface.php | 2 +- .../Initialization/Helper/Plugin/Handler/Composite.php | 2 +- .../Adminhtml/Product/Initialization/StockDataFilter.php | 2 +- .../Catalog/Controller/Adminhtml/Product/MassDelete.php | 2 +- .../Catalog/Controller/Adminhtml/Product/MassStatus.php | 2 +- .../Catalog/Controller/Adminhtml/Product/NewAction.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Options.php | 2 +- .../Controller/Adminhtml/Product/OptionsImportGrid.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Related.php | 2 +- .../Catalog/Controller/Adminhtml/Product/RelatedGrid.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Product/Reload.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Product/Save.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Product/Set.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Set/Add.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Set/Delete.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Set/Edit.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Set/Index.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Set/Save.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Set/SetGrid.php | 2 +- .../Controller/Adminhtml/Product/ShowUpdateResult.php | 2 +- .../Controller/Adminhtml/Product/SuggestAttributeSets.php | 2 +- .../Controller/Adminhtml/Product/SuggestAttributes.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/Product/Upsell.php | 2 +- .../Catalog/Controller/Adminhtml/Product/UpsellGrid.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Validate.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Widget/Chooser.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Wysiwyg.php | 2 +- app/code/Magento/Catalog/Controller/Category/View.php | 2 +- app/code/Magento/Catalog/Controller/Index/Index.php | 2 +- app/code/Magento/Catalog/Controller/Product.php | 2 +- app/code/Magento/Catalog/Controller/Product/Compare.php | 2 +- app/code/Magento/Catalog/Controller/Product/Compare/Add.php | 2 +- .../Magento/Catalog/Controller/Product/Compare/Clear.php | 2 +- .../Magento/Catalog/Controller/Product/Compare/Index.php | 2 +- .../Magento/Catalog/Controller/Product/Compare/Remove.php | 2 +- app/code/Magento/Catalog/Controller/Product/Gallery.php | 2 +- app/code/Magento/Catalog/Controller/Product/View.php | 2 +- .../Catalog/Controller/Product/View/ViewInterface.php | 2 +- .../Magento/Catalog/Cron/DeleteAbandonedStoreFlatTables.php | 2 +- app/code/Magento/Catalog/Cron/RefreshSpecialPrices.php | 2 +- app/code/Magento/Catalog/CustomerData/CompareProducts.php | 2 +- app/code/Magento/Catalog/Helper/Catalog.php | 2 +- app/code/Magento/Catalog/Helper/Category.php | 2 +- app/code/Magento/Catalog/Helper/Data.php | 2 +- app/code/Magento/Catalog/Helper/DefaultCategory.php | 2 +- app/code/Magento/Catalog/Helper/Image.php | 2 +- app/code/Magento/Catalog/Helper/Output.php | 2 +- app/code/Magento/Catalog/Helper/Product.php | 2 +- app/code/Magento/Catalog/Helper/Product/Compare.php | 2 +- app/code/Magento/Catalog/Helper/Product/Composite.php | 2 +- app/code/Magento/Catalog/Helper/Product/Configuration.php | 2 +- .../Helper/Product/Configuration/ConfigurationInterface.php | 2 +- .../Magento/Catalog/Helper/Product/ConfigurationPool.php | 2 +- .../Catalog/Helper/Product/Edit/Action/Attribute.php | 2 +- app/code/Magento/Catalog/Helper/Product/Flat/Indexer.php | 2 +- app/code/Magento/Catalog/Helper/Product/ProductList.php | 2 +- app/code/Magento/Catalog/Helper/Product/View.php | 2 +- app/code/Magento/Catalog/Model/AbstractModel.php | 2 +- .../FilterProcessor/ProductCategoryFilter.php | 2 +- .../Catalog/Model/Attribute/Backend/Customlayoutupdate.php | 2 +- .../Magento/Catalog/Model/Attribute/Backend/Startdate.php | 2 +- app/code/Magento/Catalog/Model/Attribute/Config.php | 2 +- .../Magento/Catalog/Model/Attribute/Config/Converter.php | 2 +- app/code/Magento/Catalog/Model/Attribute/Config/Data.php | 2 +- app/code/Magento/Catalog/Model/Attribute/Config/Reader.php | 2 +- .../Catalog/Model/Attribute/Config/SchemaLocator.php | 2 +- .../Catalog/Model/Attribute/LockValidatorComposite.php | 2 +- .../Catalog/Model/Attribute/LockValidatorInterface.php | 2 +- .../Catalog/Model/Attribute/ScopeOverriddenValue.php | 2 +- app/code/Magento/Catalog/Model/Attribute/Source/Scopes.php | 2 +- app/code/Magento/Catalog/Model/Category.php | 2 +- app/code/Magento/Catalog/Model/Category/Attribute.php | 2 +- .../Catalog/Model/Category/Attribute/Backend/Image.php | 2 +- .../Catalog/Model/Category/Attribute/Backend/Sortby.php | 2 +- .../Catalog/Model/Category/Attribute/OptionManagement.php | 2 +- .../Catalog/Model/Category/Attribute/Source/Layout.php | 2 +- .../Catalog/Model/Category/Attribute/Source/Mode.php | 2 +- .../Catalog/Model/Category/Attribute/Source/Page.php | 2 +- .../Catalog/Model/Category/Attribute/Source/Sortby.php | 2 +- .../Magento/Catalog/Model/Category/AttributeRepository.php | 2 +- app/code/Magento/Catalog/Model/Category/DataProvider.php | 2 +- app/code/Magento/Catalog/Model/Category/FileInfo.php | 2 +- .../Magento/Catalog/Model/Category/Link/ReadHandler.php | 2 +- .../Magento/Catalog/Model/Category/Link/SaveHandler.php | 2 +- app/code/Magento/Catalog/Model/Category/Tree.php | 2 +- app/code/Magento/Catalog/Model/CategoryLink.php | 2 +- app/code/Magento/Catalog/Model/CategoryLinkManagement.php | 2 +- app/code/Magento/Catalog/Model/CategoryLinkRepository.php | 2 +- app/code/Magento/Catalog/Model/CategoryList.php | 2 +- app/code/Magento/Catalog/Model/CategoryManagement.php | 2 +- app/code/Magento/Catalog/Model/CategoryProductLink.php | 2 +- app/code/Magento/Catalog/Model/CategoryRepository.php | 2 +- app/code/Magento/Catalog/Model/Config.php | 2 +- app/code/Magento/Catalog/Model/Config/Backend/Category.php | 2 +- .../Catalog/Model/Config/CatalogClone/Media/Image.php | 2 +- app/code/Magento/Catalog/Model/Config/Source/Category.php | 2 +- .../Magento/Catalog/Model/Config/Source/GridPerPage.php | 2 +- app/code/Magento/Catalog/Model/Config/Source/ListMode.php | 2 +- .../Magento/Catalog/Model/Config/Source/ListPerPage.php | 2 +- app/code/Magento/Catalog/Model/Config/Source/ListSort.php | 2 +- .../Magento/Catalog/Model/Config/Source/Price/Scope.php | 2 +- app/code/Magento/Catalog/Model/Config/Source/Price/Step.php | 2 +- .../Catalog/Model/Config/Source/Product/Options/Price.php | 2 +- .../Model/Config/Source/Product/Options/TierPrice.php | 2 +- .../Catalog/Model/Config/Source/Product/Options/Type.php | 2 +- .../Catalog/Model/Config/Source/Product/Thumbnail.php | 2 +- .../Model/Config/Source/ProductPriceOptionsInterface.php | 2 +- app/code/Magento/Catalog/Model/Config/Source/TimeFormat.php | 2 +- .../Catalog/Model/Config/Source/Watermark/Position.php | 2 +- .../Magento/Catalog/Model/CustomOptions/CustomOption.php | 2 +- .../Catalog/Model/CustomOptions/CustomOptionProcessor.php | 2 +- app/code/Magento/Catalog/Model/Design.php | 2 +- app/code/Magento/Catalog/Model/Entity/Attribute.php | 2 +- .../Entity/Product/Attribute/Design/Options/Container.php | 2 +- .../Entity/Product/Attribute/Group/AttributeMapper.php | 2 +- .../Product/Attribute/Group/AttributeMapperInterface.php | 2 +- app/code/Magento/Catalog/Model/EntityInterface.php | 2 +- app/code/Magento/Catalog/Model/Factory.php | 2 +- app/code/Magento/Catalog/Model/ImageExtractor.php | 2 +- app/code/Magento/Catalog/Model/ImageUploader.php | 2 +- .../Magento/Catalog/Model/Indexer/AbstractFlatState.php | 2 +- app/code/Magento/Catalog/Model/Indexer/Category/Flat.php | 2 +- .../Catalog/Model/Indexer/Category/Flat/AbstractAction.php | 2 +- .../Catalog/Model/Indexer/Category/Flat/Action/Full.php | 2 +- .../Catalog/Model/Indexer/Category/Flat/Action/Rows.php | 2 +- .../Indexer/Category/Flat/Plugin/IndexerConfigData.php | 2 +- .../Model/Indexer/Category/Flat/Plugin/StoreGroup.php | 2 +- .../Model/Indexer/Category/Flat/Plugin/StoreView.php | 2 +- .../Indexer/Category/Flat/SkipStaticColumnsProvider.php | 2 +- .../Magento/Catalog/Model/Indexer/Category/Flat/State.php | 2 +- .../Model/Indexer/Category/Flat/System/Config/Mode.php | 2 +- app/code/Magento/Catalog/Model/Indexer/Category/Product.php | 2 +- .../Model/Indexer/Category/Product/AbstractAction.php | 2 +- .../Catalog/Model/Indexer/Category/Product/Action/Full.php | 2 +- .../Catalog/Model/Indexer/Category/Product/Action/Rows.php | 2 +- .../Model/Indexer/Category/Product/Action/RowsFactory.php | 2 +- .../Model/Indexer/Category/Product/Plugin/MviewState.php | 2 +- .../Model/Indexer/Category/Product/Plugin/StoreGroup.php | 2 +- .../Model/Indexer/Category/Product/Plugin/StoreView.php | 2 +- .../Catalog/Model/Indexer/Category/Product/Processor.php | 2 +- app/code/Magento/Catalog/Model/Indexer/Product/Category.php | 2 +- .../Catalog/Model/Indexer/Product/Category/Action/Rows.php | 2 +- .../Model/Indexer/Product/Category/Action/RowsFactory.php | 2 +- .../Catalog/Model/Indexer/Product/Category/Processor.php | 2 +- app/code/Magento/Catalog/Model/Indexer/Product/Eav.php | 2 +- .../Catalog/Model/Indexer/Product/Eav/AbstractAction.php | 2 +- .../Catalog/Model/Indexer/Product/Eav/Action/Full.php | 2 +- .../Catalog/Model/Indexer/Product/Eav/Action/Row.php | 2 +- .../Catalog/Model/Indexer/Product/Eav/Action/Rows.php | 2 +- .../Model/Indexer/Product/Eav/Plugin/AttributeSet.php | 2 +- .../Eav/Plugin/AttributeSet/IndexableAttributeFilter.php | 2 +- .../Catalog/Model/Indexer/Product/Eav/Plugin/StoreView.php | 2 +- .../Magento/Catalog/Model/Indexer/Product/Eav/Processor.php | 2 +- app/code/Magento/Catalog/Model/Indexer/Product/Flat.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/AbstractAction.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/Action/Eraser.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/Action/Full.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/Action/Indexer.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/Action/Row.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/Action/Rows.php | 2 +- .../Model/Indexer/Product/Flat/Action/Rows/TableData.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/FlatTableBuilder.php | 2 +- .../Model/Indexer/Product/Flat/Plugin/IndexerConfigData.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/Plugin/Store.php | 2 +- .../Model/Indexer/Product/Flat/Plugin/StoreGroup.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/Processor.php | 2 +- .../Magento/Catalog/Model/Indexer/Product/Flat/State.php | 2 +- .../Model/Indexer/Product/Flat/System/Config/Mode.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/Table/Builder.php | 2 +- .../Model/Indexer/Product/Flat/Table/BuilderInterface.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/TableBuilder.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/TableData.php | 2 +- .../Model/Indexer/Product/Flat/TableDataInterface.php | 2 +- app/code/Magento/Catalog/Model/Indexer/Product/Price.php | 2 +- .../Catalog/Model/Indexer/Product/Price/AbstractAction.php | 2 +- .../Catalog/Model/Indexer/Product/Price/Action/Full.php | 2 +- .../Catalog/Model/Indexer/Product/Price/Action/Row.php | 2 +- .../Catalog/Model/Indexer/Product/Price/Action/Rows.php | 2 +- .../Model/Indexer/Product/Price/Plugin/AbstractPlugin.php | 2 +- .../Model/Indexer/Product/Price/Plugin/CustomerGroup.php | 2 +- .../Catalog/Model/Indexer/Product/Price/Plugin/Website.php | 2 +- .../Catalog/Model/Indexer/Product/Price/Processor.php | 2 +- .../Indexer/Product/Price/System/Config/PriceScope.php | 2 +- app/code/Magento/Catalog/Model/Layer.php | 2 +- .../Catalog/Model/Layer/AvailabilityFlagInterface.php | 2 +- app/code/Magento/Catalog/Model/Layer/Category.php | 2 +- .../Catalog/Model/Layer/Category/AvailabilityFlag.php | 2 +- .../Catalog/Model/Layer/Category/CollectionFilter.php | 2 +- .../Model/Layer/Category/FilterableAttributeList.php | 2 +- .../Catalog/Model/Layer/Category/ItemCollectionProvider.php | 2 +- app/code/Magento/Catalog/Model/Layer/Category/StateKey.php | 2 +- .../Catalog/Model/Layer/CollectionFilterInterface.php | 2 +- app/code/Magento/Catalog/Model/Layer/Context.php | 2 +- app/code/Magento/Catalog/Model/Layer/ContextInterface.php | 2 +- .../Magento/Catalog/Model/Layer/Filter/AbstractFilter.php | 2 +- app/code/Magento/Catalog/Model/Layer/Filter/Attribute.php | 2 +- app/code/Magento/Catalog/Model/Layer/Filter/Category.php | 2 +- .../Catalog/Model/Layer/Filter/DataProvider/Category.php | 2 +- .../Catalog/Model/Layer/Filter/DataProvider/Decimal.php | 2 +- .../Catalog/Model/Layer/Filter/DataProvider/Price.php | 2 +- app/code/Magento/Catalog/Model/Layer/Filter/Decimal.php | 2 +- .../Catalog/Model/Layer/Filter/Dynamic/AlgorithmFactory.php | 2 +- .../Model/Layer/Filter/Dynamic/AlgorithmInterface.php | 2 +- .../Magento/Catalog/Model/Layer/Filter/Dynamic/Auto.php | 2 +- .../Magento/Catalog/Model/Layer/Filter/Dynamic/Improved.php | 2 +- .../Magento/Catalog/Model/Layer/Filter/Dynamic/Manual.php | 2 +- app/code/Magento/Catalog/Model/Layer/Filter/Factory.php | 2 +- .../Magento/Catalog/Model/Layer/Filter/FilterInterface.php | 2 +- app/code/Magento/Catalog/Model/Layer/Filter/Item.php | 2 +- .../Magento/Catalog/Model/Layer/Filter/Item/DataBuilder.php | 2 +- app/code/Magento/Catalog/Model/Layer/Filter/Price.php | 2 +- app/code/Magento/Catalog/Model/Layer/Filter/Price/Range.php | 2 +- .../Magento/Catalog/Model/Layer/Filter/Price/Render.php | 2 +- app/code/Magento/Catalog/Model/Layer/FilterList.php | 2 +- .../Model/Layer/FilterableAttributeListInterface.php | 2 +- .../Catalog/Model/Layer/ItemCollectionProviderInterface.php | 2 +- app/code/Magento/Catalog/Model/Layer/Resolver.php | 2 +- app/code/Magento/Catalog/Model/Layer/Search.php | 2 +- .../Magento/Catalog/Model/Layer/Search/CollectionFilter.php | 2 +- .../Magento/Catalog/Model/Layer/Search/Filter/Attribute.php | 2 +- .../Catalog/Model/Layer/Search/FilterableAttributeList.php | 2 +- .../Catalog/Model/Layer/Search/ItemCollectionProvider.php | 2 +- app/code/Magento/Catalog/Model/Layer/State.php | 2 +- app/code/Magento/Catalog/Model/Layer/StateKeyInterface.php | 2 +- .../Magento/Catalog/Model/Layout/DepersonalizePlugin.php | 2 +- app/code/Magento/Catalog/Model/Locator/LocatorInterface.php | 2 +- app/code/Magento/Catalog/Model/Locator/RegistryLocator.php | 2 +- app/code/Magento/Catalog/Model/Plugin/Log.php | 2 +- .../Model/Plugin/ProductRepository/TransactionWrapper.php | 2 +- .../Magento/Catalog/Model/Plugin/QuoteItemProductOption.php | 2 +- .../Magento/Catalog/Model/Plugin/ShowOutOfStockConfig.php | 2 +- app/code/Magento/Catalog/Model/Product.php | 2 +- app/code/Magento/Catalog/Model/Product/Action.php | 2 +- .../Catalog/Model/Product/Attribute/AttributeSetFinder.php | 2 +- .../Catalog/Model/Product/Attribute/Backend/Boolean.php | 2 +- .../Catalog/Model/Product/Attribute/Backend/Category.php | 2 +- .../Attribute/Backend/GroupPrice/AbstractGroupPrice.php | 2 +- .../Attribute/Backend/Media/EntryConverterInterface.php | 2 +- .../Product/Attribute/Backend/Media/EntryConverterPool.php | 2 +- .../Product/Attribute/Backend/Media/ImageEntryConverter.php | 2 +- .../Catalog/Model/Product/Attribute/Backend/Price.php | 2 +- .../Magento/Catalog/Model/Product/Attribute/Backend/Sku.php | 2 +- .../Catalog/Model/Product/Attribute/Backend/Stock.php | 2 +- .../Catalog/Model/Product/Attribute/Backend/Tierprice.php | 2 +- .../Catalog/Model/Product/Attribute/Backend/Weight.php | 2 +- .../Catalog/Model/Product/Attribute/DataProvider.php | 2 +- .../Catalog/Model/Product/Attribute/DefaultAttributes.php | 2 +- .../Catalog/Model/Product/Attribute/Frontend/Image.php | 2 +- app/code/Magento/Catalog/Model/Product/Attribute/Group.php | 2 +- .../Magento/Catalog/Model/Product/Attribute/Management.php | 2 +- .../Catalog/Model/Product/Attribute/OptionManagement.php | 2 +- .../Magento/Catalog/Model/Product/Attribute/Repository.php | 2 +- .../Catalog/Model/Product/Attribute/SetManagement.php | 2 +- .../Catalog/Model/Product/Attribute/SetRepository.php | 2 +- .../Catalog/Model/Product/Attribute/Source/Boolean.php | 2 +- .../Model/Product/Attribute/Source/Countryofmanufacture.php | 2 +- .../Catalog/Model/Product/Attribute/Source/Inputtype.php | 2 +- .../Catalog/Model/Product/Attribute/Source/Layout.php | 2 +- .../Catalog/Model/Product/Attribute/Source/Status.php | 2 +- app/code/Magento/Catalog/Model/Product/Attribute/Type.php | 2 +- .../Magento/Catalog/Model/Product/Attribute/TypesList.php | 2 +- .../Magento/Catalog/Model/Product/AttributeSet/Build.php | 2 +- .../Magento/Catalog/Model/Product/AttributeSet/Options.php | 2 +- .../Catalog/Model/Product/AttributeSet/SuggestedSet.php | 2 +- .../Magento/Catalog/Model/Product/CartConfiguration.php | 2 +- app/code/Magento/Catalog/Model/Product/CatalogPrice.php | 2 +- .../Magento/Catalog/Model/Product/CatalogPriceFactory.php | 2 +- .../Magento/Catalog/Model/Product/CatalogPriceInterface.php | 2 +- app/code/Magento/Catalog/Model/Product/Compare/Item.php | 2 +- .../Magento/Catalog/Model/Product/Compare/ListCompare.php | 2 +- app/code/Magento/Catalog/Model/Product/Condition.php | 2 +- .../Catalog/Model/Product/Condition/ConditionInterface.php | 2 +- .../Model/Product/Configuration/Item/ItemInterface.php | 2 +- .../Catalog/Model/Product/Configuration/Item/Option.php | 2 +- .../Product/Configuration/Item/Option/OptionInterface.php | 2 +- app/code/Magento/Catalog/Model/Product/Copier.php | 2 +- .../Catalog/Model/Product/CopyConstructor/Composite.php | 2 +- .../Catalog/Model/Product/CopyConstructor/CrossSell.php | 2 +- .../Catalog/Model/Product/CopyConstructor/Related.php | 2 +- .../Catalog/Model/Product/CopyConstructor/UpSell.php | 2 +- .../Catalog/Model/Product/CopyConstructorFactory.php | 2 +- .../Catalog/Model/Product/CopyConstructorInterface.php | 2 +- .../Magento/Catalog/Model/Product/Edit/WeightResolver.php | 2 +- app/code/Magento/Catalog/Model/Product/Exception.php | 2 +- .../Magento/Catalog/Model/Product/Gallery/CreateHandler.php | 2 +- app/code/Magento/Catalog/Model/Product/Gallery/Entry.php | 2 +- .../Magento/Catalog/Model/Product/Gallery/EntryResolver.php | 2 +- .../Catalog/Model/Product/Gallery/GalleryManagement.php | 2 +- .../Catalog/Model/Product/Gallery/MimeTypeExtensionMap.php | 2 +- .../Magento/Catalog/Model/Product/Gallery/Processor.php | 2 +- .../Magento/Catalog/Model/Product/Gallery/ReadHandler.php | 2 +- .../Magento/Catalog/Model/Product/Gallery/UpdateHandler.php | 2 +- app/code/Magento/Catalog/Model/Product/Image.php | 2 +- app/code/Magento/Catalog/Model/Product/Image/Cache.php | 2 +- .../Model/Product/Initialization/Helper/ProductLinks.php | 2 +- app/code/Magento/Catalog/Model/Product/Link.php | 2 +- app/code/Magento/Catalog/Model/Product/Link/Converter.php | 2 +- app/code/Magento/Catalog/Model/Product/Link/Resolver.php | 2 +- app/code/Magento/Catalog/Model/Product/Link/SaveHandler.php | 2 +- app/code/Magento/Catalog/Model/Product/LinkTypeProvider.php | 2 +- .../Catalog/Model/Product/Media/AttributeManagement.php | 2 +- app/code/Magento/Catalog/Model/Product/Media/Config.php | 2 +- .../Magento/Catalog/Model/Product/Media/ConfigInterface.php | 2 +- app/code/Magento/Catalog/Model/Product/Option.php | 2 +- app/code/Magento/Catalog/Model/Product/Option/Converter.php | 2 +- .../Magento/Catalog/Model/Product/Option/ReadHandler.php | 2 +- .../Magento/Catalog/Model/Product/Option/Repository.php | 2 +- .../Magento/Catalog/Model/Product/Option/SaveHandler.php | 2 +- app/code/Magento/Catalog/Model/Product/Option/Type.php | 2 +- app/code/Magento/Catalog/Model/Product/Option/Type/Date.php | 2 +- .../Catalog/Model/Product/Option/Type/DefaultType.php | 2 +- .../Magento/Catalog/Model/Product/Option/Type/Factory.php | 2 +- app/code/Magento/Catalog/Model/Product/Option/Type/File.php | 2 +- .../Model/Product/Option/Type/File/ValidateFactory.php | 2 +- .../Catalog/Model/Product/Option/Type/File/Validator.php | 2 +- .../Model/Product/Option/Type/File/ValidatorFile.php | 2 +- .../Model/Product/Option/Type/File/ValidatorInfo.php | 2 +- .../Magento/Catalog/Model/Product/Option/Type/Select.php | 2 +- app/code/Magento/Catalog/Model/Product/Option/Type/Text.php | 2 +- .../Magento/Catalog/Model/Product/Option/UrlBuilder.php | 2 +- .../Model/Product/Option/Validator/DefaultValidator.php | 2 +- .../Magento/Catalog/Model/Product/Option/Validator/File.php | 2 +- .../Magento/Catalog/Model/Product/Option/Validator/Pool.php | 2 +- .../Catalog/Model/Product/Option/Validator/Select.php | 2 +- .../Magento/Catalog/Model/Product/Option/Validator/Text.php | 2 +- app/code/Magento/Catalog/Model/Product/Option/Value.php | 2 +- app/code/Magento/Catalog/Model/Product/Price/BasePrice.php | 2 +- .../Catalog/Model/Product/Price/BasePriceStorage.php | 2 +- app/code/Magento/Catalog/Model/Product/Price/Cost.php | 2 +- .../Magento/Catalog/Model/Product/Price/CostStorage.php | 2 +- .../Catalog/Model/Product/Price/PricePersistence.php | 2 +- app/code/Magento/Catalog/Model/Product/Price/TierPrice.php | 2 +- .../Catalog/Model/Product/Price/TierPriceFactory.php | 2 +- .../Catalog/Model/Product/Price/TierPricePersistence.php | 2 +- .../Catalog/Model/Product/Price/TierPriceStorage.php | 2 +- .../Catalog/Model/Product/Price/TierPriceValidator.php | 2 +- app/code/Magento/Catalog/Model/Product/PriceModifier.php | 2 +- .../Catalog/Model/Product/PriceModifier/Composite.php | 2 +- .../Catalog/Model/Product/PriceModifierInterface.php | 2 +- .../Model/Product/Pricing/Renderer/SalableResolver.php | 2 +- .../Product/Pricing/Renderer/SalableResolverInterface.php | 2 +- .../Magento/Catalog/Model/Product/ProductList/Toolbar.php | 2 +- .../Magento/Catalog/Model/Product/ReservedAttributeList.php | 2 +- .../Catalog/Model/Product/ScopedTierPriceManagement.php | 2 +- app/code/Magento/Catalog/Model/Product/TierPrice.php | 2 +- .../Magento/Catalog/Model/Product/TierPriceManagement.php | 2 +- app/code/Magento/Catalog/Model/Product/Type.php | 2 +- .../Magento/Catalog/Model/Product/Type/AbstractType.php | 2 +- app/code/Magento/Catalog/Model/Product/Type/Pool.php | 2 +- app/code/Magento/Catalog/Model/Product/Type/Price.php | 2 +- .../Magento/Catalog/Model/Product/Type/Price/Factory.php | 2 +- app/code/Magento/Catalog/Model/Product/Type/Simple.php | 2 +- app/code/Magento/Catalog/Model/Product/Type/Virtual.php | 2 +- .../Magento/Catalog/Model/Product/TypeTransitionManager.php | 2 +- app/code/Magento/Catalog/Model/Product/Url.php | 2 +- app/code/Magento/Catalog/Model/Product/Validator.php | 2 +- app/code/Magento/Catalog/Model/Product/Visibility.php | 2 +- app/code/Magento/Catalog/Model/Product/Website.php | 2 +- .../Magento/Catalog/Model/Product/Website/ReadHandler.php | 2 +- .../Magento/Catalog/Model/Product/Website/SaveHandler.php | 2 +- .../Catalog/Model/ProductAttributeGroupRepository.php | 2 +- app/code/Magento/Catalog/Model/ProductIdLocator.php | 2 +- .../Magento/Catalog/Model/ProductIdLocatorInterface.php | 2 +- app/code/Magento/Catalog/Model/ProductLink/Attribute.php | 2 +- .../Catalog/Model/ProductLink/CollectionProvider.php | 2 +- .../Model/ProductLink/CollectionProvider/Crosssell.php | 2 +- .../Model/ProductLink/CollectionProvider/Related.php | 2 +- .../Catalog/Model/ProductLink/CollectionProvider/Upsell.php | 2 +- .../Model/ProductLink/CollectionProviderInterface.php | 2 +- .../Model/ProductLink/Converter/ConverterInterface.php | 2 +- .../Catalog/Model/ProductLink/Converter/ConverterPool.php | 2 +- .../Model/ProductLink/Converter/DefaultConverter.php | 2 +- app/code/Magento/Catalog/Model/ProductLink/Link.php | 2 +- app/code/Magento/Catalog/Model/ProductLink/Management.php | 2 +- app/code/Magento/Catalog/Model/ProductLink/Repository.php | 2 +- app/code/Magento/Catalog/Model/ProductLink/Type.php | 2 +- app/code/Magento/Catalog/Model/ProductManagement.php | 2 +- app/code/Magento/Catalog/Model/ProductOption.php | 2 +- app/code/Magento/Catalog/Model/ProductOptionProcessor.php | 2 +- .../Catalog/Model/ProductOptionProcessorInterface.php | 2 +- app/code/Magento/Catalog/Model/ProductOptions/Config.php | 2 +- .../Catalog/Model/ProductOptions/Config/Converter.php | 2 +- .../Magento/Catalog/Model/ProductOptions/Config/Reader.php | 2 +- .../Catalog/Model/ProductOptions/Config/SchemaLocator.php | 2 +- .../Catalog/Model/ProductOptions/ConfigInterface.php | 2 +- app/code/Magento/Catalog/Model/ProductOptions/TypeList.php | 2 +- app/code/Magento/Catalog/Model/ProductRepository.php | 2 +- app/code/Magento/Catalog/Model/ProductType.php | 2 +- app/code/Magento/Catalog/Model/ProductTypeList.php | 2 +- app/code/Magento/Catalog/Model/ProductTypes/Config.php | 2 +- .../Magento/Catalog/Model/ProductTypes/Config/Converter.php | 2 +- .../Magento/Catalog/Model/ProductTypes/Config/Reader.php | 2 +- .../Catalog/Model/ProductTypes/Config/SchemaLocator.php | 2 +- .../Magento/Catalog/Model/ProductTypes/ConfigInterface.php | 2 +- app/code/Magento/Catalog/Model/ProductWebsiteLink.php | 2 +- .../Magento/Catalog/Model/ProductWebsiteLinkRepository.php | 2 +- .../Catalog/Model/ResourceModel/AbstractCollection.php | 2 +- .../Catalog/Model/ResourceModel/AbstractResource.php | 2 +- app/code/Magento/Catalog/Model/ResourceModel/Attribute.php | 2 +- .../Catalog/Model/ResourceModel/AttributePersistor.php | 2 +- app/code/Magento/Catalog/Model/ResourceModel/Category.php | 2 +- .../Catalog/Model/ResourceModel/Category/AggregateCount.php | 2 +- .../Model/ResourceModel/Category/Attribute/Collection.php | 2 +- .../ResourceModel/Category/Attribute/Frontend/Image.php | 2 +- .../ResourceModel/Category/Attribute/Source/Layout.php | 2 +- .../Model/ResourceModel/Category/Attribute/Source/Page.php | 2 +- .../Catalog/Model/ResourceModel/Category/Collection.php | 2 +- .../Model/ResourceModel/Category/Collection/Factory.php | 2 +- .../Magento/Catalog/Model/ResourceModel/Category/Flat.php | 2 +- .../Model/ResourceModel/Category/Flat/Collection.php | 2 +- .../Magento/Catalog/Model/ResourceModel/Category/Tree.php | 2 +- .../Magento/Catalog/Model/ResourceModel/CategoryProduct.php | 2 +- .../Model/ResourceModel/Collection/AbstractCollection.php | 2 +- app/code/Magento/Catalog/Model/ResourceModel/Config.php | 2 +- .../Magento/Catalog/Model/ResourceModel/Eav/Attribute.php | 2 +- app/code/Magento/Catalog/Model/ResourceModel/Helper.php | 2 +- .../Catalog/Model/ResourceModel/Layer/Filter/Attribute.php | 2 +- .../Catalog/Model/ResourceModel/Layer/Filter/Decimal.php | 2 +- .../Catalog/Model/ResourceModel/Layer/Filter/Price.php | 2 +- .../Model/ResourceModel/MaxHeapTableSizeProcessor.php | 2 +- app/code/Magento/Catalog/Model/ResourceModel/Product.php | 2 +- .../Magento/Catalog/Model/ResourceModel/Product/Action.php | 2 +- .../Attribute/Backend/GroupPrice/AbstractGroupPrice.php | 2 +- .../Model/ResourceModel/Product/Attribute/Backend/Image.php | 2 +- .../ResourceModel/Product/Attribute/Backend/Tierprice.php | 2 +- .../Model/ResourceModel/Product/Attribute/Collection.php | 2 +- .../ResourceModel/Product/BaseSelectProcessorInterface.php | 2 +- .../Catalog/Model/ResourceModel/Product/CategoryLink.php | 2 +- .../Catalog/Model/ResourceModel/Product/Collection.php | 2 +- .../ResourceModel/Product/Collection/ProductLimitation.php | 2 +- .../Catalog/Model/ResourceModel/Product/Compare/Item.php | 2 +- .../Model/ResourceModel/Product/Compare/Item/Collection.php | 2 +- .../ResourceModel/Product/CompositeBaseSelectProcessor.php | 2 +- .../Magento/Catalog/Model/ResourceModel/Product/Flat.php | 2 +- .../Magento/Catalog/Model/ResourceModel/Product/Gallery.php | 2 +- .../Model/ResourceModel/Product/Indexer/AbstractIndexer.php | 2 +- .../Model/ResourceModel/Product/Indexer/Eav/AbstractEav.php | 2 +- .../Model/ResourceModel/Product/Indexer/Eav/Decimal.php | 2 +- .../Model/ResourceModel/Product/Indexer/Eav/Source.php | 2 +- .../Indexer/LinkedProductSelectBuilderByIndexPrice.php | 2 +- .../ResourceModel/Product/Indexer/Price/DefaultPrice.php | 2 +- .../Model/ResourceModel/Product/Indexer/Price/Factory.php | 2 +- .../ResourceModel/Product/Indexer/Price/PriceInterface.php | 2 +- .../Magento/Catalog/Model/ResourceModel/Product/Link.php | 2 +- .../Catalog/Model/ResourceModel/Product/Link/Collection.php | 2 +- .../Model/ResourceModel/Product/Link/DeleteHandler.php | 2 +- .../Model/ResourceModel/Product/Link/Product/Collection.php | 2 +- .../Model/ResourceModel/Product/Link/SaveHandler.php | 2 +- .../Product/LinkedProductSelectBuilderByBasePrice.php | 2 +- .../Product/LinkedProductSelectBuilderBySpecialPrice.php | 2 +- .../Product/LinkedProductSelectBuilderByTierPrice.php | 2 +- .../Product/LinkedProductSelectBuilderComposite.php | 2 +- .../Product/LinkedProductSelectBuilderInterface.php | 2 +- .../Magento/Catalog/Model/ResourceModel/Product/Option.php | 2 +- .../Model/ResourceModel/Product/Option/Collection.php | 2 +- .../Catalog/Model/ResourceModel/Product/Option/Value.php | 2 +- .../Model/ResourceModel/Product/Option/Value/Collection.php | 2 +- .../Catalog/Model/ResourceModel/Product/Relation.php | 2 +- .../ResourceModel/Product/StatusBaseSelectProcessor.php | 2 +- .../Magento/Catalog/Model/ResourceModel/Product/Website.php | 2 +- .../Catalog/Model/ResourceModel/Product/Website/Link.php | 2 +- .../Catalog/Model/ResourceModel/Setup/PropertyMapper.php | 2 +- app/code/Magento/Catalog/Model/ResourceModel/Url.php | 2 +- app/code/Magento/Catalog/Model/Rss/Category.php | 2 +- app/code/Magento/Catalog/Model/Rss/Product/NewProducts.php | 2 +- app/code/Magento/Catalog/Model/Rss/Product/NotifyStock.php | 2 +- app/code/Magento/Catalog/Model/Rss/Product/Special.php | 2 +- app/code/Magento/Catalog/Model/Session.php | 2 +- .../System/Config/Backend/Catalog/Url/Rewrite/Suffix.php | 2 +- .../Catalog/Model/System/Config/Source/Inputtype.php | 2 +- app/code/Magento/Catalog/Model/Template/Filter.php | 2 +- app/code/Magento/Catalog/Model/Template/Filter/Factory.php | 2 +- app/code/Magento/Catalog/Model/View/Asset/Image.php | 2 +- app/code/Magento/Catalog/Model/View/Asset/Image/Context.php | 2 +- app/code/Magento/Catalog/Model/View/Asset/Placeholder.php | 2 +- .../Catalog/Model/Webapi/Product/Option/Type/Date.php | 2 +- .../Model/Webapi/Product/Option/Type/File/Processor.php | 2 +- .../CatalogCheckIsUsingStaticUrlsAllowedObserver.php | 2 +- .../Catalog/Observer/Compare/BindCustomerLoginObserver.php | 2 +- .../Catalog/Observer/Compare/BindCustomerLogoutObserver.php | 2 +- app/code/Magento/Catalog/Observer/MenuCategoryData.php | 2 +- app/code/Magento/Catalog/Plugin/Block/Topmenu.php | 2 +- .../Plugin/Model/Attribute/Backend/AttributeValidation.php | 2 +- .../Plugin/Model/Indexer/Category/Product/Execute.php | 2 +- .../Product/MaxHeapTableSizeProcessorOnFullReindex.php | 2 +- .../Model/Product/Action/UpdateAttributesFlushCache.php | 2 +- .../Catalog/Plugin/Model/ResourceModel/Attribute/Save.php | 2 +- .../Magento/Catalog/Plugin/Model/ResourceModel/Config.php | 2 +- app/code/Magento/Catalog/Pricing/Price/BasePrice.php | 2 +- app/code/Magento/Catalog/Pricing/Price/ConfiguredPrice.php | 2 +- .../Catalog/Pricing/Price/ConfiguredPriceInterface.php | 2 +- .../Magento/Catalog/Pricing/Price/CustomOptionPrice.php | 2 +- .../Catalog/Pricing/Price/CustomOptionPriceInterface.php | 2 +- app/code/Magento/Catalog/Pricing/Price/FinalPrice.php | 2 +- .../Magento/Catalog/Pricing/Price/FinalPriceInterface.php | 2 +- app/code/Magento/Catalog/Pricing/Price/RegularPrice.php | 2 +- app/code/Magento/Catalog/Pricing/Price/SpecialPrice.php | 2 +- .../Magento/Catalog/Pricing/Price/SpecialPriceInterface.php | 2 +- app/code/Magento/Catalog/Pricing/Price/TierPrice.php | 2 +- .../Magento/Catalog/Pricing/Price/TierPriceInterface.php | 2 +- app/code/Magento/Catalog/Pricing/Render.php | 2 +- .../Magento/Catalog/Pricing/Render/ConfiguredPriceBox.php | 2 +- app/code/Magento/Catalog/Pricing/Render/FinalPriceBox.php | 2 +- app/code/Magento/Catalog/Pricing/Render/PriceBox.php | 2 +- app/code/Magento/Catalog/Setup/CategorySetup.php | 2 +- app/code/Magento/Catalog/Setup/InstallData.php | 2 +- app/code/Magento/Catalog/Setup/InstallSchema.php | 2 +- app/code/Magento/Catalog/Setup/Recurring.php | 2 +- app/code/Magento/Catalog/Setup/UpgradeData.php | 2 +- app/code/Magento/Catalog/Setup/UpgradeSchema.php | 2 +- .../Unit/Block/Adminhtml/Category/AbstractCategoryTest.php | 2 +- .../Block/Adminhtml/Product/Attribute/Button/CancelTest.php | 2 +- .../Adminhtml/Product/Attribute/Button/GenericTest.php | 2 +- .../Block/Adminhtml/Product/Attribute/Button/SaveTest.php | 2 +- .../Adminhtml/Product/Attribute/Edit/Tab/AdvancedTest.php | 2 +- .../Unit/Block/Adminhtml/Product/Attribute/GridTest.php | 2 +- .../Adminhtml/Product/Composite/Fieldset/OptionsTest.php | 2 +- .../Product/Edit/Action/Attribute/Tab/InventoryTest.php | 2 +- .../Adminhtml/Product/Edit/Button/AddAttributeTest.php | 2 +- .../Unit/Block/Adminhtml/Product/Edit/Button/BackTest.php | 2 +- .../Adminhtml/Product/Edit/Button/CreateCategoryTest.php | 2 +- .../Block/Adminhtml/Product/Edit/Button/GenericTest.php | 2 +- .../Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php | 2 +- .../Unit/Block/Adminhtml/Product/Edit/Tab/AlertsTest.php | 2 +- .../Unit/Block/Adminhtml/Product/Edit/Tab/InventoryTest.php | 2 +- .../Block/Adminhtml/Product/Helper/Form/CategoryTest.php | 2 +- .../Adminhtml/Product/Helper/Form/Gallery/ContentTest.php | 2 +- .../Block/Adminhtml/Product/Helper/Form/GalleryTest.php | 2 +- .../Unit/Block/Adminhtml/Product/Helper/Form/WeightTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Product/Options/AjaxTest.php | 2 +- .../Catalog/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Rss/NotifyStockTest.php | 2 +- .../Test/Unit/Block/Category/Plugin/PriceBoxTagsTest.php | 2 +- .../Catalog/Test/Unit/Block/Category/Rss/LinkTest.php | 2 +- .../Magento/Catalog/Test/Unit/Block/Category/ViewTest.php | 2 +- app/code/Magento/Catalog/Test/Unit/Block/NavigationTest.php | 2 +- .../Catalog/Test/Unit/Block/Product/AbstractProductTest.php | 2 +- .../Test/Unit/Block/Product/Compare/ListCompareTest.php | 2 +- .../Magento/Catalog/Test/Unit/Block/Product/ContextTest.php | 2 +- .../Catalog/Test/Unit/Block/Product/ImageBuilderTest.php | 2 +- .../Catalog/Test/Unit/Block/Product/ListProductTest.php | 2 +- .../Magento/Catalog/Test/Unit/Block/Product/ListTest.php | 2 +- .../Catalog/Test/Unit/Block/Product/NewProductTest.php | 2 +- .../Magento/Catalog/Test/Unit/Block/Product/PriceTest.php | 2 +- .../Test/Unit/Block/Product/ProductList/RelatedTest.php | 2 +- .../Test/Unit/Block/Product/ProductList/ToolbarTest.php | 2 +- .../Test/Unit/Block/Product/ProductList/UpsellTest.php | 2 +- .../Catalog/Test/Unit/Block/Product/View/GalleryTest.php | 2 +- .../Catalog/Test/Unit/Block/Product/View/OptionsTest.php | 2 +- .../Catalog/Test/Unit/Block/Product/View/TabsTest.php | 2 +- .../Magento/Catalog/Test/Unit/Block/Product/ViewTest.php | 2 +- .../Test/Unit/Block/Product/Widget/NewWidgetTest.php | 2 +- .../Magento/Catalog/Test/Unit/Block/Rss/CategoryTest.php | 2 +- .../Catalog/Test/Unit/Block/Rss/Product/NewProductsTest.php | 2 +- .../Catalog/Test/Unit/Block/Rss/Product/SpecialTest.php | 2 +- .../Magento/Catalog/Test/Unit/Block/Widget/LinkTest.php | 2 +- .../Test/Unit/Console/Command/ImagesResizeCommandTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Category/DeleteTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Category/EditTest.php | 2 +- .../Unit/Controller/Adminhtml/Category/Image/UploadTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Category/SaveTest.php | 2 +- .../Adminhtml/Category/Widget/CategoriesJsonTest.php | 2 +- .../Controller/Adminhtml/Category/Widget/ChooserTest.php | 2 +- .../Adminhtml/Product/Action/Attribute/EditTest.php | 2 +- .../Adminhtml/Product/Action/Attribute/SaveTest.php | 2 +- .../Adminhtml/Product/AddAttributeToTemplateTest.php | 2 +- .../Controller/Adminhtml/Product/Attribute/EditTest.php | 2 +- .../Controller/Adminhtml/Product/Attribute/SaveTest.php | 2 +- .../Controller/Adminhtml/Product/Attribute/ValidateTest.php | 2 +- .../Unit/Controller/Adminhtml/Product/AttributeTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Product/BuilderTest.php | 2 +- .../Product/Initialization/Helper/HandlerFactoryTest.php | 2 +- .../Initialization/Helper/Plugin/Handler/CompositeTest.php | 2 +- .../Adminhtml/Product/Initialization/HelperTest.php | 2 +- .../Product/Initialization/StockDataFilterTest.php | 2 +- .../Unit/Controller/Adminhtml/Product/MassStatusTest.php | 2 +- .../Unit/Controller/Adminhtml/Product/NewActionTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Product/ReloadTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Product/SaveTest.php | 2 +- .../Controller/Adminhtml/Product/ShowUpdateResultTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Product/ValidateTest.php | 2 +- .../Catalog/Test/Unit/Controller/Adminhtml/ProductTest.php | 2 +- .../Catalog/Test/Unit/Controller/Category/MoveTest.php | 2 +- .../Catalog/Test/Unit/Controller/Category/ViewTest.php | 2 +- .../Test/Unit/Controller/Product/Compare/IndexTest.php | 2 +- .../Catalog/Test/Unit/Cron/RefreshSpecialPricesTest.php | 2 +- app/code/Magento/Catalog/Test/Unit/Helper/ImageTest.php | 2 +- .../Catalog/Test/Unit/Helper/Product/CompareTest.php | 2 +- .../Test/Unit/Helper/Product/ConfigurationPoolTest.php | 2 +- .../Test/Unit/Helper/Product/Edit/Action/AttributeTest.php | 2 +- .../Catalog/Test/Unit/Helper/Product/Flat/IndexerTest.php | 2 +- app/code/Magento/Catalog/Test/Unit/Helper/ProductTest.php | 2 +- .../FilterProcessor/ProductCategoryFilterTest.php | 2 +- .../Unit/Model/Attribute/Backend/CustomlayoutupdateTest.php | 2 +- .../Test/Unit/Model/Attribute/Config/ConverterTest.php | 2 +- .../Catalog/Test/Unit/Model/Attribute/Config/ReaderTest.php | 2 +- .../Test/Unit/Model/Attribute/Config/SchemaLocatorTest.php | 2 +- .../Catalog/Test/Unit/Model/Attribute/Config/XsdTest.php | 2 +- .../Attribute/Config/_files/attributes_config_merged.php | 2 +- .../Attribute/Config/_files/attributes_config_merged.xml | 2 +- .../Model/Attribute/Config/_files/attributes_config_one.xml | 2 +- .../Model/Attribute/Config/_files/attributes_config_two.xml | 2 +- .../Catalog/Test/Unit/Model/Attribute/ConfigTest.php | 2 +- .../Unit/Model/Attribute/LockValidatorCompositeTest.php | 2 +- .../Unit/Model/Category/Attribute/Backend/ImageTest.php | 2 +- .../Unit/Model/Category/Attribute/Backend/SortbyTest.php | 2 +- .../Unit/Model/Category/Attribute/Source/LayoutTest.php | 2 +- .../Test/Unit/Model/Category/Attribute/Source/PageTest.php | 2 +- .../Unit/Model/Category/Attribute/Source/SortbyTest.php | 2 +- .../Test/Unit/Model/Category/AttributeRepositoryTest.php | 2 +- .../Catalog/Test/Unit/Model/Category/DataProviderTest.php | 2 +- .../Catalog/Test/Unit/Model/Category/FileInfoTest.php | 2 +- .../Test/Unit/Model/Category/Link/ReadHandlerTest.php | 2 +- .../Test/Unit/Model/Category/Link/SaveHandlerTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/Category/TreeTest.php | 2 +- .../Catalog/Test/Unit/Model/CategoryLinkManagementTest.php | 2 +- .../Catalog/Test/Unit/Model/CategoryLinkRepositoryTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/CategoryListTest.php | 2 +- .../Catalog/Test/Unit/Model/CategoryManagementTest.php | 2 +- .../Catalog/Test/Unit/Model/CategoryRepositoryTest.php | 2 +- app/code/Magento/Catalog/Test/Unit/Model/CategoryTest.php | 2 +- .../Test/Unit/Model/Config/CatalogClone/Media/ImageTest.php | 2 +- .../Catalog/Test/Unit/Model/Config/Source/CategoryTest.php | 2 +- .../Test/Unit/Model/Config/Source/GridPerPageTest.php | 2 +- .../Test/Unit/Model/Config/Source/ListPerPageTest.php | 2 +- .../Catalog/Test/Unit/Model/Config/Source/ListSortTest.php | 2 +- .../Unit/Model/Config/Source/Product/Options/TypeTest.php | 2 +- app/code/Magento/Catalog/Test/Unit/Model/ConfigTest.php | 2 +- .../Unit/Model/CustomOptions/CustomOptionProcessorTest.php | 2 +- .../Test/Unit/Model/CustomOptions/CustomOptionTest.php | 2 +- .../Catalog/Test/Unit/Model/Entity/AttributeTest.php | 2 +- app/code/Magento/Catalog/Test/Unit/Model/FactoryTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/ImageExtractorTest.php | 2 +- .../Indexer/Category/Flat/Plugin/IndexerConfigDataTest.php | 2 +- .../Model/Indexer/Category/Flat/Plugin/StoreGroupTest.php | 2 +- .../Model/Indexer/Category/Flat/Plugin/StoreViewTest.php | 2 +- .../Test/Unit/Model/Indexer/Category/Flat/StateTest.php | 2 +- .../Model/Indexer/Category/Flat/System/Config/ModeTest.php | 2 +- .../Catalog/Test/Unit/Model/Indexer/Category/FlatTest.php | 2 +- .../Model/Indexer/Category/Product/Plugin/ImportTest.php | 2 +- .../Indexer/Category/Product/Plugin/MviewStateTest.php | 2 +- .../Indexer/Category/Product/Plugin/StoreGroupTest.php | 2 +- .../Model/Indexer/Category/Product/Plugin/StoreViewTest.php | 2 +- .../Test/Unit/Model/Indexer/Category/ProductTest.php | 2 +- .../Model/Indexer/Product/Category/Plugin/ImportTest.php | 2 +- .../Test/Unit/Model/Indexer/Product/CategoryTest.php | 2 +- .../Unit/Model/Indexer/Product/Eav/AbstractActionTest.php | 2 +- .../Test/Unit/Model/Indexer/Product/Eav/Action/FullTest.php | 2 +- .../Test/Unit/Model/Indexer/Product/Eav/Action/RowTest.php | 2 +- .../Test/Unit/Model/Indexer/Product/Eav/Action/RowsTest.php | 2 +- .../Plugin/AttributeSet/IndexableAttributeFilterTest.php | 2 +- .../Model/Indexer/Product/Eav/Plugin/AttributeSetTest.php | 2 +- .../Unit/Model/Indexer/Product/Eav/Plugin/ImportTest.php | 2 +- .../Unit/Model/Indexer/Product/Eav/Plugin/StoreViewTest.php | 2 +- .../Catalog/Test/Unit/Model/Indexer/Product/EavTest.php | 2 +- .../Unit/Model/Indexer/Product/Flat/Action/EraserTest.php | 2 +- .../Test/Unit/Model/Indexer/Product/Flat/Action/RowTest.php | 2 +- .../Indexer/Product/Flat/Action/Rows/TableDataTest.php | 2 +- .../Unit/Model/Indexer/Product/Flat/Action/RowsTest.php | 2 +- .../Model/Indexer/Product/Flat/FlatTableBuilderTest.php | 2 +- .../Indexer/Product/Flat/Plugin/IndexerConfigDataTest.php | 2 +- .../Model/Indexer/Product/Flat/Plugin/StoreGroupTest.php | 2 +- .../Unit/Model/Indexer/Product/Flat/Plugin/StoreTest.php | 2 +- .../Test/Unit/Model/Indexer/Product/Flat/ProcessorTest.php | 2 +- .../Test/Unit/Model/Indexer/Product/Flat/StateTest.php | 2 +- .../Model/Indexer/Product/Flat/System/Config/ModeTest.php | 2 +- .../Unit/Model/Indexer/Product/Flat/Table/BuilderTest.php | 2 +- .../Test/Unit/Model/Indexer/Product/Flat/TableDataTest.php | 2 +- .../Catalog/Test/Unit/Model/Indexer/Product/FlatTest.php | 2 +- .../Unit/Model/Indexer/Product/Price/Action/RowTest.php | 2 +- .../Unit/Model/Indexer/Product/Price/Action/RowsTest.php | 2 +- .../Indexer/Product/Price/Plugin/CustomerGroupTest.php | 2 +- .../Unit/Model/Indexer/Product/Price/Plugin/WebsiteTest.php | 2 +- .../Indexer/Product/Price/System/Config/PriceScopeTest.php | 2 +- .../Test/Unit/Model/Layer/Category/AvailabilityFlagTest.php | 2 +- .../Test/Unit/Model/Layer/Category/CollectionFilterTest.php | 2 +- .../Model/Layer/Category/FilterableAttributeListTest.php | 2 +- .../Catalog/Test/Unit/Model/Layer/Category/StateKeyTest.php | 2 +- .../Catalog/Test/Unit/Model/Layer/Filter/AttributeTest.php | 2 +- .../Catalog/Test/Unit/Model/Layer/Filter/CategoryTest.php | 2 +- .../Unit/Model/Layer/Filter/DataProvider/CategoryTest.php | 2 +- .../Unit/Model/Layer/Filter/DataProvider/DecimalTest.php | 2 +- .../Test/Unit/Model/Layer/Filter/DataProvider/PriceTest.php | 2 +- .../Catalog/Test/Unit/Model/Layer/Filter/DecimalTest.php | 2 +- .../Catalog/Test/Unit/Model/Layer/Filter/FactoryTest.php | 2 +- .../Test/Unit/Model/Layer/Filter/Item/DataBuilderTest.php | 2 +- .../Catalog/Test/Unit/Model/Layer/Filter/PriceTest.php | 2 +- .../Catalog/Test/Unit/Model/Layer/FilterListTest.php | 2 +- .../Test/Unit/Model/Layer/Search/CollectionFilterTest.php | 2 +- .../Unit/Model/Layer/Search/FilterableAttributeListTest.php | 2 +- .../Catalog/Test/Unit/Model/Layer/Search/StateKeyTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/Layer/StateTest.php | 2 +- app/code/Magento/Catalog/Test/Unit/Model/LayerTest.php | 2 +- .../Test/Unit/Model/Layout/DepersonalizePluginTest.php | 2 +- .../Catalog/Test/Unit/Model/Locator/RegistryLocatorTest.php | 2 +- app/code/Magento/Catalog/Test/Unit/Model/Plugin/LogTest.php | 2 +- .../Plugin/ProductRepository/TransactionWrapperTest.php | 2 +- .../Test/Unit/Model/Plugin/QuoteItemProductOptionTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/Product/ActionTest.php | 2 +- .../Unit/Model/Product/Attribute/AttributeSetFinderTest.php | 2 +- .../Unit/Model/Product/Attribute/Backend/BooleanTest.php | 2 +- .../Unit/Model/Product/Attribute/Backend/CategoryTest.php | 2 +- .../Product/Attribute/Backend/GroupPrice/AbstractTest.php | 2 +- .../Attribute/Backend/Media/EntryConverterPoolTest.php | 2 +- .../Attribute/Backend/Media/ImageEntryConverterTest.php | 2 +- .../Test/Unit/Model/Product/Attribute/Backend/PriceTest.php | 2 +- .../Test/Unit/Model/Product/Attribute/Backend/StockTest.php | 2 +- .../Unit/Model/Product/Attribute/Backend/WeightTest.php | 2 +- .../Unit/Model/Product/Attribute/Frontend/ImageTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/Attribute/GroupTest.php | 2 +- .../Test/Unit/Model/Product/Attribute/ManagementTest.php | 2 +- .../Unit/Model/Product/Attribute/OptionManagementTest.php | 2 +- .../Test/Unit/Model/Product/Attribute/RepositoryTest.php | 2 +- .../Test/Unit/Model/Product/Attribute/SetManagementTest.php | 2 +- .../Test/Unit/Model/Product/Attribute/SetRepositoryTest.php | 2 +- .../Unit/Model/Product/Attribute/Source/BooleanTest.php | 2 +- .../Product/Attribute/Source/CountryofmanufactureTest.php | 2 +- .../Unit/Model/Product/Attribute/Source/InputtypeTest.php | 2 +- .../Test/Unit/Model/Product/Attribute/Source/LayoutTest.php | 2 +- .../Test/Unit/Model/Product/Attribute/Source/StatusTest.php | 2 +- .../Test/Unit/Model/Product/Attribute/TypesListTest.php | 2 +- .../Test/Unit/Model/Product/CartConfigurationTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/CatalogPriceTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/Compare/ItemTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/ConditionTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/Product/CopierTest.php | 2 +- .../Unit/Model/Product/CopyConstructor/CompositeTest.php | 2 +- .../Unit/Model/Product/CopyConstructor/CrossSellTest.php | 2 +- .../Test/Unit/Model/Product/CopyConstructor/RelatedTest.php | 2 +- .../Test/Unit/Model/Product/CopyConstructor/UpSellTest.php | 2 +- .../Test/Unit/Model/Product/CopyConstructorFactoryTest.php | 2 +- .../Unit/Model/Product/Gallery/GalleryManagementTest.php | 2 +- .../Unit/Model/Product/Gallery/MimeTypeExtensionMapTest.php | 2 +- .../Test/Unit/Model/Product/Gallery/ProcessorTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/Image/CacheTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/Product/ImageTest.php | 2 +- .../Product/Initialization/Helper/ProductLinksTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/Link/ConverterTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/Link/ResolverTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/Product/LinkTest.php | 2 +- .../Test/Unit/Model/Product/LinkTypeProviderTest.php | 2 +- .../Unit/Model/Product/Media/AttributeManagementTest.php | 2 +- .../Test/Unit/Model/Product/Option/RepositoryTest.php | 2 +- .../Test/Unit/Model/Product/Option/SaveHandlerTest.php | 2 +- .../Test/Unit/Model/Product/Option/Type/FactoryTest.php | 2 +- .../Test/Unit/Model/Product/Option/Type/FileTest.php | 2 +- .../Test/Unit/Model/Product/Option/UrlBuilderTest.php | 2 +- .../Model/Product/Option/Validator/DefaultValidatorTest.php | 2 +- .../Test/Unit/Model/Product/Option/Validator/FileTest.php | 2 +- .../Test/Unit/Model/Product/Option/Validator/PoolTest.php | 2 +- .../Test/Unit/Model/Product/Option/Validator/SelectTest.php | 2 +- .../Test/Unit/Model/Product/Option/Validator/TextTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/Option/ValueTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/Product/OptionTest.php | 2 +- .../Test/Unit/Model/Product/Price/BasePriceStorageTest.php | 2 +- .../Test/Unit/Model/Product/Price/CostStorageTest.php | 2 +- .../Test/Unit/Model/Product/Price/PricePersistenceTest.php | 2 +- .../Test/Unit/Model/Product/Price/TierPriceStorageTest.php | 2 +- .../Unit/Model/Product/Price/TierPriceValidatorTest.php | 2 +- .../Test/Unit/Model/Product/PriceModifier/CompositeTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/PriceModifierTest.php | 2 +- .../Model/Product/Pricing/Renderer/SalableResolverTest.php | 2 +- .../Test/Unit/Model/Product/ProductList/ToolbarTest.php | 2 +- .../Test/Unit/Model/Product/ReservedAttributeListTest.php | 2 +- .../Test/Unit/Model/Product/TierPriceManagementTest.php | 2 +- .../Test/Unit/Model/Product/Type/AbstractTypeTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/Type/PriceTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/Type/SimpleTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/Type/VirtualTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/Product/TypeTest.php | 2 +- .../Test/Unit/Model/Product/TypeTransitionManagerTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/Product/UrlTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/ValidatorTest.php | 2 +- .../Catalog/Test/Unit/Model/Product/VisibilityTest.php | 2 +- .../Test/Unit/Model/Product/Website/ReadHandlerTest.php | 2 +- .../Test/Unit/Model/Product/Website/SaveHandlerTest.php | 2 +- .../Test/Unit/Model/ProductAttributeGroupRepositoryTest.php | 2 +- .../Catalog/Test/Unit/Model/ProductIdLocatorTest.php | 2 +- .../Catalog/Test/Unit/Model/ProductLink/ManagementTest.php | 2 +- .../Catalog/Test/Unit/Model/ProductLink/RepositoryTest.php | 2 +- .../Catalog/Test/Unit/Model/ProductManagementTest.php | 2 +- .../Catalog/Test/Unit/Model/ProductOptionProcessorTest.php | 2 +- .../Test/Unit/Model/ProductOptions/Config/XsdTest.php | 2 +- .../Config/_files/invalidProductOptionsMergedXmlArray.php | 2 +- .../Config/_files/invalidProductOptionsXmlArray.php | 2 +- .../Config/_files/product_options_merged_valid.xml | 2 +- .../ProductOptions/Config/_files/product_options_valid.xml | 2 +- .../Catalog/Test/Unit/Model/ProductRepositoryTest.php | 2 +- app/code/Magento/Catalog/Test/Unit/Model/ProductTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/ProductTypeListTest.php | 2 +- .../Test/Unit/Model/ProductTypes/Config/ConverterTest.php | 2 +- .../Unit/Model/ProductTypes/Config/SchemaLocatorTest.php | 2 +- .../Test/Unit/Model/ProductTypes/Config/XsdMergedTest.php | 2 +- .../Catalog/Test/Unit/Model/ProductTypes/Config/XsdTest.php | 2 +- .../Config/_files/invalidProductTypesMergedXmlArray.php | 2 +- .../Config/_files/invalidProductTypesXmlArray.php | 2 +- .../Unit/Model/ProductTypes/Config/_files/product_types.php | 2 +- .../Unit/Model/ProductTypes/Config/_files/product_types.xml | 2 +- .../ProductTypes/Config/_files/valid_product_types.xml | 2 +- .../Config/_files/valid_product_types_merged.xml | 2 +- .../Catalog/Test/Unit/Model/ProductTypes/ConfigTest.php | 2 +- .../Catalog/Test/Unit/Model/ResourceModel/AbstractTest.php | 2 +- .../Model/ResourceModel/Category/Collection/FactoryTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Category/FlatTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Category/TreeTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Eav/AttributeTest.php | 2 +- .../Unit/Model/ResourceModel/Product/CategoryLinkTest.php | 2 +- .../Product/Collection/ProductLimitationTest.php | 2 +- .../Unit/Model/ResourceModel/Product/CollectionTest.php | 2 +- .../Product/CompositeBaseSelectProcessorTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Product/FlatTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Product/GalleryTest.php | 2 +- .../ResourceModel/Product/Link/Product/CollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Product/LinkTest.php | 2 +- .../Model/ResourceModel/Product/Option/CollectionTest.php | 2 +- .../ResourceModel/Product/StatusBaseSelectProcessorTest.php | 2 +- .../Unit/Model/ResourceModel/Product/Website/LinkTest.php | 2 +- .../Catalog/Test/Unit/Model/ResourceModel/ProductTest.php | 2 +- .../Magento/Catalog/Test/Unit/Model/Rss/CategoryTest.php | 2 +- .../Catalog/Test/Unit/Model/Rss/Product/NewProductsTest.php | 2 +- .../Catalog/Test/Unit/Model/Rss/Product/NotifyStockTest.php | 2 +- .../Catalog/Test/Unit/Model/Rss/Product/SpecialTest.php | 2 +- .../Config/Backend/Catalog/Url/Rewrite/SuffixTest.php | 2 +- .../Test/Unit/Model/System/Config/Source/InputtypeTest.php | 2 +- .../Catalog/Test/Unit/Model/Template/Filter/FactoryTest.php | 2 +- .../Test/Unit/Model/View/Asset/Image/ContextTest.php | 2 +- .../Catalog/Test/Unit/Model/View/Asset/ImageTest.php | 2 +- .../Catalog/Test/Unit/Model/View/Asset/PlaceholderTest.php | 2 +- .../Catalog/Test/Unit/Model/_files/converted_view.php | 2 +- .../Magento/Catalog/Test/Unit/Model/_files/valid_view.xml | 2 +- .../Catalog/Test/Unit/Observer/MenuCategoryDataTest.php | 2 +- .../Magento/Catalog/Test/Unit/Plugin/Block/TopmenuTest.php | 2 +- .../Plugin/Model/Indexer/Category/Product/ExecuteTest.php | 2 +- .../Model/Product/Action/UpdateAttributesFlushCacheTest.php | 2 +- .../Unit/Plugin/Model/ResourceModel/Attribute/SaveTest.php | 2 +- .../Test/Unit/Plugin/Model/ResourceModel/ConfigTest.php | 2 +- .../Catalog/Test/Unit/Pricing/Price/BasePriceTest.php | 2 +- .../Catalog/Test/Unit/Pricing/Price/ConfiguredPriceTest.php | 2 +- .../Test/Unit/Pricing/Price/CustomOptionPriceTest.php | 2 +- .../Catalog/Test/Unit/Pricing/Price/FinalPriceTest.php | 2 +- .../Catalog/Test/Unit/Pricing/Price/RegularPriceTest.php | 2 +- .../Catalog/Test/Unit/Pricing/Price/SpecialPriceTest.php | 2 +- .../Catalog/Test/Unit/Pricing/Price/TierPriceTest.php | 2 +- .../Catalog/Test/Unit/Pricing/Render/FinalPriceBoxTest.php | 2 +- .../Catalog/Test/Unit/Pricing/Render/PriceBoxTest.php | 2 +- app/code/Magento/Catalog/Test/Unit/Pricing/RenderTest.php | 2 +- .../Magento/Catalog/Test/Unit/Setup/CategorySetupTest.php | 2 +- .../Catalog/Test/Unit/Ui/AllowedProductTypesTest.php | 2 +- .../Ui/Component/Listing/Columns/AbstractColumnTest.php | 2 +- .../Ui/Component/Listing/Columns/AttributeSetTextTest.php | 2 +- .../Unit/Ui/Component/Listing/Columns/StatusTextTest.php | 2 +- .../Ui/Component/Product/Form/Categories/OptionsTest.php | 2 +- .../Unit/Ui/DataProvider/CatalogEavValidationRulesTest.php | 2 +- .../Product/Form/Modifier/AbstractModifierTest.php | 2 +- .../Product/Form/Modifier/AdvancedPricingTest.php | 2 +- .../DataProvider/Product/Form/Modifier/AttributeSetTest.php | 2 +- .../DataProvider/Product/Form/Modifier/AttributesTest.php | 2 +- .../DataProvider/Product/Form/Modifier/CategoriesTest.php | 2 +- .../Product/Form/Modifier/CustomOptionsTest.php | 2 +- .../Unit/Ui/DataProvider/Product/Form/Modifier/EavTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/FactoryTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/GeneralTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/ImagesTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/RelatedTest.php | 2 +- .../Product/Form/Modifier/ScheduleDesignUpdateTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/SystemTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/TierPriceTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/WebsitesTest.php | 2 +- .../Product/Form/NewCategoryDataProviderTest.php | 2 +- .../DataProvider/Product/Form/ProductDataProviderTest.php | 2 +- .../Product/ProductCustomOptionsDataProviderTest.php | 2 +- .../Product/Related/AbstractDataProviderTest.php | 2 +- .../Product/Related/CrossSellDataProviderTest.php | 2 +- .../Product/Related/RelatedDataProviderTest.php | 2 +- .../DataProvider/Product/Related/UpSellDataProviderTest.php | 2 +- app/code/Magento/Catalog/Ui/AllowedProductTypes.php | 2 +- .../Catalog/Ui/Component/Category/Form/Element/Wysiwyg.php | 2 +- app/code/Magento/Catalog/Ui/Component/ColumnFactory.php | 2 +- app/code/Magento/Catalog/Ui/Component/FilterFactory.php | 2 +- .../Ui/Component/Listing/Attribute/AbstractRepository.php | 2 +- .../Catalog/Ui/Component/Listing/Attribute/Repository.php | 2 +- .../Ui/Component/Listing/Attribute/RepositoryInterface.php | 2 +- app/code/Magento/Catalog/Ui/Component/Listing/Columns.php | 2 +- .../Ui/Component/Listing/Columns/AttributeSetText.php | 2 +- .../Magento/Catalog/Ui/Component/Listing/Columns/Price.php | 2 +- .../Catalog/Ui/Component/Listing/Columns/ProductActions.php | 2 +- .../Catalog/Ui/Component/Listing/Columns/StatusText.php | 2 +- .../Catalog/Ui/Component/Listing/Columns/Thumbnail.php | 2 +- .../Catalog/Ui/Component/Listing/Columns/Websites.php | 2 +- app/code/Magento/Catalog/Ui/Component/Listing/Filters.php | 2 +- .../Ui/Component/Product/Form/Categories/Options.php | 2 +- .../Catalog/Ui/DataProvider/CatalogEavValidationRules.php | 2 +- .../Ui/DataProvider/Product/AddStoreFieldToCollection.php | 2 +- .../DataProvider/Product/AddWebsitesFieldToCollection.php | 2 +- .../Catalog/Ui/DataProvider/Product/Attributes/Listing.php | 2 +- .../DataProvider/Product/Form/Modifier/AbstractModifier.php | 2 +- .../DataProvider/Product/Form/Modifier/AdvancedPricing.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/AttributeSet.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Attributes.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Categories.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/CustomOptions.php | 2 +- .../Catalog/Ui/DataProvider/Product/Form/Modifier/Eav.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/General.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Images.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Related.php | 2 +- .../Product/Form/Modifier/ScheduleDesignUpdate.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/System.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/TierPrice.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Websites.php | 2 +- .../DataProvider/Product/Form/NewCategoryDataProvider.php | 2 +- .../Ui/DataProvider/Product/Form/ProductDataProvider.php | 2 +- .../Product/ProductCustomOptionsDataProvider.php | 2 +- .../Catalog/Ui/DataProvider/Product/ProductDataProvider.php | 2 +- .../DataProvider/Product/Related/AbstractDataProvider.php | 2 +- .../DataProvider/Product/Related/CrossSellDataProvider.php | 2 +- .../Ui/DataProvider/Product/Related/RelatedDataProvider.php | 2 +- .../Ui/DataProvider/Product/Related/UpSellDataProvider.php | 2 +- app/code/Magento/Catalog/etc/acl.xml | 2 +- app/code/Magento/Catalog/etc/adminhtml/di.xml | 2 +- app/code/Magento/Catalog/etc/adminhtml/events.xml | 2 +- app/code/Magento/Catalog/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Catalog/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Catalog/etc/adminhtml/system.xml | 2 +- app/code/Magento/Catalog/etc/catalog_attributes.xml | 2 +- app/code/Magento/Catalog/etc/catalog_attributes.xsd | 2 +- app/code/Magento/Catalog/etc/config.xml | 2 +- app/code/Magento/Catalog/etc/crontab.xml | 2 +- app/code/Magento/Catalog/etc/di.xml | 2 +- app/code/Magento/Catalog/etc/eav_attributes.xml | 2 +- app/code/Magento/Catalog/etc/events.xml | 2 +- app/code/Magento/Catalog/etc/extension_attributes.xml | 2 +- app/code/Magento/Catalog/etc/frontend/di.xml | 2 +- app/code/Magento/Catalog/etc/frontend/events.xml | 2 +- app/code/Magento/Catalog/etc/frontend/page_types.xml | 2 +- app/code/Magento/Catalog/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Catalog/etc/frontend/sections.xml | 2 +- app/code/Magento/Catalog/etc/indexer.xml | 2 +- app/code/Magento/Catalog/etc/module.xml | 2 +- app/code/Magento/Catalog/etc/mview.xml | 2 +- app/code/Magento/Catalog/etc/product_options.xml | 2 +- app/code/Magento/Catalog/etc/product_options.xsd | 2 +- app/code/Magento/Catalog/etc/product_options_merged.xsd | 2 +- app/code/Magento/Catalog/etc/product_types.xml | 2 +- app/code/Magento/Catalog/etc/product_types.xsd | 2 +- app/code/Magento/Catalog/etc/product_types_base.xsd | 2 +- app/code/Magento/Catalog/etc/product_types_merged.xsd | 2 +- app/code/Magento/Catalog/etc/view.xml | 2 +- app/code/Magento/Catalog/etc/webapi.xml | 2 +- app/code/Magento/Catalog/etc/webapi_rest/di.xml | 2 +- app/code/Magento/Catalog/etc/webapi_soap/di.xml | 2 +- app/code/Magento/Catalog/etc/widget.xml | 2 +- app/code/Magento/Catalog/registration.php | 2 +- .../layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE.xml | 2 +- .../layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE_ERROR.xml | 2 +- .../layout/CATALOG_PRODUCT_COMPOSITE_UPDATE_RESULT.xml | 2 +- .../Catalog/view/adminhtml/layout/catalog_category_add.xml | 2 +- .../view/adminhtml/layout/catalog_category_create.xml | 2 +- .../Catalog/view/adminhtml/layout/catalog_category_edit.xml | 2 +- .../layout/catalog_product_action_attribute_edit.xml | 2 +- .../adminhtml/layout/catalog_product_alertspricegrid.xml | 2 +- .../adminhtml/layout/catalog_product_alertsstockgrid.xml | 2 +- .../adminhtml/layout/catalog_product_attribute_edit.xml | 2 +- .../layout/catalog_product_attribute_edit_form.xml | 2 +- .../layout/catalog_product_attribute_edit_popup.xml | 2 +- .../layout/catalog_product_change_attribute_set.xml | 2 +- .../view/adminhtml/layout/catalog_product_crosssell.xml | 2 +- .../view/adminhtml/layout/catalog_product_crosssellgrid.xml | 2 +- .../view/adminhtml/layout/catalog_product_customoptions.xml | 2 +- .../Catalog/view/adminhtml/layout/catalog_product_edit.xml | 2 +- .../Catalog/view/adminhtml/layout/catalog_product_form.xml | 2 +- .../Catalog/view/adminhtml/layout/catalog_product_grid.xml | 2 +- .../Catalog/view/adminhtml/layout/catalog_product_index.xml | 2 +- .../Catalog/view/adminhtml/layout/catalog_product_new.xml | 2 +- .../view/adminhtml/layout/catalog_product_options.xml | 2 +- .../adminhtml/layout/catalog_product_optionsimportgrid.xml | 2 +- .../view/adminhtml/layout/catalog_product_related.xml | 2 +- .../view/adminhtml/layout/catalog_product_relatedgrid.xml | 2 +- .../view/adminhtml/layout/catalog_product_reload.xml | 2 +- .../view/adminhtml/layout/catalog_product_set_block.xml | 2 +- .../view/adminhtml/layout/catalog_product_set_edit.xml | 2 +- .../view/adminhtml/layout/catalog_product_set_index.xml | 2 +- .../view/adminhtml/layout/catalog_product_upsell.xml | 2 +- .../view/adminhtml/layout/catalog_product_upsellgrid.xml | 2 +- app/code/Magento/Catalog/view/adminhtml/requirejs-config.js | 4 ++-- .../templates/catalog/category/checkboxes/tree.phtml | 2 +- .../view/adminhtml/templates/catalog/category/edit.phtml | 2 +- .../templates/catalog/category/edit/assign_products.phtml | 2 +- .../view/adminhtml/templates/catalog/category/tree.phtml | 2 +- .../adminhtml/templates/catalog/category/widget/tree.phtml | 2 +- .../templates/catalog/form/renderer/fieldset/element.phtml | 2 +- .../Catalog/view/adminhtml/templates/catalog/product.phtml | 2 +- .../templates/catalog/product/attribute/form.phtml | 2 +- .../adminhtml/templates/catalog/product/attribute/js.phtml | 2 +- .../templates/catalog/product/attribute/labels.phtml | 2 +- .../templates/catalog/product/attribute/options.phtml | 2 +- .../templates/catalog/product/attribute/set/main.phtml | 2 +- .../catalog/product/attribute/set/main/tree/attribute.phtml | 2 +- .../catalog/product/attribute/set/main/tree/group.phtml | 2 +- .../catalog/product/attribute/set/toolbar/add.phtml | 2 +- .../catalog/product/attribute/set/toolbar/main.phtml | 2 +- .../templates/catalog/product/composite/configure.phtml | 2 +- .../catalog/product/composite/fieldset/options.phtml | 2 +- .../catalog/product/composite/fieldset/options/js.phtml | 2 +- .../product/composite/fieldset/options/type/date.phtml | 2 +- .../product/composite/fieldset/options/type/default.phtml | 2 +- .../product/composite/fieldset/options/type/file.phtml | 2 +- .../product/composite/fieldset/options/type/select.phtml | 2 +- .../product/composite/fieldset/options/type/text.phtml | 2 +- .../templates/catalog/product/composite/fieldset/qty.phtml | 2 +- .../view/adminhtml/templates/catalog/product/edit.phtml | 2 +- .../templates/catalog/product/edit/action/attribute.phtml | 2 +- .../templates/catalog/product/edit/action/inventory.phtml | 2 +- .../templates/catalog/product/edit/action/websites.phtml | 2 +- .../templates/catalog/product/edit/attribute_set.phtml | 2 +- .../templates/catalog/product/edit/category/new/form.phtml | 2 +- .../adminhtml/templates/catalog/product/edit/options.phtml | 2 +- .../templates/catalog/product/edit/options/option.phtml | 2 +- .../templates/catalog/product/edit/options/type/date.phtml | 2 +- .../templates/catalog/product/edit/options/type/file.phtml | 2 +- .../catalog/product/edit/options/type/select.phtml | 2 +- .../templates/catalog/product/edit/options/type/text.phtml | 2 +- .../templates/catalog/product/edit/price/tier.phtml | 2 +- .../templates/catalog/product/edit/serializer.phtml | 2 +- .../adminhtml/templates/catalog/product/edit/websites.phtml | 2 +- .../templates/catalog/product/helper/gallery.phtml | 2 +- .../view/adminhtml/templates/catalog/product/js.phtml | 2 +- .../adminhtml/templates/catalog/product/tab/alert.phtml | 2 +- .../adminhtml/templates/catalog/product/tab/inventory.phtml | 2 +- .../catalog/product/widget/chooser/container.phtml | 2 +- .../view/adminhtml/templates/catalog/wysiwyg/js.phtml | 2 +- .../adminhtml/templates/product/edit/attribute/search.phtml | 2 +- .../view/adminhtml/templates/product/edit/tabs.phtml | 2 +- .../adminhtml/templates/product/edit/tabs/child_tab.phtml | 2 +- .../templates/product/grid/massaction_extended.phtml | 2 +- .../Catalog/view/adminhtml/templates/rss/grid/link.phtml | 2 +- .../Catalog/view/adminhtml/ui_component/category_form.xml | 2 +- .../adminhtml/ui_component/crosssell_product_listing.xml | 2 +- .../view/adminhtml/ui_component/design_config_form.xml | 2 +- .../view/adminhtml/ui_component/new_category_form.xml | 2 +- .../adminhtml/ui_component/product_attribute_add_form.xml | 2 +- .../view/adminhtml/ui_component/product_attributes_grid.xml | 2 +- .../ui_component/product_custom_options_listing.xml | 2 +- .../Catalog/view/adminhtml/ui_component/product_form.xml | 2 +- .../Catalog/view/adminhtml/ui_component/product_listing.xml | 2 +- .../view/adminhtml/ui_component/related_product_listing.xml | 2 +- .../view/adminhtml/ui_component/upsell_product_listing.xml | 2 +- .../view/adminhtml/web/catalog/apply-to-type-switcher.js | 2 +- .../view/adminhtml/web/catalog/base-image-uploader.js | 2 +- .../view/adminhtml/web/catalog/category/assign-products.js | 2 +- .../Catalog/view/adminhtml/web/catalog/category/edit.js | 4 ++-- .../Catalog/view/adminhtml/web/catalog/category/form.js | 2 +- .../view/adminhtml/web/catalog/product-attributes.js | 2 +- .../Magento/Catalog/view/adminhtml/web/catalog/product.js | 2 +- .../web/catalog/product/attribute/unique-validate.js | 2 +- .../adminhtml/web/catalog/product/composite/configure.js | 2 +- .../Catalog/view/adminhtml/web/catalog/type-events.js | 2 +- .../Catalog/view/adminhtml/web/component/file-type-field.js | 2 +- .../view/adminhtml/web/component/image-size-field.js | 2 +- .../view/adminhtml/web/component/select-type-grid.js | 2 +- .../view/adminhtml/web/component/static-type-container.js | 2 +- .../view/adminhtml/web/component/static-type-input.js | 2 +- .../view/adminhtml/web/component/static-type-select.js | 2 +- .../Catalog/view/adminhtml/web/component/text-type-field.js | 2 +- .../Catalog/view/adminhtml/web/js/bundle-proxy-button.js | 2 +- .../Magento/Catalog/view/adminhtml/web/js/category-tree.js | 4 ++-- .../adminhtml/web/js/components/attribute-set-select.js | 2 +- .../view/adminhtml/web/js/components/attributes-fieldset.js | 2 +- .../adminhtml/web/js/components/attributes-grid-paging.js | 2 +- .../web/js/components/attributes-insert-listing.js | 2 +- .../Catalog/view/adminhtml/web/js/components/checkbox.js | 2 +- .../view/adminhtml/web/js/components/disable-hide-select.js | 2 +- .../adminhtml/web/js/components/disable-on-option/input.js | 2 +- .../adminhtml/web/js/components/disable-on-option/select.js | 2 +- .../web/js/components/disable-on-option/strategy.js | 2 +- .../adminhtml/web/js/components/disable-on-option/yesno.js | 2 +- .../web/js/components/dynamic-rows-import-custom-options.js | 2 +- .../adminhtml/web/js/components/dynamic-rows-tier-price.js | 2 +- .../view/adminhtml/web/js/components/import-handler.js | 2 +- .../adminhtml/web/js/components/input-handle-required.js | 2 +- .../Catalog/view/adminhtml/web/js/components/messages.js | 2 +- .../web/js/components/multiselect-handle-required.js | 2 +- .../view/adminhtml/web/js/components/new-attribute-form.js | 2 +- .../web/js/components/new-attribute-insert-form.js | 2 +- .../view/adminhtml/web/js/components/new-category.js | 2 +- .../view/adminhtml/web/js/components/product-status.js | 2 +- .../adminhtml/web/js/components/select-handle-required.js | 2 +- .../view/adminhtml/web/js/components/select-to-checkbox.js | 2 +- .../adminhtml/web/js/components/url-key-handle-changes.js | 2 +- .../adminhtml/web/js/components/visible-on-option/date.js | 2 +- .../web/js/components/visible-on-option/fieldset.js | 2 +- .../adminhtml/web/js/components/visible-on-option/input.js | 2 +- .../adminhtml/web/js/components/visible-on-option/select.js | 2 +- .../web/js/components/visible-on-option/strategy.js | 2 +- .../web/js/components/visible-on-option/textarea.js | 2 +- .../adminhtml/web/js/components/visible-on-option/yesno.js | 2 +- .../Catalog/view/adminhtml/web/js/custom-options-type.js | 2 +- .../Magento/Catalog/view/adminhtml/web/js/custom-options.js | 2 +- app/code/Magento/Catalog/view/adminhtml/web/js/edit-tree.js | 2 +- .../view/adminhtml/web/js/form/element/action-delete.js | 2 +- .../Catalog/view/adminhtml/web/js/form/element/checkbox.js | 2 +- .../Catalog/view/adminhtml/web/js/form/element/input.js | 2 +- .../Catalog/view/adminhtml/web/js/new-category-dialog.js | 2 +- app/code/Magento/Catalog/view/adminhtml/web/js/options.js | 2 +- .../Catalog/view/adminhtml/web/js/product-gallery.js | 2 +- .../Catalog/view/adminhtml/web/js/product/weight-handler.js | 2 +- .../adminhtml/web/js/tier-price/percentage-processor.js | 2 +- .../view/adminhtml/web/js/tier-price/value-type-select.js | 2 +- .../adminhtml/web/js/utils/percentage-price-calculator.js | 2 +- .../view/adminhtml/web/template/attributes/grid/paging.html | 2 +- .../Catalog/view/adminhtml/web/template/checkbox.html | 2 +- .../adminhtml/web/template/form/element/action-delete.html | 4 ++-- .../template/form/element/helper/custom-option-service.html | 2 +- .../form/element/helper/custom-option-type-service.html | 2 +- .../view/adminhtml/web/template/form/element/input.html | 2 +- .../Catalog/view/adminhtml/web/template/image-preview.html | 2 +- .../Catalog/view/base/layout/catalog_product_prices.xml | 2 +- app/code/Magento/Catalog/view/base/layout/default.xml | 2 +- app/code/Magento/Catalog/view/base/layout/empty.xml | 2 +- .../Magento/Catalog/view/base/templates/js/components.phtml | 2 +- .../view/base/templates/product/price/amount/default.phtml | 2 +- .../base/templates/product/price/configured_price.phtml | 2 +- .../Catalog/view/base/templates/product/price/default.phtml | 2 +- .../view/base/templates/product/price/final_price.phtml | 2 +- .../view/base/templates/product/price/tier_prices.phtml | 2 +- app/code/Magento/Catalog/view/base/web/js/price-box.js | 2 +- .../Magento/Catalog/view/base/web/js/price-option-date.js | 2 +- .../Magento/Catalog/view/base/web/js/price-option-file.js | 4 ++-- app/code/Magento/Catalog/view/base/web/js/price-options.js | 2 +- app/code/Magento/Catalog/view/base/web/js/price-utils.js | 2 +- .../Catalog/view/frontend/layout/catalog_category_view.xml | 2 +- .../frontend/layout/catalog_category_view_type_default.xml | 2 +- .../catalog_category_view_type_default_without_children.xml | 2 +- .../view/frontend/layout/catalog_product_compare_index.xml | 2 +- .../view/frontend/layout/catalog_product_gallery.xml | 2 +- .../view/frontend/layout/catalog_product_opengraph.xml | 2 +- .../Catalog/view/frontend/layout/catalog_product_view.xml | 2 +- .../frontend/layout/catalog_product_view_type_simple.xml | 2 +- .../frontend/layout/catalog_product_view_type_virtual.xml | 2 +- .../view/frontend/layout/checkout_cart_item_renderers.xml | 2 +- app/code/Magento/Catalog/view/frontend/layout/default.xml | 2 +- app/code/Magento/Catalog/view/frontend/requirejs-config.js | 2 +- .../Catalog/view/frontend/templates/category/cms.phtml | 2 +- .../view/frontend/templates/category/description.phtml | 2 +- .../Catalog/view/frontend/templates/category/image.phtml | 2 +- .../Catalog/view/frontend/templates/category/products.phtml | 2 +- .../Catalog/view/frontend/templates/category/rss.phtml | 2 +- .../templates/category/widget/link/link_block.phtml | 2 +- .../templates/category/widget/link/link_inline.phtml | 2 +- .../Catalog/view/frontend/templates/navigation/left.phtml | 2 +- .../view/frontend/templates/product/compare/link.phtml | 2 +- .../view/frontend/templates/product/compare/list.phtml | 2 +- .../view/frontend/templates/product/compare/sidebar.phtml | 2 +- .../Catalog/view/frontend/templates/product/gallery.phtml | 2 +- .../Catalog/view/frontend/templates/product/image.phtml | 2 +- .../frontend/templates/product/image_with_borders.phtml | 2 +- .../Catalog/view/frontend/templates/product/list.phtml | 2 +- .../frontend/templates/product/list/addto/compare.phtml | 2 +- .../view/frontend/templates/product/list/items.phtml | 2 +- .../view/frontend/templates/product/list/toolbar.phtml | 2 +- .../frontend/templates/product/list/toolbar/amount.phtml | 2 +- .../frontend/templates/product/list/toolbar/limiter.phtml | 2 +- .../frontend/templates/product/list/toolbar/sorter.phtml | 2 +- .../frontend/templates/product/list/toolbar/viewmode.phtml | 2 +- .../Catalog/view/frontend/templates/product/listing.phtml | 2 +- .../view/frontend/templates/product/view/additional.phtml | 2 +- .../view/frontend/templates/product/view/addto.phtml | 2 +- .../frontend/templates/product/view/addto/compare.phtml | 2 +- .../view/frontend/templates/product/view/addtocart.phtml | 2 +- .../view/frontend/templates/product/view/attribute.phtml | 2 +- .../view/frontend/templates/product/view/attributes.phtml | 2 +- .../view/frontend/templates/product/view/description.phtml | 2 +- .../view/frontend/templates/product/view/details.phtml | 2 +- .../Catalog/view/frontend/templates/product/view/form.phtml | 2 +- .../view/frontend/templates/product/view/gallery.phtml | 2 +- .../view/frontend/templates/product/view/mailto.phtml | 2 +- .../templates/product/view/opengraph/currency.phtml | 2 +- .../frontend/templates/product/view/opengraph/general.phtml | 2 +- .../view/frontend/templates/product/view/options.phtml | 2 +- .../frontend/templates/product/view/options/type/date.phtml | 2 +- .../templates/product/view/options/type/default.phtml | 2 +- .../frontend/templates/product/view/options/type/file.phtml | 2 +- .../templates/product/view/options/type/select.phtml | 2 +- .../frontend/templates/product/view/options/type/text.phtml | 2 +- .../frontend/templates/product/view/options/wrapper.phtml | 2 +- .../templates/product/view/options/wrapper/bottom.phtml | 2 +- .../view/frontend/templates/product/view/price_clone.phtml | 2 +- .../view/frontend/templates/product/view/review.phtml | 2 +- .../view/frontend/templates/product/view/type/default.phtml | 2 +- .../frontend/templates/product/widget/link/link_block.phtml | 2 +- .../templates/product/widget/link/link_inline.phtml | 2 +- .../product/widget/new/column/new_default_list.phtml | 2 +- .../product/widget/new/column/new_images_list.phtml | 2 +- .../product/widget/new/column/new_names_list.phtml | 2 +- .../templates/product/widget/new/content/new_grid.phtml | 2 +- .../templates/product/widget/new/content/new_list.phtml | 2 +- .../Catalog/view/frontend/web/js/catalog-add-to-cart.js | 2 +- app/code/Magento/Catalog/view/frontend/web/js/gallery.js | 4 ++-- app/code/Magento/Catalog/view/frontend/web/js/list.js | 4 ++-- .../Catalog/view/frontend/web/js/product/list/toolbar.js | 2 +- .../Catalog/view/frontend/web/js/related-products.js | 4 ++-- .../Magento/Catalog/view/frontend/web/js/upsell-products.js | 4 ++-- .../Catalog/view/frontend/web/js/validate-product.js | 2 +- .../Catalog/view/frontend/web/js/view/compare-products.js | 2 +- app/code/Magento/Catalog/view/frontend/web/js/view/image.js | 2 +- app/code/Magento/Catalog/view/frontend/web/js/zoom.js | 4 ++-- .../Catalog/view/frontend/web/product/view/validation.js | 4 ++-- .../Catalog/view/frontend/web/template/product/image.html | 2 +- .../frontend/web/template/product/image_with_borders.html | 2 +- .../Magento/CatalogImportExport/Model/Export/Product.php | 2 +- .../Model/Export/Product/Type/AbstractType.php | 2 +- .../Model/Export/Product/Type/Factory.php | 2 +- .../Model/Export/Product/Type/Simple.php | 2 +- .../Model/Export/RowCustomizer/Composite.php | 2 +- .../Model/Export/RowCustomizerInterface.php | 2 +- .../Magento/CatalogImportExport/Model/Import/Product.php | 2 +- .../Model/Import/Product/CategoryProcessor.php | 2 +- .../CatalogImportExport/Model/Import/Product/Option.php | 2 +- .../Model/Import/Product/RowValidatorInterface.php | 2 +- .../Model/Import/Product/SkuProcessor.php | 2 +- .../Model/Import/Product/StoreResolver.php | 2 +- .../Model/Import/Product/TaxClassProcessor.php | 2 +- .../Model/Import/Product/Type/AbstractType.php | 2 +- .../Model/Import/Product/Type/Factory.php | 2 +- .../Model/Import/Product/Type/Simple.php | 2 +- .../Model/Import/Product/Type/Virtual.php | 2 +- .../CatalogImportExport/Model/Import/Product/Validator.php | 2 +- .../Import/Product/Validator/AbstractImportValidator.php | 2 +- .../Model/Import/Product/Validator/AbstractPrice.php | 2 +- .../Model/Import/Product/Validator/Media.php | 2 +- .../Model/Import/Product/Validator/Quantity.php | 2 +- .../Model/Import/Product/Validator/SuperProductsSku.php | 2 +- .../Model/Import/Product/Validator/TierPrice.php | 2 +- .../Model/Import/Product/Validator/Website.php | 2 +- .../Model/Import/Product/Validator/Weight.php | 2 +- .../CatalogImportExport/Model/Import/Proxy/Product.php | 2 +- .../Model/Import/Proxy/Product/ResourceModel.php | 2 +- .../Magento/CatalogImportExport/Model/Import/Uploader.php | 2 +- .../Model/Indexer/Category/Product/Plugin/Import.php | 2 +- .../Model/Indexer/Product/Category/Plugin/Import.php | 2 +- .../Model/Indexer/Product/Eav/Plugin/Import.php | 2 +- .../Model/Indexer/Product/Flat/Plugin/Import.php | 2 +- .../Model/Indexer/Product/Price/Plugin/Import.php | 2 +- .../Model/Indexer/Stock/Plugin/Import.php | 2 +- .../Test/Unit/Model/Export/ProductTest.php | 2 +- .../Test/Unit/Model/Export/StubProduct.php | 2 +- .../Unit/Model/Import/Product/CategoryProcessorTest.php | 2 +- .../Test/Unit/Model/Import/Product/SkuProcessorTest.php | 2 +- .../Unit/Model/Import/Product/TaxClassProcessorTest.php | 2 +- .../Unit/Model/Import/Product/Type/AbstractTypeTest.php | 2 +- .../Test/Unit/Model/Import/Product/Type/OptionTest.php | 2 +- .../Test/Unit/Model/Import/Product/Type/VirtualTest.php | 2 +- .../Type/_files/row_data_ambiguity_different_type.php | 2 +- .../Type/_files/row_data_ambiguity_several_db_rows.php | 2 +- .../Product/Type/_files/row_data_main_empty_title.php | 2 +- .../Product/Type/_files/row_data_main_incorrect_type.php | 2 +- .../Type/_files/row_data_main_invalid_max_characters.php | 2 +- .../Product/Type/_files/row_data_main_invalid_price.php | 2 +- .../Type/_files/row_data_main_invalid_sort_order.php | 2 +- .../Product/Type/_files/row_data_main_invalid_store.php | 2 +- .../Type/_files/row_data_main_max_characters_less_zero.php | 2 +- .../Import/Product/Type/_files/row_data_main_no_title.php | 2 +- .../Type/_files/row_data_main_sort_order_less_zero.php | 2 +- .../Import/Product/Type/_files/row_data_main_valid.php | 2 +- .../Product/Type/_files/row_data_no_custom_option.php | 2 +- .../Type/_files/row_data_secondary_incorrect_price.php | 2 +- .../Type/_files/row_data_secondary_incorrect_row_sort.php | 2 +- .../Type/_files/row_data_secondary_invalid_store.php | 2 +- .../Type/_files/row_data_secondary_row_sort_less_zero.php | 2 +- .../Import/Product/Type/_files/row_data_secondary_valid.php | 2 +- .../Test/Unit/Model/Import/Product/Validator/MediaTest.php | 2 +- .../Unit/Model/Import/Product/Validator/QuantityTest.php | 2 +- .../Unit/Model/Import/Product/Validator/TierPriceTest.php | 2 +- .../Test/Unit/Model/Import/Product/ValidatorTest.php | 2 +- .../Test/Unit/Model/Import/ProductTest.php | 2 +- .../Test/Unit/Model/Import/UploaderTest.php | 2 +- .../Unit/Model/Indexer/Product/Flat/Plugin/ImportTest.php | 2 +- .../Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php | 2 +- .../Test/Unit/Model/Indexer/Stock/Plugin/ImportTest.php | 2 +- app/code/Magento/CatalogImportExport/etc/config.xml | 2 +- app/code/Magento/CatalogImportExport/etc/di.xml | 2 +- app/code/Magento/CatalogImportExport/etc/export.xml | 2 +- app/code/Magento/CatalogImportExport/etc/import.xml | 2 +- app/code/Magento/CatalogImportExport/etc/module.xml | 2 +- app/code/Magento/CatalogImportExport/registration.php | 2 +- .../CatalogInventory/Api/Data/StockCollectionInterface.php | 2 +- .../Magento/CatalogInventory/Api/Data/StockInterface.php | 2 +- .../Api/Data/StockItemCollectionInterface.php | 2 +- .../CatalogInventory/Api/Data/StockItemInterface.php | 2 +- .../Api/Data/StockStatusCollectionInterface.php | 2 +- .../CatalogInventory/Api/Data/StockStatusInterface.php | 2 +- .../CatalogInventory/Api/StockConfigurationInterface.php | 2 +- .../Magento/CatalogInventory/Api/StockCriteriaInterface.php | 2 +- .../Magento/CatalogInventory/Api/StockIndexInterface.php | 2 +- .../CatalogInventory/Api/StockItemCriteriaInterface.php | 2 +- .../CatalogInventory/Api/StockItemRepositoryInterface.php | 2 +- .../CatalogInventory/Api/StockManagementInterface.php | 2 +- .../Magento/CatalogInventory/Api/StockRegistryInterface.php | 2 +- .../CatalogInventory/Api/StockRepositoryInterface.php | 2 +- .../Magento/CatalogInventory/Api/StockStateInterface.php | 2 +- .../CatalogInventory/Api/StockStatusCriteriaInterface.php | 2 +- .../CatalogInventory/Api/StockStatusRepositoryInterface.php | 2 +- .../Block/Adminhtml/Form/Field/Customergroup.php | 2 +- .../Block/Adminhtml/Form/Field/Minsaleqty.php | 2 +- .../CatalogInventory/Block/Adminhtml/Form/Field/Stock.php | 2 +- .../Magento/CatalogInventory/Block/Plugin/ProductView.php | 2 +- app/code/Magento/CatalogInventory/Block/Qtyincrements.php | 2 +- .../CatalogInventory/Block/Stockqty/AbstractStockqty.php | 2 +- .../Magento/CatalogInventory/Block/Stockqty/Composite.php | 2 +- .../CatalogInventory/Block/Stockqty/DefaultStockqty.php | 2 +- .../CatalogInventory/Block/Stockqty/Type/Grouped.php | 2 +- app/code/Magento/CatalogInventory/Helper/Data.php | 2 +- app/code/Magento/CatalogInventory/Helper/Minsaleqty.php | 2 +- app/code/Magento/CatalogInventory/Helper/Stock.php | 2 +- .../CatalogInventory/Model/AddStockStatusToCollection.php | 2 +- .../Magento/CatalogInventory/Model/Adminhtml/Stock/Item.php | 2 +- .../CatalogInventory/Model/Config/Backend/AbstractValue.php | 2 +- .../CatalogInventory/Model/Config/Backend/Backorders.php | 2 +- .../CatalogInventory/Model/Config/Backend/Managestock.php | 2 +- .../Model/Config/Backend/ShowOutOfStock.php | 2 +- app/code/Magento/CatalogInventory/Model/Configuration.php | 2 +- app/code/Magento/CatalogInventory/Model/Indexer/Stock.php | 2 +- .../CatalogInventory/Model/Indexer/Stock/AbstractAction.php | 2 +- .../CatalogInventory/Model/Indexer/Stock/Action/Full.php | 2 +- .../CatalogInventory/Model/Indexer/Stock/Action/Row.php | 2 +- .../CatalogInventory/Model/Indexer/Stock/Action/Rows.php | 2 +- .../CatalogInventory/Model/Indexer/Stock/CacheCleaner.php | 2 +- .../Model/Indexer/Stock/Plugin/StoreGroup.php | 2 +- .../CatalogInventory/Model/Indexer/Stock/Processor.php | 2 +- .../CatalogInventory/Model/Plugin/AfterProductLoad.php | 2 +- .../Model/Plugin/AroundProductRepositorySave.php | 2 +- .../CatalogInventory/Model/Plugin/FilterCustomAttribute.php | 2 +- app/code/Magento/CatalogInventory/Model/Plugin/Layer.php | 2 +- .../Magento/CatalogInventory/Model/Plugin/ProductLinks.php | 2 +- .../Model/Product/CopyConstructor/CatalogInventory.php | 2 +- .../CatalogInventory/Model/Quote/Item/QuantityValidator.php | 2 +- .../Quote/Item/QuantityValidator/Initializer/Option.php | 2 +- .../Item/QuantityValidator/Initializer/QtyProcessor.php | 2 +- .../Quote/Item/QuantityValidator/Initializer/StockItem.php | 2 +- .../Model/Quote/Item/QuantityValidator/QuoteItemQtyList.php | 2 +- .../Model/ResourceModel/Indexer/Stock/DefaultStock.php | 2 +- .../ResourceModel/Indexer/Stock/QueryProcessorComposite.php | 2 +- .../ResourceModel/Indexer/Stock/QueryProcessorInterface.php | 2 +- .../Model/ResourceModel/Indexer/Stock/StockInterface.php | 2 +- .../Model/ResourceModel/Indexer/StockFactory.php | 2 +- .../Product/StockStatusBaseSelectProcessor.php | 2 +- .../Model/ResourceModel/QtyCounterInterface.php | 2 +- .../Magento/CatalogInventory/Model/ResourceModel/Stock.php | 2 +- .../Model/ResourceModel/Stock/Collection.php | 2 +- .../CatalogInventory/Model/ResourceModel/Stock/Item.php | 2 +- .../Model/ResourceModel/Stock/Item/Collection.php | 2 +- .../Model/ResourceModel/Stock/Item/StockItemCriteria.php | 2 +- .../ResourceModel/Stock/Item/StockItemCriteriaMapper.php | 2 +- .../CatalogInventory/Model/ResourceModel/Stock/Status.php | 2 +- .../Model/ResourceModel/Stock/Status/Collection.php | 2 +- .../ResourceModel/Stock/Status/StockStatusCriteria.php | 2 +- .../Stock/Status/StockStatusCriteriaMapper.php | 2 +- .../Model/ResourceModel/Stock/StockCriteria.php | 2 +- .../Model/ResourceModel/Stock/StockCriteriaMapper.php | 2 +- .../Magento/CatalogInventory/Model/Source/Backorders.php | 2 +- app/code/Magento/CatalogInventory/Model/Source/Stock.php | 2 +- .../CatalogInventory/Model/Source/StockConfiguration.php | 2 +- .../Model/Spi/StockRegistryProviderInterface.php | 2 +- .../Model/Spi/StockStateProviderInterface.php | 2 +- app/code/Magento/CatalogInventory/Model/Stock.php | 2 +- app/code/Magento/CatalogInventory/Model/Stock/Item.php | 2 +- app/code/Magento/CatalogInventory/Model/Stock/Status.php | 2 +- .../CatalogInventory/Model/Stock/StockItemRepository.php | 2 +- .../CatalogInventory/Model/Stock/StockRepository.php | 2 +- .../CatalogInventory/Model/Stock/StockStatusRepository.php | 2 +- app/code/Magento/CatalogInventory/Model/StockIndex.php | 2 +- app/code/Magento/CatalogInventory/Model/StockManagement.php | 2 +- app/code/Magento/CatalogInventory/Model/StockRegistry.php | 2 +- .../CatalogInventory/Model/StockRegistryProvider.php | 2 +- .../Magento/CatalogInventory/Model/StockRegistryStorage.php | 2 +- app/code/Magento/CatalogInventory/Model/StockState.php | 2 +- .../Magento/CatalogInventory/Model/StockStateProvider.php | 2 +- .../CatalogInventory/Model/System/Config/Backend/Minqty.php | 2 +- .../Model/System/Config/Backend/Minsaleqty.php | 2 +- .../Model/System/Config/Backend/Qtyincrements.php | 2 +- .../CatalogInventory/Observer/AddInventoryDataObserver.php | 2 +- .../CatalogInventory/Observer/CancelOrderItemObserver.php | 2 +- .../Observer/CheckoutAllSubmitAfterObserver.php | 2 +- .../Observer/DisplayProductStatusInfoObserver.php | 2 +- .../Magento/CatalogInventory/Observer/ItemsForReindex.php | 2 +- app/code/Magento/CatalogInventory/Observer/ProductQty.php | 2 +- .../CatalogInventory/Observer/QuantityValidatorObserver.php | 2 +- .../Observer/ReindexQuoteInventoryObserver.php | 2 +- .../Observer/RevertQuoteInventoryObserver.php | 2 +- .../CatalogInventory/Observer/SaveInventoryDataObserver.php | 2 +- .../Observer/SubtractQuoteInventoryObserver.php | 2 +- .../Observer/UpdateItemsStockUponConfigChangeObserver.php | 2 +- app/code/Magento/CatalogInventory/Setup/InstallData.php | 2 +- app/code/Magento/CatalogInventory/Setup/InstallSchema.php | 2 +- app/code/Magento/CatalogInventory/Setup/Recurring.php | 2 +- app/code/Magento/CatalogInventory/Setup/UpgradeData.php | 2 +- app/code/Magento/CatalogInventory/Setup/UpgradeSchema.php | 2 +- .../Test/Unit/Api/StockConfigurationTest.php | 2 +- .../CatalogInventory/Test/Unit/Api/StockRegistryTest.php | 2 +- .../CatalogInventory/Test/Unit/Api/StockStateTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Form/Field/StockTest.php | 2 +- .../Test/Unit/Block/Plugin/ProductViewTest.php | 2 +- .../CatalogInventory/Test/Unit/Block/QtyincrementsTest.php | 2 +- .../Test/Unit/Block/Stockqty/DefaultStockqtyTest.php | 2 +- .../CatalogInventory/Test/Unit/Helper/MinsaleqtyTest.php | 2 +- .../Magento/CatalogInventory/Test/Unit/Helper/StockTest.php | 2 +- .../Test/Unit/Model/AddStockStatusToCollectionTest.php | 2 +- .../Test/Unit/Model/Adminhtml/Stock/ItemTest.php | 2 +- .../Test/Unit/Model/Config/Backend/ManagestockTest.php | 2 +- .../CatalogInventory/Test/Unit/Model/ConfigurationTest.php | 2 +- .../Test/Unit/Model/Indexer/Stock/Action/FullTest.php | 2 +- .../Test/Unit/Model/Indexer/Stock/Action/RowTest.php | 2 +- .../Test/Unit/Model/Indexer/Stock/Action/RowsTest.php | 2 +- .../Test/Unit/Model/Indexer/Stock/CacheCleanerTest.php | 2 +- .../Test/Unit/Model/Indexer/Stock/Plugin/StoreGroupTest.php | 2 +- .../Test/Unit/Model/Plugin/AfterProductLoadTest.php | 2 +- .../Unit/Model/Plugin/AroundProductRepositorySaveTest.php | 2 +- .../CatalogInventory/Test/Unit/Model/Plugin/LayerTest.php | 2 +- .../Test/Unit/Model/Plugin/ProductLinksTest.php | 2 +- .../Model/Product/CopyConstructor/CatalogInventoryTest.php | 2 +- .../Quote/Item/QuantityValidator/Initializer/OptionTest.php | 2 +- .../Item/QuantityValidator/Initializer/QtyProcessorTest.php | 2 +- .../QuantityValidator/Initializer/QuantityValidatorTest.php | 2 +- .../Item/QuantityValidator/Initializer/StockItemTest.php | 2 +- .../Product/StockStatusBaseSelectProcessorTest.php | 2 +- .../Test/Unit/Model/Spi/StockRegistryProviderTest.php | 2 +- .../Test/Unit/Model/Spi/StockStateProviderTest.php | 2 +- .../CatalogInventory/Test/Unit/Model/Stock/ItemTest.php | 2 +- .../Test/Unit/Model/Stock/StockItemRepositoryTest.php | 2 +- .../Test/Unit/Model/Stock/StockRepositoryTest.php | 2 +- .../Test/Unit/Model/Stock/StockStatusRepositoryTest.php | 2 +- .../CatalogInventory/Test/Unit/Model/StockRegistryTest.php | 2 +- .../Magento/CatalogInventory/Test/Unit/Model/StockTest.php | 2 +- .../Test/Unit/Observer/AddInventoryDataObserverTest.php | 2 +- .../Unit/Observer/CheckoutAllSubmitAfterObserverTest.php | 2 +- .../UpdateItemsStockUponConfigChangeObserverTest.php | 2 +- .../Product/Form/Element/UseConfigSettingsTest.php | 2 +- .../Product/Form/Modifier/AdvancedInventoryTest.php | 2 +- .../Ui/Component/Product/Form/Element/UseConfigSettings.php | 2 +- .../DataProvider/Product/AddQuantityFieldToCollection.php | 2 +- .../DataProvider/Product/AddQuantityFilterToCollection.php | 2 +- .../Product/Form/Modifier/AdvancedInventory.php | 2 +- app/code/Magento/CatalogInventory/etc/acl.xml | 2 +- app/code/Magento/CatalogInventory/etc/adminhtml/di.xml | 2 +- app/code/Magento/CatalogInventory/etc/adminhtml/system.xml | 2 +- app/code/Magento/CatalogInventory/etc/config.xml | 2 +- app/code/Magento/CatalogInventory/etc/di.xml | 2 +- app/code/Magento/CatalogInventory/etc/events.xml | 2 +- .../Magento/CatalogInventory/etc/extension_attributes.xml | 4 ++-- app/code/Magento/CatalogInventory/etc/frontend/di.xml | 2 +- app/code/Magento/CatalogInventory/etc/indexer.xml | 2 +- app/code/Magento/CatalogInventory/etc/module.xml | 2 +- app/code/Magento/CatalogInventory/etc/mview.xml | 2 +- app/code/Magento/CatalogInventory/etc/product_types.xml | 2 +- app/code/Magento/CatalogInventory/etc/webapi.xml | 2 +- app/code/Magento/CatalogInventory/registration.php | 2 +- .../view/adminhtml/ui_component/product_form.xml | 2 +- .../view/adminhtml/ui_component/product_listing.xml | 2 +- .../adminhtml/web/js/components/qty-validator-changer.js | 2 +- .../adminhtml/web/js/components/use-config-min-sale-qty.js | 2 +- .../view/adminhtml/web/js/components/use-config-settings.js | 4 ++-- .../view/frontend/layout/catalog_product_view.xml | 2 +- .../frontend/layout/catalog_product_view_type_simple.xml | 2 +- .../frontend/layout/catalog_product_view_type_virtual.xml | 2 +- .../view/frontend/templates/qtyincrements.phtml | 2 +- .../view/frontend/templates/stockqty/composite.phtml | 2 +- .../view/frontend/templates/stockqty/default.phtml | 2 +- .../CatalogRule/Api/CatalogRuleRepositoryInterface.php | 2 +- .../Magento/CatalogRule/Api/Data/ConditionInterface.php | 2 +- app/code/Magento/CatalogRule/Api/Data/RuleInterface.php | 2 +- .../CatalogRule/Block/Adminhtml/Edit/DeleteButton.php | 2 +- .../CatalogRule/Block/Adminhtml/Edit/GenericButton.php | 2 +- .../CatalogRule/Block/Adminhtml/Edit/ResetButton.php | 2 +- .../CatalogRule/Block/Adminhtml/Edit/SaveAndApplyButton.php | 2 +- .../Block/Adminhtml/Edit/SaveAndContinueButton.php | 2 +- .../Magento/CatalogRule/Block/Adminhtml/Edit/SaveButton.php | 2 +- .../Magento/CatalogRule/Block/Adminhtml/Promo/Catalog.php | 2 +- .../Block/Adminhtml/Promo/Catalog/Edit/Tab/Conditions.php | 2 +- .../Block/Adminhtml/Promo/Widget/Chooser/Sku.php | 2 +- .../CatalogRule/Controller/Adminhtml/Promo/Catalog.php | 2 +- .../Controller/Adminhtml/Promo/Catalog/ApplyRules.php | 2 +- .../Controller/Adminhtml/Promo/Catalog/Chooser.php | 2 +- .../Controller/Adminhtml/Promo/Catalog/Delete.php | 2 +- .../CatalogRule/Controller/Adminhtml/Promo/Catalog/Edit.php | 2 +- .../Controller/Adminhtml/Promo/Catalog/Index.php | 2 +- .../Controller/Adminhtml/Promo/Catalog/NewAction.php | 2 +- .../Controller/Adminhtml/Promo/Catalog/NewActionHtml.php | 2 +- .../Controller/Adminhtml/Promo/Catalog/NewConditionHtml.php | 2 +- .../CatalogRule/Controller/Adminhtml/Promo/Catalog/Save.php | 2 +- .../CatalogRule/Controller/Adminhtml/Promo/Index.php | 2 +- .../CatalogRule/Controller/Adminhtml/Promo/Widget.php | 2 +- .../Controller/Adminhtml/Promo/Widget/CategoriesJson.php | 2 +- .../Controller/Adminhtml/Promo/Widget/Chooser.php | 2 +- .../Magento/CatalogRule/Controller/RegistryConstants.php | 2 +- app/code/Magento/CatalogRule/Cron/DailyCatalogUpdate.php | 2 +- app/code/Magento/CatalogRule/Helper/Data.php | 2 +- .../Magento/CatalogRule/Model/CatalogRuleRepository.php | 2 +- app/code/Magento/CatalogRule/Model/Data/Condition.php | 2 +- .../Magento/CatalogRule/Model/Data/Condition/Converter.php | 2 +- app/code/Magento/CatalogRule/Model/Flag.php | 2 +- .../Magento/CatalogRule/Model/Indexer/AbstractIndexer.php | 2 +- app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder.php | 2 +- .../Model/Indexer/Product/ProductRuleIndexer.php | 2 +- .../Model/Indexer/Product/ProductRuleProcessor.php | 2 +- .../CatalogRule/Model/Indexer/Rule/RuleProductIndexer.php | 2 +- .../CatalogRule/Model/Indexer/Rule/RuleProductProcessor.php | 2 +- .../Magento/CatalogRule/Model/Product/PriceModifier.php | 2 +- .../CatalogRule/Model/ResourceModel/Grid/Collection.php | 2 +- .../Model/ResourceModel/Product/CollectionProcessor.php | 2 +- .../LinkedProductSelectBuilderByCatalogRulePrice.php | 2 +- .../Magento/CatalogRule/Model/ResourceModel/ReadHandler.php | 2 +- app/code/Magento/CatalogRule/Model/ResourceModel/Rule.php | 2 +- .../CatalogRule/Model/ResourceModel/Rule/Collection.php | 2 +- .../CatalogRule/Model/ResourceModel/Rule/Product/Price.php | 2 +- .../Model/ResourceModel/Rule/Product/Price/Collection.php | 2 +- .../Magento/CatalogRule/Model/ResourceModel/SaveHandler.php | 2 +- app/code/Magento/CatalogRule/Model/Rule.php | 2 +- .../Magento/CatalogRule/Model/Rule/Action/Collection.php | 2 +- app/code/Magento/CatalogRule/Model/Rule/Action/Product.php | 2 +- .../Model/Rule/Action/SimpleActionOptionsProvider.php | 2 +- .../Magento/CatalogRule/Model/Rule/Condition/Combine.php | 2 +- .../Magento/CatalogRule/Model/Rule/Condition/Product.php | 2 +- .../Model/Rule/CustomerGroupsOptionsProvider.php | 2 +- app/code/Magento/CatalogRule/Model/Rule/DataProvider.php | 2 +- app/code/Magento/CatalogRule/Model/Rule/Job.php | 2 +- app/code/Magento/CatalogRule/Model/Rule/Product/Price.php | 2 +- .../CatalogRule/Model/Rule/WebsitesOptionsProvider.php | 2 +- .../Magento/CatalogRule/Observer/AddDirtyRulesNotice.php | 2 +- .../PrepareCatalogProductCollectionPricesObserver.php | 2 +- .../CatalogRule/Observer/ProcessAdminFinalPriceObserver.php | 2 +- .../CatalogRule/Observer/ProcessFrontFinalPriceObserver.php | 2 +- app/code/Magento/CatalogRule/Observer/RulePricesStorage.php | 2 +- app/code/Magento/CatalogRule/Plugin/Indexer/Category.php | 2 +- .../Magento/CatalogRule/Plugin/Indexer/CustomerGroup.php | 2 +- .../Magento/CatalogRule/Plugin/Indexer/ImportExport.php | 2 +- .../CatalogRule/Plugin/Indexer/Product/Attribute.php | 2 +- .../CatalogRule/Plugin/Indexer/Product/Save/ApplyRules.php | 2 +- .../Plugin/Indexer/Product/Save/ApplyRulesAfterReindex.php | 2 +- app/code/Magento/CatalogRule/Plugin/Indexer/Website.php | 2 +- .../Magento/CatalogRule/Plugin/Model/Product/Action.php | 2 +- .../Magento/CatalogRule/Pricing/Price/CatalogRulePrice.php | 2 +- app/code/Magento/CatalogRule/Setup/InstallData.php | 2 +- app/code/Magento/CatalogRule/Setup/InstallSchema.php | 2 +- app/code/Magento/CatalogRule/Setup/UpgradeSchema.php | 2 +- .../Test/Unit/Block/Adminhtml/Edit/DeleteButtonTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Edit/GenericButtonTest.php | 2 +- .../CatalogRule/Test/Unit/Cron/DailyCatalogUpdateTest.php | 2 +- app/code/Magento/CatalogRule/Test/Unit/Helper/DataTest.php | 2 +- .../Test/Unit/Model/CatalogRuleRepositoryTest.php | 2 +- .../Test/Unit/Model/Data/Condition/ConverterTest.php | 2 +- .../Test/Unit/Model/Indexer/AbstractIndexerTest.php | 2 +- .../Test/Unit/Model/Indexer/IndexBuilderTest.php | 2 +- .../Unit/Model/Indexer/Product/ProductRuleIndexerTest.php | 2 +- .../Test/Unit/Model/Indexer/Rule/RuleProductIndexerTest.php | 2 +- .../Test/Unit/Model/Product/PriceModifierTest.php | 2 +- .../Test/Unit/Model/ResourceModel/ReadHandlerTest.php | 2 +- .../Test/Unit/Model/ResourceModel/SaveHandlerTest.php | 2 +- .../Test/Unit/Model/Rule/Condition/ProductTest.php | 2 +- .../Unit/Model/Rule/CustomerGroupsOptionsProviderTest.php | 2 +- .../CatalogRule/Test/Unit/Model/Rule/DataProviderTest.php | 2 +- .../Magento/CatalogRule/Test/Unit/Model/Rule/JobTest.php | 2 +- .../Test/Unit/Model/Rule/WebsitesOptionsProviderTest.php | 2 +- app/code/Magento/CatalogRule/Test/Unit/Model/RuleTest.php | 2 +- .../Test/Unit/Observer/AddDirtyRulesNoticeTest.php | 2 +- .../CatalogRule/Test/Unit/Plugin/Indexer/CategoryTest.php | 2 +- .../Test/Unit/Plugin/Indexer/CustomerGroupTest.php | 2 +- .../Test/Unit/Plugin/Indexer/ImportExportTest.php | 2 +- .../Indexer/Product/Save/ApplyRulesAfterReindexTest.php | 2 +- .../Unit/Plugin/Indexer/Product/Save/ApplyRulesTest.php | 2 +- .../CatalogRule/Test/Unit/Plugin/Indexer/WebsiteTest.php | 2 +- .../Test/Unit/Plugin/Model/Product/ActionTest.php | 2 +- .../Test/Unit/Pricing/Price/CatalogRulePriceTest.php | 2 +- app/code/Magento/CatalogRule/etc/acl.xml | 2 +- app/code/Magento/CatalogRule/etc/adminhtml/di.xml | 2 +- app/code/Magento/CatalogRule/etc/adminhtml/events.xml | 2 +- app/code/Magento/CatalogRule/etc/adminhtml/menu.xml | 2 +- app/code/Magento/CatalogRule/etc/adminhtml/routes.xml | 2 +- app/code/Magento/CatalogRule/etc/crontab.xml | 2 +- app/code/Magento/CatalogRule/etc/crontab/events.xml | 2 +- app/code/Magento/CatalogRule/etc/di.xml | 2 +- app/code/Magento/CatalogRule/etc/events.xml | 2 +- app/code/Magento/CatalogRule/etc/frontend/events.xml | 2 +- app/code/Magento/CatalogRule/etc/indexer.xml | 2 +- app/code/Magento/CatalogRule/etc/module.xml | 2 +- app/code/Magento/CatalogRule/etc/mview.xml | 2 +- app/code/Magento/CatalogRule/etc/webapi_rest/di.xml | 2 +- app/code/Magento/CatalogRule/etc/webapi_rest/events.xml | 2 +- app/code/Magento/CatalogRule/etc/webapi_soap/events.xml | 2 +- app/code/Magento/CatalogRule/registration.php | 2 +- .../adminhtml/layout/catalog_rule_promo_catalog_block.xml | 2 +- .../adminhtml/layout/catalog_rule_promo_catalog_edit.xml | 2 +- .../adminhtml/layout/catalog_rule_promo_catalog_index.xml | 2 +- .../view/adminhtml/templates/promo/fieldset.phtml | 2 +- .../CatalogRule/view/adminhtml/templates/promo/form.phtml | 2 +- .../view/adminhtml/ui_component/catalog_rule_form.xml | 2 +- .../CatalogRule/Model/ConfigurableProductsProvider.php | 2 +- .../Plugin/CatalogRule/Model/Indexer/ProductRuleReindex.php | 2 +- .../CatalogRule/Model/Rule/ConfigurableProductHandler.php | 2 +- .../Plugin/CatalogRule/Model/Rule/Validation.php | 2 +- .../Model/ResourceModel/AddCatalogRulePrice.php | 2 +- .../Model/Rule/ConfigurableProductHandlerTest.php | 2 +- .../Unit/Plugin/CatalogRule/Model/Rule/ValidationTest.php | 2 +- .../Magento/CatalogRuleConfigurable/etc/adminhtml/di.xml | 2 +- app/code/Magento/CatalogRuleConfigurable/etc/crontab/di.xml | 2 +- app/code/Magento/CatalogRuleConfigurable/etc/di.xml | 2 +- app/code/Magento/CatalogRuleConfigurable/etc/module.xml | 2 +- app/code/Magento/CatalogRuleConfigurable/registration.php | 2 +- app/code/Magento/CatalogSearch/Block/Advanced/Form.php | 2 +- app/code/Magento/CatalogSearch/Block/Advanced/Result.php | 2 +- .../Magento/CatalogSearch/Block/Plugin/FrontTabPlugin.php | 2 +- app/code/Magento/CatalogSearch/Block/Result.php | 2 +- .../Magento/CatalogSearch/Controller/Advanced/Index.php | 2 +- .../Magento/CatalogSearch/Controller/Advanced/Result.php | 2 +- app/code/Magento/CatalogSearch/Controller/Result/Index.php | 2 +- app/code/Magento/CatalogSearch/Helper/Data.php | 2 +- .../Model/Adapter/Aggregation/AggregationResolver.php | 2 +- .../Model/Adapter/Mysql/Aggregation/DataProvider.php | 2 +- .../Model/Adapter/Mysql/Dynamic/DataProvider.php | 2 +- .../CatalogSearch/Model/Adapter/Mysql/Field/Resolver.php | 2 +- .../Model/Adapter/Mysql/Filter/AliasResolver.php | 2 +- .../Model/Adapter/Mysql/Filter/Preprocessor.php | 2 +- .../Mysql/Plugin/Aggregation/Category/DataProvider.php | 2 +- app/code/Magento/CatalogSearch/Model/Adapter/Options.php | 2 +- .../Model/Adminhtml/System/Config/Backend/Engine.php | 2 +- app/code/Magento/CatalogSearch/Model/Advanced.php | 2 +- .../CatalogSearch/Model/Advanced/Request/Builder.php | 2 +- .../CatalogSearch/Model/Autocomplete/DataProvider.php | 2 +- app/code/Magento/CatalogSearch/Model/Fulltext.php | 2 +- app/code/Magento/CatalogSearch/Model/Indexer/Fulltext.php | 2 +- .../Model/Indexer/Fulltext/Action/DataProvider.php | 2 +- .../CatalogSearch/Model/Indexer/Fulltext/Action/Full.php | 2 +- .../Model/Indexer/Fulltext/Action/IndexIterator.php | 2 +- .../Model/Indexer/Fulltext/Plugin/AbstractPlugin.php | 2 +- .../Model/Indexer/Fulltext/Plugin/Attribute.php | 2 +- .../Model/Indexer/Fulltext/Plugin/Category.php | 2 +- .../CatalogSearch/Model/Indexer/Fulltext/Plugin/Product.php | 2 +- .../Model/Indexer/Fulltext/Plugin/Product/Action.php | 2 +- .../Model/Indexer/Fulltext/Plugin/Store/Group.php | 2 +- .../Model/Indexer/Fulltext/Plugin/Store/View.php | 2 +- .../CatalogSearch/Model/Indexer/Fulltext/Processor.php | 2 +- .../Magento/CatalogSearch/Model/Indexer/Fulltext/Store.php | 2 +- .../Magento/CatalogSearch/Model/Indexer/IndexStructure.php | 2 +- .../CatalogSearch/Model/Indexer/IndexStructureFactory.php | 2 +- .../CatalogSearch/Model/Indexer/IndexStructureProxy.php | 2 +- .../CatalogSearch/Model/Indexer/IndexSwitcherInterface.php | 2 +- .../CatalogSearch/Model/Indexer/IndexSwitcherProxy.php | 2 +- .../Magento/CatalogSearch/Model/Indexer/IndexerHandler.php | 2 +- .../CatalogSearch/Model/Indexer/IndexerHandlerFactory.php | 2 +- .../Magento/CatalogSearch/Model/Indexer/Mview/Action.php | 2 +- .../Magento/CatalogSearch/Model/Indexer/ProductFieldset.php | 2 +- .../CatalogSearch/Model/Indexer/Scope/IndexSwitcher.php | 2 +- .../Model/Indexer/Scope/IndexTableNotExistException.php | 2 +- .../CatalogSearch/Model/Indexer/Scope/ScopeProxy.php | 2 +- .../Magento/CatalogSearch/Model/Indexer/Scope/State.php | 2 +- .../CatalogSearch/Model/Indexer/Scope/TemporaryResolver.php | 2 +- .../Model/Indexer/Scope/UnknownStateException.php | 2 +- .../Model/Layer/Category/ItemCollectionProvider.php | 2 +- .../Magento/CatalogSearch/Model/Layer/Filter/Attribute.php | 2 +- .../Magento/CatalogSearch/Model/Layer/Filter/Category.php | 2 +- .../Magento/CatalogSearch/Model/Layer/Filter/Decimal.php | 2 +- app/code/Magento/CatalogSearch/Model/Layer/Filter/Price.php | 2 +- .../Model/Layer/Search/Plugin/CollectionFilter.php | 2 +- .../Magento/CatalogSearch/Model/Layer/Search/StateKey.php | 2 +- app/code/Magento/CatalogSearch/Model/Price/Interval.php | 2 +- .../Magento/CatalogSearch/Model/ResourceModel/Advanced.php | 2 +- .../Model/ResourceModel/Advanced/Collection.php | 2 +- .../Magento/CatalogSearch/Model/ResourceModel/Engine.php | 2 +- .../CatalogSearch/Model/ResourceModel/EngineInterface.php | 2 +- .../CatalogSearch/Model/ResourceModel/EngineProvider.php | 2 +- .../Magento/CatalogSearch/Model/ResourceModel/Fulltext.php | 2 +- .../Model/ResourceModel/Fulltext/Collection.php | 2 +- .../CatalogSearch/Model/ResourceModel/Search/Collection.php | 2 +- app/code/Magento/CatalogSearch/Model/Search/Catalog.php | 2 +- .../Model/Search/FilterMapper/ExclusionStrategy.php | 2 +- .../Model/Search/FilterMapper/FilterContext.php | 2 +- .../Model/Search/FilterMapper/FilterStrategyInterface.php | 2 +- .../Model/Search/FilterMapper/StaticAttributeStrategy.php | 2 +- .../Model/Search/FilterMapper/TermDropdownStrategy.php | 2 +- .../Magento/CatalogSearch/Model/Search/IndexBuilder.php | 2 +- .../Magento/CatalogSearch/Model/Search/ReaderPlugin.php | 2 +- .../Magento/CatalogSearch/Model/Search/RequestGenerator.php | 2 +- .../CatalogSearch/Model/Search/RequestGenerator/Decimal.php | 2 +- .../CatalogSearch/Model/Search/RequestGenerator/General.php | 2 +- .../Model/Search/RequestGenerator/GeneratorInterface.php | 2 +- .../Model/Search/RequestGenerator/GeneratorResolver.php | 2 +- app/code/Magento/CatalogSearch/Model/Search/TableMapper.php | 2 +- app/code/Magento/CatalogSearch/Model/Source/Weight.php | 2 +- app/code/Magento/CatalogSearch/Setup/InstallData.php | 2 +- app/code/Magento/CatalogSearch/Setup/InstallSchema.php | 2 +- .../Test/Unit/Block/Plugin/FrontTabPluginTest.php | 2 +- .../Magento/CatalogSearch/Test/Unit/Block/ResultTest.php | 2 +- .../Test/Unit/Controller/Advanced/ResultTest.php | 2 +- .../Model/Adapter/Aggregation/AggregationResolverTest.php | 2 +- .../Unit/Model/Adapter/Mysql/Filter/AliasResolverTest.php | 2 +- .../Unit/Model/Adapter/Mysql/Filter/PreprocessorTest.php | 2 +- .../CatalogSearch/Test/Unit/Model/Adapter/OptionsTest.php | 2 +- .../Test/Unit/Model/Advanced/Request/BuilderTest.php | 2 +- .../Magento/CatalogSearch/Test/Unit/Model/AdvancedTest.php | 2 +- .../Test/Unit/Model/Autocomplete/DataProviderTest.php | 2 +- .../Test/Unit/Model/Indexer/Fulltext/Action/FullTest.php | 2 +- .../Unit/Model/Indexer/Fulltext/Plugin/AttributeTest.php | 2 +- .../Unit/Model/Indexer/Fulltext/Plugin/CategoryTest.php | 2 +- .../Model/Indexer/Fulltext/Plugin/Product/ActionTest.php | 2 +- .../Test/Unit/Model/Indexer/Fulltext/Plugin/ProductTest.php | 2 +- .../Unit/Model/Indexer/Fulltext/Plugin/Store/GroupTest.php | 2 +- .../Unit/Model/Indexer/Fulltext/Plugin/Store/ViewTest.php | 2 +- .../CatalogSearch/Test/Unit/Model/Indexer/FulltextTest.php | 2 +- .../Test/Unit/Model/Indexer/IndexerHandlerFactoryTest.php | 2 +- .../Test/Unit/Model/Indexer/Scope/IndexSwitcherTest.php | 2 +- .../Unit/Model/Layer/Catalog/ItemCollectionProviderTest.php | 2 +- .../Test/Unit/Model/Layer/Filter/AttributeTest.php | 2 +- .../Test/Unit/Model/Layer/Filter/CategoryTest.php | 2 +- .../Test/Unit/Model/Layer/Filter/DecimalTest.php | 2 +- .../Test/Unit/Model/Layer/Filter/PriceTest.php | 2 +- .../Unit/Model/Layer/Search/Plugin/CollectionFilterTest.php | 2 +- .../Unit/Model/ResourceModel/Advanced/CollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/AdvancedTest.php | 2 +- .../Test/Unit/Model/ResourceModel/BaseCollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/EngineTest.php | 2 +- .../Unit/Model/ResourceModel/Fulltext/CollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/FulltextTest.php | 2 +- .../Unit/Model/Search/FilterMapper/FilterContextTest.php | 2 +- .../Test/Unit/Model/Search/IndexBuilderTest.php | 2 +- .../Test/Unit/Model/Search/Indexer/IndexStructureTest.php | 2 +- .../Test/Unit/Model/Search/ReaderPluginTest.php | 2 +- .../Test/Unit/Model/Search/RequestGenerator/DecimalTest.php | 2 +- .../Test/Unit/Model/Search/RequestGenerator/GeneralTest.php | 2 +- .../Model/Search/RequestGenerator/GeneratorResolverTest.php | 2 +- .../Test/Unit/Model/Search/RequestGeneratorTest.php | 2 +- .../Test/Unit/Model/Search/TableMapperTest.php | 2 +- app/code/Magento/CatalogSearch/etc/adminhtml/di.xml | 2 +- app/code/Magento/CatalogSearch/etc/adminhtml/system.xml | 2 +- app/code/Magento/CatalogSearch/etc/catalog_attributes.xml | 2 +- app/code/Magento/CatalogSearch/etc/config.xml | 2 +- app/code/Magento/CatalogSearch/etc/di.xml | 2 +- app/code/Magento/CatalogSearch/etc/events.xml | 2 +- app/code/Magento/CatalogSearch/etc/frontend/di.xml | 2 +- app/code/Magento/CatalogSearch/etc/frontend/page_types.xml | 2 +- app/code/Magento/CatalogSearch/etc/frontend/routes.xml | 4 ++-- app/code/Magento/CatalogSearch/etc/indexer.xml | 2 +- app/code/Magento/CatalogSearch/etc/module.xml | 2 +- app/code/Magento/CatalogSearch/etc/mview.xml | 2 +- app/code/Magento/CatalogSearch/etc/search_request.xml | 2 +- app/code/Magento/CatalogSearch/registration.php | 2 +- .../adminhtml/ui_component/product_attribute_add_form.xml | 2 +- .../view/frontend/layout/catalogsearch_advanced_index.xml | 2 +- .../view/frontend/layout/catalogsearch_advanced_result.xml | 2 +- .../view/frontend/layout/catalogsearch_result_index.xml | 2 +- .../Magento/CatalogSearch/view/frontend/layout/default.xml | 2 +- .../Magento/CatalogSearch/view/frontend/requirejs-config.js | 4 ++-- .../view/frontend/templates/advanced/form.phtml | 2 +- .../view/frontend/templates/advanced/link.phtml | 2 +- .../view/frontend/templates/advanced/result.phtml | 2 +- .../CatalogSearch/view/frontend/templates/result.phtml | 2 +- app/code/Magento/CatalogUrlRewrite/Block/UrlKeyRenderer.php | 2 +- .../Model/Category/CanonicalUrlRewriteGenerator.php | 2 +- .../Model/Category/ChildrenCategoriesProvider.php | 2 +- .../Model/Category/ChildrenUrlRewriteGenerator.php | 2 +- .../Model/Category/CurrentUrlRewritesRegenerator.php | 2 +- .../Model/Category/Plugin/Category/Move.php | 2 +- .../Model/Category/Plugin/Category/Remove.php | 2 +- .../CatalogUrlRewrite/Model/Category/Plugin/Storage.php | 2 +- .../CatalogUrlRewrite/Model/Category/Plugin/Store/Group.php | 2 +- .../CatalogUrlRewrite/Model/Category/Plugin/Store/View.php | 2 +- .../Magento/CatalogUrlRewrite/Model/Category/Product.php | 2 +- .../Model/CategoryBasedProductRewriteGenerator.php | 2 +- .../CatalogUrlRewrite/Model/CategoryUrlPathGenerator.php | 2 +- .../CatalogUrlRewrite/Model/CategoryUrlRewriteGenerator.php | 2 +- app/code/Magento/CatalogUrlRewrite/Model/ObjectRegistry.php | 2 +- .../Model/Product/AnchorUrlRewriteGenerator.php | 2 +- .../Model/Product/CanonicalUrlRewriteGenerator.php | 2 +- .../Model/Product/CategoriesUrlRewriteGenerator.php | 2 +- .../Model/Product/CurrentUrlRewritesRegenerator.php | 2 +- .../Model/ProductScopeRewriteGenerator.php | 2 +- .../CatalogUrlRewrite/Model/ProductUrlPathGenerator.php | 2 +- .../CatalogUrlRewrite/Model/ProductUrlRewriteGenerator.php | 2 +- .../Model/ResourceModel/Category/Product.php | 2 +- .../Model/ResourceModel/Category/ProductCollection.php | 2 +- .../Magento/CatalogUrlRewrite/Model/Storage/DbStorage.php | 2 +- .../CatalogUrlRewrite/Model/UrlRewriteBunchReplacer.php | 2 +- .../CatalogUrlRewrite/Observer/AfterImportDataObserver.php | 2 +- .../Observer/CategoryProcessUrlRewriteMovingObserver.php | 2 +- .../Observer/CategoryProcessUrlRewriteSavingObserver.php | 2 +- .../Observer/CategorySaveRewritesHistorySetterObserver.php | 2 +- .../Observer/CategoryUrlPathAutogeneratorObserver.php | 2 +- .../CatalogUrlRewrite/Observer/ClearProductUrlsObserver.php | 2 +- .../Observer/ProductProcessUrlRewriteRemovingObserver.php | 2 +- .../Observer/ProductProcessUrlRewriteSavingObserver.php | 2 +- .../Observer/ProductToWebsiteChangeObserver.php | 2 +- .../Observer/ProductUrlKeyAutogeneratorObserver.php | 2 +- .../CatalogUrlRewrite/Observer/UrlRewriteHandler.php | 2 +- .../Catalog/Block/Adminhtml/Category/Tab/Attributes.php | 2 +- .../Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php | 2 +- .../Controller/Adminhtml/Product/Initialization/Helper.php | 2 +- .../CatalogUrlRewrite/Service/V1/StoreViewService.php | 2 +- app/code/Magento/CatalogUrlRewrite/Setup/InstallData.php | 2 +- app/code/Magento/CatalogUrlRewrite/Setup/InstallSchema.php | 2 +- app/code/Magento/CatalogUrlRewrite/Setup/Recurring.php | 2 +- .../Model/Category/CanonicalUrlRewriteGeneratorTest.php | 2 +- .../Unit/Model/Category/ChildrenCategoriesProviderTest.php | 2 +- .../Unit/Model/Category/ChildrenUrlRewriteGeneratorTest.php | 2 +- .../Model/Category/CurrentUrlRewritesRegeneratorTest.php | 2 +- .../Test/Unit/Model/Category/Plugin/Category/MoveTest.php | 2 +- .../Test/Unit/Model/Category/Plugin/Category/RemoveTest.php | 2 +- .../Test/Unit/Model/Category/Plugin/StorageTest.php | 2 +- .../Test/Unit/Model/Category/Plugin/Store/GroupTest.php | 2 +- .../Test/Unit/Model/Category/Plugin/Store/ViewTest.php | 2 +- .../Unit/Model/CategoryBasedProductRewriteGeneratorTest.php | 2 +- .../Test/Unit/Model/CategoryUrlPathGeneratorTest.php | 2 +- .../Test/Unit/Model/CategoryUrlRewriteGeneratorTest.php | 2 +- .../Test/Unit/Model/ObjectRegistryTest.php | 2 +- .../Unit/Model/Product/CanonicalUrlRewriteGeneratorTest.php | 2 +- .../Model/Product/CategoriesUrlRewriteGeneratorTest.php | 2 +- .../Model/Product/CurrentUrlRewritesRegeneratorTest.php | 2 +- .../Test/Unit/Model/ProductScopeRewriteGeneratorTest.php | 2 +- .../Test/Unit/Model/ProductUrlPathGeneratorTest.php | 2 +- .../Test/Unit/Model/ProductUrlRewriteGeneratorTest.php | 2 +- .../Test/Unit/Model/UrlRewriteBunchReplacerTest.php | 2 +- .../Unit/Model/_files/categoryUrlRewritesDataProvider.php | 2 +- .../Test/Unit/Observer/AfterImportDataObserverTest.php | 2 +- .../Observer/CategoryUrlPathAutogeneratorObserverTest.php | 2 +- .../Test/Unit/Observer/ClearProductUrlsObserverTest.php | 2 +- .../Observer/ProductProcessUrlRewriteSavingObserverTest.php | 2 +- .../Test/Unit/Service/V1/StoreViewServiceTest.php | 2 +- .../Product/Form/Modifier/ProductUrlRewriteTest.php | 2 +- .../Product/Form/Modifier/ProductUrlRewrite.php | 2 +- app/code/Magento/CatalogUrlRewrite/etc/adminhtml/di.xml | 2 +- app/code/Magento/CatalogUrlRewrite/etc/adminhtml/events.xml | 2 +- app/code/Magento/CatalogUrlRewrite/etc/adminhtml/system.xml | 2 +- .../Magento/CatalogUrlRewrite/etc/catalog_attributes.xml | 2 +- app/code/Magento/CatalogUrlRewrite/etc/di.xml | 2 +- app/code/Magento/CatalogUrlRewrite/etc/eav_attributes.xml | 2 +- app/code/Magento/CatalogUrlRewrite/etc/events.xml | 2 +- app/code/Magento/CatalogUrlRewrite/etc/module.xml | 2 +- app/code/Magento/CatalogUrlRewrite/registration.php | 2 +- .../view/adminhtml/ui_component/category_form.xml | 2 +- .../Magento/CatalogWidget/Block/Product/ProductsList.php | 2 +- .../CatalogWidget/Block/Product/Widget/Conditions.php | 2 +- .../CatalogWidget/Controller/Adminhtml/Product/Widget.php | 2 +- .../Controller/Adminhtml/Product/Widget/Conditions.php | 2 +- app/code/Magento/CatalogWidget/Model/Rule.php | 2 +- .../Magento/CatalogWidget/Model/Rule/Condition/Combine.php | 2 +- .../Magento/CatalogWidget/Model/Rule/Condition/Product.php | 2 +- .../Test/Unit/Block/Product/ProductsListTest.php | 2 +- .../Test/Unit/Block/Product/Widget/ConditionsTest.php | 2 +- .../Controller/Adminhtml/Product/Widget/ConditionsTest.php | 2 +- .../Test/Unit/Model/Rule/Condition/CombineTest.php | 2 +- app/code/Magento/CatalogWidget/Test/Unit/Model/RuleTest.php | 2 +- app/code/Magento/CatalogWidget/etc/adminhtml/routes.xml | 2 +- app/code/Magento/CatalogWidget/etc/di.xml | 2 +- app/code/Magento/CatalogWidget/etc/module.xml | 2 +- app/code/Magento/CatalogWidget/etc/widget.xml | 2 +- app/code/Magento/CatalogWidget/registration.php | 2 +- .../adminhtml/templates/product/widget/conditions.phtml | 2 +- .../frontend/templates/product/widget/content/grid.phtml | 2 +- .../Magento/Checkout/Api/AgreementsValidatorInterface.php | 2 +- .../Magento/Checkout/Api/Data/PaymentDetailsInterface.php | 2 +- .../Checkout/Api/Data/ShippingInformationInterface.php | 2 +- .../Checkout/Api/Data/TotalsInformationInterface.php | 2 +- .../Api/GuestPaymentInformationManagementInterface.php | 2 +- .../Api/GuestShippingInformationManagementInterface.php | 2 +- .../Api/GuestTotalsInformationManagementInterface.php | 2 +- .../Checkout/Api/PaymentInformationManagementInterface.php | 2 +- .../Checkout/Api/ShippingInformationManagementInterface.php | 2 +- .../Checkout/Api/TotalsInformationManagementInterface.php | 2 +- app/code/Magento/Checkout/Block/Adminhtml/CartTab.php | 2 +- app/code/Magento/Checkout/Block/Cart.php | 2 +- app/code/Magento/Checkout/Block/Cart/AbstractCart.php | 2 +- app/code/Magento/Checkout/Block/Cart/Additional/Info.php | 2 +- .../Magento/Checkout/Block/Cart/CartTotalsProcessor.php | 2 +- app/code/Magento/Checkout/Block/Cart/Coupon.php | 2 +- app/code/Magento/Checkout/Block/Cart/Crosssell.php | 2 +- app/code/Magento/Checkout/Block/Cart/Item/Configure.php | 2 +- app/code/Magento/Checkout/Block/Cart/Item/Renderer.php | 2 +- .../Magento/Checkout/Block/Cart/Item/Renderer/Actions.php | 2 +- .../Checkout/Block/Cart/Item/Renderer/Actions/Edit.php | 2 +- .../Checkout/Block/Cart/Item/Renderer/Actions/Generic.php | 2 +- .../Checkout/Block/Cart/Item/Renderer/Actions/Remove.php | 2 +- app/code/Magento/Checkout/Block/Cart/LayoutProcessor.php | 2 +- app/code/Magento/Checkout/Block/Cart/Link.php | 2 +- app/code/Magento/Checkout/Block/Cart/Shipping.php | 2 +- app/code/Magento/Checkout/Block/Cart/Sidebar.php | 2 +- app/code/Magento/Checkout/Block/Cart/Totals.php | 2 +- app/code/Magento/Checkout/Block/Cart/ValidationMessages.php | 2 +- .../Magento/Checkout/Block/Checkout/AttributeMerger.php | 2 +- .../Checkout/Block/Checkout/DirectoryDataProcessor.php | 2 +- .../Magento/Checkout/Block/Checkout/LayoutProcessor.php | 2 +- .../Checkout/Block/Checkout/LayoutProcessorInterface.php | 2 +- .../Magento/Checkout/Block/Checkout/TotalsProcessor.php | 2 +- app/code/Magento/Checkout/Block/Item/Price/Renderer.php | 2 +- app/code/Magento/Checkout/Block/Link.php | 2 +- app/code/Magento/Checkout/Block/Onepage.php | 2 +- app/code/Magento/Checkout/Block/Onepage/Failure.php | 2 +- app/code/Magento/Checkout/Block/Onepage/Link.php | 2 +- app/code/Magento/Checkout/Block/Onepage/Success.php | 2 +- app/code/Magento/Checkout/Block/QuoteShortcutButtons.php | 2 +- app/code/Magento/Checkout/Block/Registration.php | 2 +- app/code/Magento/Checkout/Block/Shipping/Price.php | 2 +- app/code/Magento/Checkout/Block/Success.php | 2 +- app/code/Magento/Checkout/Block/Total/DefaultTotal.php | 2 +- app/code/Magento/Checkout/Controller/Account/Create.php | 2 +- app/code/Magento/Checkout/Controller/Action.php | 2 +- app/code/Magento/Checkout/Controller/Cart.php | 2 +- app/code/Magento/Checkout/Controller/Cart/Add.php | 2 +- app/code/Magento/Checkout/Controller/Cart/Addgroup.php | 2 +- app/code/Magento/Checkout/Controller/Cart/Configure.php | 2 +- app/code/Magento/Checkout/Controller/Cart/CouponPost.php | 2 +- app/code/Magento/Checkout/Controller/Cart/Delete.php | 2 +- app/code/Magento/Checkout/Controller/Cart/EstimatePost.php | 2 +- .../Magento/Checkout/Controller/Cart/EstimateUpdatePost.php | 2 +- app/code/Magento/Checkout/Controller/Cart/Index.php | 2 +- .../Magento/Checkout/Controller/Cart/UpdateItemOptions.php | 2 +- app/code/Magento/Checkout/Controller/Cart/UpdatePost.php | 2 +- .../Checkout/Controller/Express/RedirectLoginInterface.php | 2 +- app/code/Magento/Checkout/Controller/Index/Index.php | 2 +- app/code/Magento/Checkout/Controller/Noroute/Index.php | 2 +- app/code/Magento/Checkout/Controller/Onepage.php | 2 +- app/code/Magento/Checkout/Controller/Onepage/Failure.php | 2 +- app/code/Magento/Checkout/Controller/Onepage/SaveOrder.php | 2 +- app/code/Magento/Checkout/Controller/Onepage/Success.php | 2 +- .../Magento/Checkout/Controller/ShippingRates/Index.php | 2 +- app/code/Magento/Checkout/Controller/Sidebar/RemoveItem.php | 2 +- .../Magento/Checkout/Controller/Sidebar/UpdateItemQty.php | 2 +- app/code/Magento/Checkout/CustomerData/AbstractItem.php | 2 +- app/code/Magento/Checkout/CustomerData/Cart.php | 2 +- app/code/Magento/Checkout/CustomerData/DefaultItem.php | 2 +- app/code/Magento/Checkout/CustomerData/DirectoryData.php | 2 +- app/code/Magento/Checkout/CustomerData/ItemInterface.php | 2 +- app/code/Magento/Checkout/CustomerData/ItemPool.php | 2 +- .../Magento/Checkout/CustomerData/ItemPoolInterface.php | 2 +- app/code/Magento/Checkout/Exception.php | 2 +- app/code/Magento/Checkout/Helper/Cart.php | 2 +- app/code/Magento/Checkout/Helper/Data.php | 2 +- app/code/Magento/Checkout/Helper/ExpressRedirect.php | 2 +- .../Model/Adminhtml/BillingAddressDisplayOptions.php | 2 +- app/code/Magento/Checkout/Model/AgreementsValidator.php | 2 +- app/code/Magento/Checkout/Model/Cart.php | 2 +- app/code/Magento/Checkout/Model/Cart/CartInterface.php | 2 +- app/code/Magento/Checkout/Model/Cart/CollectQuote.php | 2 +- app/code/Magento/Checkout/Model/Cart/ImageProvider.php | 2 +- app/code/Magento/Checkout/Model/Cart/RequestInfoFilter.php | 2 +- .../Checkout/Model/Cart/RequestInfoFilterComposite.php | 2 +- .../Checkout/Model/Cart/RequestInfoFilterInterface.php | 2 +- app/code/Magento/Checkout/Model/CompositeConfigProvider.php | 2 +- .../Magento/Checkout/Model/Config/Source/Cart/Summary.php | 2 +- app/code/Magento/Checkout/Model/ConfigProviderInterface.php | 2 +- app/code/Magento/Checkout/Model/DefaultConfigProvider.php | 2 +- .../Checkout/Model/GuestPaymentInformationManagement.php | 2 +- .../Checkout/Model/GuestShippingInformationManagement.php | 2 +- .../Checkout/Model/GuestTotalsInformationManagement.php | 2 +- .../Checkout/Model/Layout/AbstractTotalsProcessor.php | 2 +- .../Magento/Checkout/Model/Layout/DepersonalizePlugin.php | 2 +- app/code/Magento/Checkout/Model/PaymentDetails.php | 2 +- .../Magento/Checkout/Model/PaymentInformationManagement.php | 2 +- app/code/Magento/Checkout/Model/ResourceModel/Cart.php | 2 +- app/code/Magento/Checkout/Model/Session.php | 2 +- .../Magento/Checkout/Model/Session/SuccessValidator.php | 2 +- app/code/Magento/Checkout/Model/ShippingInformation.php | 2 +- .../Checkout/Model/ShippingInformationManagement.php | 2 +- app/code/Magento/Checkout/Model/Sidebar.php | 2 +- app/code/Magento/Checkout/Model/TotalsInformation.php | 2 +- .../Magento/Checkout/Model/TotalsInformationManagement.php | 2 +- app/code/Magento/Checkout/Model/Type/Onepage.php | 2 +- .../Magento/Checkout/Observer/LoadCustomerQuoteObserver.php | 2 +- .../Checkout/Observer/SalesQuoteSaveAfterObserver.php | 2 +- app/code/Magento/Checkout/Observer/UnsetAllObserver.php | 2 +- app/code/Magento/Checkout/Setup/InstallData.php | 2 +- .../Checkout/Test/Unit/Block/Cart/AbstractCartTest.php | 2 +- .../Test/Unit/Block/Cart/CartTotalsProcessorTest.php | 2 +- .../Test/Unit/Block/Cart/Item/Renderer/Actions/EditTest.php | 2 +- .../Unit/Block/Cart/Item/Renderer/Actions/GenericTest.php | 2 +- .../Unit/Block/Cart/Item/Renderer/Actions/RemoveTest.php | 2 +- .../Test/Unit/Block/Cart/Item/Renderer/ActionsTest.php | 2 +- .../Checkout/Test/Unit/Block/Cart/Item/RendererTest.php | 2 +- .../Checkout/Test/Unit/Block/Cart/LayoutProcessorTest.php | 2 +- app/code/Magento/Checkout/Test/Unit/Block/Cart/LinkTest.php | 2 +- .../Magento/Checkout/Test/Unit/Block/Cart/ShippingTest.php | 2 +- .../Magento/Checkout/Test/Unit/Block/Cart/SidebarTest.php | 2 +- .../Test/Unit/Block/Checkout/DirectoryDataProcessorTest.php | 2 +- .../Test/Unit/Block/Checkout/LayoutProcessorTest.php | 2 +- .../Test/Unit/Block/Checkout/TotalsProcessorTest.php | 2 +- .../Checkout/Test/Unit/Block/Item/Price/RendererTest.php | 2 +- app/code/Magento/Checkout/Test/Unit/Block/LinkTest.php | 2 +- .../Checkout/Test/Unit/Block/Onepage/SuccessTest.php | 2 +- app/code/Magento/Checkout/Test/Unit/Block/OnepageTest.php | 2 +- .../Magento/Checkout/Test/Unit/Block/Shipping/PriceTest.php | 2 +- .../Checkout/Test/Unit/Controller/Account/CreateTest.php | 2 +- .../Checkout/Test/Unit/Controller/Cart/ConfigureTest.php | 2 +- .../Checkout/Test/Unit/Controller/Cart/CouponPostTest.php | 2 +- .../Checkout/Test/Unit/Controller/Cart/IndexTest.php | 2 +- .../Checkout/Test/Unit/Controller/Index/IndexTest.php | 2 +- .../Magento/Checkout/Test/Unit/Controller/OnepageTest.php | 2 +- .../Test/Unit/Controller/Sidebar/RemoveItemTest.php | 2 +- .../Test/Unit/Controller/Sidebar/UpdateItemQtyTest.php | 2 +- .../Checkout/Test/Unit/Controller/Stub/OnepageStub.php | 2 +- .../Magento/Checkout/Test/Unit/CustomerData/CartTest.php | 2 +- .../Checkout/Test/Unit/CustomerData/DefaultItemTest.php | 2 +- .../Checkout/Test/Unit/CustomerData/ItemPoolTest.php | 2 +- app/code/Magento/Checkout/Test/Unit/Helper/CartTest.php | 2 +- app/code/Magento/Checkout/Test/Unit/Helper/DataTest.php | 2 +- .../Checkout/Test/Unit/Helper/ExpressRedirectTest.php | 2 +- .../Checkout/Test/Unit/Model/AgreementsValidatorTest.php | 2 +- .../Checkout/Test/Unit/Model/Cart/ImageProviderTest.php | 2 +- .../Test/Unit/Model/Cart/RequestInfoFilterCompositeTest.php | 2 +- .../Checkout/Test/Unit/Model/Cart/RequestInfoFilterTest.php | 2 +- app/code/Magento/Checkout/Test/Unit/Model/CartTest.php | 2 +- .../Test/Unit/Model/CompositeConfigProviderTest.php | 2 +- .../Test/Unit/Model/Config/Source/Cart/SummaryTest.php | 2 +- .../Unit/Model/GuestPaymentInformationManagementTest.php | 2 +- .../Unit/Model/GuestShippingInformationManagementTest.php | 2 +- .../Test/Unit/Model/Layout/DepersonalizePluginTest.php | 2 +- .../Test/Unit/Model/PaymentInformationManagementTest.php | 2 +- .../Test/Unit/Model/Session/SuccessValidatorTest.php | 2 +- app/code/Magento/Checkout/Test/Unit/Model/SessionTest.php | 2 +- .../Test/Unit/Model/ShippingInformationManagementTest.php | 2 +- app/code/Magento/Checkout/Test/Unit/Model/SidebarTest.php | 2 +- .../Magento/Checkout/Test/Unit/Model/Type/OnepageTest.php | 2 +- .../Test/Unit/Observer/LoadCustomerQuoteObserverTest.php | 2 +- .../Test/Unit/Observer/SalesQuoteSaveAfterObserverTest.php | 2 +- .../Checkout/Test/Unit/Observer/UnsetAllObserverTest.php | 2 +- app/code/Magento/Checkout/etc/adminhtml/system.xml | 2 +- app/code/Magento/Checkout/etc/config.xml | 2 +- app/code/Magento/Checkout/etc/di.xml | 2 +- app/code/Magento/Checkout/etc/email_templates.xml | 2 +- app/code/Magento/Checkout/etc/events.xml | 2 +- app/code/Magento/Checkout/etc/fieldset.xml | 2 +- app/code/Magento/Checkout/etc/frontend/di.xml | 2 +- app/code/Magento/Checkout/etc/frontend/events.xml | 2 +- app/code/Magento/Checkout/etc/frontend/page_types.xml | 2 +- app/code/Magento/Checkout/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Checkout/etc/frontend/sections.xml | 2 +- app/code/Magento/Checkout/etc/module.xml | 2 +- app/code/Magento/Checkout/etc/webapi.xml | 2 +- app/code/Magento/Checkout/registration.php | 2 +- .../Checkout/view/adminhtml/email/failed_payment.html | 2 +- .../Checkout/view/frontend/layout/catalog_category_view.xml | 2 +- .../Checkout/view/frontend/layout/catalog_product_view.xml | 2 +- .../view/frontend/layout/checkout_cart_configure.xml | 2 +- .../frontend/layout/checkout_cart_configure_type_simple.xml | 2 +- .../Checkout/view/frontend/layout/checkout_cart_index.xml | 2 +- .../view/frontend/layout/checkout_cart_item_renderers.xml | 2 +- .../layout/checkout_cart_sidebar_item_price_renderers.xml | 2 +- .../layout/checkout_cart_sidebar_item_renderers.xml | 2 +- .../layout/checkout_cart_sidebar_total_renderers.xml | 2 +- .../Checkout/view/frontend/layout/checkout_index_index.xml | 2 +- .../view/frontend/layout/checkout_item_price_renderers.xml | 2 +- .../view/frontend/layout/checkout_onepage_failure.xml | 2 +- .../layout/checkout_onepage_review_item_renderers.xml | 2 +- .../view/frontend/layout/checkout_onepage_success.xml | 2 +- app/code/Magento/Checkout/view/frontend/layout/default.xml | 2 +- .../Magento/Checkout/view/frontend/page_layout/checkout.xml | 2 +- app/code/Magento/Checkout/view/frontend/requirejs-config.js | 2 +- .../Magento/Checkout/view/frontend/templates/button.phtml | 2 +- .../Magento/Checkout/view/frontend/templates/cart.phtml | 2 +- .../view/frontend/templates/cart/additional/info.phtml | 2 +- .../Checkout/view/frontend/templates/cart/coupon.phtml | 2 +- .../Checkout/view/frontend/templates/cart/form.phtml | 2 +- .../frontend/templates/cart/item/configure/updatecart.phtml | 2 +- .../view/frontend/templates/cart/item/default.phtml | 2 +- .../view/frontend/templates/cart/item/price/sidebar.phtml | 2 +- .../templates/cart/item/renderer/actions/edit.phtml | 2 +- .../templates/cart/item/renderer/actions/remove.phtml | 2 +- .../Checkout/view/frontend/templates/cart/methods.phtml | 2 +- .../Checkout/view/frontend/templates/cart/minicart.phtml | 2 +- .../Checkout/view/frontend/templates/cart/noItems.phtml | 2 +- .../Checkout/view/frontend/templates/cart/shipping.phtml | 2 +- .../Checkout/view/frontend/templates/cart/totals.phtml | 2 +- .../Checkout/view/frontend/templates/item/price/row.phtml | 2 +- .../Checkout/view/frontend/templates/item/price/unit.phtml | 2 +- .../Checkout/view/frontend/templates/js/components.phtml | 2 +- .../Magento/Checkout/view/frontend/templates/onepage.phtml | 2 +- .../Checkout/view/frontend/templates/onepage/failure.phtml | 2 +- .../Checkout/view/frontend/templates/onepage/link.phtml | 2 +- .../view/frontend/templates/onepage/review/item.phtml | 2 +- .../templates/onepage/review/item/price/row_excl_tax.phtml | 2 +- .../templates/onepage/review/item/price/row_incl_tax.phtml | 2 +- .../templates/onepage/review/item/price/unit_excl_tax.phtml | 2 +- .../templates/onepage/review/item/price/unit_incl_tax.phtml | 2 +- .../Checkout/view/frontend/templates/registration.phtml | 2 +- .../Checkout/view/frontend/templates/shipping/price.phtml | 2 +- .../Magento/Checkout/view/frontend/templates/success.phtml | 2 +- .../Checkout/view/frontend/templates/total/default.phtml | 2 +- .../view/frontend/web/js/action/create-billing-address.js | 2 +- .../view/frontend/web/js/action/create-shipping-address.js | 4 ++-- .../view/frontend/web/js/action/get-payment-information.js | 2 +- .../Checkout/view/frontend/web/js/action/get-totals.js | 4 ++-- .../Checkout/view/frontend/web/js/action/place-order.js | 2 +- .../view/frontend/web/js/action/redirect-on-success.js | 2 +- .../view/frontend/web/js/action/select-billing-address.js | 2 +- .../view/frontend/web/js/action/select-payment-method.js | 2 +- .../view/frontend/web/js/action/select-shipping-address.js | 2 +- .../view/frontend/web/js/action/select-shipping-method.js | 2 +- .../view/frontend/web/js/action/set-billing-address.js | 2 +- .../view/frontend/web/js/action/set-payment-information.js | 2 +- .../view/frontend/web/js/action/set-shipping-information.js | 2 +- .../Magento/Checkout/view/frontend/web/js/checkout-data.js | 2 +- .../Checkout/view/frontend/web/js/checkout-loader.js | 2 +- .../Magento/Checkout/view/frontend/web/js/discount-codes.js | 4 ++-- .../view/frontend/web/js/model/address-converter.js | 2 +- .../view/frontend/web/js/model/authentication-messages.js | 2 +- .../view/frontend/web/js/model/cart/estimate-service.js | 2 +- .../frontend/web/js/model/cart/totals-processor/default.js | 2 +- .../view/frontend/web/js/model/checkout-data-resolver.js | 2 +- .../view/frontend/web/js/model/customer-email-validator.js | 2 +- .../Checkout/view/frontend/web/js/model/error-processor.js | 2 +- .../view/frontend/web/js/model/full-screen-loader.js | 2 +- .../view/frontend/web/js/model/new-customer-address.js | 2 +- .../Checkout/view/frontend/web/js/model/payment-service.js | 2 +- .../frontend/web/js/model/payment/additional-validators.js | 2 +- .../view/frontend/web/js/model/payment/method-converter.js | 2 +- .../view/frontend/web/js/model/payment/method-group.js | 2 +- .../view/frontend/web/js/model/payment/method-list.js | 2 +- .../view/frontend/web/js/model/payment/renderer-list.js | 2 +- .../Checkout/view/frontend/web/js/model/place-order.js | 2 +- .../view/frontend/web/js/model/postcode-validator.js | 2 +- .../Magento/Checkout/view/frontend/web/js/model/quote.js | 2 +- .../view/frontend/web/js/model/resource-url-manager.js | 2 +- .../web/js/model/shipping-address/form-popup-state.js | 2 +- .../js/model/shipping-rate-processor/customer-address.js | 2 +- .../web/js/model/shipping-rate-processor/new-address.js | 2 +- .../view/frontend/web/js/model/shipping-rate-registry.js | 4 ++-- .../view/frontend/web/js/model/shipping-rate-service.js | 2 +- .../web/js/model/shipping-rates-validation-rules.js | 2 +- .../view/frontend/web/js/model/shipping-rates-validator.js | 2 +- .../view/frontend/web/js/model/shipping-save-processor.js | 2 +- .../web/js/model/shipping-save-processor/default.js | 2 +- .../Checkout/view/frontend/web/js/model/shipping-service.js | 2 +- .../Magento/Checkout/view/frontend/web/js/model/sidebar.js | 2 +- .../Checkout/view/frontend/web/js/model/step-navigator.js | 2 +- .../Magento/Checkout/view/frontend/web/js/model/totals.js | 2 +- .../Checkout/view/frontend/web/js/model/url-builder.js | 2 +- .../Checkout/view/frontend/web/js/proceed-to-checkout.js | 2 +- .../Magento/Checkout/view/frontend/web/js/region-updater.js | 2 +- .../Magento/Checkout/view/frontend/web/js/shopping-cart.js | 4 ++-- app/code/Magento/Checkout/view/frontend/web/js/sidebar.js | 2 +- .../view/frontend/web/js/view/authentication-messages.js | 2 +- .../Checkout/view/frontend/web/js/view/authentication.js | 2 +- .../Checkout/view/frontend/web/js/view/beforePlaceOrder.js | 2 +- .../Checkout/view/frontend/web/js/view/billing-address.js | 2 +- .../view/frontend/web/js/view/cart/shipping-estimation.js | 2 +- .../view/frontend/web/js/view/cart/shipping-rates.js | 2 +- .../Checkout/view/frontend/web/js/view/cart/totals.js | 2 +- .../view/frontend/web/js/view/cart/totals/shipping.js | 2 +- .../web/js/view/checkout/minicart/subtotal/totals.js | 2 +- .../Checkout/view/frontend/web/js/view/estimation.js | 2 +- .../view/frontend/web/js/view/form/element/email.js | 2 +- .../Magento/Checkout/view/frontend/web/js/view/minicart.js | 2 +- .../Magento/Checkout/view/frontend/web/js/view/payment.js | 2 +- .../Checkout/view/frontend/web/js/view/payment/default.js | 2 +- .../view/frontend/web/js/view/payment/email-validator.js | 2 +- .../Checkout/view/frontend/web/js/view/payment/list.js | 2 +- .../Checkout/view/frontend/web/js/view/progress-bar.js | 2 +- .../Checkout/view/frontend/web/js/view/registration.js | 2 +- .../Checkout/view/frontend/web/js/view/review/actions.js | 2 +- .../view/frontend/web/js/view/review/actions/default.js | 2 +- .../js/view/shipping-address/address-renderer/default.js | 2 +- .../view/frontend/web/js/view/shipping-address/list.js | 2 +- .../view/frontend/web/js/view/shipping-information.js | 2 +- .../view/shipping-information/address-renderer/default.js | 2 +- .../view/frontend/web/js/view/shipping-information/list.js | 2 +- .../Magento/Checkout/view/frontend/web/js/view/shipping.js | 2 +- .../Magento/Checkout/view/frontend/web/js/view/sidebar.js | 2 +- .../Magento/Checkout/view/frontend/web/js/view/summary.js | 2 +- .../view/frontend/web/js/view/summary/abstract-total.js | 2 +- .../view/frontend/web/js/view/summary/cart-items.js | 2 +- .../view/frontend/web/js/view/summary/grand-total.js | 2 +- .../view/frontend/web/js/view/summary/item/details.js | 2 +- .../frontend/web/js/view/summary/item/details/subtotal.js | 2 +- .../frontend/web/js/view/summary/item/details/thumbnail.js | 2 +- .../Checkout/view/frontend/web/js/view/summary/shipping.js | 2 +- .../Checkout/view/frontend/web/js/view/summary/subtotal.js | 2 +- .../Checkout/view/frontend/web/js/view/summary/totals.js | 2 +- .../Checkout/view/frontend/web/template/authentication.html | 2 +- .../view/frontend/web/template/billing-address.html | 4 ++-- .../view/frontend/web/template/billing-address/details.html | 2 +- .../view/frontend/web/template/billing-address/form.html | 2 +- .../view/frontend/web/template/billing-address/list.html | 2 +- .../frontend/web/template/cart/shipping-estimation.html | 2 +- .../view/frontend/web/template/cart/shipping-rates.html | 2 +- .../Checkout/view/frontend/web/template/cart/totals.html | 2 +- .../view/frontend/web/template/cart/totals/grand-total.html | 2 +- .../view/frontend/web/template/cart/totals/shipping.html | 2 +- .../view/frontend/web/template/cart/totals/subtotal.html | 2 +- .../Checkout/view/frontend/web/template/estimation.html | 2 +- .../view/frontend/web/template/form/element/email.html | 2 +- .../view/frontend/web/template/minicart/content.html | 2 +- .../view/frontend/web/template/minicart/item/default.html | 2 +- .../view/frontend/web/template/minicart/item/price.html | 2 +- .../view/frontend/web/template/minicart/subtotal.html | 2 +- .../frontend/web/template/minicart/subtotal/totals.html | 2 +- .../Checkout/view/frontend/web/template/onepage.html | 2 +- .../view/frontend/web/template/payment-methods/list.html | 2 +- .../Checkout/view/frontend/web/template/payment.html | 2 +- .../frontend/web/template/payment/before-place-order.html | 4 ++-- .../view/frontend/web/template/payment/generic-title.html | 4 ++-- .../Checkout/view/frontend/web/template/progress-bar.html | 2 +- .../Checkout/view/frontend/web/template/registration.html | 2 +- .../Checkout/view/frontend/web/template/review/actions.html | 4 ++-- .../view/frontend/web/template/review/actions/default.html | 2 +- .../template/shipping-address/address-renderer/default.html | 2 +- .../view/frontend/web/template/shipping-address/form.html | 2 +- .../view/frontend/web/template/shipping-address/list.html | 2 +- .../view/frontend/web/template/shipping-information.html | 2 +- .../shipping-information/address-renderer/default.html | 2 +- .../frontend/web/template/shipping-information/list.html | 2 +- .../Checkout/view/frontend/web/template/shipping.html | 2 +- .../Checkout/view/frontend/web/template/sidebar.html | 2 +- .../Checkout/view/frontend/web/template/summary.html | 2 +- .../view/frontend/web/template/summary/cart-items.html | 2 +- .../view/frontend/web/template/summary/grand-total.html | 2 +- .../view/frontend/web/template/summary/item/details.html | 2 +- .../web/template/summary/item/details/subtotal.html | 4 ++-- .../web/template/summary/item/details/thumbnail.html | 2 +- .../view/frontend/web/template/summary/shipping.html | 2 +- .../view/frontend/web/template/summary/subtotal.html | 2 +- .../Checkout/view/frontend/web/template/summary/totals.html | 2 +- .../Api/CheckoutAgreementsRepositoryInterface.php | 2 +- .../CheckoutAgreements/Api/Data/AgreementInterface.php | 2 +- .../CheckoutAgreements/Block/Adminhtml/Agreement.php | 2 +- .../CheckoutAgreements/Block/Adminhtml/Agreement/Edit.php | 2 +- .../Block/Adminhtml/Agreement/Edit/Form.php | 2 +- .../CheckoutAgreements/Block/Adminhtml/Agreement/Grid.php | 2 +- app/code/Magento/CheckoutAgreements/Block/Agreements.php | 2 +- .../CheckoutAgreements/Controller/Adminhtml/Agreement.php | 2 +- .../Controller/Adminhtml/Agreement/Delete.php | 2 +- .../Controller/Adminhtml/Agreement/Edit.php | 2 +- .../Controller/Adminhtml/Agreement/Index.php | 2 +- .../Controller/Adminhtml/Agreement/NewAction.php | 2 +- .../Controller/Adminhtml/Agreement/Save.php | 2 +- app/code/Magento/CheckoutAgreements/Model/Agreement.php | 2 +- .../CheckoutAgreements/Model/AgreementModeOptions.php | 2 +- .../CheckoutAgreements/Model/AgreementsConfigProvider.php | 2 +- .../Magento/CheckoutAgreements/Model/AgreementsProvider.php | 2 +- .../Model/AgreementsProviderInterface.php | 2 +- .../CheckoutAgreements/Model/AgreementsValidator.php | 2 +- .../CheckoutAgreements/Model/Checkout/Plugin/Validation.php | 2 +- .../Model/CheckoutAgreementsRepository.php | 2 +- .../CheckoutAgreements/Model/ResourceModel/Agreement.php | 2 +- .../Model/ResourceModel/Agreement/Collection.php | 2 +- app/code/Magento/CheckoutAgreements/Setup/InstallSchema.php | 2 +- app/code/Magento/CheckoutAgreements/Setup/UpgradeSchema.php | 2 +- .../CheckoutAgreements/Test/Unit/Block/AgreementsTest.php | 2 +- .../Test/Unit/Model/AgreementModeOptionsTest.php | 2 +- .../CheckoutAgreements/Test/Unit/Model/AgreementTest.php | 2 +- .../Test/Unit/Model/AgreementsConfigProviderTest.php | 2 +- .../Test/Unit/Model/AgreementsProviderTest.php | 2 +- .../Test/Unit/Model/AgreementsValidatorTest.php | 2 +- .../Test/Unit/Model/Checkout/Plugin/ValidationTest.php | 2 +- .../Test/Unit/Model/CheckoutAgreementsRepositoryTest.php | 2 +- app/code/Magento/CheckoutAgreements/etc/acl.xml | 2 +- app/code/Magento/CheckoutAgreements/etc/adminhtml/menu.xml | 2 +- .../Magento/CheckoutAgreements/etc/adminhtml/routes.xml | 2 +- .../Magento/CheckoutAgreements/etc/adminhtml/system.xml | 2 +- app/code/Magento/CheckoutAgreements/etc/di.xml | 2 +- .../Magento/CheckoutAgreements/etc/extension_attributes.xml | 2 +- app/code/Magento/CheckoutAgreements/etc/frontend/di.xml | 2 +- app/code/Magento/CheckoutAgreements/etc/module.xml | 2 +- app/code/Magento/CheckoutAgreements/etc/webapi.xml | 2 +- app/code/Magento/CheckoutAgreements/registration.php | 2 +- .../view/frontend/layout/checkout_index_index.xml | 4 ++-- .../frontend/layout/multishipping_checkout_overview.xml | 2 +- .../CheckoutAgreements/view/frontend/requirejs-config.js | 2 +- .../view/frontend/templates/additional_agreements.phtml | 2 +- .../view/frontend/templates/agreements.phtml | 2 +- .../view/frontend/templates/multishipping_agreements.phtml | 2 +- .../view/frontend/web/js/model/agreement-validator.js | 2 +- .../view/frontend/web/js/model/agreements-assigner.js | 2 +- .../view/frontend/web/js/model/agreements-modal.js | 2 +- .../view/frontend/web/js/model/place-order-mixin.js | 2 +- .../frontend/web/js/model/set-payment-information-mixin.js | 2 +- .../view/frontend/web/js/view/agreement-validation.js | 2 +- .../view/frontend/web/js/view/checkout-agreements.js | 2 +- .../frontend/web/template/checkout/checkout-agreements.html | 2 +- app/code/Magento/Cms/Api/BlockRepositoryInterface.php | 2 +- app/code/Magento/Cms/Api/Data/BlockInterface.php | 2 +- .../Magento/Cms/Api/Data/BlockSearchResultsInterface.php | 2 +- app/code/Magento/Cms/Api/Data/PageInterface.php | 2 +- .../Magento/Cms/Api/Data/PageSearchResultsInterface.php | 2 +- app/code/Magento/Cms/Api/PageRepositoryInterface.php | 2 +- app/code/Magento/Cms/Block/Adminhtml/Block.php | 2 +- .../Magento/Cms/Block/Adminhtml/Block/Edit/BackButton.php | 2 +- .../Magento/Cms/Block/Adminhtml/Block/Edit/DeleteButton.php | 2 +- .../Cms/Block/Adminhtml/Block/Edit/GenericButton.php | 2 +- .../Magento/Cms/Block/Adminhtml/Block/Edit/ResetButton.php | 2 +- .../Block/Adminhtml/Block/Edit/SaveAndContinueButton.php | 2 +- .../Magento/Cms/Block/Adminhtml/Block/Edit/SaveButton.php | 2 +- .../Magento/Cms/Block/Adminhtml/Block/Widget/Chooser.php | 2 +- app/code/Magento/Cms/Block/Adminhtml/Page.php | 2 +- .../Magento/Cms/Block/Adminhtml/Page/Edit/BackButton.php | 2 +- .../Magento/Cms/Block/Adminhtml/Page/Edit/DeleteButton.php | 2 +- .../Magento/Cms/Block/Adminhtml/Page/Edit/GenericButton.php | 2 +- .../Magento/Cms/Block/Adminhtml/Page/Edit/ResetButton.php | 2 +- .../Cms/Block/Adminhtml/Page/Edit/SaveAndContinueButton.php | 2 +- .../Magento/Cms/Block/Adminhtml/Page/Edit/SaveButton.php | 2 +- app/code/Magento/Cms/Block/Adminhtml/Page/Grid.php | 2 +- .../Cms/Block/Adminhtml/Page/Grid/Renderer/Action.php | 2 +- .../Adminhtml/Page/Grid/Renderer/Action/UrlBuilder.php | 2 +- .../Magento/Cms/Block/Adminhtml/Page/Widget/Chooser.php | 2 +- .../Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content.php | 2 +- .../Cms/Block/Adminhtml/Wysiwyg/Images/Content/Files.php | 2 +- .../Block/Adminhtml/Wysiwyg/Images/Content/Newfolder.php | 2 +- .../Cms/Block/Adminhtml/Wysiwyg/Images/Content/Uploader.php | 2 +- .../Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Tree.php | 2 +- app/code/Magento/Cms/Block/Block.php | 2 +- app/code/Magento/Cms/Block/Page.php | 2 +- app/code/Magento/Cms/Block/Widget/Block.php | 2 +- app/code/Magento/Cms/Block/Widget/Page/Link.php | 2 +- app/code/Magento/Cms/Controller/Adminhtml/Block.php | 2 +- app/code/Magento/Cms/Controller/Adminhtml/Block/Delete.php | 2 +- app/code/Magento/Cms/Controller/Adminhtml/Block/Edit.php | 2 +- app/code/Magento/Cms/Controller/Adminhtml/Block/Index.php | 2 +- .../Magento/Cms/Controller/Adminhtml/Block/InlineEdit.php | 2 +- .../Magento/Cms/Controller/Adminhtml/Block/MassDelete.php | 2 +- .../Magento/Cms/Controller/Adminhtml/Block/NewAction.php | 2 +- app/code/Magento/Cms/Controller/Adminhtml/Block/Save.php | 2 +- .../Cms/Controller/Adminhtml/Block/Widget/Chooser.php | 2 +- app/code/Magento/Cms/Controller/Adminhtml/Page/Delete.php | 2 +- app/code/Magento/Cms/Controller/Adminhtml/Page/Edit.php | 2 +- app/code/Magento/Cms/Controller/Adminhtml/Page/Index.php | 2 +- .../Magento/Cms/Controller/Adminhtml/Page/InlineEdit.php | 2 +- .../Magento/Cms/Controller/Adminhtml/Page/MassDelete.php | 2 +- .../Magento/Cms/Controller/Adminhtml/Page/MassDisable.php | 2 +- .../Magento/Cms/Controller/Adminhtml/Page/MassEnable.php | 2 +- .../Magento/Cms/Controller/Adminhtml/Page/NewAction.php | 2 +- .../Cms/Controller/Adminhtml/Page/PostDataProcessor.php | 2 +- app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php | 2 +- .../Cms/Controller/Adminhtml/Page/Widget/Chooser.php | 2 +- .../Magento/Cms/Controller/Adminhtml/Wysiwyg/Directive.php | 2 +- .../Magento/Cms/Controller/Adminhtml/Wysiwyg/Images.php | 2 +- .../Cms/Controller/Adminhtml/Wysiwyg/Images/Contents.php | 2 +- .../Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFiles.php | 2 +- .../Controller/Adminhtml/Wysiwyg/Images/DeleteFolder.php | 2 +- .../Cms/Controller/Adminhtml/Wysiwyg/Images/Index.php | 2 +- .../Cms/Controller/Adminhtml/Wysiwyg/Images/NewFolder.php | 2 +- .../Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsert.php | 2 +- .../Cms/Controller/Adminhtml/Wysiwyg/Images/Thumbnail.php | 2 +- .../Cms/Controller/Adminhtml/Wysiwyg/Images/TreeJson.php | 2 +- .../Cms/Controller/Adminhtml/Wysiwyg/Images/Upload.php | 2 +- app/code/Magento/Cms/Controller/Index/DefaultIndex.php | 2 +- app/code/Magento/Cms/Controller/Index/DefaultNoRoute.php | 2 +- app/code/Magento/Cms/Controller/Index/Index.php | 2 +- app/code/Magento/Cms/Controller/Noroute/Index.php | 2 +- app/code/Magento/Cms/Controller/Page/View.php | 2 +- app/code/Magento/Cms/Controller/Router.php | 2 +- app/code/Magento/Cms/Helper/Page.php | 2 +- app/code/Magento/Cms/Helper/Wysiwyg/Images.php | 2 +- .../FilterProcessor/BlockStoreFilter.php | 2 +- .../CollectionProcessor/FilterProcessor/PageStoreFilter.php | 2 +- app/code/Magento/Cms/Model/Block.php | 2 +- app/code/Magento/Cms/Model/Block/DataProvider.php | 2 +- app/code/Magento/Cms/Model/Block/Source/IsActive.php | 2 +- app/code/Magento/Cms/Model/BlockRepository.php | 2 +- app/code/Magento/Cms/Model/Config/Source/Page.php | 2 +- .../Magento/Cms/Model/Config/Source/Wysiwyg/Enabled.php | 2 +- app/code/Magento/Cms/Model/Page.php | 2 +- app/code/Magento/Cms/Model/Page/DataProvider.php | 2 +- app/code/Magento/Cms/Model/Page/Source/CustomLayout.php | 2 +- app/code/Magento/Cms/Model/Page/Source/IsActive.php | 2 +- app/code/Magento/Cms/Model/Page/Source/IsActiveFilter.php | 2 +- app/code/Magento/Cms/Model/Page/Source/PageLayout.php | 2 +- app/code/Magento/Cms/Model/Page/Source/PageLayoutFilter.php | 2 +- app/code/Magento/Cms/Model/Page/Source/Theme.php | 2 +- app/code/Magento/Cms/Model/PageRepository.php | 2 +- .../Magento/Cms/Model/ResourceModel/AbstractCollection.php | 2 +- app/code/Magento/Cms/Model/ResourceModel/Block.php | 2 +- .../Magento/Cms/Model/ResourceModel/Block/Collection.php | 2 +- .../Cms/Model/ResourceModel/Block/Grid/Collection.php | 2 +- .../ResourceModel/Block/Relation/Store/ReadHandler.php | 2 +- .../ResourceModel/Block/Relation/Store/SaveHandler.php | 2 +- app/code/Magento/Cms/Model/ResourceModel/Page.php | 2 +- .../Magento/Cms/Model/ResourceModel/Page/Collection.php | 2 +- .../Cms/Model/ResourceModel/Page/Grid/Collection.php | 2 +- .../Model/ResourceModel/Page/Relation/Store/ReadHandler.php | 2 +- .../Model/ResourceModel/Page/Relation/Store/SaveHandler.php | 2 +- app/code/Magento/Cms/Model/Template/Filter.php | 2 +- app/code/Magento/Cms/Model/Template/FilterProvider.php | 2 +- app/code/Magento/Cms/Model/Wysiwyg/Config.php | 2 +- app/code/Magento/Cms/Model/Wysiwyg/Images/Storage.php | 2 +- .../Magento/Cms/Model/Wysiwyg/Images/Storage/Collection.php | 2 +- app/code/Magento/Cms/Observer/NoCookiesObserver.php | 2 +- app/code/Magento/Cms/Observer/NoRouteObserver.php | 2 +- app/code/Magento/Cms/Setup/InstallData.php | 2 +- app/code/Magento/Cms/Setup/InstallSchema.php | 2 +- app/code/Magento/Cms/Setup/UpgradeData.php | 2 +- app/code/Magento/Cms/Setup/UpgradeSchema.php | 2 +- .../Test/Unit/Block/Adminhtml/Block/Widget/ChooserTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Page/Widget/ChooserTest.php | 2 +- app/code/Magento/Cms/Test/Unit/Block/BlockTest.php | 2 +- app/code/Magento/Cms/Test/Unit/Block/PageTest.php | 2 +- .../Magento/Cms/Test/Unit/Block/Widget/Page/LinkTest.php | 2 +- .../Unit/Controller/Adminhtml/AbstractMassActionTest.php | 2 +- .../Cms/Test/Unit/Controller/Adminhtml/Block/DeleteTest.php | 2 +- .../Cms/Test/Unit/Controller/Adminhtml/Block/EditTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Block/MassDeleteTest.php | 2 +- .../Cms/Test/Unit/Controller/Adminhtml/Block/SaveTest.php | 2 +- .../Cms/Test/Unit/Controller/Adminhtml/Page/DeleteTest.php | 2 +- .../Cms/Test/Unit/Controller/Adminhtml/Page/EditTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Page/InlineEditTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Page/MassDeleteTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Page/MassDisableTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Page/MassEnableTest.php | 2 +- .../Cms/Test/Unit/Controller/Adminhtml/Page/SaveTest.php | 2 +- .../Unit/Controller/Adminhtml/Wysiwyg/DirectiveTest.php | 2 +- .../Cms/Test/Unit/Controller/Block/InlineEditTest.php | 2 +- .../Magento/Cms/Test/Unit/Controller/Index/IndexTest.php | 2 +- .../Magento/Cms/Test/Unit/Controller/Noroute/IndexTest.php | 2 +- .../Cms/Test/Unit/Controller/Page/PostDataProcessorTest.php | 2 +- app/code/Magento/Cms/Test/Unit/Controller/Page/ViewTest.php | 2 +- app/code/Magento/Cms/Test/Unit/Helper/PageTest.php | 2 +- .../Magento/Cms/Test/Unit/Helper/Wysiwyg/ImagesTest.php | 2 +- .../FilterProcessor/BlockStoreFilterTest.php | 2 +- .../FilterProcessor/PageStoreFilterTest.php | 2 +- .../Cms/Test/Unit/Model/Block/Source/IsActiveTest.php | 2 +- .../Magento/Cms/Test/Unit/Model/BlockRepositoryTest.php | 2 +- .../Magento/Cms/Test/Unit/Model/Config/Source/PageTest.php | 2 +- .../Cms/Test/Unit/Model/Page/Source/CustomLayoutTest.php | 2 +- .../Cms/Test/Unit/Model/Page/Source/IsActiveFilterTest.php | 2 +- .../Cms/Test/Unit/Model/Page/Source/IsActiveTest.php | 2 +- .../Test/Unit/Model/Page/Source/PageLayoutFilterTest.php | 2 +- .../Cms/Test/Unit/Model/Page/Source/PageLayoutTest.php | 2 +- .../Magento/Cms/Test/Unit/Model/Page/Source/ThemeTest.php | 2 +- app/code/Magento/Cms/Test/Unit/Model/PageRepositoryTest.php | 2 +- app/code/Magento/Cms/Test/Unit/Model/PageTest.php | 2 +- .../Unit/Model/ResourceModel/AbstractCollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Block/CollectionTest.php | 2 +- .../ResourceModel/Block/Relation/Store/ReadHandlerTest.php | 2 +- .../ResourceModel/Block/Relation/Store/SaveHandlerTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Page/CollectionTest.php | 2 +- .../Unit/Model/ResourceModel/Page/Grid/CollectionTest.php | 2 +- .../ResourceModel/Page/Relation/Store/ReadHandlerTest.php | 2 +- .../ResourceModel/Page/Relation/Store/SaveHandlerTest.php | 2 +- .../Magento/Cms/Test/Unit/Model/ResourceModel/PageTest.php | 2 +- .../Cms/Test/Unit/Model/Template/FilterProviderTest.php | 2 +- .../Magento/Cms/Test/Unit/Model/Template/FilterTest.php | 2 +- app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/ConfigTest.php | 2 +- .../Cms/Test/Unit/Model/Wysiwyg/Images/StorageTest.php | 2 +- .../Cms/Test/Unit/Observer/NoCookiesObserverTest.php | 2 +- .../Magento/Cms/Test/Unit/Observer/NoRouteObserverTest.php | 2 +- .../Unit/Ui/Component/Listing/Column/BlockActionsTest.php | 2 +- .../Unit/Ui/Component/Listing/Column/Cms/OptionsTest.php | 2 +- .../Unit/Ui/Component/Listing/Column/PageActionsTest.php | 2 +- .../Cms/Test/Unit/Ui/Component/Listing/DataProviderTest.php | 2 +- app/code/Magento/Cms/Ui/Component/DataProvider.php | 2 +- .../Cms/Ui/Component/Listing/Column/BlockActions.php | 2 +- .../Magento/Cms/Ui/Component/Listing/Column/Cms/Options.php | 2 +- .../Magento/Cms/Ui/Component/Listing/Column/PageActions.php | 2 +- app/code/Magento/Cms/etc/acl.xml | 2 +- app/code/Magento/Cms/etc/adminhtml/di.xml | 2 +- app/code/Magento/Cms/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Cms/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Cms/etc/adminhtml/system.xml | 2 +- app/code/Magento/Cms/etc/config.xml | 2 +- app/code/Magento/Cms/etc/di.xml | 2 +- app/code/Magento/Cms/etc/events.xml | 2 +- app/code/Magento/Cms/etc/frontend/di.xml | 2 +- app/code/Magento/Cms/etc/frontend/events.xml | 2 +- app/code/Magento/Cms/etc/frontend/page_types.xml | 2 +- app/code/Magento/Cms/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Cms/etc/module.xml | 2 +- app/code/Magento/Cms/etc/mview.xml | 2 +- app/code/Magento/Cms/etc/webapi.xml | 2 +- app/code/Magento/Cms/etc/widget.xml | 2 +- app/code/Magento/Cms/registration.php | 2 +- .../Magento/Cms/view/adminhtml/layout/cms_block_edit.xml | 2 +- .../Magento/Cms/view/adminhtml/layout/cms_block_index.xml | 2 +- .../Magento/Cms/view/adminhtml/layout/cms_block_new.xml | 2 +- .../Magento/Cms/view/adminhtml/layout/cms_page_edit.xml | 2 +- .../Magento/Cms/view/adminhtml/layout/cms_page_index.xml | 2 +- app/code/Magento/Cms/view/adminhtml/layout/cms_page_new.xml | 2 +- .../view/adminhtml/layout/cms_wysiwyg_images_contents.xml | 2 +- .../Cms/view/adminhtml/layout/cms_wysiwyg_images_index.xml | 2 +- app/code/Magento/Cms/view/adminhtml/requirejs-config.js | 4 ++-- .../Cms/view/adminhtml/templates/browser/content.phtml | 2 +- .../view/adminhtml/templates/browser/content/files.phtml | 2 +- .../view/adminhtml/templates/browser/content/uploader.phtml | 2 +- .../Magento/Cms/view/adminhtml/templates/browser/tree.phtml | 2 +- .../templates/page/edit/form/renderer/content.phtml | 2 +- .../Cms/view/adminhtml/ui_component/cms_block_form.xml | 2 +- .../Cms/view/adminhtml/ui_component/cms_block_listing.xml | 2 +- .../Cms/view/adminhtml/ui_component/cms_page_form.xml | 2 +- .../Cms/view/adminhtml/ui_component/cms_page_listing.xml | 2 +- app/code/Magento/Cms/view/adminhtml/web/js/folder-tree.js | 4 ++-- .../Cms/view/frontend/layout/cms_index_defaultindex.xml | 2 +- .../Cms/view/frontend/layout/cms_index_defaultnoroute.xml | 2 +- .../Magento/Cms/view/frontend/layout/cms_index_index.xml | 2 +- .../Cms/view/frontend/layout/cms_index_nocookies.xml | 2 +- .../Magento/Cms/view/frontend/layout/cms_index_noroute.xml | 2 +- app/code/Magento/Cms/view/frontend/layout/cms_page_view.xml | 2 +- app/code/Magento/Cms/view/frontend/layout/default.xml | 2 +- app/code/Magento/Cms/view/frontend/layout/print.xml | 2 +- app/code/Magento/Cms/view/frontend/templates/content.phtml | 2 +- .../Magento/Cms/view/frontend/templates/default/home.phtml | 4 ++-- .../Cms/view/frontend/templates/default/no-route.phtml | 2 +- app/code/Magento/Cms/view/frontend/templates/meta.phtml | 2 +- .../view/frontend/templates/widget/link/link_block.phtml | 2 +- .../view/frontend/templates/widget/link/link_inline.phtml | 2 +- .../frontend/templates/widget/static_block/default.phtml | 2 +- .../Magento/CmsUrlRewrite/Model/CmsPageUrlPathGenerator.php | 2 +- .../CmsUrlRewrite/Model/CmsPageUrlRewriteGenerator.php | 2 +- .../Observer/ProcessUrlRewriteSavingObserver.php | 2 +- .../CmsUrlRewrite/Plugin/Cms/Model/ResourceModel/Page.php | 2 +- .../Test/Unit/Model/CmsPageUrlRewriteGeneratorTest.php | 2 +- .../Unit/Observer/ProcessUrlRewriteSavingObserverTest.php | 2 +- .../Test/Unit/Plugin/Cms/Model/ResourceModel/PageTest.php | 2 +- app/code/Magento/CmsUrlRewrite/etc/adminhtml/di.xml | 2 +- app/code/Magento/CmsUrlRewrite/etc/events.xml | 2 +- app/code/Magento/CmsUrlRewrite/etc/module.xml | 2 +- app/code/Magento/CmsUrlRewrite/registration.php | 2 +- .../Config/App/Config/Source/DumpConfigSourceAggregated.php | 2 +- .../Config/App/Config/Source/DumpConfigSourceInterface.php | 2 +- .../Config/App/Config/Source/ModularConfigSource.php | 2 +- .../Config/App/Config/Source/RuntimeConfigSource.php | 2 +- app/code/Magento/Config/App/Config/Type/System.php | 2 +- app/code/Magento/Config/Block/System/Config/Dwstree.php | 2 +- app/code/Magento/Config/Block/System/Config/Edit.php | 2 +- app/code/Magento/Config/Block/System/Config/Form.php | 2 +- app/code/Magento/Config/Block/System/Config/Form/Field.php | 2 +- .../Config/Block/System/Config/Form/Field/Datetime.php | 2 +- .../Config/Block/System/Config/Form/Field/Factory.php | 2 +- .../Config/Form/Field/FieldArray/AbstractFieldArray.php | 2 +- .../Magento/Config/Block/System/Config/Form/Field/File.php | 2 +- .../Config/Block/System/Config/Form/Field/Heading.php | 2 +- .../Magento/Config/Block/System/Config/Form/Field/Image.php | 2 +- .../Config/Block/System/Config/Form/Field/Notification.php | 2 +- .../Config/Block/System/Config/Form/Field/Regexceptions.php | 2 +- .../Block/System/Config/Form/Field/Select/Allowspecific.php | 2 +- .../Magento/Config/Block/System/Config/Form/Fieldset.php | 2 +- .../Config/Block/System/Config/Form/Fieldset/Factory.php | 2 +- .../System/Config/Form/Fieldset/Modules/DisableOutput.php | 2 +- app/code/Magento/Config/Block/System/Config/Tabs.php | 2 +- .../Config/Controller/Adminhtml/System/AbstractConfig.php | 2 +- .../Adminhtml/System/Config/AbstractScopeConfig.php | 2 +- .../Config/Controller/Adminhtml/System/Config/Edit.php | 2 +- .../Config/Controller/Adminhtml/System/Config/Index.php | 2 +- .../Config/Controller/Adminhtml/System/Config/Save.php | 2 +- .../Config/Controller/Adminhtml/System/Config/State.php | 2 +- .../Controller/Adminhtml/System/ConfigSectionChecker.php | 2 +- app/code/Magento/Config/Model/Config.php | 2 +- .../Magento/Config/Model/Config/Backend/Admin/Custom.php | 2 +- .../Config/Model/Config/Backend/Admin/Custompath.php | 2 +- .../Config/Backend/Admin/Password/Link/Expirationperiod.php | 2 +- .../Magento/Config/Model/Config/Backend/Admin/Robots.php | 2 +- .../Magento/Config/Model/Config/Backend/Admin/Usecustom.php | 2 +- .../Config/Model/Config/Backend/Admin/Usesecretkey.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Baseurl.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Cache.php | 2 +- .../Model/Config/Backend/Currency/AbstractCurrency.php | 2 +- .../Magento/Config/Model/Config/Backend/Currency/Allow.php | 2 +- .../Magento/Config/Model/Config/Backend/Currency/Base.php | 2 +- .../Magento/Config/Model/Config/Backend/Currency/Cron.php | 2 +- .../Model/Config/Backend/Currency/DefaultCurrency.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Datashare.php | 2 +- .../Config/Model/Config/Backend/Design/Exception.php | 2 +- .../Magento/Config/Model/Config/Backend/Email/Address.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Email/Logo.php | 2 +- .../Magento/Config/Model/Config/Backend/Email/Sender.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Encrypted.php | 2 +- app/code/Magento/Config/Model/Config/Backend/File.php | 2 +- .../Config/Model/Config/Backend/File/RequestData.php | 2 +- .../Backend/File/RequestData/RequestDataInterface.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Filename.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Image.php | 2 +- .../Magento/Config/Model/Config/Backend/Image/Adapter.php | 2 +- .../Magento/Config/Model/Config/Backend/Image/Favicon.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Image/Logo.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Image/Pdf.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Locale.php | 2 +- .../Magento/Config/Model/Config/Backend/Locale/Timezone.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Log/Cron.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Secure.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Serialized.php | 2 +- .../Model/Config/Backend/Serialized/ArraySerialized.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Store.php | 2 +- app/code/Magento/Config/Model/Config/Backend/Translate.php | 2 +- .../Magento/Config/Model/Config/BackendClone/Factory.php | 2 +- app/code/Magento/Config/Model/Config/BackendFactory.php | 2 +- app/code/Magento/Config/Model/Config/CommentFactory.php | 2 +- app/code/Magento/Config/Model/Config/CommentInterface.php | 2 +- .../Magento/Config/Model/Config/Compiler/IncludeElement.php | 2 +- app/code/Magento/Config/Model/Config/Export/Comment.php | 2 +- app/code/Magento/Config/Model/Config/Export/ExcludeList.php | 2 +- app/code/Magento/Config/Model/Config/Factory.php | 2 +- app/code/Magento/Config/Model/Config/Loader.php | 2 +- .../Model/Config/Processor/EnvironmentPlaceholder.php | 2 +- .../Model/Config/Reader/Source/Deployed/SettingChecker.php | 2 +- app/code/Magento/Config/Model/Config/SchemaLocator.php | 2 +- app/code/Magento/Config/Model/Config/ScopeDefiner.php | 2 +- app/code/Magento/Config/Model/Config/Source/Admin/Page.php | 2 +- app/code/Magento/Config/Model/Config/Source/Date/Short.php | 2 +- .../Magento/Config/Model/Config/Source/Design/Robots.php | 2 +- .../Magento/Config/Model/Config/Source/Dev/Dbautoup.php | 2 +- .../Magento/Config/Model/Config/Source/Email/Identity.php | 2 +- .../Magento/Config/Model/Config/Source/Email/Method.php | 2 +- .../Magento/Config/Model/Config/Source/Email/Smtpauth.php | 2 +- .../Magento/Config/Model/Config/Source/Email/Template.php | 2 +- .../Magento/Config/Model/Config/Source/Enabledisable.php | 2 +- .../Magento/Config/Model/Config/Source/Image/Adapter.php | 2 +- app/code/Magento/Config/Model/Config/Source/Locale.php | 2 +- .../Magento/Config/Model/Config/Source/Locale/Country.php | 2 +- .../Magento/Config/Model/Config/Source/Locale/Currency.php | 2 +- .../Config/Model/Config/Source/Locale/Currency/All.php | 2 +- .../Magento/Config/Model/Config/Source/Locale/Timezone.php | 2 +- .../Config/Model/Config/Source/Locale/Weekdaycodes.php | 2 +- .../Magento/Config/Model/Config/Source/Locale/Weekdays.php | 2 +- app/code/Magento/Config/Model/Config/Source/Nooptreq.php | 2 +- .../Magento/Config/Model/Config/Source/Reports/Scope.php | 2 +- app/code/Magento/Config/Model/Config/Source/Store.php | 2 +- .../Magento/Config/Model/Config/Source/Web/Protocol.php | 2 +- .../Magento/Config/Model/Config/Source/Web/Redirect.php | 2 +- app/code/Magento/Config/Model/Config/Source/Website.php | 2 +- .../Config/Model/Config/Source/Website/AdminOptionHash.php | 2 +- .../Config/Model/Config/Source/Website/OptionHash.php | 2 +- app/code/Magento/Config/Model/Config/Source/Yesno.php | 2 +- app/code/Magento/Config/Model/Config/Source/Yesnocustom.php | 2 +- app/code/Magento/Config/Model/Config/SourceFactory.php | 2 +- app/code/Magento/Config/Model/Config/Structure.php | 2 +- .../Config/Model/Config/Structure/AbstractElement.php | 2 +- .../Config/Model/Config/Structure/AbstractMapper.php | 2 +- .../Magento/Config/Model/Config/Structure/Converter.php | 2 +- app/code/Magento/Config/Model/Config/Structure/Data.php | 2 +- .../Model/Config/Structure/Element/AbstractComposite.php | 2 +- .../Model/Config/Structure/Element/Dependency/Field.php | 2 +- .../Config/Structure/Element/Dependency/FieldFactory.php | 2 +- .../Model/Config/Structure/Element/Dependency/Mapper.php | 2 +- .../Magento/Config/Model/Config/Structure/Element/Field.php | 2 +- .../Model/Config/Structure/Element/FlyweightFactory.php | 2 +- .../Magento/Config/Model/Config/Structure/Element/Group.php | 2 +- .../Config/Model/Config/Structure/Element/Group/Proxy.php | 2 +- .../Config/Model/Config/Structure/Element/Iterator.php | 2 +- .../Model/Config/Structure/Element/Iterator/Field.php | 2 +- .../Model/Config/Structure/Element/Iterator/Group.php | 2 +- .../Model/Config/Structure/Element/Iterator/Section.php | 2 +- .../Config/Model/Config/Structure/Element/Iterator/Tab.php | 2 +- .../Config/Model/Config/Structure/Element/Section.php | 2 +- .../Magento/Config/Model/Config/Structure/Element/Tab.php | 2 +- .../Config/Model/Config/Structure/ElementInterface.php | 2 +- .../Model/Config/Structure/Mapper/Attribute/Inheritance.php | 2 +- .../Config/Model/Config/Structure/Mapper/Dependencies.php | 2 +- .../Config/Model/Config/Structure/Mapper/ExtendsMapper.php | 2 +- .../Config/Model/Config/Structure/Mapper/Factory.php | 2 +- .../Structure/Mapper/Helper/RelativePathConverter.php | 2 +- .../Magento/Config/Model/Config/Structure/Mapper/Ignore.php | 2 +- .../Magento/Config/Model/Config/Structure/Mapper/Path.php | 2 +- .../Config/Model/Config/Structure/Mapper/Sorting.php | 2 +- .../Config/Model/Config/Structure/MapperInterface.php | 2 +- app/code/Magento/Config/Model/Config/Structure/Reader.php | 2 +- .../Magento/Config/Model/Config/Structure/Search/Proxy.php | 2 +- .../Config/Model/Config/Structure/SearchInterface.php | 2 +- app/code/Magento/Config/Model/Placeholder/Environment.php | 2 +- .../Magento/Config/Model/Placeholder/PlaceholderFactory.php | 2 +- .../Config/Model/Placeholder/PlaceholderInterface.php | 2 +- app/code/Magento/Config/Model/ResourceModel/Config.php | 2 +- app/code/Magento/Config/Model/ResourceModel/Config/Data.php | 2 +- .../Config/Model/ResourceModel/Config/Data/Collection.php | 2 +- .../Config/Backend/Admin/AfterCustomUrlChangedObserver.php | 2 +- app/code/Magento/Config/Setup/InstallData.php | 2 +- app/code/Magento/Config/Setup/InstallSchema.php | 2 +- .../App/Config/Source/DumpConfigSourceAggregatedTest.php | 2 +- .../Test/Unit/App/Config/Source/ModularConfigSourceTest.php | 2 +- .../Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php | 2 +- .../Magento/Config/Test/Unit/App/Config/Type/SystemTest.php | 2 +- .../Config/Test/Unit/Block/System/Config/DwstreeTest.php | 2 +- .../Config/Test/Unit/Block/System/Config/EditTest.php | 2 +- .../System/Config/Form/Field/FieldArray/AbstractTest.php | 2 +- .../Test/Unit/Block/System/Config/Form/Field/FileTest.php | 2 +- .../Unit/Block/System/Config/Form/Field/HeadingTest.php | 2 +- .../Test/Unit/Block/System/Config/Form/Field/ImageTest.php | 2 +- .../Block/System/Config/Form/Field/NotificationTest.php | 2 +- .../Block/System/Config/Form/Field/RegexceptionsTest.php | 2 +- .../System/Config/Form/Field/Select/AllowspecificTest.php | 2 +- .../Config/Test/Unit/Block/System/Config/Form/FieldTest.php | 2 +- .../Config/Form/Fieldset/Modules/DisableOutputTest.php | 2 +- .../Test/Unit/Block/System/Config/Form/FieldsetTest.php | 2 +- .../Config/Test/Unit/Block/System/Config/FormTest.php | 2 +- .../Config/Test/Unit/Block/System/Config/TabsTest.php | 2 +- .../Unit/Controller/Adminhtml/System/Config/SaveTest.php | 2 +- .../Adminhtml/System/Config/_files/expected_array.php | 2 +- .../Adminhtml/System/Config/_files/files_array.php | 2 +- .../Adminhtml/System/Config/_files/groups_array.php | 2 +- .../Config/Test/Unit/Model/Compiler/IncludeElementTest.php | 2 +- .../Config/Test/Unit/Model/Config/Backend/BaseurlTest.php | 2 +- .../Test/Unit/Model/Config/Backend/Email/LogoTest.php | 2 +- .../Config/Test/Unit/Model/Config/Backend/EncryptedTest.php | 2 +- .../Test/Unit/Model/Config/Backend/File/RequestDataTest.php | 2 +- .../Config/Test/Unit/Model/Config/Backend/FileTest.php | 2 +- .../Test/Unit/Model/Config/Backend/Image/LogoTest.php | 2 +- .../Config/Test/Unit/Model/Config/Backend/SecureTest.php | 2 +- .../Config/Test/Unit/Model/Config/Export/CommentTest.php | 2 +- .../Test/Unit/Model/Config/Export/ExcludeListTest.php | 2 +- .../Magento/Config/Test/Unit/Model/Config/LoaderTest.php | 2 +- .../Model/Config/Processor/EnvironmentPlaceholderTest.php | 2 +- .../Config/Reader/Source/Deployed/SettingCheckerTest.php | 2 +- .../Config/Test/Unit/Model/Config/SchemaLocatorTest.php | 2 +- .../Config/Test/Unit/Model/Config/ScopeDefinerTest.php | 2 +- .../Config/Test/Unit/Model/Config/Source/Admin/PageTest.php | 2 +- .../Test/Unit/Model/Config/Source/Email/TemplateTest.php | 2 +- .../Test/Unit/Model/Config/Source/Locale/TimezoneTest.php | 2 +- .../Unit/Model/Config/Structure/AbstractElementTest.php | 2 +- .../Test/Unit/Model/Config/Structure/ConverterTest.php | 2 +- .../Config/Structure/Element/AbstractCompositeTest.php | 2 +- .../Model/Config/Structure/Element/Dependency/FieldTest.php | 2 +- .../Config/Structure/Element/Dependency/MapperTest.php | 2 +- .../Test/Unit/Model/Config/Structure/Element/FieldTest.php | 2 +- .../Model/Config/Structure/Element/FlyweightFactoryTest.php | 2 +- .../Unit/Model/Config/Structure/Element/Group/ProxyTest.php | 2 +- .../Test/Unit/Model/Config/Structure/Element/GroupTest.php | 2 +- .../Model/Config/Structure/Element/Iterator/FieldTest.php | 2 +- .../Unit/Model/Config/Structure/Element/IteratorTest.php | 2 +- .../Unit/Model/Config/Structure/Element/SectionTest.php | 2 +- .../Test/Unit/Model/Config/Structure/Element/TabTest.php | 2 +- .../Unit/Model/Config/Structure/Mapper/DependenciesTest.php | 2 +- .../Test/Unit/Model/Config/Structure/Mapper/ExtendsTest.php | 2 +- .../Structure/Mapper/Helper/RelativePathConverterTest.php | 2 +- .../Test/Unit/Model/Config/Structure/Mapper/PathTest.php | 2 +- .../Test/Unit/Model/Config/Structure/Mapper/SortingTest.php | 2 +- .../Config/Test/Unit/Model/Config/Structure/ReaderTest.php | 2 +- .../Magento/Config/Test/Unit/Model/Config/StructureTest.php | 2 +- app/code/Magento/Config/Test/Unit/Model/Config/XsdTest.php | 2 +- .../Test/Unit/Model/Config/_files/invalidSystemXmlArray.php | 2 +- .../Config/Test/Unit/Model/Config/_files/valid_system.xml | 2 +- app/code/Magento/Config/Test/Unit/Model/ConfigTest.php | 2 +- .../Config/Test/Unit/Model/Placeholder/EnvironmentTest.php | 2 +- .../Test/Unit/Model/Placeholder/PlaceholderFactoryTest.php | 2 +- app/code/Magento/Config/Test/Unit/Model/_files/acl.xml | 2 +- app/code/Magento/Config/Test/Unit/Model/_files/acl_1.xml | 2 +- app/code/Magento/Config/Test/Unit/Model/_files/acl_2.xml | 2 +- .../Magento/Config/Test/Unit/Model/_files/acl_merged.xml | 2 +- .../Config/Test/Unit/Model/_files/converted_config.php | 2 +- .../Config/Test/Unit/Model/_files/dependencies_data.php | 2 +- .../Config/Test/Unit/Model/_files/dependencies_mapped.php | 2 +- app/code/Magento/Config/Test/Unit/Model/_files/menu_1.xml | 2 +- app/code/Magento/Config/Test/Unit/Model/_files/menu_2.xml | 2 +- app/code/Magento/Config/Test/Unit/Model/_files/system_1.xml | 2 +- app/code/Magento/Config/Test/Unit/Model/_files/system_2.xml | 2 +- .../Test/Unit/Model/_files/system_config_options_1.xml | 2 +- .../Test/Unit/Model/_files/system_config_options_2.xml | 2 +- .../Test/Unit/Model/_files/system_unknown_attribute_1.xml | 2 +- .../Test/Unit/Model/_files/system_unknown_attribute_2.xml | 2 +- app/code/Magento/Config/etc/acl.xml | 2 +- app/code/Magento/Config/etc/adminhtml/di.xml | 2 +- app/code/Magento/Config/etc/adminhtml/events.xml | 2 +- app/code/Magento/Config/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Config/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Config/etc/di.xml | 2 +- app/code/Magento/Config/etc/module.xml | 2 +- app/code/Magento/Config/etc/system.xsd | 2 +- app/code/Magento/Config/etc/system_file.xsd | 2 +- app/code/Magento/Config/etc/system_include.xsd | 2 +- app/code/Magento/Config/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_system_config_edit.xml | 2 +- .../templates/page/system/config/robots/reset.phtml | 2 +- .../view/adminhtml/templates/system/config/edit.phtml | 2 +- .../templates/system/config/form/field/array.phtml | 2 +- .../Config/view/adminhtml/templates/system/config/js.phtml | 2 +- .../view/adminhtml/templates/system/config/switcher.phtml | 2 +- .../view/adminhtml/templates/system/config/tabs.phtml | 2 +- .../Model/Export/Product/Type/Configurable.php | 2 +- .../ConfigurableImportExport/Model/Export/RowCustomizer.php | 2 +- .../Model/Import/Product/Type/Configurable.php | 2 +- .../Test/Unit/Model/Export/RowCustomizerTest.php | 2 +- .../Unit/Model/Import/Product/Type/ConfigurableTest.php | 2 +- app/code/Magento/ConfigurableImportExport/etc/di.xml | 2 +- app/code/Magento/ConfigurableImportExport/etc/export.xml | 2 +- app/code/Magento/ConfigurableImportExport/etc/import.xml | 2 +- app/code/Magento/ConfigurableImportExport/etc/module.xml | 2 +- app/code/Magento/ConfigurableImportExport/registration.php | 2 +- .../Api/ConfigurableProductManagementInterface.php | 2 +- .../Api/Data/ConfigurableItemOptionValueInterface.php | 2 +- .../ConfigurableProduct/Api/Data/OptionInterface.php | 2 +- .../ConfigurableProduct/Api/Data/OptionValueInterface.php | 2 +- .../ConfigurableProduct/Api/LinkManagementInterface.php | 2 +- .../ConfigurableProduct/Api/OptionRepositoryInterface.php | 2 +- .../Block/Adminhtml/Order/Create/Sidebar.php | 2 +- .../Product/Attribute/Edit/Tab/Variations/Main.php | 2 +- .../Product/Attribute/NewAttribute/Product/Created.php | 2 +- .../Adminhtml/Product/Composite/Fieldset/Configurable.php | 2 +- .../Block/Adminhtml/Product/Edit/AttributeSet/Form.php | 2 +- .../Block/Adminhtml/Product/Edit/Button/Save.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Variations/Config.php | 2 +- .../Adminhtml/Product/Edit/Tab/Variations/Config/Matrix.php | 2 +- .../Block/Adminhtml/Product/Steps/AttributeValues.php | 2 +- .../Block/Adminhtml/Product/Steps/Bulk.php | 2 +- .../Block/Adminhtml/Product/Steps/SelectAttributes.php | 2 +- .../Block/Adminhtml/Product/Steps/Summary.php | 2 +- .../Block/Cart/Item/Renderer/Configurable.php | 2 +- .../Product/Configurable/AssociatedSelector/Renderer/Id.php | 2 +- .../Block/Product/Configurable/AttributeSelector.php | 2 +- .../Block/Product/View/Type/Configurable.php | 2 +- .../Block/Stockqty/Type/Configurable.php | 2 +- .../Controller/Adminhtml/Product/AddAttribute.php | 2 +- .../Controller/Adminhtml/Product/Associated/Grid.php | 2 +- .../Adminhtml/Product/Attribute/CreateOptions.php | 2 +- .../Adminhtml/Product/Attribute/GetAttributes.php | 2 +- .../Product/Attribute/SuggestConfigurableAttributes.php | 2 +- .../Controller/Adminhtml/Product/Builder/Plugin.php | 2 +- .../Product/Initialization/Helper/Plugin/Configurable.php | 2 +- .../Initialization/Helper/Plugin/UpdateConfigurations.php | 2 +- .../Controller/Adminhtml/Product/Wizard.php | 2 +- .../ConfigurableProduct/CustomerData/ConfigurableItem.php | 2 +- app/code/Magento/ConfigurableProduct/Helper/Data.php | 2 +- .../Helper/Product/Configuration/Plugin.php | 2 +- .../ConfigurableProduct/Helper/Product/Options/Factory.php | 2 +- .../ConfigurableProduct/Helper/Product/Options/Loader.php | 2 +- .../ConfigurableProduct/Model/Attribute/LockValidator.php | 2 +- .../Magento/ConfigurableProduct/Model/AttributesList.php | 2 +- .../ConfigurableProduct/Model/AttributesListInterface.php | 2 +- .../ConfigurableProduct/Model/ConfigurableAttributeData.php | 2 +- .../Model/ConfigurableAttributeHandler.php | 2 +- .../Model/ConfigurableProductManagement.php | 2 +- .../Product/Attribute/Group/AttributeMapper/Plugin.php | 2 +- .../Magento/ConfigurableProduct/Model/LinkManagement.php | 2 +- .../Magento/ConfigurableProduct/Model/OptionRepository.php | 2 +- .../Model/Order/Admin/Item/Plugin/Configurable.php | 2 +- .../ConfigurableProduct/Model/Plugin/PriceBackend.php | 2 +- .../Model/Plugin/ProductRepositorySave.php | 2 +- .../Model/Product/Cache/Tag/Configurable.php | 2 +- .../Model/Product/CartConfiguration/Plugin/Configurable.php | 2 +- .../ConfigurableProduct/Model/Product/ReadHandler.php | 2 +- .../ConfigurableProduct/Model/Product/SaveHandler.php | 2 +- .../ConfigurableProduct/Model/Product/Type/Configurable.php | 2 +- .../Model/Product/Type/Configurable/Attribute.php | 2 +- .../Model/Product/Type/Configurable/OptionValue.php | 2 +- .../Model/Product/Type/Configurable/Price.php | 2 +- .../ConfigurableProduct/Model/Product/Type/Plugin.php | 2 +- .../Model/Product/Type/VariationMatrix.php | 2 +- .../Product/TypeTransitionManager/Plugin/Configurable.php | 2 +- .../ConfigurableProduct/Model/Product/Validator/Plugin.php | 2 +- .../ConfigurableProduct/Model/Product/VariationHandler.php | 2 +- .../ConfigurableProduct/Model/ProductOptionProcessor.php | 2 +- .../ConfigurableProduct/Model/ProductVariationsBuilder.php | 2 +- .../Model/Quote/Item/CartItemProcessor.php | 2 +- .../Model/Quote/Item/ConfigurableItemOptionValue.php | 2 +- .../Initializer/Option/Plugin/ConfigurableProduct.php | 2 +- .../Model/ResourceModel/Indexer/Stock/Configurable.php | 2 +- .../ResourceModel/Product/Indexer/Price/Configurable.php | 2 +- .../Model/ResourceModel/Product/Type/Configurable.php | 2 +- .../ResourceModel/Product/Type/Configurable/Attribute.php | 2 +- .../Product/Type/Configurable/Attribute/Collection.php | 2 +- .../Product/Type/Configurable/Product/Collection.php | 2 +- .../Model/ResourceModel/Setup/PropertyMapper.php | 2 +- .../ConfigurableProduct/Model/SuggestedAttributeList.php | 2 +- .../Observer/HideUnsupportedAttributeTypes.php | 2 +- .../Plugin/Model/ResourceModel/Product.php | 2 +- .../Pricing/Price/ConfigurableOptionsProvider.php | 2 +- .../Pricing/Price/ConfigurableOptionsProviderInterface.php | 2 +- .../Pricing/Price/ConfigurablePriceResolver.php | 2 +- .../Pricing/Price/ConfigurableRegularPrice.php | 2 +- .../Pricing/Price/ConfigurableRegularPriceInterface.php | 2 +- .../ConfigurableProduct/Pricing/Price/FinalPrice.php | 2 +- .../Pricing/Price/FinalPriceResolver.php | 2 +- .../Pricing/Price/LowestPriceOptionsProvider.php | 2 +- .../Pricing/Price/LowestPriceOptionsProviderInterface.php | 2 +- .../Pricing/Price/PriceResolverInterface.php | 2 +- .../Pricing/Price/RegularPriceResolver.php | 2 +- .../ConfigurableProduct/Pricing/Render/FinalPriceBox.php | 2 +- .../ConfigurableProduct/Pricing/Render/TierPriceBox.php | 2 +- app/code/Magento/ConfigurableProduct/Setup/InstallData.php | 2 +- .../Magento/ConfigurableProduct/Setup/InstallSchema.php | 2 +- app/code/Magento/ConfigurableProduct/Setup/Recurring.php | 2 +- app/code/Magento/ConfigurableProduct/Setup/UpgradeData.php | 2 +- .../Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php | 2 +- .../Product/Edit/Tab/Variations/Config/MatrixTest.php | 2 +- .../Test/Unit/Block/Cart/Item/Renderer/ConfigurableTest.php | 2 +- .../Block/Product/Configurable/AttributeSelectorTest.php | 2 +- .../Unit/Controller/Adminhtml/Product/AddAttributeTest.php | 2 +- .../Product/Attribute/SuggestConfigurableAttributesTest.php | 2 +- .../Controller/Adminhtml/Product/Builder/PluginTest.php | 2 +- .../Initialization/Helper/Plugin/ConfigurableTest.php | 2 +- .../Helper/Plugin/UpdateConfigurationsTest.php | 2 +- .../ConfigurableProduct/Test/Unit/Helper/DataTest.php | 2 +- .../Test/Unit/Helper/Product/Configuration/PluginTest.php | 2 +- .../Test/Unit/Helper/Product/Options/FactoryTest.php | 2 +- .../Test/Unit/Helper/Product/Options/LoaderTest.php | 2 +- .../Test/Unit/Model/Attribute/LockValidatorTest.php | 2 +- .../Test/Unit/Model/AttributesListTest.php | 2 +- .../Test/Unit/Model/ConfigurableAttributeDataTest.php | 2 +- .../Test/Unit/Model/ConfigurableProductManagementTest.php | 2 +- .../Product/Attribute/Group/AttributeMapper/PluginTest.php | 2 +- .../Test/Unit/Model/LinkManagementTest.php | 2 +- .../Test/Unit/Model/OptionRepositoryTest.php | 2 +- .../Unit/Model/Order/Admin/Item/Plugin/ConfigurableTest.php | 2 +- .../Test/Unit/Model/Plugin/PriceBackendTest.php | 2 +- .../Test/Unit/Model/Plugin/ProductRepositorySaveTest.php | 2 +- .../Test/Unit/Model/Product/Cache/Tag/ConfigurableTest.php | 2 +- .../Product/CartConfiguration/Plugin/ConfigurableTest.php | 2 +- .../Test/Unit/Model/Product/ProductExtensionAttributes.php | 2 +- .../Unit/Model/Product/ProductOptionExtensionAttributes.php | 2 +- .../Test/Unit/Model/Product/ReadHandlerTest.php | 2 +- .../Test/Unit/Model/Product/SaveHandlerTest.php | 2 +- .../Test/Unit/Model/Product/Type/Configurable/PriceTest.php | 2 +- .../Test/Unit/Model/Product/Type/ConfigurableTest.php | 2 +- .../Test/Unit/Model/Product/Type/PluginTest.php | 2 +- .../Test/Unit/Model/Product/Type/VariationMatrixTest.php | 2 +- .../TypeTransitionManager/Plugin/ConfigurableTest.php | 2 +- .../Test/Unit/Model/Product/Validator/PluginTest.php | 2 +- .../Test/Unit/Model/Product/VariationHandlerTest.php | 2 +- .../Test/Unit/Model/ProductOptionProcessorTest.php | 2 +- .../Test/Unit/Model/ProductVariationsBuilderTest.php | 2 +- .../Test/Unit/Model/Quote/Item/CartItemProcessorTest.php | 2 +- .../Initializer/Option/Plugin/ConfigurableProductTest.php | 2 +- .../Product/Type/Configurable/AttributeTest.php | 2 +- .../Model/ResourceModel/Product/Type/ConfigurableTest.php | 2 +- .../Test/Unit/Model/SuggestedAttributeListTest.php | 2 +- .../Unit/Observer/HideUnsupportedAttributeTypesTest.php | 2 +- .../Test/Unit/Plugin/Model/ResourceModel/ProductTest.php | 2 +- .../Unit/Pricing/Price/ConfigurablePriceResolverTest.php | 2 +- .../Test/Unit/Pricing/Render/FinalPriceBoxTest.php | 2 +- .../Listing/AssociatedProduct/Columns/AttributesTest.php | 2 +- .../Listing/AssociatedProduct/Columns/NameTest.php | 2 +- .../Listing/AssociatedProduct/Columns/PriceTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/CompositeTest.php | 2 +- .../Form/Modifier/ConfigurableAttributeSetHandlerTest.php | 2 +- .../Product/Form/Modifier/ConfigurablePanelTest.php | 2 +- .../Product/Form/Modifier/ConfigurablePriceTest.php | 2 +- .../Product/Form/Modifier/ConfigurableQtyTest.php | 2 +- .../Product/Form/Modifier/CustomOptionsTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/StockDataTest.php | 2 +- .../Listing/AssociatedProduct/Attribute/Repository.php | 2 +- .../Ui/Component/Listing/AssociatedProduct/Columns.php | 2 +- .../Listing/AssociatedProduct/Columns/Attributes.php | 2 +- .../Ui/Component/Listing/AssociatedProduct/Columns/Name.php | 2 +- .../Component/Listing/AssociatedProduct/Columns/Price.php | 2 +- .../Ui/Component/Listing/AssociatedProduct/Filters.php | 2 +- .../ConfigurableProduct/Ui/DataProvider/Attributes.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Composite.php | 2 +- .../Form/Modifier/ConfigurableAttributeSetHandler.php | 2 +- .../Product/Form/Modifier/ConfigurablePanel.php | 2 +- .../Product/Form/Modifier/ConfigurablePrice.php | 2 +- .../DataProvider/Product/Form/Modifier/ConfigurableQty.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/CustomOptions.php | 2 +- .../Product/Form/Modifier/Data/AssociatedProducts.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/StockData.php | 2 +- app/code/Magento/ConfigurableProduct/etc/adminhtml/di.xml | 2 +- .../Magento/ConfigurableProduct/etc/adminhtml/events.xml | 2 +- .../Magento/ConfigurableProduct/etc/adminhtml/routes.xml | 2 +- .../Magento/ConfigurableProduct/etc/adminhtml/system.xml | 2 +- app/code/Magento/ConfigurableProduct/etc/config.xml | 2 +- app/code/Magento/ConfigurableProduct/etc/di.xml | 2 +- .../ConfigurableProduct/etc/extension_attributes.xml | 2 +- app/code/Magento/ConfigurableProduct/etc/frontend/di.xml | 2 +- app/code/Magento/ConfigurableProduct/etc/module.xml | 2 +- app/code/Magento/ConfigurableProduct/etc/product_types.xml | 2 +- app/code/Magento/ConfigurableProduct/etc/sales.xml | 2 +- app/code/Magento/ConfigurableProduct/etc/webapi.xml | 2 +- app/code/Magento/ConfigurableProduct/registration.php | 2 +- .../view/adminhtml/layout/catalog_product_addattribute.xml | 2 +- .../adminhtml/layout/catalog_product_associated_grid.xml | 2 +- ..._product_attribute_edit_product_tab_variations_popup.xml | 2 +- .../view/adminhtml/layout/catalog_product_configurable.xml | 2 +- .../view/adminhtml/layout/catalog_product_downloadable.xml | 2 +- .../view/adminhtml/layout/catalog_product_new.xml | 2 +- .../view/adminhtml/layout/catalog_product_set_edit.xml | 2 +- .../view/adminhtml/layout/catalog_product_simple.xml | 2 +- .../adminhtml/layout/catalog_product_superconfig_config.xml | 2 +- .../layout/catalog_product_view_type_configurable.xml | 2 +- .../view/adminhtml/layout/catalog_product_virtual.xml | 2 +- .../view/adminhtml/layout/catalog_product_wizard.xml | 2 +- .../templates/catalog/product/attribute/new/created.phtml | 4 ++-- .../templates/catalog/product/attribute/set/js.phtml | 2 +- .../catalog/product/composite/fieldset/configurable.phtml | 2 +- .../product/edit/attribute/steps/attributes_values.phtml | 2 +- .../catalog/product/edit/attribute/steps/bulk.phtml | 2 +- .../product/edit/attribute/steps/select_attributes.phtml | 2 +- .../catalog/product/edit/attribute/steps/summary.phtml | 2 +- .../templates/catalog/product/edit/super/config.phtml | 2 +- .../templates/catalog/product/edit/super/matrix.phtml | 2 +- .../templates/catalog/product/edit/super/wizard-ajax.phtml | 2 +- .../templates/catalog/product/edit/super/wizard.phtml | 2 +- .../configurable/affected-attribute-set-selector/form.phtml | 2 +- .../configurable/affected-attribute-set-selector/js.phtml | 2 +- .../product/configurable/attribute-selector/js.phtml | 2 +- .../templates/product/configurable/stock/disabler.phtml | 2 +- .../configurable_associated_product_listing.xml | 2 +- .../adminhtml/ui_component/product_attributes_listing.xml | 2 +- .../view/adminhtml/ui_component/product_form.xml | 2 +- .../view/adminhtml/web/css/configurable-product.css | 2 +- .../web/js/components/associated-product-insert-listing.js | 2 +- .../web/js/components/container-configurable-handler.js | 2 +- .../web/js/components/custom-options-price-type.js | 2 +- .../adminhtml/web/js/components/custom-options-warning.js | 2 +- .../web/js/components/dynamic-rows-configurable.js | 2 +- .../view/adminhtml/web/js/components/file-uploader.js | 2 +- .../view/adminhtml/web/js/components/modal-configurable.js | 2 +- .../view/adminhtml/web/js/components/price-configurable.js | 2 +- .../view/adminhtml/web/js/configurable-type-handler.js | 2 +- .../view/adminhtml/web/js/configurable.js | 2 +- .../view/adminhtml/web/js/options/price-type-handler.js | 4 ++-- .../view/adminhtml/web/js/variations/paging/sizes.js | 2 +- .../view/adminhtml/web/js/variations/product-grid.js | 2 +- .../adminhtml/web/js/variations/steps/attributes_values.js | 2 +- .../view/adminhtml/web/js/variations/steps/bulk.js | 2 +- .../adminhtml/web/js/variations/steps/select_attributes.js | 2 +- .../view/adminhtml/web/js/variations/steps/summary.js | 2 +- .../view/adminhtml/web/js/variations/variations.js | 2 +- .../view/adminhtml/web/product/product.css | 2 +- .../adminhtml/web/template/components/actions-list.html | 4 ++-- .../view/adminhtml/web/template/components/cell-html.html | 4 ++-- .../view/adminhtml/web/template/components/cell-status.html | 4 ++-- .../adminhtml/web/template/components/file-uploader.html | 2 +- .../web/template/variations/steps/summary-grid.html | 2 +- .../view/base/layout/catalog_product_prices.xml | 2 +- .../view/base/templates/product/price/final_price.phtml | 2 +- .../view/base/templates/product/price/tier_price.phtml | 2 +- .../layout/catalog_product_view_type_configurable.xml | 2 +- .../layout/checkout_cart_configure_type_configurable.xml | 2 +- .../view/frontend/layout/checkout_cart_item_renderers.xml | 2 +- .../layout/checkout_onepage_review_item_renderers.xml | 2 +- .../ConfigurableProduct/view/frontend/requirejs-config.js | 4 ++-- .../view/frontend/templates/js/components.phtml | 2 +- .../templates/product/view/type/options/configurable.phtml | 2 +- .../view/frontend/web/js/configurable.js | 2 +- app/code/Magento/Contact/Block/ContactForm.php | 2 +- app/code/Magento/Contact/Controller/Index.php | 2 +- app/code/Magento/Contact/Controller/Index/Index.php | 2 +- app/code/Magento/Contact/Controller/Index/Post.php | 2 +- app/code/Magento/Contact/Helper/Data.php | 2 +- .../Magento/Contact/Model/System/Config/Backend/Links.php | 2 +- .../Magento/Contact/Test/Unit/Block/ContactFormTest.php | 2 +- .../Contact/Test/Unit/Controller/Index/IndexTest.php | 2 +- .../Magento/Contact/Test/Unit/Controller/Index/PostTest.php | 2 +- app/code/Magento/Contact/Test/Unit/Controller/IndexTest.php | 2 +- .../Magento/Contact/Test/Unit/Controller/Stub/IndexStub.php | 2 +- app/code/Magento/Contact/Test/Unit/Helper/DataTest.php | 2 +- .../Test/Unit/Model/System/Config/Backend/LinksTest.php | 2 +- app/code/Magento/Contact/etc/acl.xml | 2 +- app/code/Magento/Contact/etc/adminhtml/system.xml | 2 +- app/code/Magento/Contact/etc/config.xml | 2 +- app/code/Magento/Contact/etc/di.xml | 2 +- app/code/Magento/Contact/etc/email_templates.xml | 2 +- app/code/Magento/Contact/etc/frontend/di.xml | 2 +- app/code/Magento/Contact/etc/frontend/page_types.xml | 2 +- app/code/Magento/Contact/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Contact/etc/module.xml | 2 +- app/code/Magento/Contact/registration.php | 2 +- .../Contact/view/adminhtml/email/submitted_form.html | 2 +- .../Contact/view/frontend/layout/contact_index_index.xml | 2 +- app/code/Magento/Contact/view/frontend/layout/default.xml | 2 +- app/code/Magento/Contact/view/frontend/templates/form.phtml | 2 +- app/code/Magento/Cookie/Block/Html/Notices.php | 2 +- app/code/Magento/Cookie/Block/RequireCookie.php | 2 +- app/code/Magento/Cookie/Controller/Index/NoCookies.php | 2 +- app/code/Magento/Cookie/Helper/Cookie.php | 2 +- app/code/Magento/Cookie/Model/Config/Backend/Cookie.php | 2 +- app/code/Magento/Cookie/Model/Config/Backend/Domain.php | 2 +- app/code/Magento/Cookie/Model/Config/Backend/Lifetime.php | 2 +- app/code/Magento/Cookie/Model/Config/Backend/Path.php | 2 +- .../Cookie/Test/Unit/Controller/Index/NoCookiesTest.php | 2 +- app/code/Magento/Cookie/Test/Unit/Helper/CookieTest.php | 2 +- .../Cookie/Test/Unit/Model/Config/Backend/DomainTest.php | 2 +- .../Cookie/Test/Unit/Model/Config/Backend/LifetimeTest.php | 2 +- .../Cookie/Test/Unit/Model/Config/Backend/PathTest.php | 2 +- app/code/Magento/Cookie/etc/adminhtml/system.xml | 2 +- app/code/Magento/Cookie/etc/config.xml | 2 +- app/code/Magento/Cookie/etc/di.xml | 2 +- app/code/Magento/Cookie/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Cookie/etc/module.xml | 2 +- app/code/Magento/Cookie/registration.php | 2 +- app/code/Magento/Cookie/view/adminhtml/requirejs-config.js | 4 ++-- app/code/Magento/Cookie/view/frontend/layout/default.xml | 2 +- app/code/Magento/Cookie/view/frontend/requirejs-config.js | 4 ++-- .../Cookie/view/frontend/templates/html/notices.phtml | 2 +- .../Cookie/view/frontend/templates/require_cookie.phtml | 4 ++-- app/code/Magento/Cookie/view/frontend/web/js/notices.js | 2 +- .../Magento/Cookie/view/frontend/web/js/require-cookie.js | 2 +- app/code/Magento/Cron/Console/Command/CronCommand.php | 2 +- .../Magento/Cron/Console/Command/CronInstallCommand.php | 2 +- app/code/Magento/Cron/Console/Command/CronRemoveCommand.php | 2 +- .../Cron/Model/Backend/Config/Structure/Converter.php | 2 +- app/code/Magento/Cron/Model/Config.php | 2 +- .../Magento/Cron/Model/Config/Backend/Product/Alert.php | 2 +- app/code/Magento/Cron/Model/Config/Backend/Sitemap.php | 2 +- app/code/Magento/Cron/Model/Config/Converter/Db.php | 2 +- app/code/Magento/Cron/Model/Config/Converter/Xml.php | 2 +- app/code/Magento/Cron/Model/Config/Data.php | 2 +- app/code/Magento/Cron/Model/Config/Reader/Db.php | 2 +- app/code/Magento/Cron/Model/Config/Reader/Xml.php | 2 +- app/code/Magento/Cron/Model/Config/SchemaLocator.php | 2 +- app/code/Magento/Cron/Model/Config/Source/Frequency.php | 2 +- app/code/Magento/Cron/Model/ConfigInterface.php | 2 +- app/code/Magento/Cron/Model/Groups/Config/Converter/Xml.php | 2 +- app/code/Magento/Cron/Model/Groups/Config/Data.php | 2 +- app/code/Magento/Cron/Model/Groups/Config/Reader/Xml.php | 2 +- app/code/Magento/Cron/Model/Groups/Config/SchemaLocator.php | 2 +- app/code/Magento/Cron/Model/ResourceModel/Schedule.php | 2 +- .../Cron/Model/ResourceModel/Schedule/Collection.php | 2 +- app/code/Magento/Cron/Model/Schedule.php | 2 +- .../Magento/Cron/Model/System/Config/Initial/Converter.php | 2 +- app/code/Magento/Cron/Observer/ProcessCronQueueObserver.php | 2 +- app/code/Magento/Cron/Setup/InstallSchema.php | 2 +- .../Cron/Test/Unit/Console/Command/CronCommandTest.php | 2 +- .../Test/Unit/Console/Command/CronInstallCommandTest.php | 2 +- .../Test/Unit/Console/Command/CronRemoveCommandTest.php | 2 +- .../Cron/Test/Unit/Model/Config/Converter/DbTest.php | 2 +- .../Cron/Test/Unit/Model/Config/Converter/XmlTest.php | 2 +- app/code/Magento/Cron/Test/Unit/Model/Config/DataTest.php | 2 +- .../Magento/Cron/Test/Unit/Model/Config/Reader/DbTest.php | 2 +- .../Magento/Cron/Test/Unit/Model/Config/Reader/XmlTest.php | 2 +- .../Cron/Test/Unit/Model/Config/SchemaLocatorTest.php | 2 +- app/code/Magento/Cron/Test/Unit/Model/Config/XsdTest.php | 2 +- .../Cron/Test/Unit/Model/Config/_files/crontab_invalid.xml | 2 +- .../Unit/Model/Config/_files/crontab_invalid_duplicates.xml | 2 +- .../Unit/Model/Config/_files/crontab_invalid_node_typo.xml | 2 +- .../Config/_files/crontab_invalid_without_instance.xml | 2 +- .../Model/Config/_files/crontab_invalid_without_method.xml | 2 +- .../Model/Config/_files/crontab_invalid_without_name.xml | 2 +- .../Cron/Test/Unit/Model/Config/_files/crontab_valid.xml | 2 +- .../Model/Config/_files/crontab_valid_without_schedule.xml | 2 +- app/code/Magento/Cron/Test/Unit/Model/ConfigTest.php | 2 +- app/code/Magento/Cron/Test/Unit/Model/CronJobException.php | 2 +- .../Test/Unit/Model/Groups/Config/Converter/XmlTest.php | 2 +- app/code/Magento/Cron/Test/Unit/Model/ScheduleTest.php | 2 +- .../Test/Unit/Observer/ProcessCronQueueObserverTest.php | 2 +- app/code/Magento/Cron/etc/adminhtml/system.xml | 2 +- app/code/Magento/Cron/etc/cron_groups.xml | 4 ++-- app/code/Magento/Cron/etc/cron_groups.xsd | 2 +- app/code/Magento/Cron/etc/crontab.xsd | 2 +- app/code/Magento/Cron/etc/crontab/events.xml | 2 +- app/code/Magento/Cron/etc/di.xml | 2 +- app/code/Magento/Cron/etc/module.xml | 2 +- app/code/Magento/Cron/registration.php | 2 +- .../CurrencySymbol/Block/Adminhtml/System/Currency.php | 2 +- .../Block/Adminhtml/System/Currency/Rate/Matrix.php | 2 +- .../Block/Adminhtml/System/Currency/Rate/Services.php | 2 +- .../Block/Adminhtml/System/Currencysymbol.php | 2 +- .../CurrencySymbol/Controller/Adminhtml/System/Currency.php | 2 +- .../Controller/Adminhtml/System/Currency/FetchRates.php | 2 +- .../Controller/Adminhtml/System/Currency/Index.php | 2 +- .../Controller/Adminhtml/System/Currency/SaveRates.php | 2 +- .../Controller/Adminhtml/System/Currencysymbol.php | 2 +- .../Controller/Adminhtml/System/Currencysymbol/Index.php | 2 +- .../Controller/Adminhtml/System/Currencysymbol/Save.php | 2 +- .../Magento/CurrencySymbol/Model/System/Currencysymbol.php | 2 +- .../CurrencySymbol/Observer/CurrencyDisplayOptions.php | 2 +- .../Block/Adminhtml/System/Currency/Rate/MatrixTest.php | 2 +- .../Block/Adminhtml/System/Currency/Rate/ServicesTest.php | 2 +- .../Test/Unit/Block/Adminhtml/System/CurrencyTest.php | 2 +- .../Test/Unit/Block/Adminhtml/System/CurrencysymbolTest.php | 2 +- .../Adminhtml/System/Currencysymbol/IndexTest.php | 2 +- .../Controller/Adminhtml/System/Currencysymbol/SaveTest.php | 2 +- .../Test/Unit/Model/System/CurrencysymbolTest.php | 2 +- .../Test/Unit/Observer/CurrencyDisplayOptionsTest.php | 2 +- app/code/Magento/CurrencySymbol/etc/acl.xml | 2 +- app/code/Magento/CurrencySymbol/etc/adminhtml/menu.xml | 2 +- app/code/Magento/CurrencySymbol/etc/adminhtml/routes.xml | 2 +- app/code/Magento/CurrencySymbol/etc/di.xml | 2 +- app/code/Magento/CurrencySymbol/etc/events.xml | 2 +- app/code/Magento/CurrencySymbol/etc/module.xml | 2 +- app/code/Magento/CurrencySymbol/registration.php | 2 +- .../adminhtml/layout/adminhtml_system_currency_index.xml | 2 +- .../layout/adminhtml_system_currencysymbol_index.xml | 2 +- .../CurrencySymbol/view/adminhtml/templates/grid.phtml | 2 +- .../adminhtml/templates/system/currency/rate/matrix.phtml | 2 +- .../adminhtml/templates/system/currency/rate/services.phtml | 4 ++-- .../view/adminhtml/templates/system/currency/rates.phtml | 2 +- .../Magento/Customer/Api/AccountManagementInterface.php | 2 +- app/code/Magento/Customer/Api/AddressMetadataInterface.php | 2 +- .../Customer/Api/AddressMetadataManagementInterface.php | 2 +- .../Magento/Customer/Api/AddressRepositoryInterface.php | 2 +- .../Magento/Customer/Api/CustomerManagementInterface.php | 2 +- app/code/Magento/Customer/Api/CustomerMetadataInterface.php | 2 +- .../Customer/Api/CustomerMetadataManagementInterface.php | 2 +- .../Customer/Api/CustomerNameGenerationInterface.php | 2 +- .../Magento/Customer/Api/CustomerRepositoryInterface.php | 2 +- app/code/Magento/Customer/Api/Data/AddressInterface.php | 2 +- .../Customer/Api/Data/AddressSearchResultsInterface.php | 2 +- .../Customer/Api/Data/AttributeMetadataInterface.php | 2 +- app/code/Magento/Customer/Api/Data/CustomerInterface.php | 2 +- .../Customer/Api/Data/CustomerSearchResultsInterface.php | 2 +- app/code/Magento/Customer/Api/Data/GroupInterface.php | 2 +- .../Customer/Api/Data/GroupSearchResultsInterface.php | 2 +- app/code/Magento/Customer/Api/Data/OptionInterface.php | 2 +- app/code/Magento/Customer/Api/Data/RegionInterface.php | 2 +- .../Customer/Api/Data/ValidationResultsInterface.php | 2 +- .../Magento/Customer/Api/Data/ValidationRuleInterface.php | 2 +- app/code/Magento/Customer/Api/GroupManagementInterface.php | 2 +- app/code/Magento/Customer/Api/GroupRepositoryInterface.php | 2 +- app/code/Magento/Customer/Api/MetadataInterface.php | 2 +- .../Magento/Customer/Api/MetadataManagementInterface.php | 2 +- .../Magento/Customer/Block/Account/AuthenticationPopup.php | 2 +- .../Magento/Customer/Block/Account/AuthorizationLink.php | 2 +- app/code/Magento/Customer/Block/Account/Customer.php | 2 +- app/code/Magento/Customer/Block/Account/Dashboard.php | 2 +- .../Magento/Customer/Block/Account/Dashboard/Address.php | 2 +- app/code/Magento/Customer/Block/Account/Dashboard/Info.php | 2 +- app/code/Magento/Customer/Block/Account/Delimiter.php | 2 +- app/code/Magento/Customer/Block/Account/Forgotpassword.php | 2 +- app/code/Magento/Customer/Block/Account/Link.php | 2 +- app/code/Magento/Customer/Block/Account/Navigation.php | 2 +- app/code/Magento/Customer/Block/Account/RegisterLink.php | 2 +- app/code/Magento/Customer/Block/Account/Resetpassword.php | 2 +- app/code/Magento/Customer/Block/Account/SortLink.php | 2 +- .../Magento/Customer/Block/Account/SortLinkInterface.php | 2 +- app/code/Magento/Customer/Block/Address/Book.php | 2 +- app/code/Magento/Customer/Block/Address/Edit.php | 2 +- .../Customer/Block/Address/Renderer/DefaultRenderer.php | 2 +- .../Customer/Block/Address/Renderer/RendererInterface.php | 2 +- app/code/Magento/Customer/Block/Adminhtml/Edit.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/BackButton.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/DeleteButton.php | 2 +- app/code/Magento/Customer/Block/Adminhtml/Edit/Form.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/GenericButton.php | 2 +- .../Customer/Block/Adminhtml/Edit/InvalidateTokenButton.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/OrderButton.php | 2 +- .../Customer/Block/Adminhtml/Edit/Renderer/Region.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/ResetButton.php | 2 +- .../Customer/Block/Adminhtml/Edit/ResetPasswordButton.php | 2 +- .../Customer/Block/Adminhtml/Edit/SaveAndContinueButton.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/SaveButton.php | 2 +- app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Cart.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/Tab/Carts.php | 2 +- .../Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php | 2 +- .../Customer/Block/Adminhtml/Edit/Tab/Newsletter.php | 2 +- .../Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid.php | 2 +- .../Adminhtml/Edit/Tab/Newsletter/Grid/Filter/Status.php | 2 +- .../Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Action.php | 2 +- .../Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Status.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/Tab/Orders.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/Tab/Reviews.php | 2 +- app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/Tab/View/Cart.php | 2 +- .../Block/Adminhtml/Edit/Tab/View/Grid/Renderer/Item.php | 2 +- .../Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfo.php | 2 +- .../Customer/Block/Adminhtml/Edit/Tab/View/Sales.php | 2 +- .../Customer/Block/Adminhtml/Edit/Tab/View/Wishlist.php | 2 +- .../Edit/Tab/Wishlist/Grid/Renderer/Description.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/UnlockButton.php | 2 +- .../Customer/Block/Adminhtml/Form/Element/Boolean.php | 2 +- .../Magento/Customer/Block/Adminhtml/Form/Element/File.php | 2 +- .../Magento/Customer/Block/Adminhtml/Form/Element/Image.php | 2 +- .../Customer/Block/Adminhtml/Grid/Filter/Country.php | 2 +- .../Customer/Block/Adminhtml/Grid/Renderer/Multiaction.php | 2 +- app/code/Magento/Customer/Block/Adminhtml/Group.php | 2 +- app/code/Magento/Customer/Block/Adminhtml/Group/Edit.php | 2 +- .../Magento/Customer/Block/Adminhtml/Group/Edit/Form.php | 2 +- .../Adminhtml/Sales/Order/Address/Form/Renderer/Vat.php | 2 +- .../Customer/Block/Adminhtml/System/Config/Validatevat.php | 2 +- app/code/Magento/Customer/Block/CustomerData.php | 2 +- app/code/Magento/Customer/Block/Form/Edit.php | 2 +- app/code/Magento/Customer/Block/Form/Login.php | 2 +- app/code/Magento/Customer/Block/Form/Login/Info.php | 2 +- app/code/Magento/Customer/Block/Form/Register.php | 2 +- app/code/Magento/Customer/Block/Newsletter.php | 2 +- app/code/Magento/Customer/Block/SectionConfig.php | 2 +- app/code/Magento/Customer/Block/Widget/AbstractWidget.php | 2 +- app/code/Magento/Customer/Block/Widget/Dob.php | 2 +- app/code/Magento/Customer/Block/Widget/Gender.php | 2 +- app/code/Magento/Customer/Block/Widget/Name.php | 2 +- app/code/Magento/Customer/Block/Widget/Taxvat.php | 2 +- .../Console/Command/UpgradeHashAlgorithmCommand.php | 2 +- app/code/Magento/Customer/Controller/AbstractAccount.php | 2 +- app/code/Magento/Customer/Controller/Account/Confirm.php | 2 +- .../Magento/Customer/Controller/Account/Confirmation.php | 2 +- app/code/Magento/Customer/Controller/Account/Create.php | 2 +- .../Magento/Customer/Controller/Account/CreatePassword.php | 2 +- app/code/Magento/Customer/Controller/Account/CreatePost.php | 2 +- app/code/Magento/Customer/Controller/Account/Edit.php | 2 +- app/code/Magento/Customer/Controller/Account/EditPost.php | 2 +- .../Magento/Customer/Controller/Account/ForgotPassword.php | 2 +- .../Customer/Controller/Account/ForgotPasswordPost.php | 2 +- app/code/Magento/Customer/Controller/Account/Index.php | 2 +- app/code/Magento/Customer/Controller/Account/Login.php | 2 +- app/code/Magento/Customer/Controller/Account/LoginPost.php | 2 +- app/code/Magento/Customer/Controller/Account/Logout.php | 2 +- .../Magento/Customer/Controller/Account/LogoutSuccess.php | 2 +- .../Customer/Controller/Account/ResetPasswordPost.php | 2 +- app/code/Magento/Customer/Controller/AccountInterface.php | 2 +- app/code/Magento/Customer/Controller/Address.php | 2 +- app/code/Magento/Customer/Controller/Address/Delete.php | 2 +- app/code/Magento/Customer/Controller/Address/Edit.php | 2 +- app/code/Magento/Customer/Controller/Address/Form.php | 2 +- app/code/Magento/Customer/Controller/Address/FormPost.php | 2 +- app/code/Magento/Customer/Controller/Address/Index.php | 2 +- app/code/Magento/Customer/Controller/Address/NewAction.php | 2 +- .../Controller/Adminhtml/Cart/Product/Composite/Cart.php | 2 +- .../Adminhtml/Cart/Product/Composite/Cart/Configure.php | 2 +- .../Adminhtml/Cart/Product/Composite/Cart/Update.php | 2 +- .../Controller/Adminhtml/Customer/InvalidateToken.php | 2 +- .../Customer/Controller/Adminhtml/File/Address/Upload.php | 2 +- .../Customer/Controller/Adminhtml/File/Customer/Upload.php | 2 +- app/code/Magento/Customer/Controller/Adminhtml/Group.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Group/Delete.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Group/Edit.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Group/Index.php | 2 +- .../Customer/Controller/Adminhtml/Group/NewAction.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Group/Save.php | 2 +- app/code/Magento/Customer/Controller/Adminhtml/Index.php | 2 +- .../Controller/Adminhtml/Index/AbstractMassAction.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Index/Cart.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Index/Carts.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Index/Delete.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Index/Edit.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Index/Index.php | 2 +- .../Customer/Controller/Adminhtml/Index/InlineEdit.php | 2 +- .../Customer/Controller/Adminhtml/Index/LastOrders.php | 2 +- .../Customer/Controller/Adminhtml/Index/MassAssignGroup.php | 2 +- .../Customer/Controller/Adminhtml/Index/MassDelete.php | 2 +- .../Customer/Controller/Adminhtml/Index/MassSubscribe.php | 2 +- .../Customer/Controller/Adminhtml/Index/MassUnsubscribe.php | 2 +- .../Customer/Controller/Adminhtml/Index/NewAction.php | 2 +- .../Customer/Controller/Adminhtml/Index/Newsletter.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Index/Orders.php | 2 +- .../Customer/Controller/Adminhtml/Index/ProductReviews.php | 2 +- .../Customer/Controller/Adminhtml/Index/ResetPassword.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Index/Save.php | 2 +- .../Customer/Controller/Adminhtml/Index/Validate.php | 2 +- .../Customer/Controller/Adminhtml/Index/ViewCart.php | 2 +- .../Customer/Controller/Adminhtml/Index/ViewWishlist.php | 2 +- .../Customer/Controller/Adminhtml/Index/Viewfile.php | 2 +- .../Customer/Controller/Adminhtml/Index/Wishlist.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Locks/Unlock.php | 2 +- .../Magento/Customer/Controller/Adminhtml/Online/Index.php | 2 +- .../Controller/Adminhtml/System/Config/Validatevat.php | 2 +- .../Adminhtml/System/Config/Validatevat/Validate.php | 2 +- .../System/Config/Validatevat/ValidateAdvanced.php | 2 +- .../Adminhtml/Wishlist/Product/Composite/Wishlist.php | 2 +- .../Wishlist/Product/Composite/Wishlist/Configure.php | 2 +- .../Wishlist/Product/Composite/Wishlist/Update.php | 2 +- app/code/Magento/Customer/Controller/Ajax/Login.php | 2 +- app/code/Magento/Customer/Controller/Ajax/Logout.php | 2 +- app/code/Magento/Customer/Controller/Plugin/Account.php | 2 +- app/code/Magento/Customer/Controller/RegistryConstants.php | 2 +- app/code/Magento/Customer/Controller/Review.php | 2 +- app/code/Magento/Customer/Controller/Review/Index.php | 2 +- app/code/Magento/Customer/Controller/Review/View.php | 2 +- app/code/Magento/Customer/Controller/Section/Load.php | 2 +- app/code/Magento/Customer/CustomerData/Customer.php | 2 +- .../Customer/CustomerData/JsLayoutDataProviderInterface.php | 2 +- .../Customer/CustomerData/JsLayoutDataProviderPool.php | 2 +- .../CustomerData/JsLayoutDataProviderPoolInterface.php | 2 +- .../Magento/Customer/CustomerData/Plugin/SessionChecker.php | 2 +- app/code/Magento/Customer/CustomerData/SchemaLocator.php | 2 +- .../Magento/Customer/CustomerData/Section/Identifier.php | 2 +- .../Customer/CustomerData/SectionConfigConverter.php | 2 +- app/code/Magento/Customer/CustomerData/SectionPool.php | 2 +- .../Magento/Customer/CustomerData/SectionPoolInterface.php | 2 +- .../Customer/CustomerData/SectionSourceInterface.php | 2 +- app/code/Magento/Customer/Helper/Address.php | 2 +- .../Magento/Customer/Helper/Session/CurrentCustomer.php | 2 +- .../Customer/Helper/Session/CurrentCustomerAddress.php | 2 +- app/code/Magento/Customer/Helper/View.php | 2 +- app/code/Magento/Customer/Model/Account/Redirect.php | 2 +- app/code/Magento/Customer/Model/AccountManagement.php | 2 +- app/code/Magento/Customer/Model/Address.php | 2 +- app/code/Magento/Customer/Model/Address/AbstractAddress.php | 2 +- .../Customer/Model/Address/AddressModelInterface.php | 2 +- app/code/Magento/Customer/Model/Address/Config.php | 2 +- .../Magento/Customer/Model/Address/Config/Converter.php | 2 +- app/code/Magento/Customer/Model/Address/Config/Reader.php | 2 +- .../Magento/Customer/Model/Address/Config/SchemaLocator.php | 2 +- .../Magento/Customer/Model/Address/CustomAttributeList.php | 2 +- .../Customer/Model/Address/CustomAttributeListInterface.php | 2 +- app/code/Magento/Customer/Model/Address/Form.php | 2 +- app/code/Magento/Customer/Model/Address/Mapper.php | 2 +- .../Magento/Customer/Model/Address/Validator/Postcode.php | 2 +- app/code/Magento/Customer/Model/AddressRegistry.php | 2 +- .../Magento/Customer/Model/App/Action/ContextPlugin.php | 2 +- app/code/Magento/Customer/Model/Attribute.php | 2 +- .../Customer/Model/Attribute/Backend/Data/Boolean.php | 2 +- .../Magento/Customer/Model/Attribute/Data/AbstractData.php | 2 +- app/code/Magento/Customer/Model/Attribute/Data/Boolean.php | 2 +- app/code/Magento/Customer/Model/Attribute/Data/Date.php | 2 +- app/code/Magento/Customer/Model/Attribute/Data/File.php | 2 +- app/code/Magento/Customer/Model/Attribute/Data/Hidden.php | 2 +- app/code/Magento/Customer/Model/Attribute/Data/Image.php | 2 +- .../Magento/Customer/Model/Attribute/Data/Multiline.php | 2 +- .../Magento/Customer/Model/Attribute/Data/Multiselect.php | 2 +- app/code/Magento/Customer/Model/Attribute/Data/Postcode.php | 2 +- app/code/Magento/Customer/Model/Attribute/Data/Select.php | 2 +- app/code/Magento/Customer/Model/Attribute/Data/Text.php | 2 +- app/code/Magento/Customer/Model/Attribute/Data/Textarea.php | 2 +- .../Magento/Customer/Model/AttributeMetadataConverter.php | 2 +- .../Customer/Model/AttributeMetadataDataProvider.php | 2 +- app/code/Magento/Customer/Model/Authentication.php | 2 +- app/code/Magento/Customer/Model/AuthenticationInterface.php | 2 +- .../Model/Authorization/CustomerSessionUserContext.php | 2 +- app/code/Magento/Customer/Model/Backend/Customer.php | 2 +- app/code/Magento/Customer/Model/Cache/Type/Notification.php | 2 +- app/code/Magento/Customer/Model/Cart/ConfigPlugin.php | 2 +- app/code/Magento/Customer/Model/Checkout/ConfigProvider.php | 2 +- .../Customer/Model/Config/Backend/Address/Street.php | 2 +- .../Backend/CreateAccount/DisableAutoGroupAssignDefault.php | 2 +- .../Model/Config/Backend/Password/Link/Expirationperiod.php | 2 +- .../Magento/Customer/Model/Config/Backend/Show/Address.php | 2 +- .../Magento/Customer/Model/Config/Backend/Show/Customer.php | 2 +- app/code/Magento/Customer/Model/Config/Share.php | 2 +- .../Magento/Customer/Model/Config/Source/Address/Type.php | 2 +- app/code/Magento/Customer/Model/Config/Source/Group.php | 2 +- .../Customer/Model/Config/Source/Group/Multiselect.php | 2 +- app/code/Magento/Customer/Model/Context.php | 2 +- app/code/Magento/Customer/Model/Customer.php | 2 +- .../Customer/Model/Customer/Attribute/Backend/Billing.php | 2 +- .../Customer/Model/Customer/Attribute/Backend/Password.php | 2 +- .../Customer/Model/Customer/Attribute/Backend/Shipping.php | 2 +- .../Customer/Model/Customer/Attribute/Backend/Store.php | 2 +- .../Customer/Model/Customer/Attribute/Backend/Website.php | 2 +- .../Customer/Model/Customer/Attribute/Source/Group.php | 2 +- .../Attribute/Source/GroupSourceLoggedInOnlyInterface.php | 2 +- .../Customer/Model/Customer/Attribute/Source/Store.php | 2 +- .../Customer/Model/Customer/Attribute/Source/Website.php | 2 +- app/code/Magento/Customer/Model/Customer/DataProvider.php | 2 +- app/code/Magento/Customer/Model/Customer/Mapper.php | 2 +- .../Magento/Customer/Model/Customer/NotificationStorage.php | 2 +- app/code/Magento/Customer/Model/Customer/Source/Group.php | 2 +- .../Customer/Model/Customer/Source/GroupSourceInterface.php | 2 +- app/code/Magento/Customer/Model/CustomerAuthUpdate.php | 2 +- app/code/Magento/Customer/Model/CustomerExtractor.php | 2 +- app/code/Magento/Customer/Model/CustomerManagement.php | 2 +- app/code/Magento/Customer/Model/CustomerRegistry.php | 2 +- app/code/Magento/Customer/Model/Data/Address.php | 2 +- app/code/Magento/Customer/Model/Data/AttributeMetadata.php | 2 +- app/code/Magento/Customer/Model/Data/Customer.php | 2 +- app/code/Magento/Customer/Model/Data/CustomerSecure.php | 2 +- app/code/Magento/Customer/Model/Data/Group.php | 2 +- app/code/Magento/Customer/Model/Data/Option.php | 2 +- app/code/Magento/Customer/Model/Data/Region.php | 2 +- app/code/Magento/Customer/Model/Data/ValidationResults.php | 2 +- app/code/Magento/Customer/Model/Data/ValidationRule.php | 2 +- app/code/Magento/Customer/Model/EmailNotification.php | 2 +- .../Magento/Customer/Model/EmailNotificationInterface.php | 2 +- app/code/Magento/Customer/Model/FileProcessor.php | 2 +- app/code/Magento/Customer/Model/FileUploader.php | 2 +- app/code/Magento/Customer/Model/Form.php | 2 +- app/code/Magento/Customer/Model/Group.php | 2 +- app/code/Magento/Customer/Model/GroupManagement.php | 2 +- app/code/Magento/Customer/Model/GroupRegistry.php | 2 +- .../Customer/Model/Indexer/Address/AttributeProvider.php | 2 +- .../Magento/Customer/Model/Indexer/Attribute/Filter.php | 2 +- .../Magento/Customer/Model/Indexer/AttributeProvider.php | 2 +- app/code/Magento/Customer/Model/Indexer/Source.php | 2 +- .../Magento/Customer/Model/Layout/DepersonalizePlugin.php | 2 +- app/code/Magento/Customer/Model/Log.php | 2 +- app/code/Magento/Customer/Model/Logger.php | 2 +- .../Customer/Model/Metadata/AddressCachedMetadata.php | 2 +- .../Magento/Customer/Model/Metadata/AddressMetadata.php | 2 +- .../Customer/Model/Metadata/AddressMetadataManagement.php | 2 +- .../Magento/Customer/Model/Metadata/AttributeResolver.php | 2 +- app/code/Magento/Customer/Model/Metadata/CachedMetadata.php | 2 +- .../Customer/Model/Metadata/CustomerCachedMetadata.php | 2 +- .../Magento/Customer/Model/Metadata/CustomerMetadata.php | 2 +- .../Customer/Model/Metadata/CustomerMetadataManagement.php | 2 +- app/code/Magento/Customer/Model/Metadata/ElementFactory.php | 2 +- app/code/Magento/Customer/Model/Metadata/Form.php | 2 +- .../Magento/Customer/Model/Metadata/Form/AbstractData.php | 2 +- app/code/Magento/Customer/Model/Metadata/Form/Boolean.php | 2 +- app/code/Magento/Customer/Model/Metadata/Form/Date.php | 2 +- app/code/Magento/Customer/Model/Metadata/Form/File.php | 2 +- app/code/Magento/Customer/Model/Metadata/Form/Hidden.php | 2 +- app/code/Magento/Customer/Model/Metadata/Form/Image.php | 2 +- app/code/Magento/Customer/Model/Metadata/Form/Multiline.php | 2 +- .../Magento/Customer/Model/Metadata/Form/Multiselect.php | 2 +- app/code/Magento/Customer/Model/Metadata/Form/Postcode.php | 2 +- app/code/Magento/Customer/Model/Metadata/Form/Select.php | 2 +- app/code/Magento/Customer/Model/Metadata/Form/Text.php | 2 +- app/code/Magento/Customer/Model/Metadata/Form/Textarea.php | 2 +- app/code/Magento/Customer/Model/Metadata/FormFactory.php | 2 +- app/code/Magento/Customer/Model/Metadata/Validator.php | 2 +- app/code/Magento/Customer/Model/Observer/Grid.php | 2 +- app/code/Magento/Customer/Model/Options.php | 2 +- app/code/Magento/Customer/Model/Plugin/AllowedCountries.php | 2 +- .../Magento/Customer/Model/Plugin/CustomerAuthorization.php | 2 +- .../Magento/Customer/Model/Plugin/CustomerNotification.php | 2 +- .../Model/Plugin/CustomerRepository/TransactionWrapper.php | 2 +- app/code/Magento/Customer/Model/Registration.php | 2 +- app/code/Magento/Customer/Model/Renderer/Region.php | 2 +- app/code/Magento/Customer/Model/ResourceModel/Address.php | 2 +- .../ResourceModel/Address/Attribute/Backend/Region.php | 2 +- .../Model/ResourceModel/Address/Attribute/Collection.php | 2 +- .../ResourceModel/Address/Attribute/Source/Country.php | 2 +- .../Address/Attribute/Source/CountryWithWebsites.php | 2 +- .../Model/ResourceModel/Address/Attribute/Source/Region.php | 2 +- .../Customer/Model/ResourceModel/Address/Collection.php | 2 +- .../Customer/Model/ResourceModel/Address/DeleteRelation.php | 2 +- .../Customer/Model/ResourceModel/Address/Relation.php | 2 +- .../Customer/Model/ResourceModel/AddressRepository.php | 2 +- app/code/Magento/Customer/Model/ResourceModel/Attribute.php | 2 +- .../Customer/Model/ResourceModel/Attribute/Collection.php | 2 +- app/code/Magento/Customer/Model/ResourceModel/Customer.php | 2 +- .../Customer/Model/ResourceModel/Customer/Collection.php | 2 +- .../Magento/Customer/Model/ResourceModel/Customer/Grid.php | 2 +- .../Model/ResourceModel/Customer/Indexer/Collection.php | 2 +- .../Customer/Model/ResourceModel/Customer/Relation.php | 2 +- .../Customer/Model/ResourceModel/CustomerRepository.php | 2 +- .../ResourceModel/Db/VersionControl/AddressSnapshot.php | 2 +- .../Magento/Customer/Model/ResourceModel/Form/Attribute.php | 2 +- .../Model/ResourceModel/Form/Attribute/Collection.php | 2 +- .../Customer/Model/ResourceModel/Grid/Collection.php | 2 +- app/code/Magento/Customer/Model/ResourceModel/Group.php | 2 +- .../Customer/Model/ResourceModel/Group/Collection.php | 2 +- .../Customer/Model/ResourceModel/Group/Grid/Collection.php | 2 +- .../Model/ResourceModel/Group/Grid/ServiceCollection.php | 2 +- .../Customer/Model/ResourceModel/GroupRepository.php | 2 +- .../Customer/Model/ResourceModel/Online/Grid/Collection.php | 2 +- .../Customer/Model/ResourceModel/Setup/PropertyMapper.php | 2 +- app/code/Magento/Customer/Model/ResourceModel/Visitor.php | 2 +- .../Customer/Model/ResourceModel/Visitor/Collection.php | 2 +- app/code/Magento/Customer/Model/Session.php | 2 +- app/code/Magento/Customer/Model/Session/Storage.php | 2 +- app/code/Magento/Customer/Model/Url.php | 2 +- app/code/Magento/Customer/Model/Vat.php | 2 +- app/code/Magento/Customer/Model/Visitor.php | 2 +- .../Magento/Customer/Observer/AfterAddressSaveObserver.php | 2 +- .../Magento/Customer/Observer/BeforeAddressSaveObserver.php | 2 +- .../Customer/Observer/CustomerLoginSuccessObserver.php | 2 +- .../Magento/Customer/Observer/LogLastLoginAtObserver.php | 2 +- .../Magento/Customer/Observer/LogLastLogoutAtObserver.php | 2 +- .../Customer/Observer/UpgradeCustomerPasswordObserver.php | 2 +- .../Customer/Observer/Visitor/AbstractVisitorObserver.php | 2 +- .../Customer/Observer/Visitor/BindCustomerLoginObserver.php | 2 +- .../Observer/Visitor/BindCustomerLogoutObserver.php | 2 +- .../Customer/Observer/Visitor/BindQuoteCreateObserver.php | 2 +- .../Customer/Observer/Visitor/BindQuoteDestroyObserver.php | 2 +- .../Customer/Observer/Visitor/InitByRequestObserver.php | 2 +- .../Customer/Observer/Visitor/SaveByRequestObserver.php | 2 +- app/code/Magento/Customer/Setup/CustomerSetup.php | 2 +- app/code/Magento/Customer/Setup/InstallData.php | 2 +- app/code/Magento/Customer/Setup/InstallSchema.php | 2 +- app/code/Magento/Customer/Setup/UpgradeData.php | 2 +- app/code/Magento/Customer/Setup/UpgradeSchema.php | 2 +- .../Test/Unit/Block/Account/AuthenticationPopupTest.php | 2 +- .../Test/Unit/Block/Account/AuthorizationLinkTest.php | 2 +- .../Customer/Test/Unit/Block/Account/CustomerTest.php | 2 +- .../Customer/Test/Unit/Block/Account/Dashboard/InfoTest.php | 2 +- .../Magento/Customer/Test/Unit/Block/Account/LinkTest.php | 2 +- .../Customer/Test/Unit/Block/Account/RegisterLinkTest.php | 2 +- .../Customer/Test/Unit/Block/Account/ResetpasswordTest.php | 2 +- .../Magento/Customer/Test/Unit/Block/Address/EditTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Edit/Tab/NewsletterTest.php | 2 +- .../Adminhtml/Edit/Tab/View/Grid/Renderer/ItemTest.php | 2 +- .../Unit/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Edit/Tab/ViewTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Edit/UnlockButtonTest.php | 2 +- .../Test/Unit/Block/Adminhtml/From/Element/ImageTest.php | 2 +- app/code/Magento/Customer/Test/Unit/Block/Form/EditTest.php | 2 +- .../Customer/Test/Unit/Block/Form/Login/InfoTest.php | 2 +- .../Magento/Customer/Test/Unit/Block/Form/RegisterTest.php | 2 +- .../Magento/Customer/Test/Unit/Block/NewsletterTest.php | 2 +- .../Magento/Customer/Test/Unit/Block/SectionConfigTest.php | 2 +- .../Customer/Test/Unit/Block/Widget/AbstractWidgetTest.php | 2 +- .../Magento/Customer/Test/Unit/Block/Widget/DobTest.php | 2 +- .../Magento/Customer/Test/Unit/Block/Widget/GenderTest.php | 2 +- .../Magento/Customer/Test/Unit/Block/Widget/NameTest.php | 2 +- .../Magento/Customer/Test/Unit/Block/Widget/TaxvatTest.php | 2 +- .../Console/Command/UpgradeHashAlgorithmCommandTest.php | 2 +- .../Customer/Test/Unit/Controller/Account/ConfirmTest.php | 2 +- .../Test/Unit/Controller/Account/CreatePasswordTest.php | 2 +- .../Test/Unit/Controller/Account/CreatePostTest.php | 2 +- .../Customer/Test/Unit/Controller/Account/CreateTest.php | 2 +- .../Customer/Test/Unit/Controller/Account/EditPostTest.php | 2 +- .../Test/Unit/Controller/Account/ForgotPasswordPostTest.php | 2 +- .../Customer/Test/Unit/Controller/Account/LoginPostTest.php | 2 +- .../Customer/Test/Unit/Controller/Account/LogoutTest.php | 2 +- .../Test/Unit/Controller/Account/ResetPasswordPostTest.php | 2 +- .../Customer/Test/Unit/Controller/Address/DeleteTest.php | 2 +- .../Customer/Test/Unit/Controller/Address/FormPostTest.php | 2 +- .../Unit/Controller/Adminhtml/File/Address/UploadTest.php | 2 +- .../Unit/Controller/Adminhtml/File/Customer/UploadTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Group/SaveTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Index/IndexTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Index/InlineEditTest.php | 2 +- .../Unit/Controller/Adminhtml/Index/MassAssignGroupTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Index/MassDeleteTest.php | 2 +- .../Unit/Controller/Adminhtml/Index/MassSubscribeTest.php | 2 +- .../Unit/Controller/Adminhtml/Index/MassUnsubscribeTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Index/NewsletterTest.php | 2 +- .../Unit/Controller/Adminhtml/Index/ResetPasswordTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Index/SaveTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Index/ValidateTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Index/ViewfileTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Locks/UnlockTest.php | 2 +- .../Adminhtml/System/Config/Validatevat/ValidateTest.php | 2 +- .../Customer/Test/Unit/Controller/Ajax/LoginTest.php | 2 +- .../Customer/Test/Unit/Controller/Plugin/AccountTest.php | 2 +- .../Test/Unit/CustomerData/Plugin/SessionCheckerTest.php | 2 +- .../Test/Unit/CustomerData/Section/IdentifierTest.php | 2 +- .../Test/Unit/CustomerData/SectionConfigConverterTest.php | 2 +- .../Customer/Test/Unit/CustomerData/SectionPoolTest.php | 2 +- .../Customer/Test/Unit/CustomerData/_files/sections.xml | 2 +- app/code/Magento/Customer/Test/Unit/Helper/AddressTest.php | 2 +- .../Test/Unit/Helper/Session/CurrentCustomerAddressTest.php | 2 +- .../Test/Unit/Helper/Session/CurrentCustomerTest.php | 2 +- app/code/Magento/Customer/Test/Unit/Helper/ViewTest.php | 2 +- .../Customer/Test/Unit/Model/Account/RedirectTest.php | 2 +- .../Customer/Test/Unit/Model/AccountManagementTest.php | 2 +- .../Test/Unit/Model/Address/AbstractAddressTest.php | 2 +- .../Test/Unit/Model/Address/Config/ConverterTest.php | 2 +- .../Customer/Test/Unit/Model/Address/Config/ReaderTest.php | 2 +- .../Test/Unit/Model/Address/Config/SchemaLocatorTest.php | 2 +- .../Customer/Test/Unit/Model/Address/Config/XsdTest.php | 2 +- .../Unit/Model/Address/Config/_files/formats_merged.php | 2 +- .../Unit/Model/Address/Config/_files/formats_merged.xml | 2 +- .../Test/Unit/Model/Address/Config/_files/formats_one.xml | 2 +- .../Test/Unit/Model/Address/Config/_files/formats_two.xml | 2 +- .../Magento/Customer/Test/Unit/Model/Address/ConfigTest.php | 2 +- .../Magento/Customer/Test/Unit/Model/Address/MapperTest.php | 2 +- .../Test/Unit/Model/Address/Validator/PostcodeTest.php | 2 +- .../Customer/Test/Unit/Model/AddressRegistryTest.php | 2 +- app/code/Magento/Customer/Test/Unit/Model/AddressTest.php | 2 +- .../Test/Unit/Model/App/Action/ContextPluginTest.php | 2 +- .../Test/Unit/Model/Attribute/Backend/BooleanTest.php | 2 +- .../Test/Unit/Model/Attribute/Data/PostcodeTest.php | 2 +- .../Test/Unit/Model/AttributeMetadatConverterTest.php | 2 +- app/code/Magento/Customer/Test/Unit/Model/AttributeTest.php | 2 +- .../Magento/Customer/Test/Unit/Model/AuthenticationTest.php | 2 +- .../Model/Authorization/CustomerSessionUserContextTest.php | 2 +- .../Customer/Test/Unit/Model/Backend/CustomerTest.php | 2 +- .../Test/Unit/Model/Checkout/ConfigProviderTest.php | 2 +- .../CreateAccount/DisableAutoGroupAssignDefaultTest.php | 2 +- .../Test/Unit/Model/Config/Source/Address/TypeTest.php | 2 +- .../Test/Unit/Model/Config/Source/Group/MultiselectTest.php | 2 +- .../Customer/Test/Unit/Model/Config/Source/GroupTest.php | 2 +- .../Unit/Model/Customer/Attribute/Backend/BillingTest.php | 2 +- .../Unit/Model/Customer/Attribute/Backend/PasswordTest.php | 2 +- .../Unit/Model/Customer/Attribute/Backend/ShippingTest.php | 2 +- .../Unit/Model/Customer/Attribute/Backend/StoreTest.php | 2 +- .../Unit/Model/Customer/Attribute/Backend/WebsiteTest.php | 2 +- .../Unit/Model/Customer/Attribute/Source/WebsiteTest.php | 2 +- .../Customer/Test/Unit/Model/Customer/DataProviderTest.php | 2 +- .../Test/Unit/Model/Customer/NotificationStorageTest.php | 2 +- .../Customer/Test/Unit/Model/Customer/Source/GroupTest.php | 2 +- .../Customer/Test/Unit/Model/CustomerAuthUpdateTest.php | 2 +- .../Customer/Test/Unit/Model/CustomerExtractorTest.php | 2 +- .../Customer/Test/Unit/Model/CustomerManagementTest.php | 2 +- .../Customer/Test/Unit/Model/CustomerRegistryTest.php | 2 +- app/code/Magento/Customer/Test/Unit/Model/CustomerTest.php | 2 +- .../Customer/Test/Unit/Model/EmailNotificationTest.php | 2 +- .../Magento/Customer/Test/Unit/Model/FileProcessorTest.php | 2 +- .../Magento/Customer/Test/Unit/Model/FileUploaderTest.php | 2 +- .../Magento/Customer/Test/Unit/Model/GroupRegistryTest.php | 2 +- .../Test/Unit/Model/Indexer/Attribute/FilterTest.php | 2 +- .../Test/Unit/Model/Indexer/AttributeProviderTest.php | 2 +- .../Test/Unit/Model/Layout/DepersonalizePluginTest.php | 2 +- app/code/Magento/Customer/Test/Unit/Model/LogTest.php | 2 +- app/code/Magento/Customer/Test/Unit/Model/LoggerTest.php | 2 +- .../Unit/Model/Metadata/AddressMetadataManagementTest.php | 2 +- .../Test/Unit/Model/Metadata/AddressMetadataTest.php | 2 +- .../Test/Unit/Model/Metadata/AttributeResolverTest.php | 2 +- .../Unit/Model/Metadata/CustomerMetadataManagementTest.php | 2 +- .../Test/Unit/Model/Metadata/ElementFactoryTest.php | 2 +- .../Test/Unit/Model/Metadata/Form/AbstractDataTest.php | 2 +- .../Test/Unit/Model/Metadata/Form/AbstractFormTestCase.php | 2 +- .../Customer/Test/Unit/Model/Metadata/Form/BooleanTest.php | 2 +- .../Customer/Test/Unit/Model/Metadata/Form/DateTest.php | 2 +- .../Test/Unit/Model/Metadata/Form/ExtendsAbstractData.php | 2 +- .../Customer/Test/Unit/Model/Metadata/Form/FileTest.php | 2 +- .../Customer/Test/Unit/Model/Metadata/Form/HiddenTest.php | 2 +- .../Customer/Test/Unit/Model/Metadata/Form/ImageTest.php | 2 +- .../Test/Unit/Model/Metadata/Form/MultilineTest.php | 2 +- .../Test/Unit/Model/Metadata/Form/MultiselectTest.php | 2 +- .../Customer/Test/Unit/Model/Metadata/Form/PostcodeTest.php | 2 +- .../Customer/Test/Unit/Model/Metadata/Form/SelectTest.php | 2 +- .../Customer/Test/Unit/Model/Metadata/Form/TextTest.php | 2 +- .../Customer/Test/Unit/Model/Metadata/Form/TextareaTest.php | 2 +- .../Customer/Test/Unit/Model/Metadata/ValidatorTest.php | 2 +- .../Test/Unit/Model/Plugin/AllowedCountriesTest.php | 2 +- .../Test/Unit/Model/Plugin/CustomerNotificationTest.php | 2 +- .../Plugin/CustomerRepository/TransactionWrapperTest.php | 2 +- .../Customer/Test/Unit/Model/Renderer/RegionTest.php | 2 +- .../ResourceModel/Address/Attribute/Backend/RegionTest.php | 2 +- .../Address/Attribute/Source/CountryWithWebsitesTest.php | 2 +- .../Unit/Model/ResourceModel/Address/DeleteRelationTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Address/RelationTest.php | 2 +- .../Test/Unit/Model/ResourceModel/AddressRepositoryTest.php | 2 +- .../Customer/Test/Unit/Model/ResourceModel/AddressTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Customer/GridTest.php | 2 +- .../Unit/Model/ResourceModel/CustomerRepositoryTest.php | 2 +- .../ResourceModel/Db/VersionControl/AddressSnapshotTest.php | 2 +- .../ResourceModel/Group/Grid/ServiceCollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/GroupRepositoryTest.php | 2 +- .../Customer/Test/Unit/Model/ResourceModel/GroupTest.php | 2 +- app/code/Magento/Customer/Test/Unit/Model/SessionTest.php | 2 +- app/code/Magento/Customer/Test/Unit/Model/VisitorTest.php | 2 +- .../Test/Unit/Observer/AfterAddressSaveObserverTest.php | 2 +- .../Test/Unit/Observer/BeforeAddressSaveObserverTest.php | 2 +- .../Test/Unit/Observer/CustomerLoginSuccessObserverTest.php | 2 +- .../Test/Unit/Observer/LogLastLoginAtObserverTest.php | 2 +- .../Test/Unit/Observer/LogLastLogoutAtObserverTest.php | 2 +- .../Unit/Observer/UpgradeCustomerPasswordObserverTest.php | 2 +- .../Customer/Test/Unit/Ui/Component/ColumnFactoryTest.php | 2 +- .../Test/Unit/Ui/Component/DataProvider/DocumentTest.php | 2 +- .../Customer/Test/Unit/Ui/Component/DataProviderTest.php | 2 +- .../Customer/Test/Unit/Ui/Component/FilterFactoryTest.php | 2 +- .../Unit/Ui/Component/Listing/AttributeRepositoryTest.php | 2 +- .../Unit/Ui/Component/Listing/Column/AccountLockTest.php | 2 +- .../Test/Unit/Ui/Component/Listing/Column/ActionsTest.php | 2 +- .../Ui/Component/Listing/Column/AttributeColumnTest.php | 2 +- .../Unit/Ui/Component/Listing/Column/ConfirmationTest.php | 2 +- .../Ui/Component/Listing/Column/InlineEditUpdaterTest.php | 2 +- .../Ui/Component/Listing/Column/ValidationRulesTest.php | 2 +- .../Customer/Test/Unit/Ui/Component/Listing/ColumnsTest.php | 2 +- app/code/Magento/Customer/Ui/Component/ColumnFactory.php | 2 +- app/code/Magento/Customer/Ui/Component/DataProvider.php | 2 +- .../Magento/Customer/Ui/Component/DataProvider/Document.php | 2 +- app/code/Magento/Customer/Ui/Component/FilterFactory.php | 2 +- .../Customer/Ui/Component/Listing/AttributeRepository.php | 2 +- .../Customer/Ui/Component/Listing/Column/AccountLock.php | 2 +- .../Customer/Ui/Component/Listing/Column/Actions.php | 2 +- .../Ui/Component/Listing/Column/AttributeColumn.php | 2 +- .../Customer/Ui/Component/Listing/Column/Confirmation.php | 2 +- .../Customer/Ui/Component/Listing/Column/Group/Options.php | 2 +- .../Ui/Component/Listing/Column/InlineEditUpdater.php | 2 +- .../Customer/Ui/Component/Listing/Column/Online/Type.php | 2 +- .../Ui/Component/Listing/Column/Online/Type/Options.php | 2 +- .../Ui/Component/Listing/Column/ValidationRules.php | 2 +- .../Customer/Ui/Component/Listing/Column/Websites.php | 2 +- app/code/Magento/Customer/Ui/Component/Listing/Columns.php | 2 +- .../Customer/Ui/Component/MassAction/Group/Options.php | 2 +- app/code/Magento/Customer/etc/acl.xml | 2 +- app/code/Magento/Customer/etc/address_formats.xml | 2 +- app/code/Magento/Customer/etc/address_formats.xsd | 2 +- app/code/Magento/Customer/etc/adminhtml/di.xml | 2 +- app/code/Magento/Customer/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Customer/etc/adminhtml/routes.xml | 4 ++-- app/code/Magento/Customer/etc/adminhtml/system.xml | 2 +- app/code/Magento/Customer/etc/cache.xml | 2 +- app/code/Magento/Customer/etc/config.xml | 2 +- app/code/Magento/Customer/etc/crontab.xml | 2 +- app/code/Magento/Customer/etc/di.xml | 2 +- app/code/Magento/Customer/etc/email_templates.xml | 2 +- app/code/Magento/Customer/etc/events.xml | 2 +- app/code/Magento/Customer/etc/fieldset.xml | 2 +- app/code/Magento/Customer/etc/frontend/di.xml | 2 +- app/code/Magento/Customer/etc/frontend/events.xml | 2 +- app/code/Magento/Customer/etc/frontend/page_types.xml | 2 +- app/code/Magento/Customer/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Customer/etc/frontend/sections.xml | 2 +- app/code/Magento/Customer/etc/indexer.xml | 2 +- app/code/Magento/Customer/etc/module.xml | 2 +- app/code/Magento/Customer/etc/mview.xml | 2 +- app/code/Magento/Customer/etc/sections.xsd | 2 +- app/code/Magento/Customer/etc/validation.xml | 2 +- app/code/Magento/Customer/etc/webapi.xml | 2 +- app/code/Magento/Customer/etc/webapi_rest/di.xml | 2 +- app/code/Magento/Customer/etc/webapi_soap/di.xml | 2 +- app/code/Magento/Customer/registration.php | 2 +- .../Customer/view/adminhtml/layout/customer_group_index.xml | 2 +- .../Customer/view/adminhtml/layout/customer_index_cart.xml | 2 +- .../Customer/view/adminhtml/layout/customer_index_carts.xml | 2 +- .../Customer/view/adminhtml/layout/customer_index_edit.xml | 2 +- .../Customer/view/adminhtml/layout/customer_index_index.xml | 2 +- .../view/adminhtml/layout/customer_index_newsletter.xml | 2 +- .../view/adminhtml/layout/customer_index_orders.xml | 2 +- .../view/adminhtml/layout/customer_index_productreviews.xml | 2 +- .../view/adminhtml/layout/customer_index_viewcart.xml | 2 +- .../view/adminhtml/layout/customer_index_viewwishlist.xml | 2 +- .../view/adminhtml/layout/customer_online_index.xml | 2 +- .../Magento/Customer/view/adminhtml/requirejs-config.js | 4 ++-- .../Magento/Customer/view/adminhtml/templates/edit/js.phtml | 2 +- .../sales/order/create/address/form/renderer/vat.phtml | 2 +- .../adminhtml/templates/system/config/validatevat.phtml | 2 +- .../Customer/view/adminhtml/templates/tab/cart.phtml | 2 +- .../Customer/view/adminhtml/templates/tab/newsletter.phtml | 2 +- .../Customer/view/adminhtml/templates/tab/view.phtml | 2 +- .../view/adminhtml/templates/tab/view/personal_info.phtml | 2 +- .../Customer/view/adminhtml/templates/tab/view/sales.phtml | 2 +- .../view/adminhtml/ui_component/customer_listing.xml | 2 +- .../view/adminhtml/ui_component/customer_online_grid.xml | 2 +- .../Customer/view/adminhtml/web/edit/post-wrapper.js | 2 +- .../Customer/view/adminhtml/web/edit/tab/js/addresses.js | 4 ++-- .../view/adminhtml/web/js/bootstrap/customer-post-action.js | 2 +- .../Customer/view/base/ui_component/customer_form.xml | 2 +- .../Magento/Customer/view/frontend/email/account_new.html | 2 +- .../view/frontend/email/account_new_confirmation.html | 2 +- .../Customer/view/frontend/email/account_new_confirmed.html | 2 +- .../view/frontend/email/account_new_no_password.html | 2 +- .../Magento/Customer/view/frontend/email/change_email.html | 2 +- .../view/frontend/email/change_email_and_password.html | 2 +- .../Magento/Customer/view/frontend/email/password_new.html | 2 +- .../Customer/view/frontend/email/password_reset.html | 2 +- .../view/frontend/email/password_reset_confirmation.html | 2 +- .../Customer/view/frontend/layout/customer_account.xml | 2 +- .../view/frontend/layout/customer_account_confirmation.xml | 2 +- .../view/frontend/layout/customer_account_create.xml | 2 +- .../frontend/layout/customer_account_createpassword.xml | 2 +- .../Customer/view/frontend/layout/customer_account_edit.xml | 2 +- .../frontend/layout/customer_account_forgotpassword.xml | 2 +- .../view/frontend/layout/customer_account_index.xml | 2 +- .../view/frontend/layout/customer_account_login.xml | 2 +- .../view/frontend/layout/customer_account_logoutsuccess.xml | 2 +- .../Customer/view/frontend/layout/customer_address_form.xml | 2 +- .../view/frontend/layout/customer_address_index.xml | 2 +- app/code/Magento/Customer/view/frontend/layout/default.xml | 2 +- app/code/Magento/Customer/view/frontend/requirejs-config.js | 2 +- .../frontend/templates/account/authentication-popup.phtml | 2 +- .../Customer/view/frontend/templates/account/customer.phtml | 2 +- .../view/frontend/templates/account/dashboard/address.phtml | 2 +- .../view/frontend/templates/account/dashboard/info.phtml | 2 +- .../frontend/templates/account/link/authorization.phtml | 2 +- .../view/frontend/templates/account/link/back.phtml | 2 +- .../frontend/templates/account/navigation-delimiter.phtml | 2 +- .../view/frontend/templates/account/navigation.phtml | 2 +- .../view/frontend/templates/additionalinfocustomer.phtml | 2 +- .../Customer/view/frontend/templates/address/book.phtml | 2 +- .../Customer/view/frontend/templates/address/edit.phtml | 2 +- .../view/frontend/templates/form/confirmation.phtml | 2 +- .../Customer/view/frontend/templates/form/edit.phtml | 2 +- .../view/frontend/templates/form/forgotpassword.phtml | 2 +- .../Customer/view/frontend/templates/form/login.phtml | 2 +- .../Customer/view/frontend/templates/form/newsletter.phtml | 2 +- .../Customer/view/frontend/templates/form/register.phtml | 2 +- .../frontend/templates/form/resetforgottenpassword.phtml | 2 +- .../Customer/view/frontend/templates/js/components.phtml | 2 +- .../Customer/view/frontend/templates/js/customer-data.phtml | 2 +- .../view/frontend/templates/js/section-config.phtml | 2 +- .../Magento/Customer/view/frontend/templates/logout.phtml | 2 +- .../Customer/view/frontend/templates/newcustomer.phtml | 2 +- .../Customer/view/frontend/templates/widget/dob.phtml | 2 +- .../Customer/view/frontend/templates/widget/gender.phtml | 2 +- .../Customer/view/frontend/templates/widget/name.phtml | 2 +- .../Customer/view/frontend/templates/widget/taxvat.phtml | 2 +- app/code/Magento/Customer/view/frontend/web/address.js | 4 ++-- .../Customer/view/frontend/web/change-email-password.js | 2 +- .../view/frontend/web/js/action/check-email-availability.js | 2 +- .../Magento/Customer/view/frontend/web/js/action/login.js | 2 +- .../Customer/view/frontend/web/js/addressValidation.js | 2 +- .../Customer/view/frontend/web/js/checkout-balance.js | 4 ++-- .../Magento/Customer/view/frontend/web/js/customer-data.js | 2 +- .../Customer/view/frontend/web/js/model/address-list.js | 4 ++-- .../view/frontend/web/js/model/authentication-popup.js | 2 +- .../view/frontend/web/js/model/customer-addresses.js | 2 +- .../Magento/Customer/view/frontend/web/js/model/customer.js | 2 +- .../Customer/view/frontend/web/js/model/customer/address.js | 2 +- .../view/frontend/web/js/password-strength-indicator.js | 2 +- .../Magento/Customer/view/frontend/web/js/section-config.js | 2 +- .../view/frontend/web/js/view/authentication-popup.js | 2 +- .../Magento/Customer/view/frontend/web/js/view/customer.js | 2 +- .../view/frontend/web/template/authentication-popup.html | 2 +- .../Controller/Adminhtml/Index/ExportCsv.php | 2 +- .../Controller/Adminhtml/Index/ExportXml.php | 2 +- .../Magento/CustomerImportExport/Model/Export/Address.php | 2 +- .../Magento/CustomerImportExport/Model/Export/Customer.php | 2 +- .../CustomerImportExport/Model/Import/AbstractCustomer.php | 2 +- .../Magento/CustomerImportExport/Model/Import/Address.php | 2 +- .../Magento/CustomerImportExport/Model/Import/Customer.php | 2 +- .../CustomerImportExport/Model/Import/CustomerComposite.php | 2 +- .../Model/ResourceModel/Import/Customer/Storage.php | 2 +- .../Model/ResourceModel/Import/CustomerComposite/Data.php | 2 +- .../Test/Unit/Model/Export/AddressTest.php | 2 +- .../Test/Unit/Model/Export/CustomerTest.php | 2 +- .../Test/Unit/Model/Import/AbstractCustomerTest.php | 2 +- .../Test/Unit/Model/Import/AddressTest.php | 2 +- .../Test/Unit/Model/Import/CustomerCompositeTest.php | 2 +- .../Test/Unit/Model/Import/CustomerTest.php | 2 +- .../Model/Import/_files/row_data_abstract_empty_email.php | 2 +- .../Model/Import/_files/row_data_abstract_empty_website.php | 2 +- .../Model/Import/_files/row_data_abstract_invalid_email.php | 2 +- .../Import/_files/row_data_abstract_invalid_website.php | 2 +- .../Unit/Model/Import/_files/row_data_abstract_no_email.php | 2 +- .../Model/Import/_files/row_data_abstract_no_website.php | 2 +- .../Unit/Model/Import/_files/row_data_abstract_valid.php | 2 +- .../_files/row_data_address_delete_address_not_found.php | 2 +- .../_files/row_data_address_delete_empty_address_id.php | 2 +- .../Import/_files/row_data_address_delete_no_customer.php | 2 +- .../Model/Import/_files/row_data_address_delete_valid.php | 2 +- .../row_data_address_update_absent_required_attribute.php | 2 +- .../_files/row_data_address_update_empty_address_id.php | 2 +- .../_files/row_data_address_update_invalid_region.php | 2 +- .../Import/_files/row_data_address_update_no_customer.php | 2 +- .../Model/Import/_files/row_data_address_update_valid.php | 2 +- .../Model/ResourceModel/Import/Customer/StorageTest.php | 2 +- .../ResourceModel/Import/CustomerComposite/DataTest.php | 2 +- .../Magento/CustomerImportExport/etc/adminhtml/routes.xml | 4 ++-- app/code/Magento/CustomerImportExport/etc/config.xml | 2 +- app/code/Magento/CustomerImportExport/etc/export.xml | 2 +- app/code/Magento/CustomerImportExport/etc/import.xml | 2 +- app/code/Magento/CustomerImportExport/etc/module.xml | 2 +- app/code/Magento/CustomerImportExport/registration.php | 2 +- .../layout/customer_import_export_index_exportcsv.xml | 2 +- .../layout/customer_import_export_index_exportxml.xml | 2 +- .../view/adminhtml/layout/customer_index_grid_block.xml | 2 +- .../Deploy/Console/Command/App/ApplicationDumpCommand.php | 2 +- .../Deploy/Console/Command/DeployStaticOptionsInterface.php | 2 +- app/code/Magento/Deploy/Console/Command/SetModeCommand.php | 2 +- app/code/Magento/Deploy/Console/Command/ShowModeCommand.php | 2 +- app/code/Magento/Deploy/Model/Deploy/DeployInterface.php | 2 +- app/code/Magento/Deploy/Model/Deploy/LocaleDeploy.php | 2 +- app/code/Magento/Deploy/Model/Deploy/LocaleQuickDeploy.php | 2 +- app/code/Magento/Deploy/Model/Deploy/TemplateMinifier.php | 2 +- app/code/Magento/Deploy/Model/DeployManager.php | 2 +- app/code/Magento/Deploy/Model/DeployStrategyFactory.php | 2 +- app/code/Magento/Deploy/Model/DeployStrategyProvider.php | 2 +- app/code/Magento/Deploy/Model/Deployer.php | 2 +- app/code/Magento/Deploy/Model/Filesystem.php | 2 +- app/code/Magento/Deploy/Model/Mode.php | 2 +- app/code/Magento/Deploy/Model/Process.php | 2 +- app/code/Magento/Deploy/Model/ProcessManager.php | 2 +- app/code/Magento/Deploy/Model/ProcessQueueManager.php | 2 +- app/code/Magento/Deploy/Model/ProcessTask.php | 2 +- .../Unit/Console/Command/ApplicationDumpCommandTest.php | 2 +- .../Deploy/Test/Unit/Console/Command/SetModeCommandTest.php | 2 +- .../Test/Unit/Console/Command/ShowModeCommandTest.php | 2 +- .../Deploy/Test/Unit/Model/Deploy/LocaleDeployTest.php | 2 +- .../Deploy/Test/Unit/Model/Deploy/LocaleQuickDeployTest.php | 2 +- .../Deploy/Test/Unit/Model/Deploy/TemplateMinifierTest.php | 2 +- .../Magento/Deploy/Test/Unit/Model/DeployManagerTest.php | 2 +- .../Deploy/Test/Unit/Model/DeployStrategyFactoryTest.php | 2 +- app/code/Magento/Deploy/Test/Unit/Model/FilesystemTest.php | 2 +- .../Deploy/Test/Unit/Model/ProcessQueueManagerTest.php | 2 +- app/code/Magento/Deploy/etc/di.xml | 2 +- app/code/Magento/Deploy/etc/module.xml | 2 +- app/code/Magento/Deploy/registration.php | 2 +- .../Block/Adminhtml/System/Config/WorkflowType.php | 2 +- .../Developer/Console/Command/DevTestsRunCommand.php | 2 +- .../Developer/Console/Command/SourceThemeDeployCommand.php | 2 +- .../Developer/Console/Command/XmlCatalogGenerateCommand.php | 2 +- .../Developer/Console/Command/XmlConverterCommand.php | 2 +- app/code/Magento/Developer/Helper/Data.php | 2 +- .../Magento/Developer/Model/Config/Backend/AllowedIps.php | 2 +- .../Magento/Developer/Model/Config/Backend/WorkflowType.php | 2 +- .../Magento/Developer/Model/Config/Source/WorkflowType.php | 2 +- .../Css/PreProcessor/FileGenerator/PublicationDecorator.php | 2 +- app/code/Magento/Developer/Model/Logger/Handler/Debug.php | 2 +- .../Developer/Model/TemplateEngine/Decorator/DebugHints.php | 2 +- .../Developer/Model/TemplateEngine/Plugin/DebugHints.php | 2 +- app/code/Magento/Developer/Model/Tools/Formatter.php | 2 +- .../Model/View/Asset/PreProcessor/FrontendCompilation.php | 2 +- .../Model/View/Asset/PreProcessor/PreprocessorStrategy.php | 2 +- .../View/Page/Config/ClientSideLessCompilation/Renderer.php | 2 +- .../Developer/Model/View/Page/Config/RendererFactory.php | 2 +- .../Developer/Model/XmlCatalog/Format/FormatInterface.php | 2 +- .../Magento/Developer/Model/XmlCatalog/Format/PhpStorm.php | 2 +- .../Unit/Block/Adminhtml/System/Config/WorkflowTypeTest.php | 2 +- .../Test/Unit/Console/Command/DevTestsRunCommandTest.php | 2 +- .../Unit/Console/Command/SourceThemeDeployCommandTest.php | 2 +- .../Unit/Console/Command/XmlCatalogGenerateCommandTest.php | 2 +- .../Test/Unit/Console/Command/XmlConverterCommandTest.php | 2 +- .../Developer/Test/Unit/Console/Command/_files/test.xml | 2 +- app/code/Magento/Developer/Test/Unit/Helper/DataTest.php | 2 +- .../Test/Unit/Model/Config/Backend/AllowedIpsTest.php | 2 +- .../Test/Unit/Model/Config/Backend/WorkflowTypeTest.php | 2 +- .../Test/Unit/Model/Config/Source/WorkflowTypeTest.php | 2 +- .../PreProcessor/FileGenerator/PublicationDecoratorTest.php | 2 +- .../Developer/Test/Unit/Model/Logger/Handler/DebugTest.php | 2 +- .../Unit/Model/TemplateEngine/Decorator/DebugHintsTest.php | 2 +- .../Unit/Model/TemplateEngine/Plugin/DebugHintsTest.php | 2 +- .../View/Asset/PreProcessor/FrontendCompilationTest.php | 2 +- .../View/Asset/PreProcessor/PreprocessorStrategyTest.php | 2 +- .../Page/Config/ClientSideLessCompilation/RendererTest.php | 2 +- .../Unit/Model/View/Page/Config/RendererFactoryTest.php | 2 +- app/code/Magento/Developer/etc/adminhtml/di.xml | 2 +- app/code/Magento/Developer/etc/adminhtml/system.xml | 2 +- app/code/Magento/Developer/etc/config.xml | 2 +- app/code/Magento/Developer/etc/di.xml | 2 +- app/code/Magento/Developer/etc/frontend/di.xml | 2 +- app/code/Magento/Developer/etc/module.xml | 2 +- app/code/Magento/Developer/registration.php | 2 +- app/code/Magento/Dhl/Block/Adminhtml/Unitofmeasure.php | 2 +- app/code/Magento/Dhl/Model/AbstractDhl.php | 2 +- app/code/Magento/Dhl/Model/Carrier.php | 2 +- .../Dhl/Model/Plugin/Checkout/Block/Cart/Shipping.php | 2 +- app/code/Magento/Dhl/Model/Source/Contenttype.php | 2 +- app/code/Magento/Dhl/Model/Source/Method/AbstractMethod.php | 2 +- app/code/Magento/Dhl/Model/Source/Method/Doc.php | 2 +- app/code/Magento/Dhl/Model/Source/Method/Freedoc.php | 2 +- app/code/Magento/Dhl/Model/Source/Method/Freenondoc.php | 2 +- app/code/Magento/Dhl/Model/Source/Method/Generic.php | 2 +- app/code/Magento/Dhl/Model/Source/Method/Nondoc.php | 2 +- app/code/Magento/Dhl/Model/Source/Method/Size.php | 2 +- app/code/Magento/Dhl/Model/Source/Method/Unitofmeasure.php | 2 +- app/code/Magento/Dhl/Setup/InstallData.php | 2 +- app/code/Magento/Dhl/Test/Unit/Model/CarrierTest.php | 2 +- app/code/Magento/Dhl/Test/Unit/Model/_files/countries.xml | 4 ++-- .../Dhl/Test/Unit/Model/_files/rates_request_data_dhl.php | 2 +- .../Dhl/Test/Unit/Model/_files/response_shipping_label.xml | 2 +- .../Test/Unit/Model/_files/success_dhl_response_rates.xml | 2 +- app/code/Magento/Dhl/etc/adminhtml/system.xml | 2 +- app/code/Magento/Dhl/etc/config.xml | 2 +- app/code/Magento/Dhl/etc/countries.xml | 2 +- app/code/Magento/Dhl/etc/di.xml | 2 +- app/code/Magento/Dhl/etc/module.xml | 2 +- app/code/Magento/Dhl/registration.php | 2 +- .../Dhl/view/adminhtml/templates/unitofmeasure.phtml | 2 +- .../Dhl/view/frontend/layout/checkout_cart_index.xml | 2 +- .../Dhl/view/frontend/layout/checkout_index_index.xml | 2 +- .../web/js/model/shipping-rates-validation-rules.js | 2 +- .../view/frontend/web/js/model/shipping-rates-validator.js | 2 +- .../view/frontend/web/js/view/shipping-rates-validation.js | 2 +- .../Directory/Api/CountryInformationAcquirerInterface.php | 2 +- .../Directory/Api/CurrencyInformationAcquirerInterface.php | 2 +- .../Directory/Api/Data/CountryInformationInterface.php | 2 +- .../Directory/Api/Data/CurrencyInformationInterface.php | 2 +- .../Magento/Directory/Api/Data/ExchangeRateInterface.php | 2 +- .../Directory/Api/Data/RegionInformationInterface.php | 2 +- .../Directory/Block/Adminhtml/Frontend/Currency/Base.php | 2 +- .../Directory/Block/Adminhtml/Frontend/Region/Updater.php | 2 +- app/code/Magento/Directory/Block/Currency.php | 2 +- app/code/Magento/Directory/Block/Data.php | 2 +- .../Directory/Controller/Adminhtml/Json/CountryRegion.php | 2 +- .../Magento/Directory/Controller/Currency/SwitchAction.php | 2 +- app/code/Magento/Directory/Helper/Data.php | 2 +- app/code/Magento/Directory/Model/AllowedCountries.php | 2 +- .../Magento/Directory/Model/Config/Source/Allregion.php | 2 +- app/code/Magento/Directory/Model/Config/Source/Country.php | 2 +- .../Magento/Directory/Model/Config/Source/Country/Full.php | 2 +- .../Magento/Directory/Model/Config/Source/WeightUnit.php | 2 +- app/code/Magento/Directory/Model/Country.php | 2 +- app/code/Magento/Directory/Model/Country/Format.php | 2 +- .../Magento/Directory/Model/Country/Postcode/Config.php | 2 +- .../Directory/Model/Country/Postcode/Config/Converter.php | 2 +- .../Directory/Model/Country/Postcode/Config/Data.php | 2 +- .../Directory/Model/Country/Postcode/Config/Reader.php | 2 +- .../Model/Country/Postcode/Config/SchemaLocator.php | 2 +- .../Directory/Model/Country/Postcode/ConfigInterface.php | 2 +- .../Magento/Directory/Model/Country/Postcode/Validator.php | 2 +- .../Directory/Model/Country/Postcode/ValidatorInterface.php | 2 +- app/code/Magento/Directory/Model/CountryFactory.php | 2 +- .../Magento/Directory/Model/CountryInformationAcquirer.php | 2 +- app/code/Magento/Directory/Model/Currency.php | 2 +- .../Magento/Directory/Model/Currency/DefaultLocator.php | 2 +- app/code/Magento/Directory/Model/Currency/Filter.php | 2 +- .../Directory/Model/Currency/Import/AbstractImport.php | 2 +- app/code/Magento/Directory/Model/Currency/Import/Config.php | 2 +- .../Magento/Directory/Model/Currency/Import/Factory.php | 2 +- .../Magento/Directory/Model/Currency/Import/FixerIo.php | 2 +- .../Directory/Model/Currency/Import/ImportInterface.php | 2 +- .../Directory/Model/Currency/Import/Source/Service.php | 2 +- .../Magento/Directory/Model/Currency/Import/Webservicex.php | 2 +- .../Directory/Model/Currency/Import/YahooFinance.php | 2 +- .../Magento/Directory/Model/CurrencyInformationAcquirer.php | 2 +- .../Magento/Directory/Model/Data/CountryInformation.php | 2 +- .../Magento/Directory/Model/Data/CurrencyInformation.php | 2 +- app/code/Magento/Directory/Model/Data/ExchangeRate.php | 2 +- app/code/Magento/Directory/Model/Data/RegionInformation.php | 2 +- app/code/Magento/Directory/Model/Observer.php | 2 +- app/code/Magento/Directory/Model/PriceCurrency.php | 2 +- app/code/Magento/Directory/Model/Region.php | 2 +- app/code/Magento/Directory/Model/RegionFactory.php | 2 +- app/code/Magento/Directory/Model/ResourceModel/Country.php | 2 +- .../Directory/Model/ResourceModel/Country/Collection.php | 2 +- .../Directory/Model/ResourceModel/Country/Format.php | 2 +- .../Model/ResourceModel/Country/Format/Collection.php | 2 +- app/code/Magento/Directory/Model/ResourceModel/Currency.php | 2 +- app/code/Magento/Directory/Model/ResourceModel/Region.php | 2 +- .../Directory/Model/ResourceModel/Region/Collection.php | 2 +- app/code/Magento/Directory/Setup/InstallData.php | 2 +- app/code/Magento/Directory/Setup/InstallSchema.php | 2 +- app/code/Magento/Directory/Test/Unit/Block/CurrencyTest.php | 2 +- app/code/Magento/Directory/Test/Unit/Block/DataTest.php | 2 +- app/code/Magento/Directory/Test/Unit/Helper/DataTest.php | 2 +- .../Directory/Test/Unit/Model/AllowedCountriesTest.php | 2 +- .../Test/Unit/Model/Config/Source/AllRegionTest.php | 2 +- .../Directory/Test/Unit/Model/Config/Source/CountryTest.php | 2 +- .../Unit/Model/Country/Postcode/Config/ConverterTest.php | 2 +- .../Test/Unit/Model/Country/Postcode/Config/DataTest.php | 2 +- .../Test/Unit/Model/Country/Postcode/Config/ReaderTest.php | 2 +- .../Model/Country/Postcode/Config/SchemaLocatorTest.php | 2 +- .../Test/Unit/Model/Country/Postcode/ConfigTest.php | 2 +- .../Test/Unit/Model/Country/Postcode/ValidatorTest.php | 2 +- .../Test/Unit/Model/CountryInformationAcquirerTest.php | 2 +- app/code/Magento/Directory/Test/Unit/Model/CountryTest.php | 2 +- .../Test/Unit/Model/Currency/DefaultLocatorTest.php | 2 +- .../Test/Unit/Model/Currency/Import/ConfigTest.php | 2 +- .../Test/Unit/Model/Currency/Import/FactoryTest.php | 2 +- .../Test/Unit/Model/Currency/Import/FixerIoTest.php | 2 +- .../Test/Unit/Model/Currency/Import/Source/ServiceTest.php | 2 +- .../Test/Unit/Model/Currency/Import/YahooFinanceTest.php | 2 +- .../Test/Unit/Model/CurrencyInformationAcquirerTest.php | 2 +- app/code/Magento/Directory/Test/Unit/Model/CurrencyTest.php | 2 +- app/code/Magento/Directory/Test/Unit/Model/ObserverTest.php | 2 +- .../Magento/Directory/Test/Unit/Model/PriceCurrencyTest.php | 2 +- .../Unit/Model/ResourceModel/Country/CollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Region/CollectionTest.php | 2 +- app/code/Magento/Directory/Test/Unit/_files/zip_codes.php | 2 +- app/code/Magento/Directory/Test/Unit/_files/zip_codes.xml | 2 +- app/code/Magento/Directory/etc/adminhtml/di.xml | 2 +- app/code/Magento/Directory/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Directory/etc/adminhtml/system.xml | 2 +- app/code/Magento/Directory/etc/config.xml | 2 +- app/code/Magento/Directory/etc/crontab.xml | 2 +- app/code/Magento/Directory/etc/di.xml | 2 +- app/code/Magento/Directory/etc/email_templates.xml | 2 +- app/code/Magento/Directory/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Directory/etc/frontend/sections.xml | 2 +- app/code/Magento/Directory/etc/module.xml | 2 +- app/code/Magento/Directory/etc/webapi.xml | 2 +- app/code/Magento/Directory/etc/zip_codes.xml | 2 +- app/code/Magento/Directory/etc/zip_codes.xsd | 4 ++-- app/code/Magento/Directory/registration.php | 2 +- .../view/adminhtml/email/currency_update_notification.html | 2 +- .../adminhtml/templates/js/optional_zip_countries.phtml | 2 +- .../view/frontend/layout/catalog_category_view.xml | 2 +- .../view/frontend/layout/catalogsearch_advanced_index.xml | 2 +- .../view/frontend/layout/catalogsearch_advanced_result.xml | 2 +- .../view/frontend/layout/catalogsearch_result_index.xml | 2 +- app/code/Magento/Directory/view/frontend/layout/default.xml | 2 +- .../Directory/view/frontend/templates/currency.phtml | 2 +- .../Directory/view/frontend/templates/currency/switch.phtml | 2 +- .../Downloadable/Api/Data/DownloadableOptionInterface.php | 2 +- .../Magento/Downloadable/Api/Data/File/ContentInterface.php | 2 +- .../Downloadable/Api/Data/File/ContentUploaderInterface.php | 2 +- app/code/Magento/Downloadable/Api/Data/LinkInterface.php | 2 +- .../Downloadable/Api/Data/ProductAttributeInterface.php | 2 +- app/code/Magento/Downloadable/Api/Data/SampleInterface.php | 2 +- .../Magento/Downloadable/Api/LinkRepositoryInterface.php | 2 +- .../Magento/Downloadable/Api/SampleRepositoryInterface.php | 2 +- .../Catalog/Product/Composite/Fieldset/Downloadable.php | 2 +- .../Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php | 2 +- .../Catalog/Product/Edit/Tab/Downloadable/Links.php | 2 +- .../Catalog/Product/Edit/Tab/Downloadable/Samples.php | 2 +- .../Adminhtml/Sales/Items/Column/Downloadable/Name.php | 2 +- .../Magento/Downloadable/Block/Catalog/Product/Links.php | 2 +- .../Magento/Downloadable/Block/Catalog/Product/Samples.php | 2 +- .../Downloadable/Block/Catalog/Product/View/Type.php | 2 +- .../Downloadable/Block/Checkout/Cart/Item/Renderer.php | 2 +- app/code/Magento/Downloadable/Block/Checkout/Success.php | 2 +- .../Downloadable/Block/Customer/Products/ListProducts.php | 2 +- .../Block/Sales/Order/Email/Items/Downloadable.php | 2 +- .../Block/Sales/Order/Email/Items/Order/Downloadable.php | 2 +- .../Block/Sales/Order/Item/Renderer/Downloadable.php | 2 +- .../Downloadable/Controller/Adminhtml/Downloadable/File.php | 2 +- .../Controller/Adminhtml/Downloadable/File/Upload.php | 4 ++-- .../Downloadable/Product/Edit/AddAttributeToTemplate.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/AlertsPriceGrid.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/AlertsStockGrid.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/Categories.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/Crosssell.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/CrosssellGrid.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/CustomOptions.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/Duplicate.php | 2 +- .../Controller/Adminhtml/Downloadable/Product/Edit/Edit.php | 2 +- .../Controller/Adminhtml/Downloadable/Product/Edit/Form.php | 2 +- .../Controller/Adminhtml/Downloadable/Product/Edit/Grid.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/GridOnly.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/Index.php | 2 +- .../Controller/Adminhtml/Downloadable/Product/Edit/Link.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/MassDelete.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/MassStatus.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/NewAction.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/Options.php | 2 +- .../Downloadable/Product/Edit/OptionsImportGrid.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/Related.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/RelatedGrid.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/Sample.php | 2 +- .../Controller/Adminhtml/Downloadable/Product/Edit/Save.php | 2 +- .../Downloadable/Product/Edit/ShowUpdateResult.php | 2 +- .../Downloadable/Product/Edit/SuggestAttributes.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/Upsell.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/UpsellGrid.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/Validate.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/Wysiwyg.php | 2 +- .../Product/Initialization/Helper/Plugin/Downloadable.php | 2 +- .../Magento/Downloadable/Controller/Customer/Products.php | 2 +- app/code/Magento/Downloadable/Controller/Download.php | 2 +- app/code/Magento/Downloadable/Controller/Download/Link.php | 2 +- .../Magento/Downloadable/Controller/Download/LinkSample.php | 2 +- .../Magento/Downloadable/Controller/Download/Sample.php | 2 +- .../Downloadable/Helper/Catalog/Product/Configuration.php | 2 +- app/code/Magento/Downloadable/Helper/Data.php | 2 +- app/code/Magento/Downloadable/Helper/Download.php | 2 +- app/code/Magento/Downloadable/Helper/File.php | 2 +- app/code/Magento/Downloadable/Model/ComponentInterface.php | 2 +- app/code/Magento/Downloadable/Model/DownloadableOption.php | 2 +- app/code/Magento/Downloadable/Model/File/Content.php | 2 +- .../Magento/Downloadable/Model/File/ContentUploader.php | 2 +- .../Magento/Downloadable/Model/File/ContentValidator.php | 2 +- app/code/Magento/Downloadable/Model/Link.php | 2 +- app/code/Magento/Downloadable/Model/Link/Builder.php | 2 +- .../Magento/Downloadable/Model/Link/ContentValidator.php | 2 +- app/code/Magento/Downloadable/Model/Link/CreateHandler.php | 2 +- app/code/Magento/Downloadable/Model/Link/DeleteHandler.php | 2 +- app/code/Magento/Downloadable/Model/Link/Purchased.php | 2 +- app/code/Magento/Downloadable/Model/Link/Purchased/Item.php | 2 +- app/code/Magento/Downloadable/Model/Link/ReadHandler.php | 2 +- app/code/Magento/Downloadable/Model/Link/UpdateHandler.php | 2 +- app/code/Magento/Downloadable/Model/LinkRepository.php | 2 +- .../Model/Product/CartConfiguration/Plugin/Downloadable.php | 2 +- .../Model/Product/CopyConstructor/Downloadable.php | 2 +- app/code/Magento/Downloadable/Model/Product/Price.php | 2 +- app/code/Magento/Downloadable/Model/Product/Type.php | 2 +- .../Model/Product/TypeHandler/AbstractTypeHandler.php | 2 +- .../Magento/Downloadable/Model/Product/TypeHandler/Link.php | 2 +- .../Downloadable/Model/Product/TypeHandler/Sample.php | 2 +- .../Downloadable/Model/Product/TypeHandler/TypeHandler.php | 2 +- .../Model/Product/TypeHandler/TypeHandlerInterface.php | 2 +- .../Product/TypeTransitionManager/Plugin/Downloadable.php | 2 +- .../Magento/Downloadable/Model/ProductOptionProcessor.php | 2 +- .../Downloadable/Model/Quote/Item/CartItemProcessor.php | 2 +- .../Downloadable/Model/ResourceModel/Indexer/Price.php | 2 +- app/code/Magento/Downloadable/Model/ResourceModel/Link.php | 2 +- .../Downloadable/Model/ResourceModel/Link/Collection.php | 2 +- .../Downloadable/Model/ResourceModel/Link/Purchased.php | 2 +- .../Model/ResourceModel/Link/Purchased/Collection.php | 2 +- .../Model/ResourceModel/Link/Purchased/Item.php | 2 +- .../Model/ResourceModel/Link/Purchased/Item/Collection.php | 2 +- .../Magento/Downloadable/Model/ResourceModel/Sample.php | 2 +- .../Downloadable/Model/ResourceModel/Sample/Collection.php | 2 +- .../Model/Sales/Order/Pdf/Items/AbstractItems.php | 2 +- .../Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php | 2 +- .../Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php | 2 +- app/code/Magento/Downloadable/Model/Sample.php | 2 +- app/code/Magento/Downloadable/Model/Sample/Builder.php | 2 +- .../Magento/Downloadable/Model/Sample/ContentValidator.php | 2 +- .../Magento/Downloadable/Model/Sample/CreateHandler.php | 2 +- .../Magento/Downloadable/Model/Sample/DeleteHandler.php | 2 +- app/code/Magento/Downloadable/Model/Sample/ReadHandler.php | 2 +- .../Magento/Downloadable/Model/Sample/UpdateHandler.php | 2 +- app/code/Magento/Downloadable/Model/SampleRepository.php | 2 +- app/code/Magento/Downloadable/Model/Source/Shareable.php | 2 +- app/code/Magento/Downloadable/Model/Source/TypeUpload.php | 2 +- .../Model/System/Config/Source/Contentdisposition.php | 2 +- .../Model/System/Config/Source/Orderitemstatus.php | 2 +- .../Downloadable/Observer/InitOptionRendererObserver.php | 2 +- .../Observer/IsAllowedGuestCheckoutObserver.php | 2 +- .../Observer/SaveDownloadableOrderItemObserver.php | 2 +- .../Observer/SetHasDownloadableProductsObserver.php | 2 +- .../Magento/Downloadable/Observer/SetLinkStatusObserver.php | 2 +- app/code/Magento/Downloadable/Pricing/Price/LinkPrice.php | 2 +- .../Downloadable/Pricing/Price/LinkPriceInterface.php | 2 +- app/code/Magento/Downloadable/Setup/InstallData.php | 2 +- app/code/Magento/Downloadable/Setup/InstallSchema.php | 2 +- app/code/Magento/Downloadable/Setup/UpgradeSchema.php | 2 +- .../Catalog/Product/Edit/Tab/Downloadable/LinksTest.php | 2 +- .../Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php | 2 +- .../Adminhtml/Sales/Items/Column/Downloadable/NameTest.php | 2 +- .../Test/Unit/Block/Catalog/Product/LinksTest.php | 2 +- .../Unit/Block/Sales/Order/Email/Items/DownloadableTest.php | 2 +- .../Sales/Order/Email/Items/Order/DownloadableTest.php | 2 +- .../Block/Sales/Order/Item/Renderer/DownloadableTest.php | 2 +- .../Controller/Adminhtml/Downloadable/File/UploadTest.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/LinkTest.php | 2 +- .../Adminhtml/Downloadable/Product/Edit/SampleTest.php | 2 +- .../Initialization/Helper/Plugin/DownloadableTest.php | 2 +- .../Test/Unit/Controller/Download/LinkSampleTest.php | 2 +- .../Downloadable/Test/Unit/Controller/Download/LinkTest.php | 2 +- .../Test/Unit/Controller/Download/SampleTest.php | 2 +- .../Test/Unit/Helper/Catalog/Product/ConfigurationTest.php | 2 +- .../Magento/Downloadable/Test/Unit/Helper/DownloadTest.php | 2 +- .../Test/Unit/Model/File/ContentValidatorTest.php | 2 +- .../Downloadable/Test/Unit/Model/Link/BuilderTest.php | 2 +- .../Test/Unit/Model/Link/ContentValidatorTest.php | 2 +- .../Downloadable/Test/Unit/Model/Link/CreateHandlerTest.php | 2 +- .../Downloadable/Test/Unit/Model/Link/UpdateHandlerTest.php | 2 +- .../Downloadable/Test/Unit/Model/LinkRepositoryTest.php | 2 +- .../Unit/Model/Product/CopyConstructor/DownloadableTest.php | 2 +- .../Model/Product/CopyConstructor/_files/expected_data.php | 2 +- .../Test/Unit/Model/Product/TypeHandler/LinkTest.php | 2 +- .../Test/Unit/Model/Product/TypeHandler/SampleTest.php | 2 +- .../Downloadable/Test/Unit/Model/Product/TypeTest.php | 2 +- .../TypeTransitionManager/Plugin/DownloadableTest.php | 2 +- .../Test/Unit/Model/ProductOptionProcessorTest.php | 2 +- .../Test/Unit/Model/Quote/Item/CartItemProcessorTest.php | 2 +- .../Unit/Model/Sales/Order/Pdf/Items/CreditmemoTest.php | 2 +- .../Downloadable/Test/Unit/Model/Sample/BuilderTest.php | 2 +- .../Test/Unit/Model/Sample/ContentValidatorTest.php | 2 +- .../Test/Unit/Model/Sample/CreateHandlerTest.php | 2 +- .../Test/Unit/Model/Sample/UpdateHandlerTest.php | 2 +- .../Downloadable/Test/Unit/Model/SampleRepositoryTest.php | 2 +- .../Unit/Observer/IsAllowedGuestCheckoutObserverTest.php | 2 +- .../Unit/Observer/SaveDownloadableOrderItemObserverTest.php | 2 +- .../Test/Unit/Observer/SetLinkStatusObserverTest.php | 2 +- .../Downloadable/Test/Unit/Pricing/Price/LinkPriceTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/CompositeTest.php | 2 +- .../DataProvider/Product/Form/Modifier/Data/LinksTest.php | 2 +- .../Product/Form/Modifier/DownloadablePanelTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/LinksTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/SamplesTest.php | 2 +- .../Magento/Downloadable/Test/Unit/_files/download_mock.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Composite.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Data/Links.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Data/Samples.php | 2 +- .../Product/Form/Modifier/DownloadablePanel.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Links.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Samples.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/UsedDefault.php | 2 +- app/code/Magento/Downloadable/etc/acl.xml | 2 +- app/code/Magento/Downloadable/etc/adminhtml/di.xml | 2 +- app/code/Magento/Downloadable/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Downloadable/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Downloadable/etc/adminhtml/system.xml | 2 +- app/code/Magento/Downloadable/etc/catalog_attributes.xml | 2 +- app/code/Magento/Downloadable/etc/config.xml | 2 +- app/code/Magento/Downloadable/etc/di.xml | 2 +- app/code/Magento/Downloadable/etc/events.xml | 2 +- app/code/Magento/Downloadable/etc/extension_attributes.xml | 2 +- app/code/Magento/Downloadable/etc/fieldset.xml | 2 +- app/code/Magento/Downloadable/etc/frontend/di.xml | 2 +- app/code/Magento/Downloadable/etc/frontend/events.xml | 2 +- app/code/Magento/Downloadable/etc/frontend/page_types.xml | 2 +- app/code/Magento/Downloadable/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Downloadable/etc/module.xml | 2 +- app/code/Magento/Downloadable/etc/pdf.xml | 2 +- app/code/Magento/Downloadable/etc/product_types.xml | 2 +- app/code/Magento/Downloadable/etc/sales.xml | 2 +- app/code/Magento/Downloadable/etc/webapi.xml | 2 +- app/code/Magento/Downloadable/etc/webapi_rest/di.xml | 2 +- app/code/Magento/Downloadable/etc/webapi_soap/di.xml | 2 +- app/code/Magento/Downloadable/registration.php | 2 +- .../view/adminhtml/layout/catalog_product_downloadable.xml | 2 +- .../view/adminhtml/layout/catalog_product_simple.xml | 2 +- .../layout/catalog_product_view_type_downloadable.xml | 2 +- .../view/adminhtml/layout/catalog_product_virtual.xml | 2 +- .../view/adminhtml/layout/customer_index_wishlist.xml | 2 +- .../view/adminhtml/layout/downloadable_items.xml | 2 +- .../view/adminhtml/layout/sales_order_creditmemo_new.xml | 2 +- .../adminhtml/layout/sales_order_creditmemo_updateqty.xml | 2 +- .../view/adminhtml/layout/sales_order_creditmemo_view.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_new.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_updateqty.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_view.xml | 2 +- .../Downloadable/view/adminhtml/layout/sales_order_view.xml | 2 +- .../templates/product/composite/fieldset/downloadable.phtml | 2 +- .../adminhtml/templates/product/edit/downloadable.phtml | 2 +- .../templates/product/edit/downloadable/links.phtml | 2 +- .../templates/product/edit/downloadable/samples.phtml | 2 +- .../sales/items/column/downloadable/creditmemo/name.phtml | 2 +- .../sales/items/column/downloadable/invoice/name.phtml | 2 +- .../templates/sales/items/column/downloadable/name.phtml | 2 +- .../view/adminhtml/web/downloadable-type-handler.js | 2 +- .../view/adminhtml/web/js/components/file-uploader.js | 2 +- .../adminhtml/web/js/components/is-downloadable-handler.js | 2 +- .../view/adminhtml/web/js/components/price-handler.js | 2 +- .../view/adminhtml/web/js/components/upload-type-handler.js | 2 +- .../web/js/components/use-price-default-handler.js | 2 +- .../adminhtml/web/template/components/file-uploader.html | 2 +- .../layout/catalog_product_view_type_downloadable.xml | 2 +- .../layout/checkout_cart_configure_type_downloadable.xml | 2 +- .../view/frontend/layout/checkout_cart_item_renderers.xml | 2 +- .../layout/checkout_onepage_review_item_renderers.xml | 2 +- .../view/frontend/layout/checkout_onepage_success.xml | 2 +- .../Downloadable/view/frontend/layout/customer_account.xml | 2 +- .../view/frontend/layout/downloadable_customer_products.xml | 2 +- .../view/frontend/layout/multishipping_checkout_success.xml | 2 +- .../layout/sales_email_order_creditmemo_renderers.xml | 2 +- .../frontend/layout/sales_email_order_invoice_renderers.xml | 2 +- .../view/frontend/layout/sales_email_order_renderers.xml | 2 +- .../frontend/layout/sales_order_creditmemo_renderers.xml | 2 +- .../view/frontend/layout/sales_order_invoice_renderers.xml | 2 +- .../view/frontend/layout/sales_order_item_renderers.xml | 2 +- .../layout/sales_order_print_creditmemo_renderers.xml | 2 +- .../frontend/layout/sales_order_print_invoice_renderers.xml | 2 +- .../view/frontend/layout/sales_order_print_renderers.xml | 2 +- .../Magento/Downloadable/view/frontend/requirejs-config.js | 4 ++-- .../view/frontend/templates/catalog/product/links.phtml | 2 +- .../view/frontend/templates/catalog/product/samples.phtml | 2 +- .../view/frontend/templates/catalog/product/type.phtml | 2 +- .../view/frontend/templates/checkout/success.phtml | 2 +- .../view/frontend/templates/customer/products/list.phtml | 2 +- .../email/order/items/creditmemo/downloadable.phtml | 2 +- .../templates/email/order/items/invoice/downloadable.phtml | 2 +- .../templates/email/order/items/order/downloadable.phtml | 2 +- .../view/frontend/templates/js/components.phtml | 2 +- .../order/creditmemo/items/renderer/downloadable.phtml | 2 +- .../sales/order/invoice/items/renderer/downloadable.phtml | 2 +- .../templates/sales/order/items/renderer/downloadable.phtml | 2 +- .../Magento/Downloadable/view/frontend/web/downloadable.js | 4 ++-- app/code/Magento/DownloadableImportExport/Helper/Data.php | 2 +- .../Magento/DownloadableImportExport/Helper/Uploader.php | 2 +- .../Model/Import/Product/Type/Downloadable.php | 2 +- .../Unit/Model/Import/Product/Type/DownloadableTest.php | 2 +- app/code/Magento/DownloadableImportExport/etc/import.xml | 2 +- app/code/Magento/DownloadableImportExport/etc/module.xml | 2 +- app/code/Magento/DownloadableImportExport/registration.php | 2 +- .../Magento/Eav/Api/AttributeGroupRepositoryInterface.php | 2 +- app/code/Magento/Eav/Api/AttributeManagementInterface.php | 2 +- .../Magento/Eav/Api/AttributeOptionManagementInterface.php | 2 +- app/code/Magento/Eav/Api/AttributeRepositoryInterface.php | 2 +- .../Magento/Eav/Api/AttributeSetManagementInterface.php | 2 +- .../Magento/Eav/Api/AttributeSetRepositoryInterface.php | 2 +- .../Magento/Eav/Api/Data/AttributeDefaultValueInterface.php | 2 +- .../Eav/Api/Data/AttributeFrontendLabelInterface.php | 2 +- app/code/Magento/Eav/Api/Data/AttributeGroupInterface.php | 2 +- .../Eav/Api/Data/AttributeGroupSearchResultsInterface.php | 2 +- app/code/Magento/Eav/Api/Data/AttributeInterface.php | 2 +- app/code/Magento/Eav/Api/Data/AttributeOptionInterface.php | 2 +- .../Magento/Eav/Api/Data/AttributeOptionLabelInterface.php | 2 +- .../Eav/Api/Data/AttributeSearchResultsInterface.php | 2 +- app/code/Magento/Eav/Api/Data/AttributeSetInterface.php | 2 +- .../Eav/Api/Data/AttributeSetSearchResultsInterface.php | 2 +- .../Eav/Api/Data/AttributeValidationRuleInterface.php | 2 +- app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Js.php | 2 +- .../Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php | 2 +- .../Adminhtml/Attribute/Edit/Options/AbstractOptions.php | 2 +- .../Eav/Block/Adminhtml/Attribute/Edit/Options/Labels.php | 2 +- .../Eav/Block/Adminhtml/Attribute/Edit/Options/Options.php | 2 +- .../Eav/Block/Adminhtml/Attribute/Grid/AbstractGrid.php | 2 +- .../Eav/Block/Adminhtml/Attribute/PropertyLocker.php | 2 +- app/code/Magento/Eav/Helper/Data.php | 2 +- .../Model/Adminhtml/Attribute/Validation/Rules/Options.php | 2 +- .../Eav/Model/Adminhtml/System/Config/Source/Inputtype.php | 2 +- .../Adminhtml/System/Config/Source/Inputtype/Validator.php | 2 +- .../SearchCriteria/CollectionProcessor/FilterProcessor.php | 2 +- .../FilterProcessor/AttributeGroupAttributeSetIdFilter.php | 2 +- .../FilterProcessor/AttributeGroupCodeFilter.php | 2 +- .../FilterProcessor/AttributeSetEntityTypeCodeFilter.php | 2 +- app/code/Magento/Eav/Model/Attribute.php | 2 +- app/code/Magento/Eav/Model/Attribute/Data/AbstractData.php | 2 +- app/code/Magento/Eav/Model/Attribute/Data/Boolean.php | 2 +- app/code/Magento/Eav/Model/Attribute/Data/Date.php | 2 +- app/code/Magento/Eav/Model/Attribute/Data/File.php | 2 +- app/code/Magento/Eav/Model/Attribute/Data/Hidden.php | 2 +- app/code/Magento/Eav/Model/Attribute/Data/Image.php | 2 +- app/code/Magento/Eav/Model/Attribute/Data/Multiline.php | 2 +- app/code/Magento/Eav/Model/Attribute/Data/Multiselect.php | 2 +- app/code/Magento/Eav/Model/Attribute/Data/Select.php | 2 +- app/code/Magento/Eav/Model/Attribute/Data/Text.php | 2 +- app/code/Magento/Eav/Model/Attribute/Data/Textarea.php | 2 +- app/code/Magento/Eav/Model/Attribute/GroupRepository.php | 2 +- app/code/Magento/Eav/Model/AttributeDataFactory.php | 2 +- app/code/Magento/Eav/Model/AttributeFactory.php | 2 +- app/code/Magento/Eav/Model/AttributeManagement.php | 2 +- app/code/Magento/Eav/Model/AttributeProvider.php | 2 +- app/code/Magento/Eav/Model/AttributeRepository.php | 2 +- app/code/Magento/Eav/Model/AttributeSetManagement.php | 2 +- app/code/Magento/Eav/Model/AttributeSetRepository.php | 2 +- app/code/Magento/Eav/Model/Cache/Type.php | 2 +- app/code/Magento/Eav/Model/Config.php | 2 +- app/code/Magento/Eav/Model/CustomAttributesMapper.php | 2 +- .../Magento/Eav/Model/EavCustomAttributeTypeLocator.php | 2 +- .../Eav/Model/EavCustomAttributeTypeLocator/ComplexType.php | 2 +- .../Eav/Model/EavCustomAttributeTypeLocator/SimpleType.php | 2 +- app/code/Magento/Eav/Model/Entity.php | 2 +- app/code/Magento/Eav/Model/Entity/AbstractEntity.php | 2 +- app/code/Magento/Eav/Model/Entity/Attribute.php | 2 +- .../Eav/Model/Entity/Attribute/AbstractAttribute.php | 2 +- .../Attribute/AttributeGroupAlreadyExistsException.php | 2 +- .../Eav/Model/Entity/Attribute/AttributeInterface.php | 2 +- .../Eav/Model/Entity/Attribute/Backend/AbstractBackend.php | 2 +- .../Eav/Model/Entity/Attribute/Backend/ArrayBackend.php | 2 +- .../Eav/Model/Entity/Attribute/Backend/BackendInterface.php | 2 +- .../Magento/Eav/Model/Entity/Attribute/Backend/Datetime.php | 2 +- .../Eav/Model/Entity/Attribute/Backend/DefaultBackend.php | 2 +- .../Eav/Model/Entity/Attribute/Backend/Increment.php | 2 +- .../Eav/Model/Entity/Attribute/Backend/Serialized.php | 2 +- .../Magento/Eav/Model/Entity/Attribute/Backend/Store.php | 2 +- .../Eav/Model/Entity/Attribute/Backend/Time/Created.php | 2 +- .../Eav/Model/Entity/Attribute/Backend/Time/Updated.php | 2 +- app/code/Magento/Eav/Model/Entity/Attribute/Config.php | 2 +- .../Magento/Eav/Model/Entity/Attribute/Config/Converter.php | 2 +- .../Magento/Eav/Model/Entity/Attribute/Config/Reader.php | 2 +- .../Eav/Model/Entity/Attribute/Config/SchemaLocator.php | 2 +- app/code/Magento/Eav/Model/Entity/Attribute/Exception.php | 2 +- .../Model/Entity/Attribute/Frontend/AbstractFrontend.php | 2 +- .../Eav/Model/Entity/Attribute/Frontend/Datetime.php | 2 +- .../Eav/Model/Entity/Attribute/Frontend/DefaultFrontend.php | 2 +- .../Model/Entity/Attribute/Frontend/FrontendInterface.php | 2 +- .../Magento/Eav/Model/Entity/Attribute/FrontendLabel.php | 2 +- app/code/Magento/Eav/Model/Entity/Attribute/Group.php | 2 +- app/code/Magento/Eav/Model/Entity/Attribute/Option.php | 2 +- app/code/Magento/Eav/Model/Entity/Attribute/OptionLabel.php | 2 +- .../Magento/Eav/Model/Entity/Attribute/OptionManagement.php | 2 +- .../Eav/Model/Entity/Attribute/ScopedAttributeInterface.php | 2 +- app/code/Magento/Eav/Model/Entity/Attribute/Set.php | 2 +- .../Eav/Model/Entity/Attribute/Source/AbstractSource.php | 2 +- .../Magento/Eav/Model/Entity/Attribute/Source/Boolean.php | 2 +- .../Magento/Eav/Model/Entity/Attribute/Source/Config.php | 2 +- .../Eav/Model/Entity/Attribute/Source/SourceInterface.php | 2 +- .../Magento/Eav/Model/Entity/Attribute/Source/Store.php | 2 +- .../Magento/Eav/Model/Entity/Attribute/Source/Table.php | 2 +- .../Magento/Eav/Model/Entity/Attribute/ValidationRule.php | 2 +- app/code/Magento/Eav/Model/Entity/AttributeCache.php | 2 +- app/code/Magento/Eav/Model/Entity/AttributeLoader.php | 2 +- .../Magento/Eav/Model/Entity/AttributeLoaderInterface.php | 2 +- .../Eav/Model/Entity/Collection/AbstractCollection.php | 2 +- .../Entity/Collection/VersionControl/AbstractCollection.php | 2 +- app/code/Magento/Eav/Model/Entity/Context.php | 2 +- app/code/Magento/Eav/Model/Entity/EntityInterface.php | 2 +- .../Eav/Model/Entity/Increment/AbstractIncrement.php | 2 +- app/code/Magento/Eav/Model/Entity/Increment/Alphanum.php | 2 +- .../Eav/Model/Entity/Increment/IncrementInterface.php | 2 +- .../Magento/Eav/Model/Entity/Increment/NumericValue.php | 2 +- app/code/Magento/Eav/Model/Entity/Setup/Context.php | 2 +- app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper.php | 2 +- .../Eav/Model/Entity/Setup/PropertyMapper/Composite.php | 2 +- .../Eav/Model/Entity/Setup/PropertyMapperAbstract.php | 2 +- .../Eav/Model/Entity/Setup/PropertyMapperInterface.php | 2 +- app/code/Magento/Eav/Model/Entity/Store.php | 2 +- app/code/Magento/Eav/Model/Entity/Type.php | 2 +- .../Eav/Model/Entity/VersionControl/AbstractEntity.php | 2 +- .../Magento/Eav/Model/Entity/VersionControl/Metadata.php | 2 +- app/code/Magento/Eav/Model/Form.php | 2 +- app/code/Magento/Eav/Model/Form/Element.php | 2 +- app/code/Magento/Eav/Model/Form/Factory.php | 2 +- app/code/Magento/Eav/Model/Form/Fieldset.php | 2 +- app/code/Magento/Eav/Model/Form/Type.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/Attribute.php | 2 +- .../Eav/Model/ResourceModel/Attribute/Collection.php | 2 +- .../Attribute/DefaultEntityAttributes/ProviderInterface.php | 2 +- .../Magento/Eav/Model/ResourceModel/AttributeLoader.php | 2 +- .../Magento/Eav/Model/ResourceModel/AttributePersistor.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/Config.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/CreateHandler.php | 2 +- .../Magento/Eav/Model/ResourceModel/Entity/Attribute.php | 2 +- .../Eav/Model/ResourceModel/Entity/Attribute/Collection.php | 2 +- .../ResourceModel/Entity/Attribute/Grid/Collection.php | 2 +- .../Eav/Model/ResourceModel/Entity/Attribute/Group.php | 2 +- .../ResourceModel/Entity/Attribute/Group/Collection.php | 2 +- .../Eav/Model/ResourceModel/Entity/Attribute/Option.php | 2 +- .../ResourceModel/Entity/Attribute/Option/Collection.php | 2 +- .../Eav/Model/ResourceModel/Entity/Attribute/Set.php | 2 +- .../Model/ResourceModel/Entity/Attribute/Set/Collection.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/Entity/Store.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/Entity/Type.php | 2 +- .../Eav/Model/ResourceModel/Entity/Type/Collection.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/Form/Attribute.php | 2 +- .../Eav/Model/ResourceModel/Form/Attribute/Collection.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/Form/Element.php | 2 +- .../Eav/Model/ResourceModel/Form/Element/Collection.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset.php | 2 +- .../Eav/Model/ResourceModel/Form/Fieldset/Collection.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/Form/Type.php | 2 +- .../Eav/Model/ResourceModel/Form/Type/Collection.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/Helper.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/ReadHandler.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/ReadSnapshot.php | 2 +- app/code/Magento/Eav/Model/ResourceModel/UpdateHandler.php | 2 +- app/code/Magento/Eav/Model/Validator/Attribute/Backend.php | 2 +- app/code/Magento/Eav/Model/Validator/Attribute/Data.php | 2 +- .../Eav/Plugin/Model/ResourceModel/Entity/Attribute.php | 2 +- app/code/Magento/Eav/Setup/EavSetup.php | 2 +- app/code/Magento/Eav/Setup/InstallData.php | 2 +- app/code/Magento/Eav/Setup/InstallSchema.php | 2 +- app/code/Magento/Eav/Setup/UpgradeSchema.php | 2 +- .../Unit/Block/Adminhtml/Attribute/PropertyLockerTest.php | 2 +- app/code/Magento/Eav/Test/Unit/Helper/DataTest.php | 2 +- .../Adminhtml/Attribute/Validation/Rules/OptionsTest.php | 2 +- .../System/Config/Source/Inputtype/ValidatorTest.php | 2 +- .../Model/Adminhtml/System/Config/Source/InputtypeTest.php | 2 +- .../AttributeGroupAttributeSetIdFilterTest.php | 2 +- .../FilterProcessor/AttributeGroupCodeFilterTest.php | 2 +- .../AttributeSetEntityTypeCodeFilterTest.php | 2 +- .../CollectionProcessor/FilterProcessorTest.php | 2 +- .../Eav/Test/Unit/Model/Attribute/Data/AbstractDataTest.php | 2 +- .../Eav/Test/Unit/Model/Attribute/Data/BooleanTest.php | 2 +- .../Magento/Eav/Test/Unit/Model/Attribute/Data/DateTest.php | 2 +- .../Magento/Eav/Test/Unit/Model/Attribute/Data/FileTest.php | 2 +- .../Eav/Test/Unit/Model/Attribute/Data/ImageTest.php | 2 +- .../Eav/Test/Unit/Model/Attribute/Data/MultilineTest.php | 2 +- .../Eav/Test/Unit/Model/Attribute/Data/MultiselectTest.php | 2 +- .../Eav/Test/Unit/Model/Attribute/Data/SelectTest.php | 2 +- .../Magento/Eav/Test/Unit/Model/Attribute/Data/TextTest.php | 2 +- .../Eav/Test/Unit/Model/Attribute/GroupRepositoryTest.php | 2 +- .../Magento/Eav/Test/Unit/Model/AttributeFactoryTest.php | 2 +- .../Magento/Eav/Test/Unit/Model/AttributeManagementTest.php | 2 +- .../Magento/Eav/Test/Unit/Model/AttributeRepositoryTest.php | 2 +- .../Eav/Test/Unit/Model/AttributeSetManagementTest.php | 2 +- .../Eav/Test/Unit/Model/AttributeSetRepositoryTest.php | 2 +- app/code/Magento/Eav/Test/Unit/Model/ConfigTest.php | 2 +- .../Eav/Test/Unit/Model/CustomAttributesMapperTest.php | 2 +- .../Test/Unit/Model/EavCustomAttributeTypeLocatorTest.php | 2 +- .../Eav/Test/Unit/Model/Entity/AbstractEntityTest.php | 2 +- .../Unit/Model/Entity/Attribute/AbstractAttributeTest.php | 2 +- .../Unit/Model/Entity/Attribute/Backend/AbstractTest.php | 2 +- .../Test/Unit/Model/Entity/Attribute/Backend/ArrayTest.php | 2 +- .../Unit/Model/Entity/Attribute/Config/ConverterTest.php | 2 +- .../Eav/Test/Unit/Model/Entity/Attribute/Config/XsdTest.php | 2 +- .../Model/Entity/Attribute/Config/_files/eav_attributes.php | 2 +- .../Model/Entity/Attribute/Config/_files/eav_attributes.xml | 2 +- .../Attribute/Config/_files/invalidEavAttributeXmlArray.php | 2 +- .../Eav/Test/Unit/Model/Entity/Attribute/ConfigTest.php | 2 +- .../Unit/Model/Entity/Attribute/Frontend/DatetimeTest.php | 2 +- .../Model/Entity/Attribute/Frontend/DefaultFrontendTest.php | 2 +- .../Eav/Test/Unit/Model/Entity/Attribute/GroupTest.php | 2 +- .../Unit/Model/Entity/Attribute/OptionManagementTest.php | 2 +- .../Eav/Test/Unit/Model/Entity/Attribute/SetTest.php | 2 +- .../Test/Unit/Model/Entity/Attribute/Source/BooleanTest.php | 2 +- .../Test/Unit/Model/Entity/Attribute/Source/TableTest.php | 2 +- .../Magento/Eav/Test/Unit/Model/Entity/AttributeTest.php | 2 +- .../Unit/Model/Entity/Collection/AbstractCollectionStub.php | 2 +- .../Unit/Model/Entity/Collection/AbstractCollectionTest.php | 2 +- .../Collection/VersionControl/AbstractCollectionStub.php | 2 +- .../Collection/VersionControl/AbstractCollectionTest.php | 2 +- .../Eav/Test/Unit/Model/Entity/Increment/AlphanumTest.php | 2 +- .../Eav/Test/Unit/Model/Entity/Increment/NumericTest.php | 2 +- app/code/Magento/Eav/Test/Unit/Model/Entity/TypeTest.php | 2 +- .../Unit/Model/Entity/VersionControl/AbstractEntityTest.php | 2 +- .../Test/Unit/Model/Entity/VersionControl/MetadataTest.php | 2 +- app/code/Magento/Eav/Test/Unit/Model/FormTest.php | 2 +- .../Unit/Model/ResourceModel/Attribute/CollectionTest.php | 2 +- .../Entity/Attribute/Option/CollectionTest.php | 2 +- .../Unit/Model/ResourceModel/Entity/Attribute/SetTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Entity/AttributeTest.php | 2 +- .../Eav/Test/Unit/Model/Validator/Attribute/BackendTest.php | 2 +- .../Eav/Test/Unit/Model/Validator/Attribute/DataTest.php | 2 +- .../Plugin/Model/ResourceModel/Entity/AttributeTest.php | 2 +- .../Eav/Test/Unit/_files/describe_table_eav_attribute.php | 2 +- app/code/Magento/Eav/etc/cache.xml | 2 +- app/code/Magento/Eav/etc/config.xml | 2 +- app/code/Magento/Eav/etc/di.xml | 2 +- app/code/Magento/Eav/etc/eav_attributes.xsd | 2 +- app/code/Magento/Eav/etc/extension_attributes.xml | 2 +- app/code/Magento/Eav/etc/module.xml | 2 +- app/code/Magento/Eav/etc/validation.xml | 2 +- app/code/Magento/Eav/etc/webapi.xml | 2 +- app/code/Magento/Eav/registration.php | 2 +- .../Eav/view/adminhtml/templates/attribute/edit/js.phtml | 2 +- app/code/Magento/Email/Block/Adminhtml/Template.php | 2 +- app/code/Magento/Email/Block/Adminhtml/Template/Edit.php | 2 +- .../Magento/Email/Block/Adminhtml/Template/Edit/Form.php | 2 +- .../Email/Block/Adminhtml/Template/Grid/Filter/Type.php | 2 +- .../Email/Block/Adminhtml/Template/Grid/Renderer/Action.php | 2 +- .../Email/Block/Adminhtml/Template/Grid/Renderer/Sender.php | 2 +- .../Email/Block/Adminhtml/Template/Grid/Renderer/Type.php | 2 +- app/code/Magento/Email/Block/Adminhtml/Template/Preview.php | 2 +- .../Magento/Email/Controller/Adminhtml/Email/Template.php | 2 +- .../Controller/Adminhtml/Email/Template/DefaultTemplate.php | 2 +- .../Email/Controller/Adminhtml/Email/Template/Delete.php | 2 +- .../Email/Controller/Adminhtml/Email/Template/Edit.php | 2 +- .../Email/Controller/Adminhtml/Email/Template/Grid.php | 2 +- .../Email/Controller/Adminhtml/Email/Template/Index.php | 2 +- .../Email/Controller/Adminhtml/Email/Template/NewAction.php | 2 +- .../Email/Controller/Adminhtml/Email/Template/Preview.php | 2 +- .../Email/Controller/Adminhtml/Email/Template/Save.php | 2 +- app/code/Magento/Email/Model/AbstractTemplate.php | 2 +- app/code/Magento/Email/Model/BackendTemplate.php | 2 +- app/code/Magento/Email/Model/Design/Backend/Logo.php | 2 +- .../Magento/Email/Model/Mail/TransportInterfacePlugin.php | 2 +- app/code/Magento/Email/Model/Plugin/WindowsSmtpConfig.php | 2 +- app/code/Magento/Email/Model/ResourceModel/Template.php | 2 +- .../Email/Model/ResourceModel/Template/Collection.php | 2 +- app/code/Magento/Email/Model/Source/Variables.php | 2 +- app/code/Magento/Email/Model/Template.php | 2 +- app/code/Magento/Email/Model/Template/Config.php | 2 +- app/code/Magento/Email/Model/Template/Config/Converter.php | 2 +- app/code/Magento/Email/Model/Template/Config/Data.php | 2 +- .../Magento/Email/Model/Template/Config/FileIterator.php | 2 +- .../Magento/Email/Model/Template/Config/FileResolver.php | 2 +- app/code/Magento/Email/Model/Template/Config/Reader.php | 2 +- .../Magento/Email/Model/Template/Config/SchemaLocator.php | 2 +- app/code/Magento/Email/Model/Template/Css/Processor.php | 2 +- app/code/Magento/Email/Model/Template/Filter.php | 2 +- app/code/Magento/Email/Model/Template/SenderResolver.php | 2 +- app/code/Magento/Email/Setup/InstallSchema.php | 2 +- .../Test/Unit/Block/Adminhtml/Template/Edit/FormTest.php | 2 +- .../Email/Test/Unit/Block/Adminhtml/Template/EditTest.php | 2 +- .../Block/Adminhtml/Template/Grid/Renderer/ActionTest.php | 2 +- .../Block/Adminhtml/Template/Grid/Renderer/SenderTest.php | 2 +- .../Block/Adminhtml/Template/Grid/Renderer/TypeTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Template/PreviewTest.php | 2 +- .../Email/Test/Unit/Block/Adminhtml/TemplateTest.php | 2 +- .../Unit/Controller/Adminhtml/Email/Template/EditTest.php | 2 +- .../Unit/Controller/Adminhtml/Email/Template/IndexTest.php | 2 +- .../Controller/Adminhtml/Email/Template/PreviewTest.php | 2 +- .../Magento/Email/Test/Unit/Model/AbstractTemplateTest.php | 2 +- .../Magento/Email/Test/Unit/Model/BackendTemplateTest.php | 2 +- .../Magento/Email/Test/Unit/Model/Source/VariablesTest.php | 2 +- .../Email/Test/Unit/Model/Template/Config/ConverterTest.php | 2 +- .../Test/Unit/Model/Template/Config/FileIteratorTest.php | 2 +- .../Test/Unit/Model/Template/Config/FileResolverTest.php | 2 +- .../Email/Test/Unit/Model/Template/Config/ReaderTest.php | 2 +- .../Test/Unit/Model/Template/Config/SchemaLocatorTest.php | 2 +- .../Email/Test/Unit/Model/Template/Config/XsdTest.php | 2 +- .../_files/Fixture/ModuleOne/etc/email_templates_one.xml | 2 +- .../_files/Fixture/ModuleTwo/etc/email_templates_two.xml | 2 +- .../Model/Template/Config/_files/email_templates_merged.php | 2 +- .../Model/Template/Config/_files/email_templates_merged.xml | 2 +- .../Magento/Email/Test/Unit/Model/Template/ConfigTest.php | 2 +- .../Email/Test/Unit/Model/Template/Css/ProcessorTest.php | 2 +- .../Magento/Email/Test/Unit/Model/Template/FilterTest.php | 2 +- app/code/Magento/Email/Test/Unit/Model/TemplateTest.php | 6 +++--- app/code/Magento/Email/etc/acl.xml | 2 +- app/code/Magento/Email/etc/adminhtml/di.xml | 2 +- app/code/Magento/Email/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Email/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Email/etc/config.xml | 2 +- app/code/Magento/Email/etc/di.xml | 2 +- app/code/Magento/Email/etc/email_templates.xml | 2 +- app/code/Magento/Email/etc/email_templates.xsd | 2 +- app/code/Magento/Email/etc/frontend/di.xml | 2 +- app/code/Magento/Email/etc/module.xml | 2 +- app/code/Magento/Email/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_email_template_grid.xml | 2 +- .../layout/adminhtml_email_template_grid_block.xml | 2 +- .../adminhtml/layout/adminhtml_email_template_index.xml | 2 +- .../adminhtml/layout/adminhtml_email_template_preview.xml | 2 +- .../Email/view/adminhtml/templates/template/edit.phtml | 2 +- .../Email/view/adminhtml/templates/template/list.phtml | 2 +- .../Email/view/adminhtml/templates/template/preview.phtml | 2 +- .../view/adminhtml/ui_component/design_config_form.xml | 2 +- app/code/Magento/Email/view/frontend/email/footer.html | 2 +- app/code/Magento/Email/view/frontend/email/header.html | 2 +- .../EncryptionKey/Block/Adminhtml/Crypt/Key/Edit.php | 2 +- .../EncryptionKey/Block/Adminhtml/Crypt/Key/Form.php | 2 +- .../EncryptionKey/Controller/Adminhtml/Crypt/Key.php | 2 +- .../EncryptionKey/Controller/Adminhtml/Crypt/Key/Index.php | 2 +- .../EncryptionKey/Controller/Adminhtml/Crypt/Key/Save.php | 2 +- .../EncryptionKey/Model/ResourceModel/Key/Change.php | 2 +- .../Test/Unit/Controller/Adminhtml/Crypt/Key/SaveTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Key/ChangeTest.php | 2 +- app/code/Magento/EncryptionKey/etc/acl.xml | 2 +- app/code/Magento/EncryptionKey/etc/adminhtml/menu.xml | 2 +- app/code/Magento/EncryptionKey/etc/adminhtml/routes.xml | 2 +- app/code/Magento/EncryptionKey/etc/config.xml | 2 +- app/code/Magento/EncryptionKey/etc/module.xml | 2 +- app/code/Magento/EncryptionKey/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_crypt_key_index.xml | 2 +- app/code/Magento/Fedex/Model/Carrier.php | 2 +- app/code/Magento/Fedex/Model/Source/Dropoff.php | 2 +- app/code/Magento/Fedex/Model/Source/Freemethod.php | 2 +- app/code/Magento/Fedex/Model/Source/Generic.php | 2 +- app/code/Magento/Fedex/Model/Source/Method.php | 2 +- app/code/Magento/Fedex/Model/Source/Packaging.php | 2 +- app/code/Magento/Fedex/Model/Source/Unitofmeasure.php | 2 +- app/code/Magento/Fedex/Setup/InstallData.php | 2 +- app/code/Magento/Fedex/Test/Unit/Model/CarrierTest.php | 2 +- app/code/Magento/Fedex/etc/adminhtml/system.xml | 2 +- app/code/Magento/Fedex/etc/config.xml | 2 +- app/code/Magento/Fedex/etc/module.xml | 2 +- app/code/Magento/Fedex/registration.php | 2 +- .../Fedex/view/frontend/layout/checkout_cart_index.xml | 2 +- .../Fedex/view/frontend/layout/checkout_index_index.xml | 2 +- .../web/js/model/shipping-rates-validation-rules.js | 2 +- .../view/frontend/web/js/model/shipping-rates-validator.js | 2 +- .../view/frontend/web/js/view/shipping-rates-validation.js | 2 +- .../Magento/GiftMessage/Api/CartRepositoryInterface.php | 2 +- app/code/Magento/GiftMessage/Api/Data/MessageInterface.php | 2 +- .../GiftMessage/Api/GuestCartRepositoryInterface.php | 2 +- .../GiftMessage/Api/GuestItemRepositoryInterface.php | 2 +- .../Magento/GiftMessage/Api/ItemRepositoryInterface.php | 2 +- .../GiftMessage/Api/OrderItemRepositoryInterface.php | 2 +- .../Magento/GiftMessage/Api/OrderRepositoryInterface.php | 2 +- .../Block/Adminhtml/Product/Helper/Form/Config.php | 2 +- .../GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php | 2 +- .../Block/Adminhtml/Sales/Order/Create/Giftoptions.php | 2 +- .../Block/Adminhtml/Sales/Order/Create/Items.php | 2 +- .../GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php | 2 +- .../Block/Adminhtml/Sales/Order/View/Giftoptions.php | 2 +- .../GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php | 2 +- app/code/Magento/GiftMessage/Block/Cart/GiftOptions.php | 2 +- .../Block/Cart/Item/Renderer/Actions/GiftOptions.php | 2 +- .../Block/Cart/Item/Renderer/Actions/ItemIdProcessor.php | 2 +- .../Cart/Item/Renderer/Actions/LayoutProcessorInterface.php | 2 +- app/code/Magento/GiftMessage/Block/Message/Inline.php | 2 +- .../Block/Message/Multishipping/Plugin/ItemsBox.php | 2 +- app/code/Magento/GiftMessage/Helper/Message.php | 2 +- app/code/Magento/GiftMessage/Model/CartRepository.php | 2 +- .../Magento/GiftMessage/Model/CompositeConfigProvider.php | 2 +- .../Magento/GiftMessage/Model/GiftMessageConfigProvider.php | 2 +- app/code/Magento/GiftMessage/Model/GiftMessageManager.php | 2 +- app/code/Magento/GiftMessage/Model/GuestCartRepository.php | 2 +- app/code/Magento/GiftMessage/Model/GuestItemRepository.php | 2 +- app/code/Magento/GiftMessage/Model/ItemRepository.php | 2 +- app/code/Magento/GiftMessage/Model/Message.php | 2 +- app/code/Magento/GiftMessage/Model/OrderItemRepository.php | 2 +- app/code/Magento/GiftMessage/Model/OrderRepository.php | 2 +- app/code/Magento/GiftMessage/Model/Plugin/OrderGet.php | 2 +- app/code/Magento/GiftMessage/Model/Plugin/OrderSave.php | 2 +- app/code/Magento/GiftMessage/Model/Plugin/QuoteItem.php | 2 +- .../Magento/GiftMessage/Model/ResourceModel/Message.php | 2 +- .../GiftMessage/Model/ResourceModel/Message/Collection.php | 2 +- app/code/Magento/GiftMessage/Model/Save.php | 2 +- .../Magento/GiftMessage/Model/Type/Plugin/Multishipping.php | 2 +- app/code/Magento/GiftMessage/Model/Type/Plugin/Onepage.php | 2 +- app/code/Magento/GiftMessage/Model/TypeFactory.php | 2 +- .../Observer/MultishippingEventCreateOrdersObserver.php | 2 +- .../Observer/SalesEventOrderItemToQuoteItemObserver.php | 2 +- .../GiftMessage/Observer/SalesEventOrderToQuoteObserver.php | 2 +- .../Observer/SalesEventQuoteSubmitBeforeObserver.php | 2 +- app/code/Magento/GiftMessage/Setup/InstallData.php | 2 +- app/code/Magento/GiftMessage/Setup/InstallSchema.php | 2 +- app/code/Magento/GiftMessage/Setup/UpgradeData.php | 2 +- .../GiftMessage/Test/Unit/Block/Cart/GiftOptionsTest.php | 2 +- .../Block/Cart/Item/Renderer/Actions/GiftOptionsTest.php | 2 +- .../Cart/Item/Renderer/Actions/ItemIdProcessorTest.php | 2 +- .../GiftMessage/Test/Unit/Block/Message/InlineTest.php | 2 +- .../Magento/GiftMessage/Test/Unit/Helper/MessageTest.php | 2 +- .../GiftMessage/Test/Unit/Model/CartRepositoryTest.php | 2 +- .../Test/Unit/Model/CompositeConfigProviderTest.php | 2 +- .../Test/Unit/Model/GiftMessageConfigProviderTest.php | 2 +- .../GiftMessage/Test/Unit/Model/GiftMessageManagerTest.php | 2 +- .../GiftMessage/Test/Unit/Model/GuestCartRepositoryTest.php | 2 +- .../GiftMessage/Test/Unit/Model/GuestItemRepositoryTest.php | 2 +- .../GiftMessage/Test/Unit/Model/ItemRepositoryTest.php | 2 +- .../GiftMessage/Test/Unit/Model/Plugin/OrderGetTest.php | 2 +- .../GiftMessage/Test/Unit/Model/Plugin/OrderSaveTest.php | 2 +- .../GiftMessage/Test/Unit/Model/Plugin/QuoteItemTest.php | 2 +- app/code/Magento/GiftMessage/Test/Unit/Model/SaveTest.php | 2 +- .../Test/Unit/Model/Type/Plugin/MultishippingTest.php | 2 +- .../GiftMessage/Test/Unit/Model/Type/Plugin/OnepageTest.php | 2 +- .../Observer/MultishippingEventCreateOrdersObserverTest.php | 2 +- .../Observer/SalesEventQuoteSubmitBeforeObserverTest.php | 2 +- .../Ui/DataProvider/Product/Modifier/GiftMessageTest.php | 2 +- .../Ui/DataProvider/Product/Modifier/GiftMessage.php | 2 +- app/code/Magento/GiftMessage/etc/adminhtml/di.xml | 2 +- app/code/Magento/GiftMessage/etc/adminhtml/events.xml | 2 +- app/code/Magento/GiftMessage/etc/adminhtml/system.xml | 2 +- app/code/Magento/GiftMessage/etc/catalog_attributes.xml | 2 +- app/code/Magento/GiftMessage/etc/config.xml | 2 +- app/code/Magento/GiftMessage/etc/di.xml | 2 +- app/code/Magento/GiftMessage/etc/extension_attributes.xml | 2 +- app/code/Magento/GiftMessage/etc/fieldset.xml | 4 ++-- app/code/Magento/GiftMessage/etc/frontend/di.xml | 2 +- app/code/Magento/GiftMessage/etc/frontend/events.xml | 2 +- app/code/Magento/GiftMessage/etc/frontend/routes.xml | 4 ++-- app/code/Magento/GiftMessage/etc/module.xml | 2 +- app/code/Magento/GiftMessage/etc/webapi.xml | 2 +- app/code/Magento/GiftMessage/etc/webapi_rest/events.xml | 2 +- app/code/Magento/GiftMessage/registration.php | 2 +- .../view/adminhtml/layout/sales_order_create_index.xml | 2 +- .../adminhtml/layout/sales_order_create_load_block_data.xml | 2 +- .../layout/sales_order_create_load_block_items.xml | 2 +- .../GiftMessage/view/adminhtml/layout/sales_order_view.xml | 2 +- .../view/adminhtml/templates/giftoptionsform.phtml | 2 +- .../GiftMessage/view/adminhtml/templates/popup.phtml | 2 +- .../templates/sales/order/create/giftoptions.phtml | 2 +- .../view/adminhtml/templates/sales/order/create/items.phtml | 2 +- .../adminhtml/templates/sales/order/view/giftoptions.phtml | 2 +- .../view/adminhtml/templates/sales/order/view/items.phtml | 2 +- .../view/frontend/layout/checkout_cart_index.xml | 2 +- .../view/frontend/layout/checkout_cart_item_renderers.xml | 2 +- .../Magento/GiftMessage/view/frontend/requirejs-config.js | 4 ++-- .../view/frontend/templates/cart/gift_options.phtml | 2 +- .../templates/cart/item/renderer/actions/gift_options.phtml | 2 +- .../GiftMessage/view/frontend/templates/inline.phtml | 2 +- .../Magento/GiftMessage/view/frontend/web/extra-options.js | 4 ++-- .../Magento/GiftMessage/view/frontend/web/gift-options.js | 4 ++-- .../GiftMessage/view/frontend/web/js/action/gift-options.js | 2 +- .../GiftMessage/view/frontend/web/js/model/gift-message.js | 2 +- .../GiftMessage/view/frontend/web/js/model/gift-options.js | 2 +- .../GiftMessage/view/frontend/web/js/model/url-builder.js | 2 +- .../GiftMessage/view/frontend/web/js/view/gift-message.js | 2 +- .../view/frontend/web/template/gift-message-form.html | 2 +- .../view/frontend/web/template/gift-message-item-level.html | 2 +- .../view/frontend/web/template/gift-message.html | 2 +- app/code/Magento/GoogleAdwords/Block/Code.php | 2 +- app/code/Magento/GoogleAdwords/Helper/Data.php | 2 +- .../Model/Config/Backend/AbstractConversion.php | 2 +- .../Magento/GoogleAdwords/Model/Config/Backend/Color.php | 2 +- .../GoogleAdwords/Model/Config/Backend/ConversionId.php | 2 +- .../Magento/GoogleAdwords/Model/Config/Source/Language.php | 2 +- .../Magento/GoogleAdwords/Model/Config/Source/ValueType.php | 2 +- .../Magento/GoogleAdwords/Model/Filter/UppercaseTitle.php | 2 +- app/code/Magento/GoogleAdwords/Model/Validator/Factory.php | 2 +- .../GoogleAdwords/Observer/SetConversionValueObserver.php | 2 +- .../Magento/GoogleAdwords/Test/Unit/Helper/DataTest.php | 2 +- .../Test/Unit/Model/Config/Source/ValueTypeTest.php | 2 +- .../Test/Unit/Model/Filter/UppercaseTitleTest.php | 2 +- .../GoogleAdwords/Test/Unit/Model/Validator/FactoryTest.php | 2 +- .../Test/Unit/Observer/SetConversionValueObserverTest.php | 2 +- app/code/Magento/GoogleAdwords/etc/adminhtml/system.xml | 2 +- app/code/Magento/GoogleAdwords/etc/config.xml | 4 ++-- app/code/Magento/GoogleAdwords/etc/di.xml | 2 +- app/code/Magento/GoogleAdwords/etc/frontend/events.xml | 2 +- app/code/Magento/GoogleAdwords/etc/module.xml | 2 +- app/code/Magento/GoogleAdwords/registration.php | 2 +- .../view/frontend/layout/checkout_onepage_success.xml | 2 +- .../GoogleAdwords/view/frontend/templates/code.phtml | 2 +- app/code/Magento/GoogleAnalytics/Block/Ga.php | 2 +- app/code/Magento/GoogleAnalytics/Helper/Data.php | 2 +- .../SetGoogleAnalyticsOnOrderSuccessPageViewObserver.php | 2 +- app/code/Magento/GoogleAnalytics/etc/acl.xml | 2 +- app/code/Magento/GoogleAnalytics/etc/adminhtml/system.xml | 2 +- app/code/Magento/GoogleAnalytics/etc/di.xml | 2 +- app/code/Magento/GoogleAnalytics/etc/frontend/events.xml | 2 +- app/code/Magento/GoogleAnalytics/etc/module.xml | 2 +- app/code/Magento/GoogleAnalytics/registration.php | 2 +- .../GoogleAnalytics/view/frontend/layout/default.xml | 2 +- .../GoogleAnalytics/view/frontend/templates/ga.phtml | 2 +- app/code/Magento/GoogleOptimizer/Block/AbstractCode.php | 2 +- .../Magento/GoogleOptimizer/Block/Adminhtml/AbstractTab.php | 2 +- .../Adminhtml/Catalog/Category/Edit/Googleoptimizer.php | 2 +- .../Adminhtml/Catalog/Category/Edit/GoogleoptimizerForm.php | 2 +- .../Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php | 2 +- .../Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php | 2 +- .../Block/Adminhtml/Cms/Page/EntityCmsPage.php | 2 +- app/code/Magento/GoogleOptimizer/Block/Adminhtml/Form.php | 2 +- app/code/Magento/GoogleOptimizer/Block/Code/Category.php | 2 +- app/code/Magento/GoogleOptimizer/Block/Code/Page.php | 2 +- app/code/Magento/GoogleOptimizer/Block/Code/Product.php | 2 +- app/code/Magento/GoogleOptimizer/Helper/Code.php | 2 +- app/code/Magento/GoogleOptimizer/Helper/Data.php | 2 +- app/code/Magento/GoogleOptimizer/Helper/Form.php | 2 +- app/code/Magento/GoogleOptimizer/Model/Code.php | 2 +- .../Model/Plugin/Catalog/Category/DataProvider.php | 2 +- .../Model/Plugin/Catalog/Product/Category/DataProvider.php | 2 +- .../GoogleOptimizer/Model/Plugin/Cms/Page/DataProvider.php | 2 +- .../Magento/GoogleOptimizer/Model/ResourceModel/Code.php | 2 +- app/code/Magento/GoogleOptimizer/Observer/AbstractSave.php | 2 +- .../DeleteCategoryGoogleExperimentScriptObserver.php | 2 +- .../Category/SaveGoogleExperimentScriptObserver.php | 2 +- .../CmsPage/DeleteCmsGoogleExperimentScriptObserver.php | 2 +- .../Observer/CmsPage/SaveGoogleExperimentScriptObserver.php | 2 +- .../Product/DeleteProductGoogleExperimentScriptObserver.php | 2 +- .../Observer/Product/SaveGoogleExperimentScriptObserver.php | 2 +- app/code/Magento/GoogleOptimizer/Setup/InstallSchema.php | 2 +- .../GoogleOptimizer/Test/Unit/Block/Code/CategoryTest.php | 2 +- .../GoogleOptimizer/Test/Unit/Block/Code/ProductTest.php | 2 +- .../Magento/GoogleOptimizer/Test/Unit/Helper/CodeTest.php | 2 +- .../Magento/GoogleOptimizer/Test/Unit/Helper/DataTest.php | 2 +- .../Magento/GoogleOptimizer/Test/Unit/Helper/FormTest.php | 2 +- .../Plugin/Catalog/Product/Category/DataProviderTest.php | 2 +- .../DeleteCategoryGoogleExperimentScriptObserverTest.php | 2 +- .../Category/SaveGoogleExperimentScriptObserverTest.php | 2 +- .../CmsPage/DeleteCmsGoogleExperimentScriptObserverTest.php | 2 +- .../CmsPage/SaveGoogleExperimentScriptObserverTest.php | 2 +- .../DeleteProductGoogleExperimentScriptObserverTest.php | 2 +- .../Product/SaveGoogleExperimentScriptObserverTest.php | 2 +- .../Product/Form/Modifier/GoogleOptimizerTest.php | 2 +- .../DataProvider/Product/Form/Modifier/GoogleOptimizer.php | 2 +- app/code/Magento/GoogleOptimizer/etc/adminhtml/di.xml | 2 +- app/code/Magento/GoogleOptimizer/etc/adminhtml/system.xml | 2 +- app/code/Magento/GoogleOptimizer/etc/config.xml | 2 +- app/code/Magento/GoogleOptimizer/etc/events.xml | 2 +- app/code/Magento/GoogleOptimizer/etc/module.xml | 2 +- app/code/Magento/GoogleOptimizer/registration.php | 2 +- .../view/adminhtml/layout/catalog_product_new.xml | 2 +- .../GoogleOptimizer/view/adminhtml/layout/cms_page_edit.xml | 2 +- .../view/adminhtml/ui_component/category_form.xml | 2 +- .../view/adminhtml/ui_component/cms_page_form.xml | 2 +- .../view/adminhtml/ui_component/new_category_form.xml | 2 +- .../view/frontend/layout/catalog_category_view.xml | 2 +- .../view/frontend/layout/catalog_product_view.xml | 2 +- .../GoogleOptimizer/view/frontend/layout/cms_page_view.xml | 2 +- .../Model/Export/Product/Type/Grouped.php | 2 +- .../GroupedImportExport/Model/Export/RowCustomizer.php | 2 +- .../Model/Import/Product/Type/Grouped.php | 2 +- .../Model/Import/Product/Type/Grouped/Links.php | 2 +- .../Test/Unit/Model/Export/Product/RowCustomizerTest.php | 2 +- .../Unit/Model/Import/Product/Type/Grouped/LinksTest.php | 2 +- .../Test/Unit/Model/Import/Product/Type/GroupedTest.php | 2 +- app/code/Magento/GroupedImportExport/etc/di.xml | 2 +- app/code/Magento/GroupedImportExport/etc/export.xml | 2 +- app/code/Magento/GroupedImportExport/etc/import.xml | 2 +- app/code/Magento/GroupedImportExport/etc/module.xml | 2 +- app/code/Magento/GroupedImportExport/registration.php | 2 +- .../Block/Adminhtml/Items/Column/Name/Grouped.php | 2 +- .../GroupedProduct/Block/Adminhtml/Order/Create/Sidebar.php | 2 +- .../Block/Adminhtml/Product/Composite/Fieldset/Grouped.php | 2 +- .../GroupedProduct/Block/Cart/Item/Renderer/Grouped.php | 2 +- .../Block/Order/Email/Items/Order/Grouped.php | 2 +- .../GroupedProduct/Block/Order/Item/Renderer/Grouped.php | 2 +- .../Block/Product/Grouped/AssociatedProducts.php | 2 +- .../Grouped/AssociatedProducts/ListAssociatedProducts.php | 2 +- .../GroupedProduct/Block/Product/View/Type/Grouped.php | 2 +- .../Magento/GroupedProduct/Block/Stockqty/Type/Grouped.php | 2 +- .../GroupedProduct/Controller/Adminhtml/Edit/Popup.php | 2 +- .../Magento/GroupedProduct/CustomerData/GroupedItem.php | 2 +- .../Helper/Product/Configuration/Plugin/Grouped.php | 2 +- .../Model/Order/Pdf/Items/Creditmemo/Grouped.php | 2 +- .../Model/Order/Pdf/Items/Invoice/Grouped.php | 2 +- .../Model/Product/Cart/Configuration/Plugin/Grouped.php | 2 +- .../Magento/GroupedProduct/Model/Product/CatalogPrice.php | 2 +- .../Model/Product/CopyConstructor/Grouped.php | 2 +- .../Initialization/Helper/ProductLinks/Plugin/Grouped.php | 2 +- .../Model/Product/Link/CollectionProvider/Grouped.php | 2 +- .../Model/Product/Link/ProductEntity/Converter.php | 2 +- .../Magento/GroupedProduct/Model/Product/Type/Grouped.php | 2 +- .../GroupedProduct/Model/Product/Type/Grouped/Backend.php | 2 +- .../GroupedProduct/Model/Product/Type/Grouped/Price.php | 2 +- .../Magento/GroupedProduct/Model/Product/Type/Plugin.php | 2 +- .../Model/ResourceModel/Indexer/Stock/Grouped.php | 2 +- .../Model/ResourceModel/Product/Indexer/Price/Grouped.php | 2 +- .../Product/Indexer/Price/GroupedInterface.php | 2 +- .../GroupedProduct/Model/ResourceModel/Product/Link.php | 2 +- .../Model/ResourceModel/Product/Link/RelationPersister.php | 2 +- .../Product/Type/Grouped/AssociatedProductsCollection.php | 2 +- .../Sales/AdminOrder/Product/Quote/Plugin/Initializer.php | 2 +- .../GroupedProduct/Pricing/Price/ConfiguredPrice.php | 2 +- .../Magento/GroupedProduct/Pricing/Price/FinalPrice.php | 2 +- app/code/Magento/GroupedProduct/Setup/InstallData.php | 2 +- app/code/Magento/GroupedProduct/Setup/UpgradeData.php | 2 +- .../Test/Unit/Block/Adminhtml/Order/Create/SidebarTest.php | 2 +- .../Adminhtml/Product/Composite/Fieldset/GroupedTest.php | 2 +- .../Test/Unit/Block/Cart/Item/Renderer/GroupedTest.php | 2 +- .../AssociatedProducts/ListAssociatedProductsTest.php | 2 +- .../Unit/Block/Product/Grouped/AssociatedProductsTest.php | 2 +- .../Test/Unit/Block/Product/View/Type/GroupedTest.php | 2 +- .../Test/Unit/Block/Stockqty/Type/GroupedTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Edit/PopupTest.php | 2 +- .../Helper/Product/Configuration/Plugin/GroupedTest.php | 2 +- .../Model/Product/Cart/Configuration/Plugin/GroupedTest.php | 2 +- .../Test/Unit/Model/Product/CatalogPriceTest.php | 2 +- .../Test/Unit/Model/Product/CopyConstructor/GroupedTest.php | 2 +- .../Helper/ProductLinks/Plugin/GroupedTest.php | 2 +- .../Test/Unit/Model/Product/Type/Grouped/PriceTest.php | 2 +- .../Test/Unit/Model/Product/Type/GroupedTest.php | 2 +- .../Test/Unit/Model/Product/Type/PluginTest.php | 2 +- .../Magento/GroupedProduct/Test/Unit/Model/ProductTest.php | 2 +- .../ResourceModel/Product/Link/RelationPersisterTest.php | 2 +- .../AdminOrder/Product/Quote/Plugin/InitializerTest.php | 2 +- .../Test/Unit/Pricing/Price/ConfiguredPriceTest.php | 2 +- .../Test/Unit/Pricing/Price/FinalPriceTest.php | 2 +- .../Product/Form/Modifier/CustomOptionsTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/GroupedTest.php | 2 +- .../DataProvider/Product/GroupedProductDataProviderTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/CustomOptions.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/Grouped.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/StockData.php | 2 +- .../Ui/DataProvider/Product/GroupedProductDataProvider.php | 2 +- app/code/Magento/GroupedProduct/etc/adminhtml/di.xml | 2 +- app/code/Magento/GroupedProduct/etc/adminhtml/routes.xml | 2 +- app/code/Magento/GroupedProduct/etc/adminhtml/system.xml | 2 +- app/code/Magento/GroupedProduct/etc/config.xml | 2 +- app/code/Magento/GroupedProduct/etc/di.xml | 2 +- .../Magento/GroupedProduct/etc/extension_attributes.xml | 2 +- app/code/Magento/GroupedProduct/etc/frontend/di.xml | 2 +- app/code/Magento/GroupedProduct/etc/module.xml | 2 +- app/code/Magento/GroupedProduct/etc/pdf.xml | 2 +- app/code/Magento/GroupedProduct/etc/product_types.xml | 2 +- app/code/Magento/GroupedProduct/etc/sales.xml | 2 +- app/code/Magento/GroupedProduct/registration.php | 2 +- .../view/adminhtml/layout/catalog_product_grouped.xml | 2 +- .../view/adminhtml/layout/catalog_product_new.xml | 2 +- .../adminhtml/layout/catalog_product_view_type_grouped.xml | 2 +- .../view/adminhtml/layout/groupedproduct_edit_popup.xml | 2 +- .../view/adminhtml/layout/groupedproduct_popup_grid.xml | 2 +- .../view/adminhtml/layout/sales_order_creditmemo_new.xml | 2 +- .../adminhtml/layout/sales_order_creditmemo_updateqty.xml | 2 +- .../view/adminhtml/layout/sales_order_creditmemo_view.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_new.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_updateqty.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_view.xml | 2 +- .../view/adminhtml/layout/sales_order_view.xml | 2 +- .../GroupedProduct/view/adminhtml/requirejs-config.js | 4 ++-- .../catalog/product/composite/fieldset/grouped.phtml | 2 +- .../view/adminhtml/templates/product/grouped/grouped.phtml | 2 +- .../view/adminhtml/templates/product/grouped/list.phtml | 2 +- .../view/adminhtml/templates/product/stock/disabler.phtml | 2 +- .../view/adminhtml/ui_component/grouped_product_listing.xml | 2 +- .../view/adminhtml/web/css/grouped-product.css | 2 +- .../GroupedProduct/view/adminhtml/web/js/grouped-product.js | 2 +- .../view/base/layout/catalog_product_prices.xml | 2 +- .../view/base/templates/product/price/final_price.phtml | 2 +- .../layout/catalog_product_rss_feed_renderer_list.xml | 2 +- .../frontend/layout/catalog_product_view_type_grouped.xml | 2 +- .../view/frontend/layout/checkout_cart_item_renderers.xml | 2 +- .../layout/checkout_onepage_review_item_renderers.xml | 2 +- .../layout/sales_email_order_creditmemo_renderers.xml | 2 +- .../frontend/layout/sales_email_order_invoice_renderers.xml | 2 +- .../view/frontend/layout/sales_email_order_renderers.xml | 2 +- .../view/frontend/layout/sales_guest_invoice.xml | 2 +- .../frontend/layout/sales_order_creditmemo_renderers.xml | 2 +- .../view/frontend/layout/sales_order_invoice_renderers.xml | 2 +- .../view/frontend/layout/sales_order_item_renderers.xml | 2 +- .../layout/sales_order_print_creditmemo_renderers.xml | 2 +- .../frontend/layout/sales_order_print_invoice_renderers.xml | 2 +- .../view/frontend/layout/sales_order_print_renderers.xml | 2 +- .../view/frontend/templates/product/view/type/default.phtml | 2 +- .../view/frontend/templates/product/view/type/grouped.phtml | 2 +- .../Magento/ImportExport/Block/Adminhtml/Export/Edit.php | 2 +- .../ImportExport/Block/Adminhtml/Export/Edit/Form.php | 2 +- .../Magento/ImportExport/Block/Adminhtml/Export/Filter.php | 2 +- .../Magento/ImportExport/Block/Adminhtml/Form/After.php | 2 +- .../Block/Adminhtml/Grid/Column/Renderer/Download.php | 2 +- .../Block/Adminhtml/Grid/Column/Renderer/Error.php | 2 +- app/code/Magento/ImportExport/Block/Adminhtml/History.php | 2 +- .../Magento/ImportExport/Block/Adminhtml/Import/Edit.php | 2 +- .../ImportExport/Block/Adminhtml/Import/Edit/Before.php | 2 +- .../ImportExport/Block/Adminhtml/Import/Edit/Form.php | 2 +- .../ImportExport/Block/Adminhtml/Import/Frame/Result.php | 2 +- .../Magento/ImportExport/Controller/Adminhtml/Export.php | 2 +- .../ImportExport/Controller/Adminhtml/Export/Export.php | 2 +- .../ImportExport/Controller/Adminhtml/Export/GetFilter.php | 2 +- .../ImportExport/Controller/Adminhtml/Export/Index.php | 2 +- .../Magento/ImportExport/Controller/Adminhtml/History.php | 2 +- .../ImportExport/Controller/Adminhtml/History/Download.php | 2 +- .../ImportExport/Controller/Adminhtml/History/Index.php | 2 +- .../Magento/ImportExport/Controller/Adminhtml/Import.php | 2 +- .../ImportExport/Controller/Adminhtml/Import/Download.php | 2 +- .../ImportExport/Controller/Adminhtml/Import/Index.php | 2 +- .../ImportExport/Controller/Adminhtml/Import/Start.php | 2 +- .../ImportExport/Controller/Adminhtml/Import/Validate.php | 2 +- .../ImportExport/Controller/Adminhtml/ImportResult.php | 2 +- app/code/Magento/ImportExport/Helper/Data.php | 2 +- app/code/Magento/ImportExport/Helper/Report.php | 2 +- app/code/Magento/ImportExport/Model/AbstractModel.php | 2 +- app/code/Magento/ImportExport/Model/Export.php | 2 +- .../Magento/ImportExport/Model/Export/AbstractEntity.php | 2 +- .../ImportExport/Model/Export/Adapter/AbstractAdapter.php | 2 +- app/code/Magento/ImportExport/Model/Export/Adapter/Csv.php | 2 +- .../Magento/ImportExport/Model/Export/Adapter/Factory.php | 2 +- app/code/Magento/ImportExport/Model/Export/Config.php | 2 +- .../Magento/ImportExport/Model/Export/Config/Converter.php | 2 +- .../Magento/ImportExport/Model/Export/Config/Reader.php | 2 +- .../ImportExport/Model/Export/Config/SchemaLocator.php | 2 +- .../Magento/ImportExport/Model/Export/ConfigInterface.php | 2 +- .../ImportExport/Model/Export/Entity/AbstractEav.php | 2 +- .../ImportExport/Model/Export/Entity/AbstractEntity.php | 2 +- .../Magento/ImportExport/Model/Export/Entity/Factory.php | 2 +- app/code/Magento/ImportExport/Model/Export/Factory.php | 2 +- app/code/Magento/ImportExport/Model/History.php | 2 +- app/code/Magento/ImportExport/Model/Import.php | 2 +- .../Magento/ImportExport/Model/Import/AbstractEntity.php | 2 +- .../Magento/ImportExport/Model/Import/AbstractSource.php | 2 +- app/code/Magento/ImportExport/Model/Import/Adapter.php | 2 +- app/code/Magento/ImportExport/Model/Import/Config.php | 2 +- .../Magento/ImportExport/Model/Import/Config/Converter.php | 2 +- .../Magento/ImportExport/Model/Import/Config/Reader.php | 2 +- .../ImportExport/Model/Import/Config/SchemaLocator.php | 2 +- .../Magento/ImportExport/Model/Import/ConfigInterface.php | 2 +- .../ImportExport/Model/Import/Entity/AbstractEav.php | 2 +- .../ImportExport/Model/Import/Entity/AbstractEntity.php | 2 +- .../Magento/ImportExport/Model/Import/Entity/Factory.php | 2 +- .../Model/Import/ErrorProcessing/ProcessingError.php | 2 +- .../Import/ErrorProcessing/ProcessingErrorAggregator.php | 2 +- .../ErrorProcessing/ProcessingErrorAggregatorInterface.php | 2 +- app/code/Magento/ImportExport/Model/Import/Source/Csv.php | 2 +- app/code/Magento/ImportExport/Model/Import/Source/Zip.php | 2 +- app/code/Magento/ImportExport/Model/Report/Csv.php | 2 +- .../ImportExport/Model/Report/ReportProcessorInterface.php | 2 +- .../Model/ResourceModel/CollectionByPagesIterator.php | 2 +- .../Magento/ImportExport/Model/ResourceModel/Helper.php | 2 +- .../Magento/ImportExport/Model/ResourceModel/History.php | 2 +- .../ImportExport/Model/ResourceModel/History/Collection.php | 2 +- .../ImportExport/Model/ResourceModel/Import/Data.php | 2 +- .../Magento/ImportExport/Model/Source/Export/Entity.php | 2 +- .../Magento/ImportExport/Model/Source/Export/Format.php | 2 +- .../ImportExport/Model/Source/Import/AbstractBehavior.php | 2 +- .../ImportExport/Model/Source/Import/Behavior/Basic.php | 2 +- .../ImportExport/Model/Source/Import/Behavior/Custom.php | 2 +- .../ImportExport/Model/Source/Import/Behavior/Factory.php | 2 +- .../Magento/ImportExport/Model/Source/Import/Entity.php | 2 +- app/code/Magento/ImportExport/Setup/InstallSchema.php | 2 +- app/code/Magento/ImportExport/Setup/UpgradeSchema.php | 2 +- .../Test/Unit/Block/Adminhtml/Export/FilterTest.php | 2 +- .../Block/Adminhtml/Grid/Column/Renderer/DownloadTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Import/Edit/FormTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/History/DownloadTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/History/IndexTest.php | 2 +- .../Magento/ImportExport/Test/Unit/Helper/ReportTest.php | 2 +- .../Test/Unit/Model/Export/Config/ConverterTest.php | 2 +- .../Test/Unit/Model/Export/Config/SchemaLocatorTest.php | 2 +- .../ImportExport/Test/Unit/Model/Export/Config/XsdTest.php | 2 +- .../Test/Unit/Model/Export/Config/_files/export.php | 2 +- .../Test/Unit/Model/Export/Config/_files/export.xml | 2 +- .../Unit/Model/Export/Config/_files/export_merged_valid.xml | 2 +- .../Test/Unit/Model/Export/Config/_files/export_valid.xml | 2 +- .../Export/Config/_files/invalidExportMergedXmlArray.php | 2 +- .../Model/Export/Config/_files/invalidExportXmlArray.php | 2 +- .../ImportExport/Test/Unit/Model/Export/ConfigTest.php | 2 +- .../Test/Unit/Model/Export/Entity/AbstractEavTest.php | 2 +- .../Test/Unit/Model/Export/EntityAbstractTest.php | 2 +- .../Magento/ImportExport/Test/Unit/Model/ExportTest.php | 2 +- .../Test/Unit/Model/Import/AbstractImportTestCase.php | 2 +- .../ImportExport/Test/Unit/Model/Import/AdapterTest.php | 2 +- .../Test/Unit/Model/Import/Config/ConverterTest.php | 2 +- .../Test/Unit/Model/Import/Config/SchemaLocatorTest.php | 2 +- .../Test/Unit/Model/Import/Config/XsdMergedTest.php | 2 +- .../ImportExport/Test/Unit/Model/Import/Config/XsdTest.php | 2 +- .../Test/Unit/Model/Import/Config/_files/import.php | 2 +- .../Test/Unit/Model/Import/Config/_files/import.xml | 2 +- .../Import/Config/_files/invalidImportMergedXmlArray.php | 2 +- .../Model/Import/Config/_files/invalidImportXmlArray.php | 2 +- .../Test/Unit/Model/Import/Config/_files/valid_import.xml | 2 +- .../Unit/Model/Import/Config/_files/valid_import_merged.xml | 2 +- .../ImportExport/Test/Unit/Model/Import/ConfigTest.php | 2 +- .../Test/Unit/Model/Import/Entity/AbstractTest.php | 2 +- .../Test/Unit/Model/Import/Entity/EavAbstractTest.php | 2 +- .../Test/Unit/Model/Import/EntityAbstractTest.php | 2 +- .../ErrorProcessing/ProcessingErrorAggregatorTest.php | 2 +- .../Model/Import/ErrorProcessing/ProcessingErrorTest.php | 2 +- .../ImportExport/Test/Unit/Model/Import/Source/CsvTest.php | 2 +- .../ImportExport/Test/Unit/Model/Import/Source/ZipTest.php | 2 +- .../Test/Unit/Model/Import/SourceAbstractTest.php | 2 +- .../Magento/ImportExport/Test/Unit/Model/ImportTest.php | 2 +- .../Magento/ImportExport/Test/Unit/Model/Report/CsvTest.php | 2 +- .../Model/ResourceModel/CollectionByPagesIteratorTest.php | 2 +- .../Test/Unit/Model/ResourceModel/HistoryTest.php | 2 +- .../Unit/Model/Source/Import/AbstractBehaviorTestCase.php | 2 +- .../Test/Unit/Model/Source/Import/Behavior/BasicTest.php | 2 +- .../Test/Unit/Model/Source/Import/Behavior/CustomTest.php | 2 +- .../Test/Unit/Model/Source/Import/BehaviorAbstractTest.php | 2 +- app/code/Magento/ImportExport/etc/acl.xml | 2 +- app/code/Magento/ImportExport/etc/adminhtml/menu.xml | 2 +- app/code/Magento/ImportExport/etc/adminhtml/routes.xml | 2 +- app/code/Magento/ImportExport/etc/config.xml | 2 +- app/code/Magento/ImportExport/etc/di.xml | 2 +- app/code/Magento/ImportExport/etc/export.xsd | 2 +- app/code/Magento/ImportExport/etc/export_merged.xsd | 2 +- app/code/Magento/ImportExport/etc/import.xsd | 2 +- app/code/Magento/ImportExport/etc/import_merged.xsd | 2 +- app/code/Magento/ImportExport/etc/module.xml | 2 +- app/code/Magento/ImportExport/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_export_getfilter.xml | 2 +- .../view/adminhtml/layout/adminhtml_export_index.xml | 2 +- .../view/adminhtml/layout/adminhtml_history_grid_block.xml | 2 +- .../view/adminhtml/layout/adminhtml_history_index.xml | 2 +- .../view/adminhtml/layout/adminhtml_import_busy.xml | 2 +- .../view/adminhtml/layout/adminhtml_import_index.xml | 2 +- .../view/adminhtml/layout/adminhtml_import_start.xml | 2 +- .../view/adminhtml/layout/adminhtml_import_validate.xml | 2 +- .../ImportExport/view/adminhtml/templates/busy.phtml | 2 +- .../view/adminhtml/templates/export/form/after.phtml | 2 +- .../view/adminhtml/templates/export/form/before.phtml | 2 +- .../view/adminhtml/templates/export/form/filter/after.phtml | 2 +- .../view/adminhtml/templates/import/form/after.phtml | 2 +- .../view/adminhtml/templates/import/form/before.phtml | 2 +- .../view/adminhtml/templates/import/frame/result.phtml | 2 +- .../ImportExport/view/adminhtml/web/css/importexport.css | 2 +- app/code/Magento/Indexer/App/Indexer.php | 2 +- app/code/Magento/Indexer/Block/Backend/Container.php | 2 +- .../Block/Backend/Grid/Column/Renderer/Scheduled.php | 2 +- .../Indexer/Block/Backend/Grid/Column/Renderer/Status.php | 2 +- .../Indexer/Block/Backend/Grid/Column/Renderer/Updated.php | 2 +- .../Magento/Indexer/Block/Backend/Grid/ItemsUpdater.php | 2 +- .../Indexer/Console/Command/AbstractIndexerCommand.php | 2 +- .../Console/Command/AbstractIndexerManageCommand.php | 2 +- .../Magento/Indexer/Console/Command/IndexerInfoCommand.php | 2 +- .../Indexer/Console/Command/IndexerReindexCommand.php | 2 +- .../Indexer/Console/Command/IndexerResetStateCommand.php | 2 +- .../Indexer/Console/Command/IndexerSetModeCommand.php | 2 +- .../Indexer/Console/Command/IndexerShowModeCommand.php | 2 +- .../Indexer/Console/Command/IndexerStatusCommand.php | 2 +- app/code/Magento/Indexer/Controller/Adminhtml/Indexer.php | 2 +- .../Indexer/Controller/Adminhtml/Indexer/ListAction.php | 2 +- .../Indexer/Controller/Adminhtml/Indexer/MassChangelog.php | 2 +- .../Indexer/Controller/Adminhtml/Indexer/MassOnTheFly.php | 2 +- app/code/Magento/Indexer/Cron/ClearChangelog.php | 2 +- app/code/Magento/Indexer/Cron/ReindexAllInvalid.php | 2 +- app/code/Magento/Indexer/Cron/UpdateMview.php | 2 +- app/code/Magento/Indexer/Model/Config.php | 2 +- app/code/Magento/Indexer/Model/Config/Data.php | 2 +- app/code/Magento/Indexer/Model/Indexer.php | 2 +- app/code/Magento/Indexer/Model/Indexer/Collection.php | 2 +- app/code/Magento/Indexer/Model/Indexer/State.php | 2 +- app/code/Magento/Indexer/Model/Message/Invalid.php | 2 +- app/code/Magento/Indexer/Model/Mview/View/State.php | 2 +- app/code/Magento/Indexer/Model/Processor.php | 2 +- app/code/Magento/Indexer/Model/Processor/CleanCache.php | 2 +- app/code/Magento/Indexer/Model/Processor/Handler.php | 2 +- .../Indexer/Model/ResourceModel/AbstractResource.php | 2 +- .../Magento/Indexer/Model/ResourceModel/Indexer/State.php | 2 +- .../Model/ResourceModel/Indexer/State/Collection.php | 2 +- .../Indexer/Model/ResourceModel/Mview/View/State.php | 2 +- .../Model/ResourceModel/Mview/View/State/Collection.php | 2 +- app/code/Magento/Indexer/Model/Source/DataInterface.php | 2 +- app/code/Magento/Indexer/Model/Source/ServiceSource.php | 2 +- app/code/Magento/Indexer/Setup/InstallData.php | 2 +- app/code/Magento/Indexer/Setup/InstallSchema.php | 2 +- app/code/Magento/Indexer/Setup/Recurring.php | 2 +- app/code/Magento/Indexer/Setup/RecurringData.php | 2 +- app/code/Magento/Indexer/Test/Unit/App/IndexerTest.php | 2 +- .../Indexer/Test/Unit/Block/Backend/ContainerTest.php | 2 +- .../Block/Backend/Grid/Column/Renderer/ScheduledTest.php | 2 +- .../Unit/Block/Backend/Grid/Column/Renderer/StatusTest.php | 2 +- .../Unit/Block/Backend/Grid/Column/Renderer/UpdatedTest.php | 2 +- .../Test/Unit/Block/Backend/Grid/ItemsUpdaterTest.php | 2 +- .../Console/Command/AbstractIndexerCommandCommonSetup.php | 2 +- .../Test/Unit/Console/Command/IndexerInfoCommandTest.php | 2 +- .../Test/Unit/Console/Command/IndexerReindexCommandTest.php | 2 +- .../Unit/Console/Command/IndexerResetStateCommandTest.php | 2 +- .../Test/Unit/Console/Command/IndexerSetModeCommandTest.php | 2 +- .../Unit/Console/Command/IndexerShowModeCommandTest.php | 2 +- .../Test/Unit/Console/Command/IndexerStatusCommandTest.php | 2 +- .../Unit/Controller/Adminhtml/Indexer/ListActionTest.php | 2 +- .../Unit/Controller/Adminhtml/Indexer/MassChangelogTest.php | 2 +- .../Unit/Controller/Adminhtml/Indexer/MassOnTheFlyTest.php | 2 +- .../Magento/Indexer/Test/Unit/Model/CacheContextTest.php | 2 +- .../Magento/Indexer/Test/Unit/Model/Config/DataTest.php | 2 +- app/code/Magento/Indexer/Test/Unit/Model/ConfigTest.php | 2 +- .../Test/Unit/Model/Indexer/AbstractProcessorStub.php | 2 +- .../Test/Unit/Model/Indexer/AbstractProcessorTest.php | 2 +- .../Indexer/Test/Unit/Model/Indexer/CollectionTest.php | 2 +- .../Magento/Indexer/Test/Unit/Model/Indexer/StateTest.php | 2 +- app/code/Magento/Indexer/Test/Unit/Model/IndexerTest.php | 2 +- .../Magento/Indexer/Test/Unit/Model/Message/InvalidTest.php | 2 +- .../Indexer/Test/Unit/Model/Mview/View/StateTest.php | 2 +- .../Indexer/Test/Unit/Model/Processor/CleanCacheTest.php | 2 +- app/code/Magento/Indexer/Test/Unit/Model/ProcessorTest.php | 2 +- .../Test/Unit/Model/ResourceModel/AbstractResourceStub.php | 2 +- .../Test/Unit/Model/ResourceModel/AbstractResourceTest.php | 2 +- .../Model/ResourceModel/Indexer/State/CollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Indexer/StateTest.php | 2 +- .../Model/ResourceModel/Mview/View/State/CollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Mview/View/StateTest.php | 2 +- app/code/Magento/Indexer/etc/acl.xml | 2 +- app/code/Magento/Indexer/etc/adminhtml/di.xml | 2 +- app/code/Magento/Indexer/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Indexer/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Indexer/etc/cron_groups.xml | 4 ++-- app/code/Magento/Indexer/etc/crontab.xml | 2 +- app/code/Magento/Indexer/etc/di.xml | 2 +- app/code/Magento/Indexer/etc/module.xml | 2 +- app/code/Magento/Indexer/registration.php | 2 +- .../Indexer/view/adminhtml/layout/indexer_indexer_list.xml | 2 +- .../view/adminhtml/layout/indexer_indexer_list_grid.xml | 2 +- .../Magento/Integration/Api/AdminTokenServiceInterface.php | 2 +- .../Integration/Api/AuthorizationServiceInterface.php | 2 +- .../Integration/Api/CustomerTokenServiceInterface.php | 2 +- .../Magento/Integration/Api/IntegrationServiceInterface.php | 2 +- app/code/Magento/Integration/Api/OauthServiceInterface.php | 2 +- .../Magento/Integration/Block/Adminhtml/Integration.php | 2 +- .../Integration/Activate/Permissions/Tab/Webapi.php | 2 +- .../Adminhtml/Integration/Activate/Permissions/Tabs.php | 2 +- .../Integration/Block/Adminhtml/Integration/Edit.php | 2 +- .../Integration/Block/Adminhtml/Integration/Edit/Form.php | 2 +- .../Block/Adminhtml/Integration/Edit/Tab/Info.php | 2 +- .../Block/Adminhtml/Integration/Edit/Tab/Webapi.php | 2 +- .../Integration/Block/Adminhtml/Integration/Edit/Tabs.php | 2 +- .../Integration/Block/Adminhtml/Integration/Grid.php | 2 +- .../Integration/Block/Adminhtml/Integration/Tokens.php | 2 +- .../Block/Adminhtml/Widget/Grid/Column/Renderer/Button.php | 2 +- .../Adminhtml/Widget/Grid/Column/Renderer/Button/Delete.php | 2 +- .../Adminhtml/Widget/Grid/Column/Renderer/Button/Edit.php | 2 +- .../Block/Adminhtml/Widget/Grid/Column/Renderer/Link.php | 2 +- .../Adminhtml/Widget/Grid/Column/Renderer/Link/Activate.php | 2 +- .../Block/Adminhtml/Widget/Grid/Column/Renderer/Name.php | 2 +- .../Integration/Controller/Adminhtml/Integration.php | 2 +- .../Integration/Controller/Adminhtml/Integration/Delete.php | 2 +- .../Integration/Controller/Adminhtml/Integration/Edit.php | 2 +- .../Integration/Controller/Adminhtml/Integration/Grid.php | 2 +- .../Integration/Controller/Adminhtml/Integration/Index.php | 2 +- .../Adminhtml/Integration/LoginSuccessCallback.php | 2 +- .../Controller/Adminhtml/Integration/NewAction.php | 2 +- .../Controller/Adminhtml/Integration/PermissionsDialog.php | 2 +- .../Integration/Controller/Adminhtml/Integration/Save.php | 2 +- .../Controller/Adminhtml/Integration/TokensDialog.php | 2 +- .../Controller/Adminhtml/Integration/TokensExchange.php | 2 +- app/code/Magento/Integration/Controller/Token/Access.php | 2 +- app/code/Magento/Integration/Controller/Token/Request.php | 2 +- .../Integration/Cron/CleanExpiredAuthenticationFailures.php | 2 +- app/code/Magento/Integration/Helper/Data.php | 2 +- app/code/Magento/Integration/Helper/Oauth/Data.php | 2 +- app/code/Magento/Integration/Model/AdminTokenService.php | 2 +- app/code/Magento/Integration/Model/AuthorizationService.php | 2 +- app/code/Magento/Integration/Model/Cache/Type.php | 2 +- .../Magento/Integration/Model/Cache/TypeConsolidated.php | 2 +- .../Magento/Integration/Model/Cache/TypeIntegration.php | 2 +- app/code/Magento/Integration/Model/Config.php | 2 +- .../Integration/Model/Config/Consolidated/Converter.php | 2 +- .../Integration/Model/Config/Consolidated/Reader.php | 2 +- .../Integration/Model/Config/Consolidated/SchemaLocator.php | 2 +- app/code/Magento/Integration/Model/Config/Converter.php | 2 +- .../Integration/Model/Config/Integration/Converter.php | 2 +- .../Magento/Integration/Model/Config/Integration/Reader.php | 2 +- .../Integration/Model/Config/Integration/SchemaLocator.php | 2 +- app/code/Magento/Integration/Model/Config/Reader.php | 2 +- app/code/Magento/Integration/Model/Config/SchemaLocator.php | 2 +- .../Integration/Model/ConfigBasedIntegrationManager.php | 2 +- app/code/Magento/Integration/Model/ConsolidatedConfig.php | 2 +- app/code/Magento/Integration/Model/CredentialsValidator.php | 2 +- app/code/Magento/Integration/Model/CustomerTokenService.php | 2 +- app/code/Magento/Integration/Model/Integration.php | 2 +- .../Magento/Integration/Model/Integration/Source/Status.php | 2 +- app/code/Magento/Integration/Model/IntegrationConfig.php | 2 +- app/code/Magento/Integration/Model/IntegrationService.php | 2 +- .../Integration/Model/Message/RecreatedIntegration.php | 2 +- app/code/Magento/Integration/Model/Oauth/Consumer.php | 2 +- .../Model/Oauth/Consumer/Validator/KeyLength.php | 2 +- app/code/Magento/Integration/Model/Oauth/Nonce.php | 2 +- .../Magento/Integration/Model/Oauth/Nonce/Generator.php | 2 +- app/code/Magento/Integration/Model/Oauth/Token.php | 2 +- app/code/Magento/Integration/Model/Oauth/Token/Provider.php | 2 +- .../Integration/Model/Oauth/Token/RequestLog/Config.php | 2 +- .../Model/Oauth/Token/RequestLog/ReaderInterface.php | 2 +- .../Model/Oauth/Token/RequestLog/WriterInterface.php | 2 +- .../Integration/Model/Oauth/Token/RequestThrottler.php | 2 +- app/code/Magento/Integration/Model/OauthService.php | 2 +- app/code/Magento/Integration/Model/Plugin/Integration.php | 2 +- .../Magento/Integration/Model/ResourceModel/Integration.php | 2 +- .../Model/ResourceModel/Integration/Collection.php | 2 +- .../Integration/Model/ResourceModel/Oauth/Consumer.php | 2 +- .../Model/ResourceModel/Oauth/Consumer/Collection.php | 2 +- .../Magento/Integration/Model/ResourceModel/Oauth/Nonce.php | 2 +- .../Model/ResourceModel/Oauth/Nonce/Collection.php | 2 +- .../Magento/Integration/Model/ResourceModel/Oauth/Token.php | 2 +- .../Model/ResourceModel/Oauth/Token/Collection.php | 2 +- .../Model/ResourceModel/Oauth/Token/RequestLog.php | 2 +- app/code/Magento/Integration/Setup/InstallSchema.php | 2 +- app/code/Magento/Integration/Setup/Recurring.php | 2 +- app/code/Magento/Integration/Setup/UpgradeSchema.php | 2 +- .../Unit/Block/Adminhtml/Integration/Edit/Tab/InfoTest.php | 2 +- .../Block/Adminhtml/Integration/Edit/Tab/WebapiTest.php | 2 +- .../Adminhtml/Widget/Grid/Column/Renderer/ButtonTest.php | 2 +- .../Adminhtml/Widget/Grid/Column/Renderer/LinkTest.php | 2 +- .../Adminhtml/Widget/Grid/Column/Renderer/NameTest.php | 2 +- .../Unit/Controller/Adminhtml/Integration/DeleteTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Integration/EditTest.php | 2 +- .../Unit/Controller/Adminhtml/Integration/IndexTest.php | 2 +- .../Unit/Controller/Adminhtml/Integration/NewActionTest.php | 2 +- .../Adminhtml/Integration/PermissionsDialogTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Integration/SaveTest.php | 2 +- .../Controller/Adminhtml/Integration/TokensDialogTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/IntegrationTest.php | 2 +- .../Integration/Test/Unit/Controller/Token/AccessTest.php | 2 +- .../Integration/Test/Unit/Controller/Token/RequestTest.php | 2 +- app/code/Magento/Integration/Test/Unit/Helper/DataTest.php | 2 +- .../Integration/Test/Unit/Helper/Oauth/ConsumerTest.php | 2 +- .../Magento/Integration/Test/Unit/Helper/Oauth/DataTest.php | 2 +- .../Integration/Test/Unit/Helper/Oauth/OauthTest.php | 2 +- .../Magento/Integration/Test/Unit/Helper/_files/acl-map.php | 2 +- .../Magento/Integration/Test/Unit/Helper/_files/acl.php | 2 +- .../Integration/Test/Unit/Model/AdminTokenServiceTest.php | 2 +- .../Test/Unit/Model/AuthorizationServiceTest.php | 2 +- .../Test/Unit/Model/Config/Consolidated/ConverterTest.php | 2 +- .../Unit/Model/Config/Consolidated/SchemaLocatorTest.php | 2 +- .../Test/Unit/Model/Config/Consolidated/XsdTest.php | 2 +- .../Test/Unit/Model/Config/Consolidated/_files/acl.php | 2 +- .../Unit/Model/Config/Consolidated/_files/integration.php | 2 +- .../Unit/Model/Config/Consolidated/_files/integration.xml | 2 +- .../Integration/Test/Unit/Model/Config/ConverterTest.php | 2 +- .../Test/Unit/Model/Config/Integration/ConverterTest.php | 2 +- .../Unit/Model/Config/Integration/SchemaLocatorTest.php | 2 +- .../Test/Unit/Model/Config/Integration/XsdTest.php | 2 +- .../Test/Unit/Model/Config/Integration/_files/api.php | 2 +- .../Test/Unit/Model/Config/Integration/_files/api.xml | 2 +- .../Test/Unit/Model/Config/SchemaLocatorTest.php | 2 +- .../Magento/Integration/Test/Unit/Model/Config/XsdTest.php | 2 +- .../Integration/Test/Unit/Model/Config/_files/config.xml | 2 +- .../Test/Unit/Model/Config/_files/integration.php | 2 +- .../Integration/Test/Unit/Model/ConsolidatedConfigTest.php | 2 +- .../Test/Unit/Model/CredentialsValidatorTest.php | 2 +- .../Test/Unit/Model/CustomerTokenServiceTest.php | 2 +- .../Test/Unit/Model/Integration/Source/StatusTest.php | 2 +- .../Integration/Test/Unit/Model/IntegrationConfigTest.php | 2 +- .../Integration/Test/Unit/Model/IntegrationServiceTest.php | 2 +- .../Magento/Integration/Test/Unit/Model/IntegrationTest.php | 2 +- .../Magento/Integration/Test/Unit/Model/ManagerTest.php | 2 +- .../Unit/Model/Oauth/Consumer/Validator/KeyLengthTest.php | 2 +- .../Integration/Test/Unit/Model/Oauth/ConsumerTest.php | 2 +- .../Magento/Integration/Test/Unit/Model/Oauth/NonceTest.php | 2 +- .../Test/Unit/Model/Oauth/Token/ProviderTest.php | 2 +- .../Magento/Integration/Test/Unit/Model/Oauth/TokenTest.php | 2 +- .../Integration/Test/Unit/Model/OauthServiceTest.php | 2 +- .../Integration/Test/Unit/Model/Plugin/IntegrationTest.php | 2 +- .../Unit/Model/ResourceModel/Integration/CollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/IntegrationTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Oauth/ConsumerTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Oauth/NonceTest.php | 2 +- .../Unit/Model/ResourceModel/Oauth/Token/CollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Oauth/TokenTest.php | 2 +- app/code/Magento/Integration/Test/Unit/Oauth/OauthTest.php | 2 +- app/code/Magento/Integration/etc/adminhtml/di.xml | 2 +- app/code/Magento/Integration/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Integration/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Integration/etc/adminhtml/system.xml | 2 +- app/code/Magento/Integration/etc/cache.xml | 2 +- app/code/Magento/Integration/etc/config.xml | 2 +- app/code/Magento/Integration/etc/crontab.xml | 2 +- app/code/Magento/Integration/etc/di.xml | 2 +- app/code/Magento/Integration/etc/frontend/routes.xml | 2 +- app/code/Magento/Integration/etc/integration/api.xsd | 4 ++-- app/code/Magento/Integration/etc/integration/config.xsd | 4 ++-- .../Magento/Integration/etc/integration/integration.xsd | 2 +- .../Integration/etc/integration/integration_base.xsd | 2 +- .../Integration/etc/integration/integration_file.xsd | 2 +- app/code/Magento/Integration/etc/module.xml | 2 +- app/code/Magento/Integration/etc/webapi.xml | 2 +- app/code/Magento/Integration/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_integration_edit.xml | 2 +- .../view/adminhtml/layout/adminhtml_integration_grid.xml | 2 +- .../adminhtml/layout/adminhtml_integration_grid_block.xml | 2 +- .../view/adminhtml/layout/adminhtml_integration_index.xml | 2 +- .../view/adminhtml/layout/adminhtml_integration_new.xml | 2 +- .../layout/adminhtml_integration_permissionsdialog.xml | 2 +- .../adminhtml/layout/adminhtml_integration_tokensdialog.xml | 2 +- .../layout/adminhtml_integration_tokensexchange.xml | 2 +- .../Magento/Integration/view/adminhtml/requirejs-config.js | 4 ++-- .../templates/integration/activate/permissions.phtml | 2 +- .../integration/activate/permissions/tab/webapi.phtml | 2 +- .../adminhtml/templates/integration/popup_container.phtml | 2 +- .../adminhtml/templates/integration/tokens_exchange.phtml | 2 +- .../Integration/view/adminhtml/templates/resourcetree.phtml | 2 +- .../Integration/view/adminhtml/web/js/integration.js | 2 +- app/code/Magento/LayeredNavigation/Block/Navigation.php | 2 +- .../LayeredNavigation/Block/Navigation/FilterRenderer.php | 2 +- .../Block/Navigation/FilterRendererInterface.php | 2 +- .../Magento/LayeredNavigation/Block/Navigation/State.php | 2 +- .../Magento/LayeredNavigation/Model/Aggregation/Status.php | 2 +- .../Model/Attribute/Source/FilterableOptions.php | 2 +- .../Tab/Front/ProductAttributeFormBuildFrontTabObserver.php | 2 +- .../Observer/Grid/ProductAttributeGridBuildObserver.php | 2 +- .../LayeredNavigation/Test/Unit/Block/NavigationTest.php | 2 +- .../Test/Unit/Model/Aggregation/StatusTest.php | 2 +- app/code/Magento/LayeredNavigation/etc/adminhtml/events.xml | 4 ++-- app/code/Magento/LayeredNavigation/etc/adminhtml/system.xml | 2 +- app/code/Magento/LayeredNavigation/etc/config.xml | 2 +- app/code/Magento/LayeredNavigation/etc/di.xml | 2 +- app/code/Magento/LayeredNavigation/etc/frontend/di.xml | 2 +- app/code/Magento/LayeredNavigation/etc/module.xml | 2 +- app/code/Magento/LayeredNavigation/registration.php | 2 +- .../adminhtml/ui_component/product_attribute_add_form.xml | 2 +- .../view/adminhtml/ui_component/product_attributes_grid.xml | 2 +- .../adminhtml/ui_component/product_attributes_listing.xml | 2 +- .../frontend/layout/catalog_category_view_type_layered.xml | 2 +- .../catalog_category_view_type_layered_without_children.xml | 2 +- .../view/frontend/layout/catalogsearch_result_index.xml | 2 +- .../LayeredNavigation/view/frontend/page_layout/1column.xml | 2 +- .../view/frontend/page_layout/2columns-left.xml | 2 +- .../view/frontend/page_layout/2columns-right.xml | 2 +- .../view/frontend/page_layout/3columns.xml | 2 +- .../LayeredNavigation/view/frontend/page_layout/empty.xml | 2 +- .../view/frontend/templates/layer/filter.phtml | 2 +- .../view/frontend/templates/layer/state.phtml | 2 +- .../view/frontend/templates/layer/view.phtml | 2 +- app/code/Magento/Marketplace/Block/Index.php | 2 +- app/code/Magento/Marketplace/Block/Partners.php | 2 +- app/code/Magento/Marketplace/Controller/Adminhtml/Index.php | 2 +- .../Marketplace/Controller/Adminhtml/Index/Index.php | 2 +- .../Magento/Marketplace/Controller/Adminhtml/Partners.php | 2 +- .../Marketplace/Controller/Adminhtml/Partners/Index.php | 2 +- app/code/Magento/Marketplace/Helper/Cache.php | 2 +- app/code/Magento/Marketplace/Model/Partners.php | 2 +- .../Magento/Marketplace/Test/Unit/Block/PartnersTest.php | 2 +- .../Marketplace/Test/Unit/Controller/Index/IndexTest.php | 2 +- .../Marketplace/Test/Unit/Controller/Partners/IndexTest.php | 2 +- app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php | 2 +- .../Magento/Marketplace/Test/Unit/Model/PartnersTest.php | 2 +- app/code/Magento/Marketplace/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Marketplace/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Marketplace/etc/module.xml | 2 +- app/code/Magento/Marketplace/registration.php | 2 +- .../view/adminhtml/layout/marketplace_index_index.xml | 2 +- .../view/adminhtml/layout/marketplace_partners_index.xml | 2 +- .../Marketplace/view/adminhtml/templates/index.phtml | 2 +- .../Marketplace/view/adminhtml/templates/partners.phtml | 2 +- app/code/Magento/Marketplace/view/adminhtml/web/default.js | 2 +- app/code/Magento/MediaStorage/App/Media.php | 2 +- .../System/Config/System/Storage/Media/Synchronize.php | 2 +- .../Controller/Adminhtml/System/Config/System/Storage.php | 2 +- .../Adminhtml/System/Config/System/Storage/Status.php | 2 +- .../Adminhtml/System/Config/System/Storage/Synchronize.php | 2 +- app/code/Magento/MediaStorage/Helper/File/Media.php | 2 +- app/code/Magento/MediaStorage/Helper/File/Storage.php | 2 +- .../Magento/MediaStorage/Helper/File/Storage/Database.php | 2 +- .../MediaStorage/Model/Asset/Plugin/CleanMergedJsCss.php | 2 +- .../Model/Config/Backend/Storage/Media/Database.php | 2 +- .../Model/Config/Source/Storage/Media/Database.php | 2 +- .../Model/Config/Source/Storage/Media/Storage.php | 2 +- app/code/Magento/MediaStorage/Model/File/Storage.php | 2 +- app/code/Magento/MediaStorage/Model/File/Storage/Config.php | 2 +- .../Magento/MediaStorage/Model/File/Storage/Database.php | 2 +- .../Model/File/Storage/Database/AbstractDatabase.php | 2 +- .../MediaStorage/Model/File/Storage/Directory/Database.php | 2 +- app/code/Magento/MediaStorage/Model/File/Storage/File.php | 2 +- app/code/Magento/MediaStorage/Model/File/Storage/Flag.php | 2 +- .../Magento/MediaStorage/Model/File/Storage/Request.php | 2 +- .../Magento/MediaStorage/Model/File/Storage/Response.php | 2 +- .../MediaStorage/Model/File/Storage/Synchronization.php | 2 +- app/code/Magento/MediaStorage/Model/File/Uploader.php | 2 +- .../MediaStorage/Model/File/Validator/AvailablePath.php | 2 +- .../Model/File/Validator/NotProtectedExtension.php | 2 +- .../Model/ResourceModel/File/Storage/AbstractStorage.php | 2 +- .../Model/ResourceModel/File/Storage/Database.php | 2 +- .../Model/ResourceModel/File/Storage/Directory/Database.php | 2 +- .../MediaStorage/Model/ResourceModel/File/Storage/File.php | 2 +- app/code/Magento/MediaStorage/Test/Unit/App/MediaTest.php | 2 +- .../MediaStorage/Test/Unit/Helper/File/MediaTest.php | 2 +- .../Test/Unit/Helper/File/Storage/DatabaseTest.php | 2 +- .../MediaStorage/Test/Unit/Helper/File/StorageTest.php | 2 +- .../Test/Unit/Model/Asset/Plugin/CleanMergedJsCssTest.php | 2 +- .../Unit/Model/Config/Source/Storage/Media/DatabaseTest.php | 2 +- .../Test/Unit/Model/File/Storage/ConfigTest.php | 2 +- .../Test/Unit/Model/File/Storage/Directory/DatabaseTest.php | 2 +- .../MediaStorage/Test/Unit/Model/File/Storage/MediaTest.php | 2 +- .../Test/Unit/Model/File/Storage/RequestTest.php | 2 +- .../Test/Unit/Model/File/Storage/SynchronizationTest.php | 2 +- .../Test/Unit/Model/File/Storage/_files/config.xml | 2 +- .../Test/Unit/Model/ResourceModel/File/Storage/FileTest.php | 2 +- app/code/Magento/MediaStorage/etc/adminhtml/routes.xml | 4 ++-- app/code/Magento/MediaStorage/etc/adminhtml/system.xml | 2 +- app/code/Magento/MediaStorage/etc/di.xml | 4 ++-- app/code/Magento/MediaStorage/etc/module.xml | 2 +- app/code/Magento/MediaStorage/registration.php | 2 +- .../system/config/system/storage/media/synchronize.phtml | 2 +- .../Msrp/Block/Adminhtml/Product/Helper/Form/Type.php | 2 +- .../Msrp/Block/Adminhtml/Product/Helper/Form/Type/Price.php | 2 +- app/code/Magento/Msrp/Block/Popup.php | 2 +- app/code/Magento/Msrp/Block/Total.php | 2 +- app/code/Magento/Msrp/Helper/Data.php | 2 +- app/code/Magento/Msrp/Model/Config.php | 2 +- app/code/Magento/Msrp/Model/Msrp.php | 2 +- .../Magento/Msrp/Model/Product/Attribute/Source/Type.php | 2 +- .../Msrp/Model/Product/Attribute/Source/Type/Price.php | 2 +- app/code/Magento/Msrp/Model/Product/Options.php | 2 +- app/code/Magento/Msrp/Model/Quote/Address/CanApplyMsrp.php | 2 +- app/code/Magento/Msrp/Model/Quote/Msrp.php | 2 +- .../Observer/Frontend/Quote/SetCanApplyMsrpObserver.php | 2 +- .../Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php | 2 +- app/code/Magento/Msrp/Pricing/Price/MsrpPrice.php | 2 +- app/code/Magento/Msrp/Pricing/Price/MsrpPriceInterface.php | 2 +- app/code/Magento/Msrp/Setup/InstallData.php | 2 +- app/code/Magento/Msrp/Test/Unit/Helper/DataTest.php | 2 +- .../Unit/Model/Product/Attribute/Source/Type/PriceTest.php | 2 +- .../Observer/Frontend/Quote/SetCanApplyMsrpObserverTest.php | 2 +- .../Magento/Msrp/Test/Unit/Pricing/Price/MsrpPriceTest.php | 2 +- .../Unit/Ui/DataProvider/Product/Form/Modifier/MsrpTest.php | 2 +- .../Msrp/Ui/DataProvider/Product/Form/Modifier/Msrp.php | 2 +- app/code/Magento/Msrp/etc/adminhtml/di.xml | 2 +- app/code/Magento/Msrp/etc/adminhtml/system.xml | 2 +- app/code/Magento/Msrp/etc/catalog_attributes.xml | 2 +- app/code/Magento/Msrp/etc/config.xml | 2 +- app/code/Magento/Msrp/etc/di.xml | 2 +- app/code/Magento/Msrp/etc/frontend/events.xml | 2 +- app/code/Magento/Msrp/etc/module.xml | 2 +- app/code/Magento/Msrp/etc/webapi_rest/events.xml | 2 +- app/code/Magento/Msrp/etc/webapi_soap/events.xml | 2 +- app/code/Magento/Msrp/registration.php | 2 +- .../Msrp/view/base/layout/catalog_product_prices.xml | 2 +- .../Msrp/view/base/templates/product/price/msrp.phtml | 2 +- app/code/Magento/Msrp/view/base/web/js/msrp.js | 2 +- .../Msrp/view/frontend/layout/catalog_category_view.xml | 2 +- .../view/frontend/layout/catalog_product_compare_index.xml | 2 +- .../Msrp/view/frontend/layout/catalog_product_view.xml | 2 +- .../layout/catalog_product_view_type_downloadable.xml | 2 +- .../view/frontend/layout/catalogsearch_advanced_result.xml | 2 +- .../view/frontend/layout/catalogsearch_result_index.xml | 2 +- .../Msrp/view/frontend/layout/checkout_cart_index.xml | 2 +- .../layout/checkout_cart_sidebar_total_renderers.xml | 2 +- .../Msrp/view/frontend/layout/checkout_onepage_failure.xml | 2 +- .../Msrp/view/frontend/layout/checkout_onepage_success.xml | 2 +- app/code/Magento/Msrp/view/frontend/layout/msrp_popup.xml | 2 +- .../Msrp/view/frontend/layout/review_product_list.xml | 2 +- .../layout/wishlist_index_configure_type_downloadable.xml | 2 +- .../Msrp/view/frontend/layout/wishlist_index_index.xml | 2 +- .../Msrp/view/frontend/layout/wishlist_search_view.xml | 2 +- .../Msrp/view/frontend/layout/wishlist_shared_index.xml | 2 +- app/code/Magento/Msrp/view/frontend/requirejs-config.js | 4 ++-- .../Msrp/view/frontend/templates/cart/subtotal.phtml | 2 +- .../Magento/Msrp/view/frontend/templates/cart/totals.phtml | 2 +- app/code/Magento/Msrp/view/frontend/templates/popup.phtml | 2 +- .../frontend/templates/render/item/price_msrp_item.phtml | 2 +- .../frontend/templates/render/item/price_msrp_rss.phtml | 2 +- .../web/js/view/checkout/minicart/subtotal/totals.js | 2 +- .../web/template/checkout/minicart/subtotal/totals.html | 2 +- .../Multishipping/Block/Checkout/AbstractMultishipping.php | 2 +- .../Magento/Multishipping/Block/Checkout/Address/Select.php | 2 +- app/code/Magento/Multishipping/Block/Checkout/Addresses.php | 2 +- app/code/Magento/Multishipping/Block/Checkout/Billing.php | 2 +- .../Magento/Multishipping/Block/Checkout/Billing/Items.php | 2 +- app/code/Magento/Multishipping/Block/Checkout/Link.php | 2 +- app/code/Magento/Multishipping/Block/Checkout/Overview.php | 2 +- .../Magento/Multishipping/Block/Checkout/Payment/Info.php | 2 +- app/code/Magento/Multishipping/Block/Checkout/Shipping.php | 2 +- app/code/Magento/Multishipping/Block/Checkout/State.php | 2 +- app/code/Magento/Multishipping/Block/Checkout/Success.php | 2 +- app/code/Magento/Multishipping/Controller/Checkout.php | 2 +- .../Magento/Multishipping/Controller/Checkout/Address.php | 2 +- .../Controller/Checkout/Address/EditAddress.php | 2 +- .../Controller/Checkout/Address/EditBilling.php | 2 +- .../Controller/Checkout/Address/EditShipping.php | 2 +- .../Controller/Checkout/Address/EditShippingPost.php | 2 +- .../Controller/Checkout/Address/NewBilling.php | 2 +- .../Controller/Checkout/Address/NewShipping.php | 2 +- .../Controller/Checkout/Address/SaveBilling.php | 2 +- .../Controller/Checkout/Address/SelectBilling.php | 2 +- .../Controller/Checkout/Address/SetBilling.php | 2 +- .../Controller/Checkout/Address/ShippingSaved.php | 2 +- .../Magento/Multishipping/Controller/Checkout/Addresses.php | 2 +- .../Multishipping/Controller/Checkout/AddressesPost.php | 2 +- .../Multishipping/Controller/Checkout/BackToAddresses.php | 2 +- .../Multishipping/Controller/Checkout/BackToBilling.php | 2 +- .../Multishipping/Controller/Checkout/BackToShipping.php | 2 +- .../Magento/Multishipping/Controller/Checkout/Billing.php | 2 +- .../Magento/Multishipping/Controller/Checkout/Index.php | 2 +- .../Magento/Multishipping/Controller/Checkout/Login.php | 2 +- .../Magento/Multishipping/Controller/Checkout/Overview.php | 2 +- .../Multishipping/Controller/Checkout/OverviewPost.php | 2 +- .../Magento/Multishipping/Controller/Checkout/Plugin.php | 2 +- .../Magento/Multishipping/Controller/Checkout/Register.php | 2 +- .../Multishipping/Controller/Checkout/RemoveItem.php | 2 +- .../Magento/Multishipping/Controller/Checkout/Shipping.php | 2 +- .../Multishipping/Controller/Checkout/ShippingPost.php | 2 +- .../Magento/Multishipping/Controller/Checkout/Success.php | 2 +- app/code/Magento/Multishipping/Helper/Data.php | 2 +- app/code/Magento/Multishipping/Helper/Url.php | 2 +- .../Multishipping/Model/Cart/Controller/CartPlugin.php | 2 +- .../Multishipping/Model/Checkout/Type/Multishipping.php | 2 +- .../Model/Checkout/Type/Multishipping/Plugin.php | 2 +- .../Model/Checkout/Type/Multishipping/State.php | 2 +- .../Model/Payment/Method/Specification/Enabled.php | 2 +- .../Test/Unit/Block/Checkout/Address/SelectTest.php | 2 +- .../Test/Unit/Block/Checkout/Billing/ItemsTest.php | 2 +- .../Multishipping/Test/Unit/Block/Checkout/OverviewTest.php | 2 +- .../Test/Unit/Block/Checkout/Payment/InfoTest.php | 2 +- .../Multishipping/Test/Unit/Block/Checkout/ShippingTest.php | 2 +- .../Multishipping/Test/Unit/Block/Checkout/StateTest.php | 2 +- .../Multishipping/Test/Unit/Block/Checkout/SuccessTest.php | 2 +- .../Unit/Controller/Checkout/Address/EditAddressTest.php | 2 +- .../Unit/Controller/Checkout/Address/EditBillingTest.php | 2 +- .../Unit/Controller/Checkout/Address/EditShippingTest.php | 2 +- .../Unit/Controller/Checkout/Address/NewBillingTest.php | 2 +- .../Unit/Controller/Checkout/Address/NewShippingTest.php | 2 +- .../Unit/Controller/Checkout/Address/ShippingSavedTest.php | 2 +- .../Test/Unit/Controller/Checkout/PluginTest.php | 2 +- .../Magento/Multishipping/Test/Unit/Helper/DataTest.php | 2 +- .../Test/Unit/Model/Cart/Controller/CartPluginTest.php | 2 +- .../Unit/Model/Checkout/Type/Multishipping/PluginTest.php | 2 +- .../Test/Unit/Model/Checkout/Type/MultishippingTest.php | 2 +- .../Unit/Model/Payment/Method/Specification/EnabledTest.php | 2 +- app/code/Magento/Multishipping/etc/acl.xml | 2 +- app/code/Magento/Multishipping/etc/adminhtml/system.xml | 2 +- app/code/Magento/Multishipping/etc/config.xml | 2 +- app/code/Magento/Multishipping/etc/frontend/di.xml | 2 +- app/code/Magento/Multishipping/etc/frontend/page_types.xml | 2 +- app/code/Magento/Multishipping/etc/frontend/routes.xml | 2 +- app/code/Magento/Multishipping/etc/frontend/sections.xml | 2 +- app/code/Magento/Multishipping/etc/module.xml | 2 +- app/code/Magento/Multishipping/registration.php | 2 +- .../view/frontend/layout/checkout_cart_index.xml | 2 +- .../view/frontend/layout/multishipping_checkout.xml | 2 +- .../layout/multishipping_checkout_address_editaddress.xml | 2 +- .../layout/multishipping_checkout_address_editbilling.xml | 2 +- .../layout/multishipping_checkout_address_editshipping.xml | 2 +- .../layout/multishipping_checkout_address_newbilling.xml | 2 +- .../layout/multishipping_checkout_address_newshipping.xml | 2 +- .../layout/multishipping_checkout_address_select.xml | 2 +- .../layout/multishipping_checkout_address_selectbilling.xml | 2 +- .../frontend/layout/multishipping_checkout_addresses.xml | 2 +- .../view/frontend/layout/multishipping_checkout_billing.xml | 2 +- .../layout/multishipping_checkout_customer_address.xml | 2 +- .../view/frontend/layout/multishipping_checkout_login.xml | 2 +- .../frontend/layout/multishipping_checkout_overview.xml | 2 +- .../frontend/layout/multishipping_checkout_register.xml | 2 +- .../frontend/layout/multishipping_checkout_shipping.xml | 2 +- .../view/frontend/layout/multishipping_checkout_success.xml | 2 +- .../Magento/Multishipping/view/frontend/requirejs-config.js | 4 ++-- .../view/frontend/templates/checkout/address/select.phtml | 2 +- .../view/frontend/templates/checkout/addresses.phtml | 2 +- .../view/frontend/templates/checkout/billing.phtml | 2 +- .../view/frontend/templates/checkout/billing/items.phtml | 2 +- .../view/frontend/templates/checkout/item/default.phtml | 2 +- .../view/frontend/templates/checkout/link.phtml | 2 +- .../view/frontend/templates/checkout/overview.phtml | 2 +- .../view/frontend/templates/checkout/overview/item.phtml | 2 +- .../view/frontend/templates/checkout/shipping.phtml | 2 +- .../view/frontend/templates/checkout/state.phtml | 2 +- .../view/frontend/templates/checkout/success.phtml | 2 +- .../view/frontend/templates/js/components.phtml | 2 +- .../frontend/templates/multishipping/item/default.phtml | 2 +- .../Multishipping/view/frontend/web/js/multi-shipping.js | 4 ++-- .../Magento/Multishipping/view/frontend/web/js/overview.js | 2 +- .../Magento/Multishipping/view/frontend/web/js/payment.js | 2 +- .../Magento/NewRelicReporting/Model/Apm/Deployments.php | 2 +- app/code/Magento/NewRelicReporting/Model/Config.php | 2 +- app/code/Magento/NewRelicReporting/Model/Counter.php | 2 +- app/code/Magento/NewRelicReporting/Model/Counts.php | 2 +- app/code/Magento/NewRelicReporting/Model/Cron.php | 2 +- .../Magento/NewRelicReporting/Model/Cron/ReportCounts.php | 2 +- .../NewRelicReporting/Model/Cron/ReportModulesInfo.php | 2 +- .../NewRelicReporting/Model/Cron/ReportNewRelicCron.php | 2 +- app/code/Magento/NewRelicReporting/Model/CronEvent.php | 2 +- app/code/Magento/NewRelicReporting/Model/Module.php | 2 +- app/code/Magento/NewRelicReporting/Model/Module/Collect.php | 2 +- .../Magento/NewRelicReporting/Model/NewRelicWrapper.php | 2 +- .../NewRelicReporting/Model/Observer/CheckConfig.php | 2 +- .../Model/Observer/ReportConcurrentAdmins.php | 2 +- .../Model/Observer/ReportConcurrentAdminsToNewRelic.php | 2 +- .../Model/Observer/ReportConcurrentUsers.php | 2 +- .../Model/Observer/ReportConcurrentUsersToNewRelic.php | 2 +- .../NewRelicReporting/Model/Observer/ReportOrderPlaced.php | 2 +- .../Model/Observer/ReportOrderPlacedToNewRelic.php | 2 +- .../Model/Observer/ReportProductDeleted.php | 2 +- .../Model/Observer/ReportProductDeletedToNewRelic.php | 2 +- .../NewRelicReporting/Model/Observer/ReportProductSaved.php | 2 +- .../Model/Observer/ReportProductSavedToNewRelic.php | 2 +- .../Model/Observer/ReportSystemCacheFlush.php | 2 +- .../Model/Observer/ReportSystemCacheFlushToNewRelic.php | 2 +- app/code/Magento/NewRelicReporting/Model/Orders.php | 2 +- .../NewRelicReporting/Model/ResourceModel/Counts.php | 2 +- .../Model/ResourceModel/Counts/Collection.php | 2 +- .../NewRelicReporting/Model/ResourceModel/Module.php | 2 +- .../Model/ResourceModel/Module/Collection.php | 2 +- .../NewRelicReporting/Model/ResourceModel/Orders.php | 2 +- .../Model/ResourceModel/Orders/Collection.php | 2 +- .../NewRelicReporting/Model/ResourceModel/System.php | 2 +- .../Model/ResourceModel/System/Collection.php | 2 +- .../Magento/NewRelicReporting/Model/ResourceModel/Users.php | 2 +- .../Model/ResourceModel/Users/Collection.php | 2 +- app/code/Magento/NewRelicReporting/Model/System.php | 2 +- app/code/Magento/NewRelicReporting/Model/Users.php | 2 +- app/code/Magento/NewRelicReporting/Setup/InstallSchema.php | 2 +- .../Test/Unit/Model/Apm/DeploymentsTest.php | 2 +- .../NewRelicReporting/Test/Unit/Model/CounterTest.php | 2 +- .../Test/Unit/Model/Cron/ReportCountsTest.php | 2 +- .../Test/Unit/Model/Cron/ReportModulesInfoTest.php | 2 +- .../Test/Unit/Model/Cron/ReportNewRelicCronTest.php | 2 +- .../NewRelicReporting/Test/Unit/Model/CronEventTest.php | 2 +- .../Magento/NewRelicReporting/Test/Unit/Model/CronTest.php | 2 +- .../Test/Unit/Model/Module/CollectTest.php | 2 +- .../Test/Unit/Model/Observer/CheckConfigTest.php | 2 +- .../Test/Unit/Model/Observer/ReportConcurrentAdminsTest.php | 2 +- .../Model/Observer/ReportConcurrentAdminsToNewRelicTest.php | 2 +- .../Test/Unit/Model/Observer/ReportConcurrentUsersTest.php | 2 +- .../Model/Observer/ReportConcurrentUsersToNewRelicTest.php | 2 +- .../Test/Unit/Model/Observer/ReportOrderPlacedTest.php | 2 +- .../Unit/Model/Observer/ReportOrderPlacedToNewRelicTest.php | 2 +- .../Test/Unit/Model/Observer/ReportProductDeletedTest.php | 2 +- .../Model/Observer/ReportProductDeletedToNewRelicTest.php | 2 +- .../Test/Unit/Model/Observer/ReportProductSavedTest.php | 2 +- .../Model/Observer/ReportProductSavedToNewRelicTest.php | 2 +- .../Test/Unit/Model/Observer/ReportSystemCacheFlushTest.php | 2 +- .../Model/Observer/ReportSystemCacheFlushToNewRelicTest.php | 2 +- app/code/Magento/NewRelicReporting/etc/acl.xml | 2 +- app/code/Magento/NewRelicReporting/etc/adminhtml/events.xml | 2 +- app/code/Magento/NewRelicReporting/etc/adminhtml/system.xml | 2 +- app/code/Magento/NewRelicReporting/etc/config.xml | 2 +- app/code/Magento/NewRelicReporting/etc/crontab.xml | 2 +- app/code/Magento/NewRelicReporting/etc/di.xml | 2 +- app/code/Magento/NewRelicReporting/etc/events.xml | 2 +- app/code/Magento/NewRelicReporting/etc/frontend/events.xml | 2 +- app/code/Magento/NewRelicReporting/etc/module.xml | 2 +- app/code/Magento/NewRelicReporting/registration.php | 2 +- app/code/Magento/Newsletter/Block/Adminhtml/Problem.php | 2 +- .../Block/Adminhtml/Problem/Grid/Filter/Checkbox.php | 2 +- .../Block/Adminhtml/Problem/Grid/Renderer/Checkbox.php | 2 +- app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit.php | 2 +- .../Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php | 2 +- .../Block/Adminhtml/Queue/Grid/Renderer/Action.php | 2 +- .../Magento/Newsletter/Block/Adminhtml/Queue/Preview.php | 2 +- .../Newsletter/Block/Adminhtml/Queue/Preview/Form.php | 2 +- app/code/Magento/Newsletter/Block/Adminhtml/Subscriber.php | 2 +- .../Magento/Newsletter/Block/Adminhtml/Subscriber/Grid.php | 2 +- .../Block/Adminhtml/Subscriber/Grid/Filter/Checkbox.php | 2 +- .../Block/Adminhtml/Subscriber/Grid/Filter/Website.php | 2 +- .../Block/Adminhtml/Subscriber/Grid/Renderer/Checkbox.php | 2 +- app/code/Magento/Newsletter/Block/Adminhtml/Template.php | 2 +- .../Magento/Newsletter/Block/Adminhtml/Template/Edit.php | 2 +- .../Newsletter/Block/Adminhtml/Template/Edit/Form.php | 2 +- .../Magento/Newsletter/Block/Adminhtml/Template/Grid.php | 2 +- .../Block/Adminhtml/Template/Grid/Renderer/Action.php | 2 +- .../Block/Adminhtml/Template/Grid/Renderer/Sender.php | 2 +- .../Magento/Newsletter/Block/Adminhtml/Template/Preview.php | 2 +- .../Newsletter/Block/Adminhtml/Template/Preview/Form.php | 2 +- app/code/Magento/Newsletter/Block/Subscribe.php | 2 +- .../Block/Subscribe/Grid/Options/GroupOptionHash.php | 2 +- .../Block/Subscribe/Grid/Options/StoreOptionHash.php | 2 +- .../Magento/Newsletter/Controller/Adminhtml/Problem.php | 2 +- .../Newsletter/Controller/Adminhtml/Problem/Grid.php | 2 +- .../Newsletter/Controller/Adminhtml/Problem/Index.php | 2 +- app/code/Magento/Newsletter/Controller/Adminhtml/Queue.php | 2 +- .../Newsletter/Controller/Adminhtml/Queue/Cancel.php | 2 +- .../Magento/Newsletter/Controller/Adminhtml/Queue/Drop.php | 2 +- .../Magento/Newsletter/Controller/Adminhtml/Queue/Edit.php | 2 +- .../Magento/Newsletter/Controller/Adminhtml/Queue/Grid.php | 2 +- .../Magento/Newsletter/Controller/Adminhtml/Queue/Index.php | 2 +- .../Magento/Newsletter/Controller/Adminhtml/Queue/Pause.php | 2 +- .../Newsletter/Controller/Adminhtml/Queue/Preview.php | 2 +- .../Newsletter/Controller/Adminhtml/Queue/Resume.php | 2 +- .../Magento/Newsletter/Controller/Adminhtml/Queue/Save.php | 2 +- .../Newsletter/Controller/Adminhtml/Queue/Sending.php | 2 +- .../Magento/Newsletter/Controller/Adminhtml/Queue/Start.php | 2 +- .../Magento/Newsletter/Controller/Adminhtml/Subscriber.php | 2 +- .../Controller/Adminhtml/Subscriber/ExportCsv.php | 2 +- .../Controller/Adminhtml/Subscriber/ExportXml.php | 2 +- .../Newsletter/Controller/Adminhtml/Subscriber/Grid.php | 2 +- .../Newsletter/Controller/Adminhtml/Subscriber/Index.php | 2 +- .../Controller/Adminhtml/Subscriber/MassDelete.php | 2 +- .../Controller/Adminhtml/Subscriber/MassUnsubscribe.php | 2 +- .../Magento/Newsletter/Controller/Adminhtml/Template.php | 2 +- .../Newsletter/Controller/Adminhtml/Template/Delete.php | 2 +- .../Newsletter/Controller/Adminhtml/Template/Drop.php | 2 +- .../Newsletter/Controller/Adminhtml/Template/Edit.php | 2 +- .../Newsletter/Controller/Adminhtml/Template/Grid.php | 2 +- .../Newsletter/Controller/Adminhtml/Template/Index.php | 2 +- .../Newsletter/Controller/Adminhtml/Template/NewAction.php | 2 +- .../Newsletter/Controller/Adminhtml/Template/Preview.php | 2 +- .../Newsletter/Controller/Adminhtml/Template/Save.php | 2 +- app/code/Magento/Newsletter/Controller/Manage.php | 2 +- app/code/Magento/Newsletter/Controller/Manage/Index.php | 2 +- app/code/Magento/Newsletter/Controller/Manage/Save.php | 2 +- app/code/Magento/Newsletter/Controller/Subscriber.php | 2 +- .../Magento/Newsletter/Controller/Subscriber/Confirm.php | 2 +- .../Magento/Newsletter/Controller/Subscriber/NewAction.php | 2 +- .../Newsletter/Controller/Subscriber/Unsubscribe.php | 2 +- app/code/Magento/Newsletter/Helper/Data.php | 2 +- app/code/Magento/Newsletter/Model/Observer.php | 2 +- app/code/Magento/Newsletter/Model/Plugin/CustomerPlugin.php | 2 +- app/code/Magento/Newsletter/Model/Problem.php | 2 +- app/code/Magento/Newsletter/Model/Queue.php | 2 +- app/code/Magento/Newsletter/Model/Queue/Options/Status.php | 2 +- .../Magento/Newsletter/Model/Queue/TransportBuilder.php | 2 +- .../Newsletter/Model/ResourceModel/Grid/Collection.php | 2 +- app/code/Magento/Newsletter/Model/ResourceModel/Problem.php | 2 +- .../Newsletter/Model/ResourceModel/Problem/Collection.php | 2 +- app/code/Magento/Newsletter/Model/ResourceModel/Queue.php | 2 +- .../Newsletter/Model/ResourceModel/Queue/Collection.php | 2 +- .../Model/ResourceModel/Queue/Grid/Collection.php | 2 +- .../Magento/Newsletter/Model/ResourceModel/Subscriber.php | 2 +- .../Model/ResourceModel/Subscriber/Collection.php | 2 +- .../Model/ResourceModel/Subscriber/Grid/Collection.php | 2 +- .../Magento/Newsletter/Model/ResourceModel/Template.php | 2 +- .../Newsletter/Model/ResourceModel/Template/Collection.php | 2 +- app/code/Magento/Newsletter/Model/Session.php | 2 +- app/code/Magento/Newsletter/Model/Subscriber.php | 2 +- app/code/Magento/Newsletter/Model/Template.php | 2 +- app/code/Magento/Newsletter/Model/Template/Filter.php | 2 +- app/code/Magento/Newsletter/Setup/InstallSchema.php | 2 +- .../Test/Unit/Block/Adminhtml/Queue/PreviewTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Template/PreviewTest.php | 2 +- .../Newsletter/Test/Unit/Controller/Manage/SaveTest.php | 2 +- .../Test/Unit/Model/Plugin/CustomerPluginTest.php | 2 +- .../Test/Unit/Model/Queue/TransportBuilderTest.php | 2 +- app/code/Magento/Newsletter/Test/Unit/Model/QueueTest.php | 2 +- .../Magento/Newsletter/Test/Unit/Model/SubscriberTest.php | 2 +- .../Newsletter/Test/Unit/Model/Template/FilterTest.php | 2 +- .../Magento/Newsletter/Test/Unit/Model/TemplateTest.php | 2 +- app/code/Magento/Newsletter/etc/acl.xml | 2 +- app/code/Magento/Newsletter/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Newsletter/etc/adminhtml/routes.xml | 4 ++-- app/code/Magento/Newsletter/etc/adminhtml/system.xml | 2 +- app/code/Magento/Newsletter/etc/config.xml | 2 +- app/code/Magento/Newsletter/etc/crontab.xml | 2 +- app/code/Magento/Newsletter/etc/di.xml | 2 +- app/code/Magento/Newsletter/etc/email_templates.xml | 2 +- app/code/Magento/Newsletter/etc/extension_attributes.xml | 4 ++-- app/code/Magento/Newsletter/etc/frontend/di.xml | 2 +- app/code/Magento/Newsletter/etc/frontend/page_types.xml | 2 +- app/code/Magento/Newsletter/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Newsletter/etc/module.xml | 2 +- app/code/Magento/Newsletter/registration.php | 2 +- .../view/adminhtml/layout/customer_index_edit.xml | 2 +- .../view/adminhtml/layout/newsletter_problem_block.xml | 2 +- .../view/adminhtml/layout/newsletter_problem_grid.xml | 2 +- .../view/adminhtml/layout/newsletter_problem_index.xml | 2 +- .../view/adminhtml/layout/newsletter_queue_edit.xml | 2 +- .../view/adminhtml/layout/newsletter_queue_grid.xml | 2 +- .../view/adminhtml/layout/newsletter_queue_grid_block.xml | 2 +- .../view/adminhtml/layout/newsletter_queue_index.xml | 2 +- .../view/adminhtml/layout/newsletter_queue_preview.xml | 2 +- .../adminhtml/layout/newsletter_queue_preview_popup.xml | 2 +- .../view/adminhtml/layout/newsletter_subscriber_block.xml | 2 +- .../adminhtml/layout/newsletter_subscriber_exportcsv.xml | 2 +- .../adminhtml/layout/newsletter_subscriber_exportxml.xml | 2 +- .../view/adminhtml/layout/newsletter_subscriber_grid.xml | 2 +- .../view/adminhtml/layout/newsletter_subscriber_index.xml | 2 +- .../view/adminhtml/layout/newsletter_template_edit.xml | 2 +- .../view/adminhtml/layout/newsletter_template_preview.xml | 2 +- .../adminhtml/layout/newsletter_template_preview_popup.xml | 2 +- .../Magento/Newsletter/view/adminhtml/layout/preview.xml | 2 +- .../view/adminhtml/templates/preview/iframeswitcher.phtml | 2 +- .../Newsletter/view/adminhtml/templates/preview/store.phtml | 2 +- .../Newsletter/view/adminhtml/templates/problem/list.phtml | 2 +- .../Newsletter/view/adminhtml/templates/queue/edit.phtml | 2 +- .../Newsletter/view/adminhtml/templates/queue/list.phtml | 2 +- .../Newsletter/view/adminhtml/templates/queue/preview.phtml | 2 +- .../view/adminhtml/templates/subscriber/list.phtml | 2 +- .../Newsletter/view/adminhtml/templates/template/edit.phtml | 2 +- .../Newsletter/view/adminhtml/templates/template/list.phtml | 2 +- .../view/adminhtml/templates/template/preview.phtml | 2 +- .../Newsletter/view/frontend/email/subscr_confirm.html | 2 +- .../Newsletter/view/frontend/email/subscr_success.html | 2 +- .../Newsletter/view/frontend/email/unsub_success.html | 2 +- .../Newsletter/view/frontend/layout/customer_account.xml | 2 +- .../Magento/Newsletter/view/frontend/layout/default.xml | 2 +- .../view/frontend/layout/newsletter_manage_index.xml | 2 +- .../Newsletter/view/frontend/templates/js/components.phtml | 2 +- .../Newsletter/view/frontend/templates/subscribe.phtml | 2 +- .../OfflinePayments/Block/Form/AbstractInstruction.php | 2 +- .../Magento/OfflinePayments/Block/Form/Banktransfer.php | 2 +- .../Magento/OfflinePayments/Block/Form/Cashondelivery.php | 2 +- app/code/Magento/OfflinePayments/Block/Form/Checkmo.php | 2 +- .../Magento/OfflinePayments/Block/Form/Purchaseorder.php | 2 +- app/code/Magento/OfflinePayments/Block/Info/Checkmo.php | 2 +- .../Magento/OfflinePayments/Block/Info/Purchaseorder.php | 2 +- app/code/Magento/OfflinePayments/Model/Banktransfer.php | 2 +- app/code/Magento/OfflinePayments/Model/Cashondelivery.php | 2 +- app/code/Magento/OfflinePayments/Model/Checkmo.php | 2 +- .../Magento/OfflinePayments/Model/CheckmoConfigProvider.php | 2 +- .../OfflinePayments/Model/InstructionsConfigProvider.php | 2 +- app/code/Magento/OfflinePayments/Model/Purchaseorder.php | 2 +- .../Observer/BeforeOrderPaymentSaveObserver.php | 2 +- .../Test/Unit/Block/Form/AbstractInstructionTest.php | 2 +- .../OfflinePayments/Test/Unit/Block/Info/CheckmoTest.php | 2 +- .../OfflinePayments/Test/Unit/Model/BanktransferTest.php | 2 +- .../OfflinePayments/Test/Unit/Model/CashondeliveryTest.php | 2 +- .../Test/Unit/Model/CheckmoConfigProviderTest.php | 2 +- .../Magento/OfflinePayments/Test/Unit/Model/CheckmoTest.php | 2 +- .../Test/Unit/Model/InstructionsConfigProviderTest.php | 2 +- .../OfflinePayments/Test/Unit/Model/PurchaseorderTest.php | 2 +- .../Unit/Observer/BeforeOrderPaymentSaveObserverTest.php | 2 +- app/code/Magento/OfflinePayments/etc/adminhtml/system.xml | 2 +- app/code/Magento/OfflinePayments/etc/config.xml | 2 +- app/code/Magento/OfflinePayments/etc/events.xml | 2 +- app/code/Magento/OfflinePayments/etc/frontend/di.xml | 2 +- app/code/Magento/OfflinePayments/etc/module.xml | 2 +- app/code/Magento/OfflinePayments/etc/payment.xml | 2 +- app/code/Magento/OfflinePayments/registration.php | 2 +- .../view/adminhtml/templates/form/banktransfer.phtml | 2 +- .../view/adminhtml/templates/form/cashondelivery.phtml | 2 +- .../view/adminhtml/templates/form/checkmo.phtml | 2 +- .../view/adminhtml/templates/form/purchaseorder.phtml | 2 +- .../view/adminhtml/templates/info/checkmo.phtml | 2 +- .../view/adminhtml/templates/info/pdf/checkmo.phtml | 2 +- .../view/adminhtml/templates/info/pdf/purchaseorder.phtml | 2 +- .../view/adminhtml/templates/info/purchaseorder.phtml | 2 +- .../view/frontend/layout/checkout_index_index.xml | 4 ++-- .../view/frontend/templates/form/banktransfer.phtml | 2 +- .../view/frontend/templates/form/cashondelivery.phtml | 2 +- .../view/frontend/templates/form/checkmo.phtml | 2 +- .../view/frontend/templates/form/purchaseorder.phtml | 2 +- .../view/frontend/templates/info/checkmo.phtml | 2 +- .../view/frontend/templates/info/purchaseorder.phtml | 2 +- .../js/view/payment/method-renderer/banktransfer-method.js | 2 +- .../view/payment/method-renderer/cashondelivery-method.js | 2 +- .../web/js/view/payment/method-renderer/checkmo-method.js | 2 +- .../js/view/payment/method-renderer/purchaseorder-method.js | 2 +- .../view/frontend/web/js/view/payment/offline-payments.js | 4 ++-- .../view/frontend/web/template/payment/banktransfer.html | 2 +- .../view/frontend/web/template/payment/cashondelivery.html | 2 +- .../view/frontend/web/template/payment/checkmo.html | 4 ++-- .../frontend/web/template/payment/purchaseorder-form.html | 4 ++-- .../Block/Adminhtml/Carrier/Tablerate/Grid.php | 2 +- .../OfflineShipping/Block/Adminhtml/Form/Field/Export.php | 2 +- .../OfflineShipping/Block/Adminhtml/Form/Field/Import.php | 2 +- .../Controller/Adminhtml/System/Config/ExportTablerates.php | 2 +- app/code/Magento/OfflineShipping/Model/Carrier/Flatrate.php | 2 +- .../Model/Carrier/Flatrate/ItemPriceCalculator.php | 2 +- .../Magento/OfflineShipping/Model/Carrier/Freeshipping.php | 2 +- app/code/Magento/OfflineShipping/Model/Carrier/Pickup.php | 2 +- .../Magento/OfflineShipping/Model/Carrier/Tablerate.php | 2 +- .../OfflineShipping/Model/Config/Backend/Tablerate.php | 2 +- .../OfflineShipping/Model/Config/Source/Flatrate.php | 2 +- .../OfflineShipping/Model/Config/Source/Tablerate.php | 2 +- .../Model/Plugin/Checkout/Block/Cart/Shipping.php | 2 +- .../OfflineShipping/Model/Quote/Address/FreeShipping.php | 2 +- .../Model/ResourceModel/Carrier/Tablerate.php | 2 +- .../Carrier/Tablerate/CSV/ColumnNotFoundException.php | 2 +- .../ResourceModel/Carrier/Tablerate/CSV/ColumnResolver.php | 2 +- .../ResourceModel/Carrier/Tablerate/CSV/RowException.php | 2 +- .../Model/ResourceModel/Carrier/Tablerate/CSV/RowParser.php | 2 +- .../Model/ResourceModel/Carrier/Tablerate/Collection.php | 2 +- .../ResourceModel/Carrier/Tablerate/DataHashGenerator.php | 2 +- .../Model/ResourceModel/Carrier/Tablerate/Import.php | 2 +- .../ResourceModel/Carrier/Tablerate/LocationDirectory.php | 2 +- .../Model/ResourceModel/Carrier/Tablerate/RateQuery.php | 2 +- .../Magento/OfflineShipping/Model/SalesRule/Calculator.php | 2 +- app/code/Magento/OfflineShipping/Model/SalesRule/Rule.php | 2 +- .../Model/Source/SalesRule/FreeShippingOptions.php | 2 +- app/code/Magento/OfflineShipping/Setup/InstallSchema.php | 2 +- .../Unit/Block/Adminhtml/Carrier/Tablerate/GridTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Form/Field/ExportTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Form/Field/ImportTest.php | 2 +- .../Test/Unit/Model/Config/Backend/TablerateTest.php | 2 +- .../Test/Unit/Model/Config/Source/FlatrateTest.php | 2 +- .../Test/Unit/Model/Config/Source/TablerateTest.php | 2 +- .../Unit/Model/Plugin/Checkout/Block/Cart/ShippingTest.php | 2 +- .../Test/Unit/Model/Quote/Address/FreeShippingTest.php | 2 +- .../Carrier/Tablerate/CSV/ColumnResolverTest.php | 2 +- .../ResourceModel/Carrier/Tablerate/CSV/RowParserTest.php | 2 +- .../Model/ResourceModel/Carrier/Tablerate/ImportTest.php | 2 +- .../Test/Unit/Model/SalesRule/CalculatorTest.php | 2 +- app/code/Magento/OfflineShipping/etc/adminhtml/routes.xml | 2 +- app/code/Magento/OfflineShipping/etc/adminhtml/system.xml | 2 +- app/code/Magento/OfflineShipping/etc/config.xml | 2 +- app/code/Magento/OfflineShipping/etc/di.xml | 2 +- app/code/Magento/OfflineShipping/etc/fieldset.xml | 2 +- app/code/Magento/OfflineShipping/etc/module.xml | 2 +- app/code/Magento/OfflineShipping/registration.php | 2 +- .../view/adminhtml/ui_component/sales_rule_form.xml | 2 +- .../adminhtml/ui_component/salesrulestaging_update_form.xml | 2 +- .../view/frontend/layout/checkout_cart_index.xml | 2 +- .../view/frontend/layout/checkout_index_index.xml | 2 +- .../js/model/shipping-rates-validation-rules/flatrate.js | 2 +- .../model/shipping-rates-validation-rules/freeshipping.js | 2 +- .../js/model/shipping-rates-validation-rules/tablerate.js | 2 +- .../web/js/model/shipping-rates-validator/flatrate.js | 2 +- .../web/js/model/shipping-rates-validator/freeshipping.js | 2 +- .../web/js/model/shipping-rates-validator/tablerate.js | 2 +- .../web/js/view/shipping-rates-validation/flatrate.js | 2 +- .../web/js/view/shipping-rates-validation/freeshipping.js | 2 +- .../web/js/view/shipping-rates-validation/tablerate.js | 2 +- app/code/Magento/PageCache/Block/Javascript.php | 2 +- .../PageCache/Block/System/Config/Form/Field/Export.php | 2 +- .../Block/System/Config/Form/Field/Export/Varnish3.php | 2 +- .../Block/System/Config/Form/Field/Export/Varnish4.php | 2 +- .../Controller/Adminhtml/PageCache/ExportVarnishConfig.php | 2 +- app/code/Magento/PageCache/Controller/Block.php | 2 +- app/code/Magento/PageCache/Controller/Block/Esi.php | 2 +- app/code/Magento/PageCache/Controller/Block/Render.php | 2 +- app/code/Magento/PageCache/Helper/Data.php | 2 +- .../Magento/PageCache/Model/App/CacheIdentifierPlugin.php | 2 +- .../PageCache/Model/App/FrontController/BuiltinPlugin.php | 2 +- .../PageCache/Model/App/FrontController/VarnishPlugin.php | 2 +- app/code/Magento/PageCache/Model/App/PageCachePlugin.php | 2 +- .../Magento/PageCache/Model/App/Response/HttpPlugin.php | 2 +- app/code/Magento/PageCache/Model/Cache/Server.php | 2 +- app/code/Magento/PageCache/Model/Cache/Type.php | 2 +- app/code/Magento/PageCache/Model/Config.php | 2 +- .../PageCache/Model/Controller/Result/BuiltinPlugin.php | 2 +- .../PageCache/Model/Controller/Result/VarnishPlugin.php | 2 +- app/code/Magento/PageCache/Model/DepersonalizeChecker.php | 2 +- .../Magento/PageCache/Model/Layout/DepersonalizePlugin.php | 2 +- app/code/Magento/PageCache/Model/Layout/LayoutPlugin.php | 2 +- .../Magento/PageCache/Model/System/Config/Backend/Ttl.php | 2 +- .../PageCache/Model/System/Config/Backend/Varnish.php | 2 +- .../PageCache/Model/System/Config/Source/Application.php | 2 +- app/code/Magento/PageCache/Observer/FlushAllCache.php | 2 +- app/code/Magento/PageCache/Observer/FlushCacheByTags.php | 2 +- .../Magento/PageCache/Observer/FlushFormKeyOnLogout.php | 2 +- app/code/Magento/PageCache/Observer/InvalidateCache.php | 2 +- .../PageCache/Observer/ProcessLayoutRenderElement.php | 2 +- .../PageCache/Observer/RegisterFormKeyFromCookie.php | 2 +- .../PageCache/Test/Unit/App/CacheIdentifierPluginTest.php | 2 +- .../PageCache/Test/Unit/Block/Controller/StubBlock.php | 2 +- .../Magento/PageCache/Test/Unit/Block/JavascriptTest.php | 2 +- .../Adminhtml/PageCache/ExportVarnishConfigTest.php | 2 +- .../PageCache/Test/Unit/Controller/Block/EsiTest.php | 2 +- .../PageCache/Test/Unit/Controller/Block/RenderTest.php | 2 +- app/code/Magento/PageCache/Test/Unit/Helper/DataTest.php | 2 +- .../Unit/Model/App/FrontController/BuiltinPluginTest.php | 2 +- .../Unit/Model/App/FrontController/VarnishPluginTest.php | 2 +- .../PageCache/Test/Unit/Model/App/PageCachePluginTest.php | 2 +- .../Test/Unit/Model/App/Response/HttpPluginTest.php | 2 +- .../Magento/PageCache/Test/Unit/Model/Cache/ServerTest.php | 2 +- .../Magento/PageCache/Test/Unit/Model/Cache/TypeTest.php | 2 +- app/code/Magento/PageCache/Test/Unit/Model/ConfigTest.php | 2 +- .../Test/Unit/Model/Controller/Result/BuiltinPluginTest.php | 2 +- .../Test/Unit/Model/Controller/Result/VarnishPluginTest.php | 2 +- .../PageCache/Test/Unit/Model/DepersonalizeCheckerTest.php | 2 +- .../Test/Unit/Model/Layout/DepersonalizePluginTest.php | 2 +- .../PageCache/Test/Unit/Model/Layout/LayoutPluginTest.php | 2 +- .../Magento/PageCache/Test/Unit/Model/_files/result.vcl | 4 ++-- app/code/Magento/PageCache/Test/Unit/Model/_files/test.vcl | 4 ++-- .../PageCache/Test/Unit/Observer/FlushAllCacheTest.php | 2 +- .../PageCache/Test/Unit/Observer/FlushCacheByTagsTest.php | 2 +- .../Test/Unit/Observer/FlushFormKeyOnLogoutTest.php | 2 +- .../PageCache/Test/Unit/Observer/InvalidateCacheTest.php | 2 +- .../Test/Unit/Observer/ProcessLayoutRenderElementTest.php | 2 +- .../Test/Unit/Observer/RegisterFormKeyFromCookieTest.php | 2 +- app/code/Magento/PageCache/etc/adminhtml/di.xml | 2 +- app/code/Magento/PageCache/etc/adminhtml/routes.xml | 2 +- app/code/Magento/PageCache/etc/adminhtml/system.xml | 2 +- app/code/Magento/PageCache/etc/cache.xml | 2 +- app/code/Magento/PageCache/etc/config.xml | 2 +- app/code/Magento/PageCache/etc/di.xml | 2 +- app/code/Magento/PageCache/etc/events.xml | 2 +- app/code/Magento/PageCache/etc/frontend/di.xml | 2 +- app/code/Magento/PageCache/etc/frontend/events.xml | 2 +- app/code/Magento/PageCache/etc/frontend/routes.xml | 2 +- app/code/Magento/PageCache/etc/module.xml | 2 +- app/code/Magento/PageCache/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_system_config_edit.xml | 2 +- .../view/adminhtml/templates/page_cache_validation.phtml | 2 +- app/code/Magento/PageCache/view/frontend/layout/default.xml | 2 +- .../Magento/PageCache/view/frontend/requirejs-config.js | 2 +- .../PageCache/view/frontend/templates/javascript.phtml | 4 ++-- .../PageCache/view/frontend/templates/js/components.phtml | 2 +- .../Magento/PageCache/view/frontend/web/js/page-cache.js | 2 +- .../Magento/Payment/Api/Data/PaymentMethodInterface.php | 2 +- app/code/Magento/Payment/Api/PaymentMethodListInterface.php | 2 +- .../Magento/Payment/Block/Adminhtml/Transparent/Form.php | 2 +- app/code/Magento/Payment/Block/ConfigurableInfo.php | 2 +- app/code/Magento/Payment/Block/Form.php | 2 +- app/code/Magento/Payment/Block/Form/Cc.php | 2 +- app/code/Magento/Payment/Block/Form/Container.php | 2 +- app/code/Magento/Payment/Block/Info.php | 2 +- app/code/Magento/Payment/Block/Info/AbstractContainer.php | 2 +- app/code/Magento/Payment/Block/Info/Cc.php | 2 +- app/code/Magento/Payment/Block/Info/Instructions.php | 2 +- app/code/Magento/Payment/Block/Info/Substitution.php | 2 +- app/code/Magento/Payment/Block/Transparent/Form.php | 2 +- app/code/Magento/Payment/Block/Transparent/Iframe.php | 2 +- app/code/Magento/Payment/Block/Transparent/Info.php | 2 +- .../Magento/Payment/Gateway/Command/CommandException.php | 2 +- app/code/Magento/Payment/Gateway/Command/CommandManager.php | 2 +- .../Payment/Gateway/Command/CommandManagerInterface.php | 2 +- .../Magento/Payment/Gateway/Command/CommandManagerPool.php | 2 +- .../Payment/Gateway/Command/CommandManagerPoolInterface.php | 2 +- app/code/Magento/Payment/Gateway/Command/CommandPool.php | 2 +- .../Payment/Gateway/Command/CommandPoolInterface.php | 2 +- app/code/Magento/Payment/Gateway/Command/GatewayCommand.php | 2 +- app/code/Magento/Payment/Gateway/Command/NullCommand.php | 2 +- .../Magento/Payment/Gateway/Command/Result/ArrayResult.php | 2 +- .../Magento/Payment/Gateway/Command/Result/BoolResult.php | 2 +- .../Magento/Payment/Gateway/Command/ResultInterface.php | 2 +- app/code/Magento/Payment/Gateway/CommandInterface.php | 2 +- app/code/Magento/Payment/Gateway/Config/Config.php | 2 +- app/code/Magento/Payment/Gateway/Config/ConfigFactory.php | 2 +- .../Magento/Payment/Gateway/Config/ConfigValueHandler.php | 2 +- .../Payment/Gateway/Config/ValueHandlerInterface.php | 2 +- .../Magento/Payment/Gateway/Config/ValueHandlerPool.php | 2 +- .../Payment/Gateway/Config/ValueHandlerPoolInterface.php | 2 +- app/code/Magento/Payment/Gateway/ConfigFactoryInterface.php | 2 +- app/code/Magento/Payment/Gateway/ConfigInterface.php | 2 +- .../Payment/Gateway/Data/AddressAdapterInterface.php | 2 +- .../Magento/Payment/Gateway/Data/Order/AddressAdapter.php | 2 +- .../Magento/Payment/Gateway/Data/Order/OrderAdapter.php | 2 +- .../Magento/Payment/Gateway/Data/OrderAdapterInterface.php | 2 +- app/code/Magento/Payment/Gateway/Data/PaymentDataObject.php | 2 +- .../Payment/Gateway/Data/PaymentDataObjectFactory.php | 2 +- .../Gateway/Data/PaymentDataObjectFactoryInterface.php | 2 +- .../Payment/Gateway/Data/PaymentDataObjectInterface.php | 2 +- .../Magento/Payment/Gateway/Data/Quote/AddressAdapter.php | 2 +- .../Magento/Payment/Gateway/Data/Quote/QuoteAdapter.php | 2 +- app/code/Magento/Payment/Gateway/Helper/ContextHelper.php | 2 +- app/code/Magento/Payment/Gateway/Helper/SubjectReader.php | 2 +- app/code/Magento/Payment/Gateway/Http/Client/Soap.php | 2 +- app/code/Magento/Payment/Gateway/Http/Client/Zend.php | 2 +- app/code/Magento/Payment/Gateway/Http/ClientException.php | 2 +- app/code/Magento/Payment/Gateway/Http/ClientInterface.php | 2 +- .../Payment/Gateway/Http/Converter/HtmlFormConverter.php | 2 +- .../Gateway/Http/Converter/Soap/ObjectToArrayConverter.php | 2 +- .../Magento/Payment/Gateway/Http/ConverterException.php | 2 +- .../Magento/Payment/Gateway/Http/ConverterInterface.php | 2 +- app/code/Magento/Payment/Gateway/Http/Transfer.php | 2 +- app/code/Magento/Payment/Gateway/Http/TransferBuilder.php | 2 +- .../Payment/Gateway/Http/TransferFactoryInterface.php | 2 +- app/code/Magento/Payment/Gateway/Http/TransferInterface.php | 2 +- .../Magento/Payment/Gateway/Request/BuilderComposite.php | 2 +- .../Magento/Payment/Gateway/Request/BuilderInterface.php | 2 +- app/code/Magento/Payment/Gateway/Response/HandlerChain.php | 2 +- .../Magento/Payment/Gateway/Response/HandlerInterface.php | 2 +- .../Magento/Payment/Gateway/Validator/AbstractValidator.php | 2 +- .../Magento/Payment/Gateway/Validator/CountryValidator.php | 2 +- app/code/Magento/Payment/Gateway/Validator/Result.php | 2 +- .../Magento/Payment/Gateway/Validator/ResultInterface.php | 2 +- .../Payment/Gateway/Validator/ValidatorComposite.php | 2 +- .../Payment/Gateway/Validator/ValidatorInterface.php | 2 +- .../Magento/Payment/Gateway/Validator/ValidatorPool.php | 2 +- .../Payment/Gateway/Validator/ValidatorPoolInterface.php | 2 +- app/code/Magento/Payment/Helper/Data.php | 2 +- app/code/Magento/Payment/Helper/Formatter.php | 2 +- app/code/Magento/Payment/Model/Cart.php | 2 +- app/code/Magento/Payment/Model/Cart/SalesModel/Factory.php | 2 +- app/code/Magento/Payment/Model/Cart/SalesModel/Order.php | 2 +- app/code/Magento/Payment/Model/Cart/SalesModel/Quote.php | 2 +- .../Payment/Model/Cart/SalesModel/SalesModelInterface.php | 2 +- app/code/Magento/Payment/Model/CcConfig.php | 2 +- app/code/Magento/Payment/Model/CcConfigProvider.php | 2 +- app/code/Magento/Payment/Model/CcGenericConfigProvider.php | 2 +- app/code/Magento/Payment/Model/Checks/CanUseCheckout.php | 2 +- app/code/Magento/Payment/Model/Checks/CanUseForCountry.php | 2 +- .../Model/Checks/CanUseForCountry/CountryProvider.php | 2 +- app/code/Magento/Payment/Model/Checks/CanUseForCurrency.php | 2 +- app/code/Magento/Payment/Model/Checks/CanUseInternal.php | 2 +- app/code/Magento/Payment/Model/Checks/Composite.php | 2 +- .../Magento/Payment/Model/Checks/SpecificationFactory.php | 2 +- .../Magento/Payment/Model/Checks/SpecificationInterface.php | 2 +- app/code/Magento/Payment/Model/Checks/TotalMinMax.php | 2 +- app/code/Magento/Payment/Model/Checks/ZeroTotal.php | 2 +- app/code/Magento/Payment/Model/Config.php | 2 +- app/code/Magento/Payment/Model/Config/Converter.php | 2 +- app/code/Magento/Payment/Model/Config/Reader.php | 2 +- app/code/Magento/Payment/Model/Config/SchemaLocator.php | 2 +- app/code/Magento/Payment/Model/Config/Source/Allmethods.php | 2 +- .../Payment/Model/Config/Source/Allspecificcountries.php | 2 +- app/code/Magento/Payment/Model/Config/Source/Cctype.php | 2 +- app/code/Magento/Payment/Model/IframeConfigProvider.php | 2 +- app/code/Magento/Payment/Model/Info.php | 2 +- app/code/Magento/Payment/Model/InfoInterface.php | 2 +- app/code/Magento/Payment/Model/Method/AbstractMethod.php | 2 +- app/code/Magento/Payment/Model/Method/Adapter.php | 2 +- app/code/Magento/Payment/Model/Method/Cc.php | 2 +- app/code/Magento/Payment/Model/Method/ConfigInterface.php | 2 +- app/code/Magento/Payment/Model/Method/Factory.php | 2 +- app/code/Magento/Payment/Model/Method/Free.php | 2 +- app/code/Magento/Payment/Model/Method/InstanceFactory.php | 2 +- app/code/Magento/Payment/Model/Method/Logger.php | 2 +- .../Payment/Model/Method/Online/GatewayInterface.php | 2 +- .../Model/Method/Specification/AbstractSpecification.php | 2 +- .../Payment/Model/Method/Specification/Composite.php | 2 +- .../Magento/Payment/Model/Method/Specification/Factory.php | 2 +- .../Magento/Payment/Model/Method/SpecificationInterface.php | 2 +- app/code/Magento/Payment/Model/Method/Substitution.php | 2 +- .../Magento/Payment/Model/Method/TransparentInterface.php | 2 +- app/code/Magento/Payment/Model/MethodInterface.php | 2 +- app/code/Magento/Payment/Model/MethodList.php | 2 +- app/code/Magento/Payment/Model/Paygate/Result.php | 2 +- app/code/Magento/Payment/Model/PaymentMethod.php | 2 +- app/code/Magento/Payment/Model/PaymentMethodList.php | 2 +- .../Magento/Payment/Model/ResourceModel/Grid/GroupList.php | 2 +- .../Magento/Payment/Model/ResourceModel/Grid/TypeList.php | 2 +- app/code/Magento/Payment/Model/Source/Cctype.php | 2 +- app/code/Magento/Payment/Model/Source/Invoice.php | 2 +- .../Magento/Payment/Observer/AbstractDataAssignObserver.php | 2 +- .../Payment/Observer/SalesOrderBeforeSaveObserver.php | 2 +- .../Observer/UpdateOrderStatusForPaymentMethodsObserver.php | 2 +- .../Magento/Payment/Plugin/PaymentConfigurationProcess.php | 2 +- .../Test/Unit/Block/Adminhtml/Transparent/FormTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Transparent/FormTesting.php | 2 +- .../Magento/Payment/Test/Unit/Block/Form/ContainerTest.php | 2 +- app/code/Magento/Payment/Test/Unit/Block/FormTest.php | 2 +- app/code/Magento/Payment/Test/Unit/Block/Info/CcTest.php | 2 +- .../Payment/Test/Unit/Block/Info/ContainerAbstractTest.php | 2 +- .../Payment/Test/Unit/Block/Info/InstructionsTest.php | 2 +- .../Payment/Test/Unit/Block/Info/SubstitutionTest.php | 2 +- app/code/Magento/Payment/Test/Unit/Block/InfoTest.php | 2 +- .../Payment/Test/Unit/Block/Transparent/FormTest.php | 2 +- .../Payment/Test/Unit/Block/Transparent/FormTesting.php | 2 +- .../Payment/Test/Unit/Gateway/Command/CommandPoolTest.php | 2 +- .../Test/Unit/Gateway/Command/GatewayCommandTest.php | 2 +- .../Magento/Payment/Test/Unit/Gateway/Config/ConfigTest.php | 2 +- .../Test/Unit/Gateway/Config/ConfigValueHandlerTest.php | 2 +- .../Test/Unit/Gateway/Config/ValueHandlerPoolTest.php | 2 +- .../Test/Unit/Gateway/Data/Order/AddressAdapterTest.php | 2 +- .../Test/Unit/Gateway/Data/Order/OrderAdapterTest.php | 2 +- .../Test/Unit/Gateway/Data/PaymentDataObjectFactoryTest.php | 2 +- .../Test/Unit/Gateway/Data/PaymentDataObjectTest.php | 2 +- .../Test/Unit/Gateway/Data/Quote/AddressAdapterTest.php | 2 +- .../Test/Unit/Gateway/Data/Quote/QuoteAdapterTest.php | 2 +- .../Payment/Test/Unit/Gateway/Http/Client/SoapTest.php | 2 +- .../Payment/Test/Unit/Gateway/Http/Client/ZendTest.php | 2 +- .../Unit/Gateway/Http/Converter/HtmlFormConverterTest.php | 2 +- .../Http/Converter/Soap/ObjectToArrayConverterTest.php | 2 +- .../Magento/Payment/Test/Unit/Gateway/Http/TransferTest.php | 2 +- .../Test/Unit/Gateway/Request/BuilderCompositeTest.php | 2 +- .../Payment/Test/Unit/Gateway/Response/HandlerChainTest.php | 2 +- .../Test/Unit/Gateway/Validator/CountryValidatorTest.php | 2 +- .../Payment/Test/Unit/Gateway/Validator/ResultTest.php | 2 +- .../Test/Unit/Gateway/Validator/ValidatorCompositeTest.php | 2 +- .../Test/Unit/Gateway/Validator/ValidatorPoolTest.php | 2 +- app/code/Magento/Payment/Test/Unit/Helper/DataTest.php | 2 +- .../Payment/Test/Unit/Model/Cart/SalesModel/FactoryTest.php | 2 +- .../Payment/Test/Unit/Model/Cart/SalesModel/OrderTest.php | 2 +- .../Payment/Test/Unit/Model/Cart/SalesModel/QuoteTest.php | 2 +- app/code/Magento/Payment/Test/Unit/Model/CartTest.php | 2 +- .../Payment/Test/Unit/Model/CcConfigProviderTest.php | 2 +- app/code/Magento/Payment/Test/Unit/Model/CcConfigTest.php | 2 +- .../Payment/Test/Unit/Model/CcGenericConfigProviderTest.php | 2 +- .../Payment/Test/Unit/Model/Checks/CanUseCheckoutTest.php | 2 +- .../Model/Checks/CanUseForCountry/CountryProviderTest.php | 2 +- .../Payment/Test/Unit/Model/Checks/CanUseForCountryTest.php | 2 +- .../Test/Unit/Model/Checks/CanUseForCurrencyTest.php | 2 +- .../Payment/Test/Unit/Model/Checks/CanUseInternalTest.php | 2 +- .../Payment/Test/Unit/Model/Checks/CompositeTest.php | 2 +- .../Test/Unit/Model/Checks/SpecificationFactoryTest.php | 2 +- .../Payment/Test/Unit/Model/Checks/TotalMinMaxTest.php | 2 +- .../Payment/Test/Unit/Model/Checks/ZeroTotalTest.php | 2 +- .../Payment/Test/Unit/Model/Config/ConverterTest.php | 2 +- .../Payment/Test/Unit/Model/Config/SchemaLocatorTest.php | 2 +- .../Test/Unit/Model/Config/Source/AllmethodsTest.php | 2 +- .../Unit/Model/Config/Source/AllspecificcountriesTest.php | 2 +- .../Payment/Test/Unit/Model/Config/Source/CctypeTest.php | 2 +- .../Payment/Test/Unit/Model/Config/_files/payment.xml | 2 +- app/code/Magento/Payment/Test/Unit/Model/ConfigTest.php | 2 +- app/code/Magento/Payment/Test/Unit/Model/InfoTest.php | 2 +- .../Payment/Test/Unit/Model/Method/AbstractMethod/Stub.php | 2 +- .../Payment/Test/Unit/Model/Method/AbstractMethodTest.php | 2 +- .../Magento/Payment/Test/Unit/Model/Method/AdapterTest.php | 2 +- app/code/Magento/Payment/Test/Unit/Model/Method/CcTest.php | 2 +- .../Magento/Payment/Test/Unit/Model/Method/FactoryTest.php | 2 +- .../Magento/Payment/Test/Unit/Model/Method/FreeTest.php | 2 +- .../Magento/Payment/Test/Unit/Model/Method/LoggerTest.php | 2 +- .../Test/Unit/Model/Method/Specification/CompositeTest.php | 2 +- .../Test/Unit/Model/Method/Specification/FactoryTest.php | 2 +- .../Payment/Test/Unit/Model/Method/SubstitutionTest.php | 2 +- app/code/Magento/Payment/Test/Unit/Model/MethodListTest.php | 2 +- .../Payment/Test/Unit/Model/PaymentMethodListTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Grid/GroupListTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Grid/TypeListTest.php | 2 +- .../Magento/Payment/Test/Unit/Model/Source/CctypeTest.php | 2 +- .../Magento/Payment/Test/Unit/Model/Source/InvoiceTest.php | 2 +- .../Test/Unit/Observer/SalesOrderBeforeSaveObserverTest.php | 2 +- .../UpdateOrderStatusForPaymentMethodsObserverTest.php | 2 +- .../Test/Unit/Plugin/PaymentConfigurationProcessTest.php | 2 +- .../Payment/Ui/Component/Listing/Column/Method/Options.php | 2 +- app/code/Magento/Payment/etc/acl.xml | 2 +- app/code/Magento/Payment/etc/adminhtml/system.xml | 2 +- app/code/Magento/Payment/etc/config.xml | 2 +- app/code/Magento/Payment/etc/di.xml | 2 +- app/code/Magento/Payment/etc/events.xml | 2 +- app/code/Magento/Payment/etc/frontend/di.xml | 4 ++-- app/code/Magento/Payment/etc/module.xml | 2 +- app/code/Magento/Payment/etc/payment.xml | 2 +- app/code/Magento/Payment/etc/payment.xsd | 2 +- app/code/Magento/Payment/etc/payment_file.xsd | 2 +- app/code/Magento/Payment/registration.php | 2 +- .../Magento/Payment/view/adminhtml/templates/form/cc.phtml | 2 +- .../Payment/view/adminhtml/templates/info/default.phtml | 2 +- .../view/adminhtml/templates/info/instructions.phtml | 2 +- .../Payment/view/adminhtml/templates/info/pdf/default.phtml | 2 +- .../view/adminhtml/templates/info/substitution.phtml | 2 +- .../Payment/view/adminhtml/templates/transparent/form.phtml | 2 +- .../view/adminhtml/templates/transparent/iframe.phtml | 2 +- .../Payment/view/adminhtml/templates/transparent/info.phtml | 2 +- app/code/Magento/Payment/view/adminhtml/web/transparent.js | 2 +- .../web/js/model/credit-card-validation/credit-card-data.js | 2 +- .../credit-card-validation/credit-card-number-validator.js | 2 +- .../credit-card-number-validator/credit-card-type.js | 2 +- .../credit-card-number-validator/luhn10-validator.js | 2 +- .../web/js/model/credit-card-validation/cvv-validator.js | 2 +- .../credit-card-validation/expiration-date-validator.js | 2 +- .../expiration-date-validator/expiration-month-validator.js | 2 +- .../expiration-date-validator/expiration-year-validator.js | 2 +- .../expiration-date-validator/parse-date.js | 2 +- .../base/web/js/model/credit-card-validation/validator.js | 4 ++-- .../Payment/view/frontend/layout/checkout_index_index.xml | 4 ++-- .../view/frontend/layout/checkout_onepage_review.xml | 2 +- app/code/Magento/Payment/view/frontend/requirejs-config.js | 4 ++-- .../Magento/Payment/view/frontend/templates/form/cc.phtml | 2 +- .../Payment/view/frontend/templates/info/default.phtml | 2 +- .../Payment/view/frontend/templates/info/instructions.phtml | 2 +- .../Payment/view/frontend/templates/transparent/form.phtml | 2 +- .../view/frontend/templates/transparent/iframe.phtml | 2 +- .../Payment/view/frontend/templates/transparent/info.phtml | 2 +- app/code/Magento/Payment/view/frontend/web/cc-type.js | 4 ++-- .../Payment/view/frontend/web/js/view/payment/cc-form.js | 2 +- .../Payment/view/frontend/web/js/view/payment/iframe.js | 2 +- .../web/js/view/payment/method-renderer/free-method.js | 2 +- .../Payment/view/frontend/web/js/view/payment/payments.js | 4 ++-- .../Payment/view/frontend/web/template/payment/cc-form.html | 2 +- .../Payment/view/frontend/web/template/payment/free.html | 2 +- .../Payment/view/frontend/web/template/payment/iframe.html | 2 +- app/code/Magento/Payment/view/frontend/web/transparent.js | 2 +- .../Magento/Paypal/Block/Adminhtml/Billing/Agreement.php | 2 +- .../Paypal/Block/Adminhtml/Billing/Agreement/Grid.php | 2 +- .../Paypal/Block/Adminhtml/Billing/Agreement/View.php | 2 +- .../Paypal/Block/Adminhtml/Billing/Agreement/View/Form.php | 2 +- .../Block/Adminhtml/Billing/Agreement/View/Tab/Info.php | 2 +- .../Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php | 2 +- .../Paypal/Block/Adminhtml/Billing/Agreement/View/Tabs.php | 2 +- .../Paypal/Block/Adminhtml/Customer/Edit/Tab/Agreement.php | 2 +- .../Magento/Paypal/Block/Adminhtml/Payflowpro/CcForm.php | 2 +- .../Magento/Paypal/Block/Adminhtml/Settlement/Details.php | 2 +- .../Paypal/Block/Adminhtml/Settlement/Details/Form.php | 2 +- .../Magento/Paypal/Block/Adminhtml/Settlement/Report.php | 2 +- .../Magento/Paypal/Block/Adminhtml/Store/SwitcherPlugin.php | 2 +- .../Paypal/Block/Adminhtml/System/Config/ApiWizard.php | 2 +- .../Paypal/Block/Adminhtml/System/Config/BmlApiWizard.php | 2 +- .../Paypal/Block/Adminhtml/System/Config/Field/Country.php | 2 +- .../System/Config/Field/Depends/BmlApiSortOrder.php | 2 +- .../Adminhtml/System/Config/Field/Depends/BmlSortOrder.php | 2 +- .../Adminhtml/System/Config/Field/Depends/MerchantId.php | 2 +- .../Adminhtml/System/Config/Field/Enable/AbstractEnable.php | 2 +- .../Block/Adminhtml/System/Config/Field/Enable/Bml.php | 2 +- .../Block/Adminhtml/System/Config/Field/Enable/BmlApi.php | 2 +- .../Block/Adminhtml/System/Config/Field/Enable/Express.php | 2 +- .../Adminhtml/System/Config/Field/Enable/InContext.php | 2 +- .../Adminhtml/System/Config/Field/Enable/InContextApi.php | 2 +- .../Block/Adminhtml/System/Config/Field/Enable/Payment.php | 2 +- .../Paypal/Block/Adminhtml/System/Config/Field/Hidden.php | 2 +- .../Block/Adminhtml/System/Config/Fieldset/Expanded.php | 2 +- .../Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php | 2 +- .../Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php | 2 +- .../Block/Adminhtml/System/Config/Fieldset/Payment.php | 2 +- .../Block/Adminhtml/System/Config/Payflowlink/Advanced.php | 2 +- .../Block/Adminhtml/System/Config/Payflowlink/Info.php | 2 +- .../Block/Adminhtml/System/Config/ResolutionRules.php | 2 +- app/code/Magento/Paypal/Block/Billing/Agreement/View.php | 2 +- app/code/Magento/Paypal/Block/Billing/Agreements.php | 2 +- app/code/Magento/Paypal/Block/Bml/Banners.php | 2 +- app/code/Magento/Paypal/Block/Bml/Form.php | 2 +- app/code/Magento/Paypal/Block/Bml/Shortcut.php | 2 +- app/code/Magento/Paypal/Block/Cart/ValidationMessages.php | 2 +- .../Block/Checkout/Onepage/Success/BillingAgreement.php | 2 +- app/code/Magento/Paypal/Block/Express/Form.php | 2 +- .../Magento/Paypal/Block/Express/InContext/Component.php | 2 +- .../Paypal/Block/Express/InContext/Minicart/Button.php | 2 +- app/code/Magento/Paypal/Block/Express/Review.php | 2 +- app/code/Magento/Paypal/Block/Express/Review/Billing.php | 2 +- app/code/Magento/Paypal/Block/Express/Review/Details.php | 2 +- app/code/Magento/Paypal/Block/Express/Review/Shipping.php | 2 +- app/code/Magento/Paypal/Block/Express/Shortcut.php | 2 +- app/code/Magento/Paypal/Block/Hosted/Pro/Form.php | 2 +- app/code/Magento/Paypal/Block/Hosted/Pro/Iframe.php | 2 +- app/code/Magento/Paypal/Block/Hosted/Pro/Info.php | 2 +- app/code/Magento/Paypal/Block/Iframe.php | 2 +- app/code/Magento/Paypal/Block/Logo.php | 2 +- app/code/Magento/Paypal/Block/Payflow/Advanced/Form.php | 2 +- app/code/Magento/Paypal/Block/Payflow/Advanced/Iframe.php | 2 +- app/code/Magento/Paypal/Block/Payflow/Advanced/Info.php | 2 +- app/code/Magento/Paypal/Block/Payflow/Bml/Form.php | 2 +- .../Magento/Paypal/Block/Payflow/Customer/CardRenderer.php | 2 +- app/code/Magento/Paypal/Block/Payflow/Info.php | 2 +- app/code/Magento/Paypal/Block/Payflow/Link/Form.php | 2 +- app/code/Magento/Paypal/Block/Payflow/Link/Iframe.php | 2 +- app/code/Magento/Paypal/Block/Payflow/Link/Info.php | 2 +- app/code/Magento/Paypal/Block/PayflowExpress/Form.php | 2 +- .../Magento/Paypal/Block/Payment/Form/Billing/Agreement.php | 2 +- app/code/Magento/Paypal/Block/Payment/Info.php | 2 +- .../Magento/Paypal/Block/Payment/Info/Billing/Agreement.php | 2 +- .../Paypal/Controller/Adminhtml/Billing/Agreement.php | 2 +- .../Controller/Adminhtml/Billing/Agreement/Cancel.php | 2 +- .../Controller/Adminhtml/Billing/Agreement/CustomerGrid.php | 2 +- .../Controller/Adminhtml/Billing/Agreement/Delete.php | 2 +- .../Paypal/Controller/Adminhtml/Billing/Agreement/Grid.php | 2 +- .../Paypal/Controller/Adminhtml/Billing/Agreement/Index.php | 2 +- .../Controller/Adminhtml/Billing/Agreement/OrdersGrid.php | 2 +- .../Paypal/Controller/Adminhtml/Billing/Agreement/View.php | 2 +- .../Magento/Paypal/Controller/Adminhtml/Paypal/Reports.php | 2 +- .../Paypal/Controller/Adminhtml/Paypal/Reports/Details.php | 2 +- .../Paypal/Controller/Adminhtml/Paypal/Reports/Fetch.php | 2 +- .../Paypal/Controller/Adminhtml/Paypal/Reports/Grid.php | 2 +- .../Paypal/Controller/Adminhtml/Paypal/Reports/Index.php | 2 +- .../Controller/Adminhtml/Transparent/RequestSecureToken.php | 2 +- .../Paypal/Controller/Adminhtml/Transparent/Response.php | 2 +- app/code/Magento/Paypal/Controller/Billing/Agreement.php | 2 +- .../Magento/Paypal/Controller/Billing/Agreement/Cancel.php | 2 +- .../Paypal/Controller/Billing/Agreement/CancelWizard.php | 2 +- .../Magento/Paypal/Controller/Billing/Agreement/Index.php | 2 +- .../Paypal/Controller/Billing/Agreement/ReturnWizard.php | 2 +- .../Paypal/Controller/Billing/Agreement/StartWizard.php | 2 +- .../Magento/Paypal/Controller/Billing/Agreement/View.php | 2 +- app/code/Magento/Paypal/Controller/Bml/Start.php | 2 +- .../Magento/Paypal/Controller/Express/AbstractExpress.php | 2 +- .../Paypal/Controller/Express/AbstractExpress/Cancel.php | 2 +- .../Paypal/Controller/Express/AbstractExpress/Edit.php | 2 +- .../Controller/Express/AbstractExpress/PlaceOrder.php | 2 +- .../Controller/Express/AbstractExpress/ReturnAction.php | 2 +- .../Paypal/Controller/Express/AbstractExpress/Review.php | 2 +- .../Express/AbstractExpress/SaveShippingMethod.php | 2 +- .../Express/AbstractExpress/ShippingOptionsCallback.php | 2 +- .../Paypal/Controller/Express/AbstractExpress/Start.php | 2 +- .../Express/AbstractExpress/UpdateShippingMethods.php | 2 +- app/code/Magento/Paypal/Controller/Express/Cancel.php | 2 +- app/code/Magento/Paypal/Controller/Express/Edit.php | 2 +- app/code/Magento/Paypal/Controller/Express/GetToken.php | 2 +- app/code/Magento/Paypal/Controller/Express/PlaceOrder.php | 2 +- app/code/Magento/Paypal/Controller/Express/ReturnAction.php | 2 +- app/code/Magento/Paypal/Controller/Express/Review.php | 2 +- .../Paypal/Controller/Express/SaveShippingMethod.php | 2 +- .../Paypal/Controller/Express/ShippingOptionsCallback.php | 2 +- app/code/Magento/Paypal/Controller/Express/Start.php | 2 +- .../Paypal/Controller/Express/UpdateShippingMethods.php | 2 +- app/code/Magento/Paypal/Controller/Hostedpro/Cancel.php | 2 +- app/code/Magento/Paypal/Controller/Hostedpro/Redirect.php | 2 +- .../Magento/Paypal/Controller/Hostedpro/ReturnAction.php | 2 +- app/code/Magento/Paypal/Controller/Ipn/Index.php | 2 +- app/code/Magento/Paypal/Controller/Payflow.php | 2 +- .../Magento/Paypal/Controller/Payflow/CancelPayment.php | 2 +- app/code/Magento/Paypal/Controller/Payflow/Form.php | 2 +- app/code/Magento/Paypal/Controller/Payflow/ReturnUrl.php | 2 +- app/code/Magento/Paypal/Controller/Payflow/SilentPost.php | 2 +- .../Paypal/Controller/Payflowadvanced/CancelPayment.php | 2 +- app/code/Magento/Paypal/Controller/Payflowadvanced/Form.php | 2 +- .../Magento/Paypal/Controller/Payflowadvanced/ReturnUrl.php | 2 +- .../Paypal/Controller/Payflowadvanced/SilentPost.php | 2 +- app/code/Magento/Paypal/Controller/Payflowbml/Start.php | 2 +- .../Magento/Paypal/Controller/Payflowexpress/Cancel.php | 2 +- app/code/Magento/Paypal/Controller/Payflowexpress/Edit.php | 2 +- .../Magento/Paypal/Controller/Payflowexpress/PlaceOrder.php | 2 +- .../Paypal/Controller/Payflowexpress/ReturnAction.php | 2 +- .../Magento/Paypal/Controller/Payflowexpress/Review.php | 2 +- .../Paypal/Controller/Payflowexpress/SaveShippingMethod.php | 2 +- .../Controller/Payflowexpress/ShippingOptionsCallback.php | 2 +- app/code/Magento/Paypal/Controller/Payflowexpress/Start.php | 2 +- .../Controller/Payflowexpress/UpdateShippingMethods.php | 2 +- .../Paypal/Controller/Transparent/RequestSecureToken.php | 2 +- app/code/Magento/Paypal/Controller/Transparent/Response.php | 2 +- app/code/Magento/Paypal/Cron/FetchReports.php | 2 +- app/code/Magento/Paypal/CustomerData/BillingAgreement.php | 2 +- .../Gateway/Payflowpro/Command/AuthorizationCommand.php | 2 +- .../Paypal/Gateway/Payflowpro/Command/SaleCommand.php | 2 +- app/code/Magento/Paypal/Helper/Backend.php | 2 +- app/code/Magento/Paypal/Helper/Checkout.php | 2 +- app/code/Magento/Paypal/Helper/Data.php | 2 +- app/code/Magento/Paypal/Helper/Hss.php | 2 +- .../Magento/Paypal/Helper/Shortcut/CheckoutValidator.php | 2 +- app/code/Magento/Paypal/Helper/Shortcut/Factory.php | 2 +- app/code/Magento/Paypal/Helper/Shortcut/Validator.php | 2 +- .../Magento/Paypal/Helper/Shortcut/ValidatorInterface.php | 2 +- app/code/Magento/Paypal/Model/AbstractConfig.php | 2 +- app/code/Magento/Paypal/Model/AbstractIpn.php | 2 +- app/code/Magento/Paypal/Model/Api/AbstractApi.php | 2 +- app/code/Magento/Paypal/Model/Api/Nvp.php | 2 +- app/code/Magento/Paypal/Model/Api/PayflowNvp.php | 2 +- app/code/Magento/Paypal/Model/Api/ProcessableException.php | 2 +- app/code/Magento/Paypal/Model/Api/Type/Factory.php | 2 +- app/code/Magento/Paypal/Model/Billing/AbstractAgreement.php | 2 +- app/code/Magento/Paypal/Model/Billing/Agreement.php | 2 +- .../Paypal/Model/Billing/Agreement/MethodInterface.php | 2 +- .../Paypal/Model/Billing/Agreement/OrdersUpdater.php | 2 +- .../Magento/Paypal/Model/BillingAgreementConfigProvider.php | 2 +- app/code/Magento/Paypal/Model/Bml.php | 2 +- app/code/Magento/Paypal/Model/Cart.php | 2 +- app/code/Magento/Paypal/Model/Cert.php | 2 +- app/code/Magento/Paypal/Model/Config.php | 2 +- app/code/Magento/Paypal/Model/Config/Factory.php | 2 +- app/code/Magento/Paypal/Model/Config/Rules/Converter.php | 2 +- app/code/Magento/Paypal/Model/Config/Rules/FileResolver.php | 2 +- app/code/Magento/Paypal/Model/Config/Rules/Reader.php | 2 +- .../Magento/Paypal/Model/Config/Rules/SchemaLocator.php | 2 +- .../Paypal/Model/Config/Structure/Element/FieldPlugin.php | 2 +- app/code/Magento/Paypal/Model/Config/StructurePlugin.php | 2 +- app/code/Magento/Paypal/Model/Direct.php | 2 +- app/code/Magento/Paypal/Model/Express.php | 2 +- app/code/Magento/Paypal/Model/Express/Checkout.php | 2 +- app/code/Magento/Paypal/Model/Express/Checkout/Factory.php | 2 +- app/code/Magento/Paypal/Model/ExpressConfigProvider.php | 2 +- app/code/Magento/Paypal/Model/Hostedpro.php | 2 +- app/code/Magento/Paypal/Model/Hostedpro/Request.php | 2 +- app/code/Magento/Paypal/Model/IframeConfigProvider.php | 2 +- app/code/Magento/Paypal/Model/Info.php | 2 +- app/code/Magento/Paypal/Model/Ipn.php | 2 +- app/code/Magento/Paypal/Model/IpnFactory.php | 2 +- app/code/Magento/Paypal/Model/IpnInterface.php | 2 +- app/code/Magento/Paypal/Model/Method/Agreement.php | 2 +- .../Paypal/Model/Method/Checks/SpecificationPlugin.php | 2 +- app/code/Magento/Paypal/Model/Payflow/Bml.php | 2 +- app/code/Magento/Paypal/Model/Payflow/Pro.php | 2 +- app/code/Magento/Paypal/Model/Payflow/Request.php | 2 +- app/code/Magento/Paypal/Model/Payflow/Service/Gateway.php | 2 +- .../Paypal/Model/Payflow/Service/Request/SecureToken.php | 2 +- .../Response/Handler/CreditCardValidationHandler.php | 2 +- .../Model/Payflow/Service/Response/Handler/FraudHandler.php | 2 +- .../Payflow/Service/Response/Handler/HandlerComposite.php | 2 +- .../Payflow/Service/Response/Handler/HandlerInterface.php | 2 +- .../Paypal/Model/Payflow/Service/Response/Transaction.php | 2 +- .../Payflow/Service/Response/Validator/AVSResponse.php | 2 +- .../Model/Payflow/Service/Response/Validator/CVV2Match.php | 2 +- .../Service/Response/Validator/ResponseValidator.php | 2 +- .../Payflow/Service/Response/Validator/SecureToken.php | 2 +- .../Model/Payflow/Service/Response/ValidatorInterface.php | 2 +- app/code/Magento/Paypal/Model/Payflow/Transparent.php | 2 +- .../Model/Payflow/Ui/Adminhtml/TokenUiComponentProvider.php | 2 +- .../Paypal/Model/Payflow/Ui/TokenUiComponentProvider.php | 2 +- app/code/Magento/Paypal/Model/PayflowConfig.php | 2 +- app/code/Magento/Paypal/Model/PayflowExpress.php | 2 +- app/code/Magento/Paypal/Model/PayflowExpress/Checkout.php | 2 +- app/code/Magento/Paypal/Model/Payflowadvanced.php | 2 +- app/code/Magento/Paypal/Model/Payflowlink.php | 2 +- app/code/Magento/Paypal/Model/Payflowpro.php | 2 +- .../Model/Payment/Method/Billing/AbstractAgreement.php | 2 +- app/code/Magento/Paypal/Model/Pro.php | 2 +- app/code/Magento/Paypal/Model/Report/Settlement.php | 2 +- app/code/Magento/Paypal/Model/Report/Settlement/Row.php | 2 +- .../Paypal/Model/ResourceModel/Billing/Agreement.php | 2 +- .../Model/ResourceModel/Billing/Agreement/Collection.php | 2 +- app/code/Magento/Paypal/Model/ResourceModel/Cert.php | 2 +- .../Paypal/Model/ResourceModel/Report/Settlement.php | 2 +- .../Report/Settlement/Options/TransactionEvents.php | 2 +- .../Paypal/Model/ResourceModel/Report/Settlement/Row.php | 2 +- .../ResourceModel/Report/Settlement/Row/Collection.php | 2 +- .../Magento/Paypal/Model/System/Config/Backend/Cert.php | 2 +- .../Magento/Paypal/Model/System/Config/Backend/Cron.php | 2 +- .../Paypal/Model/System/Config/Backend/MerchantCountry.php | 2 +- .../Paypal/Model/System/Config/Source/BmlPosition.php | 2 +- .../Magento/Paypal/Model/System/Config/Source/BmlSize.php | 2 +- .../Paypal/Model/System/Config/Source/BuyerCountry.php | 2 +- .../Paypal/Model/System/Config/Source/FetchingSchedule.php | 2 +- app/code/Magento/Paypal/Model/System/Config/Source/Logo.php | 2 +- .../Paypal/Model/System/Config/Source/MerchantCountry.php | 2 +- .../Paypal/Model/System/Config/Source/PaymentActions.php | 2 +- .../Model/System/Config/Source/PaymentActions/Express.php | 2 +- .../Model/System/Config/Source/RequireBillingAddress.php | 2 +- .../Magento/Paypal/Model/System/Config/Source/UrlMethod.php | 2 +- .../Paypal/Model/System/Config/Source/Yesnoshortcut.php | 2 +- .../Observer/AddBillingAgreementToSessionObserver.php | 2 +- .../Magento/Paypal/Observer/AddPaypalShortcutsObserver.php | 2 +- .../Magento/Paypal/Observer/HtmlTransactionIdObserver.php | 2 +- app/code/Magento/Paypal/Observer/PayflowProAddCcData.php | 2 +- .../Observer/RestrictAdminBillingAgreementUsageObserver.php | 2 +- .../Paypal/Observer/SaveOrderAfterSubmitObserver.php | 2 +- .../Paypal/Observer/SetResponseAfterSaveOrderObserver.php | 2 +- app/code/Magento/Paypal/Setup/InstallData.php | 2 +- app/code/Magento/Paypal/Setup/InstallSchema.php | 2 +- .../Test/Unit/Block/Adminhtml/Store/SwitcherPluginTest.php | 2 +- .../Block/Adminhtml/System/Config/Field/CountryTest.php | 2 +- .../System/Config/Field/Enable/AbstractEnable/Stub.php | 2 +- .../System/Config/Field/Enable/AbstractEnableTest.php | 2 +- .../Block/Adminhtml/System/Config/Fieldset/GroupTest.php | 2 +- .../Block/Adminhtml/System/Config/Fieldset/HintTest.php | 2 +- .../Block/Adminhtml/System/Config/Fieldset/PaymentTest.php | 2 +- .../Block/Adminhtml/System/Config/ResolutionRulesTest.php | 2 +- .../Paypal/Test/Unit/Block/Billing/Agreement/ViewTest.php | 2 +- .../Paypal/Test/Unit/Block/Billing/AgreementsTest.php | 2 +- .../Magento/Paypal/Test/Unit/Block/Bml/ShortcutTest.php | 2 +- .../Magento/Paypal/Test/Unit/Block/Express/FormTest.php | 2 +- .../Magento/Paypal/Test/Unit/Block/Express/ReviewTest.php | 2 +- .../Magento/Paypal/Test/Unit/Block/Express/ShortcutTest.php | 2 +- .../Paypal/Test/Unit/Block/Payflow/Link/IframeTest.php | 2 +- .../Paypal/Test/Unit/Block/PayflowExpress/FormTest.php | 2 +- .../Test/Unit/Controller/Billing/Agreement/CancelTest.php | 2 +- .../Paypal/Test/Unit/Controller/Express/PlaceOrderTest.php | 2 +- .../Test/Unit/Controller/Express/ReturnActionTest.php | 2 +- .../Paypal/Test/Unit/Controller/Express/StartTest.php | 2 +- .../Magento/Paypal/Test/Unit/Controller/ExpressTest.php | 2 +- .../Magento/Paypal/Test/Unit/Controller/Ipn/IndexTest.php | 2 +- .../Paypal/Test/Unit/Controller/Payflow/ReturnUrlTest.php | 2 +- .../Unit/Controller/Transparent/RequestSecureTokenTest.php | 2 +- .../Test/Unit/Controller/Transparent/ResponseTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Cron/FetchReportsTest.php | 2 +- .../Paypal/Test/Unit/CustomerData/BillingAgreementTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Helper/BackendTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Helper/CheckoutTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Helper/DataTest.php | 2 +- .../Test/Unit/Helper/Shortcut/CheckoutValidatorTest.php | 2 +- .../Paypal/Test/Unit/Helper/Shortcut/FactoryTest.php | 2 +- .../Paypal/Test/Unit/Helper/Shortcut/ValidatorTest.php | 2 +- .../Magento/Paypal/Test/Unit/Model/AbstractConfigTest.php | 2 +- .../Paypal/Test/Unit/Model/AbstractConfigTesting.php | 2 +- app/code/Magento/Paypal/Test/Unit/Model/Api/NvpTest.php | 2 +- .../Paypal/Test/Unit/Model/Api/ProcessableExceptionTest.php | 2 +- .../Test/Unit/Model/Billing/AbstractAgreementTest.php | 2 +- .../Test/Unit/Model/Billing/Agreement/OrdersUpdaterTest.php | 2 +- .../Paypal/Test/Unit/Model/Billing/AgreementTest.php | 2 +- .../Test/Unit/Model/BillingAgreementConfigProviderTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Model/CartTest.php | 2 +- .../Paypal/Test/Unit/Model/Config/Rules/ConverterTest.php | 2 +- .../Unit/Model/Config/Rules/ConvertibleContent/rules.xml | 2 +- .../Test/Unit/Model/Config/Rules/FileResolverTest.php | 2 +- .../Paypal/Test/Unit/Model/Config/Rules/ReaderTest.php | 2 +- .../Test/Unit/Model/Config/Rules/SchemaLocatorTest.php | 2 +- .../Unit/Model/Config/Structure/Element/FieldPluginTest.php | 2 +- .../Paypal/Test/Unit/Model/Config/StructurePluginTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Model/ConfigTest.php | 2 +- .../Magento/Paypal/Test/Unit/Model/Express/CheckoutTest.php | 2 +- .../Paypal/Test/Unit/Model/ExpressConfigProviderTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Model/ExpressTest.php | 2 +- .../Paypal/Test/Unit/Model/Hostedpro/RequestTest.php | 2 +- .../Paypal/Test/Unit/Model/IframeConfigProviderTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Model/InfoTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Model/IpnTest.php | 2 +- .../Magento/Paypal/Test/Unit/Model/Method/AgreementTest.php | 2 +- .../Unit/Model/Method/Checks/SpecificationPluginTest.php | 2 +- .../Paypal/Test/Unit/Model/Payflow/Service/GatewayTest.php | 2 +- .../Unit/Model/Payflow/Service/Request/SecureTokenTest.php | 2 +- .../Response/Handler/CreditCardValidationHandlerTest.php | 2 +- .../Payflow/Service/Response/Handler/FraudHandlerTest.php | 2 +- .../Service/Response/Handler/HandlerCompositeTest.php | 2 +- .../Service/Response/Handler/_files/fps_prexmldata.xml | 4 ++-- .../Service/Response/Handler/_files/xxe_fps_prexmldata.xml | 4 ++-- .../Unit/Model/Payflow/Service/Response/TransactionTest.php | 2 +- .../Payflow/Service/Response/Validator/AVSResponseTest.php | 2 +- .../Payflow/Service/Response/Validator/CVV2MatchTest.php | 2 +- .../Service/Response/Validator/ResponseValidatorTest.php | 2 +- .../Payflow/Service/Response/Validator/SecureTokenTest.php | 2 +- .../Paypal/Test/Unit/Model/Payflow/TransparentTest.php | 2 +- .../Magento/Paypal/Test/Unit/Model/PayflowConfigTest.php | 2 +- .../Magento/Paypal/Test/Unit/Model/PayflowExpressTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Model/PayflowlinkTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Model/PayflowproTest.php | 2 +- .../Model/Payment/Method/Billing/AbstractAgreementStub.php | 2 +- .../Model/Payment/Method/Billing/AbstractAgreementTest.php | 2 +- app/code/Magento/Paypal/Test/Unit/Model/ProTest.php | 2 +- .../Paypal/Test/Unit/Model/Report/Settlement/RowTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Billing/AgreementTest.php | 2 +- .../Unit/Model/System/Config/Source/BmlPositionTest.php | 2 +- .../Unit/Model/System/Config/Source/YesnoshortcutTest.php | 2 +- .../Paypal/Test/Unit/Model/_files/additional_info_data.php | 2 +- .../Observer/AddBillingAgreementToSessionObserverTest.php | 2 +- .../Test/Unit/Observer/AddPaypalShortcutsObserverTest.php | 2 +- .../Test/Unit/Observer/HtmlTransactionIdObserverTest.php | 2 +- .../RestrictAdminBillingAgreementUsageObserverTest.php | 2 +- .../Unit/Observer/SetResponseAfterSaveOrderObserverTest.php | 2 +- app/code/Magento/Paypal/etc/acl.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/di.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/events.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/rules/payment_au.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/rules/payment_ca.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/rules/payment_de.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/rules/payment_es.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/rules/payment_fr.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/rules/payment_gb.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/rules/payment_hk.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/rules/payment_it.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/rules/payment_jp.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/rules/payment_nz.xml | 2 +- .../Magento/Paypal/etc/adminhtml/rules/payment_other.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/rules/payment_us.xml | 2 +- app/code/Magento/Paypal/etc/adminhtml/system.xml | 2 +- .../Paypal/etc/adminhtml/system/express_checkout.xml | 2 +- .../Paypal/etc/adminhtml/system/payflow_advanced.xml | 2 +- .../Magento/Paypal/etc/adminhtml/system/payflow_link.xml | 2 +- .../etc/adminhtml/system/payments_pro_hosted_solution.xml | 2 +- .../payments_pro_hosted_solution_with_express_checkout.xml | 2 +- .../Paypal/etc/adminhtml/system/paypal_payflowpro.xml | 2 +- .../system/paypal_payflowpro_with_express_checkout.xml | 2 +- app/code/Magento/Paypal/etc/config.xml | 2 +- app/code/Magento/Paypal/etc/crontab.xml | 2 +- app/code/Magento/Paypal/etc/di.xml | 2 +- app/code/Magento/Paypal/etc/events.xml | 2 +- app/code/Magento/Paypal/etc/frontend/di.xml | 2 +- app/code/Magento/Paypal/etc/frontend/events.xml | 2 +- app/code/Magento/Paypal/etc/frontend/page_types.xml | 2 +- app/code/Magento/Paypal/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Paypal/etc/frontend/sections.xml | 2 +- app/code/Magento/Paypal/etc/module.xml | 2 +- app/code/Magento/Paypal/etc/payment.xml | 2 +- app/code/Magento/Paypal/etc/rules.xsd | 2 +- app/code/Magento/Paypal/registration.php | 2 +- .../adminhtml/layout/adminhtml_paypal_reports_block.xml | 2 +- .../view/adminhtml/layout/adminhtml_system_config_edit.xml | 2 +- .../Paypal/view/adminhtml/layout/customer_index_edit.xml | 2 +- .../layout/paypal_billing_agreement_customergrid.xml | 2 +- .../view/adminhtml/layout/paypal_billing_agreement_grid.xml | 2 +- .../adminhtml/layout/paypal_billing_agreement_index.xml | 2 +- .../layout/paypal_billing_agreement_ordersgrid.xml | 2 +- .../view/adminhtml/layout/paypal_billing_agreement_view.xml | 2 +- .../view/adminhtml/layout/paypal_paypal_reports_grid.xml | 2 +- .../view/adminhtml/layout/paypal_paypal_reports_index.xml | 2 +- .../view/adminhtml/layout/sales_order_create_index.xml | 4 ++-- .../layout/sales_order_create_load_block_billing_method.xml | 4 ++-- .../view/adminhtml/layout/transparent_payment_response.xml | 2 +- .../view/adminhtml/templates/billing/agreement/form.phtml | 2 +- .../adminhtml/templates/billing/agreement/view/form.phtml | 2 +- .../templates/billing/agreement/view/tab/info.phtml | 2 +- .../Paypal/view/adminhtml/templates/payflowpro/vault.phtml | 2 +- .../templates/payment/form/billing/agreement.phtml | 2 +- .../view/adminhtml/templates/system/config/api_wizard.phtml | 2 +- .../adminhtml/templates/system/config/bml_api_wizard.phtml | 2 +- .../adminhtml/templates/system/config/fieldset/hint.phtml | 2 +- .../templates/system/config/payflowlink/advanced.phtml | 2 +- .../templates/system/config/payflowlink/info.phtml | 2 +- .../view/adminhtml/templates/system/config/rules.phtml | 2 +- .../Paypal/view/adminhtml/templates/transparent/form.phtml | 2 +- .../view/adminhtml/templates/transparent/iframe.phtml | 2 +- .../Paypal/view/adminhtml/web/js/payflowpro/vault.js | 2 +- .../Paypal/view/adminhtml/web/js/predicate/confirm.js | 2 +- app/code/Magento/Paypal/view/adminhtml/web/js/rule.js | 2 +- app/code/Magento/Paypal/view/adminhtml/web/js/rules.js | 2 +- app/code/Magento/Paypal/view/adminhtml/web/js/solution.js | 2 +- app/code/Magento/Paypal/view/adminhtml/web/js/solutions.js | 2 +- app/code/Magento/Paypal/view/adminhtml/web/styles.css | 4 ++-- app/code/Magento/Paypal/view/base/requirejs-config.js | 4 ++-- .../Paypal/view/frontend/layout/catalog_category_view.xml | 2 +- .../Paypal/view/frontend/layout/catalog_product_view.xml | 2 +- .../Paypal/view/frontend/layout/checkout_cart_index.xml | 2 +- .../Paypal/view/frontend/layout/checkout_index_index.xml | 4 ++-- .../Paypal/view/frontend/layout/checkout_onepage_review.xml | 2 +- .../view/frontend/layout/checkout_onepage_success.xml | 2 +- .../Magento/Paypal/view/frontend/layout/cms_index_index.xml | 2 +- .../Paypal/view/frontend/layout/customer_account.xml | 2 +- app/code/Magento/Paypal/view/frontend/layout/default.xml | 2 +- .../view/frontend/layout/paypal_billing_agreement_index.xml | 2 +- .../view/frontend/layout/paypal_billing_agreement_view.xml | 2 +- .../Paypal/view/frontend/layout/paypal_express_review.xml | 2 +- .../view/frontend/layout/paypal_express_review_details.xml | 2 +- .../view/frontend/layout/paypal_payflow_cancelpayment.xml | 2 +- .../Paypal/view/frontend/layout/paypal_payflow_form.xml | 2 +- .../view/frontend/layout/paypal_payflow_returnurl.xml | 2 +- .../layout/paypal_payflowadvanced_cancelpayment.xml | 2 +- .../view/frontend/layout/paypal_payflowadvanced_form.xml | 2 +- .../frontend/layout/paypal_payflowadvanced_returnurl.xml | 2 +- .../view/frontend/layout/paypal_payflowexpress_review.xml | 2 +- .../view/frontend/layout/transparent_payment_response.xml | 2 +- .../Paypal/view/frontend/layout/vault_cards_listaction.xml | 2 +- app/code/Magento/Paypal/view/frontend/requirejs-config.js | 2 +- .../view/frontend/templates/billing/agreement/view.phtml | 2 +- .../Paypal/view/frontend/templates/billing/agreements.phtml | 2 +- app/code/Magento/Paypal/view/frontend/templates/bml.phtml | 2 +- .../frontend/templates/checkout/onepage/review/totals.phtml | 2 +- .../checkout/onepage/success/billing_agreement.phtml | 2 +- .../frontend/templates/express/in-context/component.phtml | 2 +- .../templates/express/in-context/shortcut/button.phtml | 2 +- .../Paypal/view/frontend/templates/express/review.phtml | 2 +- .../view/frontend/templates/express/review/details.phtml | 2 +- .../frontend/templates/express/review/shipping/method.phtml | 2 +- .../Paypal/view/frontend/templates/express/shortcut.phtml | 2 +- .../frontend/templates/express/shortcut/container.phtml | 2 +- .../Magento/Paypal/view/frontend/templates/hss/form.phtml | 2 +- .../Magento/Paypal/view/frontend/templates/hss/iframe.phtml | 2 +- .../Magento/Paypal/view/frontend/templates/hss/info.phtml | 2 +- .../Magento/Paypal/view/frontend/templates/hss/js.phtml | 2 +- .../Paypal/view/frontend/templates/hss/review/button.phtml | 2 +- .../Paypal/view/frontend/templates/js/components.phtml | 4 ++-- .../Paypal/view/frontend/templates/partner/logo.phtml | 2 +- .../view/frontend/templates/payflowadvanced/form.phtml | 2 +- .../view/frontend/templates/payflowadvanced/info.phtml | 2 +- .../Paypal/view/frontend/templates/payflowlink/form.phtml | 2 +- .../Paypal/view/frontend/templates/payflowlink/info.phtml | 2 +- .../view/frontend/templates/payflowlink/redirect.phtml | 2 +- .../frontend/templates/payment/form/billing/agreement.phtml | 2 +- .../Paypal/view/frontend/templates/payment/mark.phtml | 2 +- .../Paypal/view/frontend/templates/payment/redirect.phtml | 2 +- .../view/frontend/web/js/action/set-payment-method.js | 2 +- .../view/frontend/web/js/in-context/billing-agreement.js | 2 +- .../Paypal/view/frontend/web/js/in-context/button.js | 2 +- .../view/frontend/web/js/in-context/express-checkout.js | 2 +- .../Paypal/view/frontend/web/js/model/iframe-redirect.js | 2 +- .../Magento/Paypal/view/frontend/web/js/model/iframe.js | 2 +- .../Magento/Paypal/view/frontend/web/js/paypal-checkout.js | 2 +- .../web/js/view/payment/method-renderer/iframe-methods.js | 2 +- .../payment/method-renderer/in-context/checkout-express.js | 2 +- .../js/view/payment/method-renderer/payflow-express-bml.js | 2 +- .../web/js/view/payment/method-renderer/payflow-express.js | 2 +- .../js/view/payment/method-renderer/payflowpro-method.js | 2 +- .../web/js/view/payment/method-renderer/payflowpro/vault.js | 2 +- .../payment/method-renderer/paypal-billing-agreement.js | 2 +- .../view/payment/method-renderer/paypal-express-abstract.js | 2 +- .../js/view/payment/method-renderer/paypal-express-bml.js | 2 +- .../web/js/view/payment/method-renderer/paypal-express.js | 2 +- .../view/frontend/web/js/view/payment/paypal-payments.js | 2 +- .../view/frontend/web/js/view/review/actions/iframe.js | 2 +- app/code/Magento/Paypal/view/frontend/web/order-review.js | 2 +- .../web/template/payment/express/billing-agreement.html | 2 +- .../view/frontend/web/template/payment/iframe-methods.html | 2 +- .../frontend/web/template/payment/payflow-express-bml.html | 2 +- .../view/frontend/web/template/payment/payflow-express.html | 2 +- .../view/frontend/web/template/payment/payflowpro-form.html | 2 +- .../frontend/web/template/payment/paypal-express-bml.html | 2 +- .../web/template/payment/paypal-express-in-context.html | 2 +- .../view/frontend/web/template/payment/paypal-express.html | 2 +- .../web/template/payment/paypal_billing_agreement-form.html | 2 +- .../frontend/web/template/payment/paypal_direct-form.html | 2 +- app/code/Magento/Persistent/Block/Form/Remember.php | 2 +- app/code/Magento/Persistent/Block/Header/Additional.php | 2 +- app/code/Magento/Persistent/Controller/Index.php | 2 +- .../Magento/Persistent/Controller/Index/ExpressCheckout.php | 2 +- app/code/Magento/Persistent/Controller/Index/SaveMethod.php | 2 +- .../Magento/Persistent/Controller/Index/UnsetCookie.php | 2 +- app/code/Magento/Persistent/Helper/Data.php | 2 +- app/code/Magento/Persistent/Helper/Session.php | 2 +- .../Model/Checkout/AddressDataProcessorPlugin.php | 2 +- .../Persistent/Model/Checkout/ConfigProviderPlugin.php | 2 +- .../Magento/Persistent/Model/CheckoutConfigProvider.php | 2 +- app/code/Magento/Persistent/Model/Factory.php | 2 +- .../Magento/Persistent/Model/Layout/DepersonalizePlugin.php | 2 +- app/code/Magento/Persistent/Model/Observer.php | 2 +- app/code/Magento/Persistent/Model/Persistent/Config.php | 2 +- app/code/Magento/Persistent/Model/Plugin/CustomerData.php | 2 +- app/code/Magento/Persistent/Model/QuoteManager.php | 2 +- app/code/Magento/Persistent/Model/ResourceModel/Session.php | 2 +- app/code/Magento/Persistent/Model/Session.php | 2 +- .../Observer/ApplyBlockPersistentDataObserver.php | 2 +- .../Persistent/Observer/ApplyPersistentDataObserver.php | 2 +- .../Observer/CheckExpirePersistentQuoteObserver.php | 2 +- .../Persistent/Observer/ClearExpiredCronJobObserver.php | 2 +- .../Observer/CustomerAuthenticatedEventObserver.php | 2 +- .../Magento/Persistent/Observer/EmulateCustomerObserver.php | 2 +- .../Magento/Persistent/Observer/EmulateQuoteObserver.php | 2 +- .../Observer/MakePersistentQuoteGuestObserver.php | 2 +- .../Observer/PreventClearCheckoutSessionObserver.php | 2 +- .../Persistent/Observer/PreventExpressCheckoutObserver.php | 2 +- .../Magento/Persistent/Observer/RefreshCustomerData.php | 2 +- .../Persistent/Observer/RemovePersistentCookieObserver.php | 2 +- .../Magento/Persistent/Observer/RenewCookieObserver.php | 2 +- .../Persistent/Observer/SetLoadPersistentQuoteObserver.php | 2 +- .../Persistent/Observer/SetQuotePersistentDataObserver.php | 2 +- .../Observer/SetRememberMeCheckedStatusObserver.php | 2 +- .../Observer/SetRememberMeStatusForAjaxLoginObserver.php | 2 +- .../Observer/SynchronizePersistentInfoObserver.php | 2 +- .../Observer/SynchronizePersistentOnLoginObserver.php | 2 +- .../Observer/SynchronizePersistentOnLogoutObserver.php | 2 +- .../Persistent/Observer/UpdateCustomerCookiesObserver.php | 2 +- app/code/Magento/Persistent/Setup/InstallSchema.php | 2 +- .../Persistent/Test/Unit/Block/Header/AdditionalTest.php | 2 +- app/code/Magento/Persistent/Test/Unit/Helper/DataTest.php | 2 +- .../Test/Unit/Model/Checkout/ConfigProviderPluginTest.php | 2 +- app/code/Magento/Persistent/Test/Unit/Model/FactoryTest.php | 2 +- .../Test/Unit/Model/Layout/DepersonalizePluginTest.php | 2 +- .../Persistent/Test/Unit/Model/Plugin/CustomerDataTest.php | 2 +- .../Magento/Persistent/Test/Unit/Model/QuoteManagerTest.php | 2 +- app/code/Magento/Persistent/Test/Unit/Model/SessionTest.php | 2 +- .../Unit/Observer/ApplyBlockPersistentDataObserverTest.php | 2 +- .../Test/Unit/Observer/ApplyPersistentDataObserverTest.php | 2 +- .../Observer/CheckExpirePersistentQuoteObserverTest.php | 2 +- .../Test/Unit/Observer/ClearExpiredCronJobObserverTest.php | 2 +- .../Observer/CustomerAuthenticatedEventObserverTest.php | 2 +- .../Test/Unit/Observer/EmulateCustomerObserverTest.php | 2 +- .../Test/Unit/Observer/EmulateQuoteObserverTest.php | 2 +- .../Unit/Observer/MakePersistentQuoteGuestObserverTest.php | 2 +- .../Observer/PreventClearCheckoutSessionObserverTest.php | 2 +- .../Unit/Observer/PreventExpressCheckoutObserverTest.php | 2 +- .../Test/Unit/Observer/RefreshCustomerDataTest.php | 2 +- .../Unit/Observer/RemovePersistentCookieObserverTest.php | 2 +- .../Test/Unit/Observer/RenewCookieObserverTest.php | 2 +- .../Unit/Observer/SetLoadPersistentQuoteObserverTest.php | 2 +- .../Unit/Observer/SetQuotePersistentDataObserverTest.php | 2 +- .../Observer/SetRememberMeCheckedStatusObserverTest.php | 2 +- .../Unit/Observer/SynchronizePersistentInfoObserverTest.php | 2 +- .../Observer/SynchronizePersistentOnLogoutObserverTest.php | 2 +- .../Unit/Observer/UpdateCustomerCookiesObserverTest.php | 2 +- app/code/Magento/Persistent/etc/acl.xml | 2 +- app/code/Magento/Persistent/etc/adminhtml/system.xml | 2 +- app/code/Magento/Persistent/etc/config.xml | 2 +- app/code/Magento/Persistent/etc/crontab.xml | 2 +- app/code/Magento/Persistent/etc/di.xml | 2 +- app/code/Magento/Persistent/etc/extension_attributes.xml | 2 +- app/code/Magento/Persistent/etc/frontend/di.xml | 2 +- app/code/Magento/Persistent/etc/frontend/events.xml | 2 +- app/code/Magento/Persistent/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Persistent/etc/module.xml | 2 +- app/code/Magento/Persistent/etc/persistent.xml | 2 +- app/code/Magento/Persistent/etc/persistent.xsd | 2 +- app/code/Magento/Persistent/etc/webapi_rest/events.xml | 2 +- app/code/Magento/Persistent/etc/webapi_soap/events.xml | 2 +- app/code/Magento/Persistent/registration.php | 2 +- .../view/frontend/layout/customer_account_create.xml | 2 +- .../view/frontend/layout/customer_account_login.xml | 2 +- .../Persistent/view/frontend/templates/remember_me.phtml | 2 +- .../Persistent/view/frontend/web/js/view/remember-me.js | 2 +- .../Persistent/view/frontend/web/template/remember-me.html | 2 +- app/code/Magento/ProductAlert/Block/Email/AbstractEmail.php | 2 +- app/code/Magento/ProductAlert/Block/Email/Price.php | 2 +- app/code/Magento/ProductAlert/Block/Email/Stock.php | 2 +- app/code/Magento/ProductAlert/Block/Product/View.php | 2 +- app/code/Magento/ProductAlert/Block/Product/View/Price.php | 2 +- app/code/Magento/ProductAlert/Block/Product/View/Stock.php | 2 +- app/code/Magento/ProductAlert/Controller/Add.php | 2 +- app/code/Magento/ProductAlert/Controller/Add/Price.php | 2 +- app/code/Magento/ProductAlert/Controller/Add/Stock.php | 2 +- .../Magento/ProductAlert/Controller/Add/TestObserver.php | 2 +- app/code/Magento/ProductAlert/Controller/Unsubscribe.php | 2 +- .../Magento/ProductAlert/Controller/Unsubscribe/Price.php | 2 +- .../ProductAlert/Controller/Unsubscribe/PriceAll.php | 2 +- .../Magento/ProductAlert/Controller/Unsubscribe/Stock.php | 2 +- .../ProductAlert/Controller/Unsubscribe/StockAll.php | 2 +- app/code/Magento/ProductAlert/Helper/Data.php | 2 +- app/code/Magento/ProductAlert/Model/Email.php | 2 +- app/code/Magento/ProductAlert/Model/Observer.php | 2 +- app/code/Magento/ProductAlert/Model/Price.php | 2 +- .../ProductAlert/Model/ResourceModel/AbstractResource.php | 2 +- app/code/Magento/ProductAlert/Model/ResourceModel/Price.php | 2 +- .../ProductAlert/Model/ResourceModel/Price/Collection.php | 2 +- .../Model/ResourceModel/Price/Customer/Collection.php | 2 +- app/code/Magento/ProductAlert/Model/ResourceModel/Stock.php | 2 +- .../ProductAlert/Model/ResourceModel/Stock/Collection.php | 2 +- .../Model/ResourceModel/Stock/Customer/Collection.php | 2 +- app/code/Magento/ProductAlert/Model/Stock.php | 2 +- app/code/Magento/ProductAlert/Setup/InstallSchema.php | 2 +- app/code/Magento/ProductAlert/Setup/Recurring.php | 2 +- .../ProductAlert/Test/Unit/Block/Email/StockTest.php | 2 +- .../ProductAlert/Test/Unit/Block/Product/View/PriceTest.php | 2 +- .../ProductAlert/Test/Unit/Block/Product/View/StockTest.php | 2 +- .../ProductAlert/Test/Unit/Block/Product/ViewTest.php | 2 +- .../Magento/ProductAlert/Test/Unit/Model/ObserverTest.php | 2 +- app/code/Magento/ProductAlert/etc/adminhtml/system.xml | 2 +- app/code/Magento/ProductAlert/etc/config.xml | 2 +- app/code/Magento/ProductAlert/etc/crontab.xml | 2 +- app/code/Magento/ProductAlert/etc/di.xml | 2 +- app/code/Magento/ProductAlert/etc/email_templates.xml | 2 +- app/code/Magento/ProductAlert/etc/frontend/routes.xml | 4 ++-- app/code/Magento/ProductAlert/etc/module.xml | 2 +- app/code/Magento/ProductAlert/registration.php | 2 +- .../ProductAlert/view/adminhtml/email/cron_error.html | 2 +- .../ProductAlert/view/frontend/email/price_alert.html | 2 +- .../ProductAlert/view/frontend/email/stock_alert.html | 2 +- .../view/frontend/layout/catalog_product_view.xml | 2 +- .../ProductAlert/view/frontend/templates/email/price.phtml | 2 +- .../ProductAlert/view/frontend/templates/email/stock.phtml | 2 +- .../ProductAlert/view/frontend/templates/product/view.phtml | 2 +- .../ProductVideo/Block/Adminhtml/Product/Edit/NewVideo.php | 2 +- .../Magento/ProductVideo/Block/Product/View/Gallery.php | 2 +- .../Controller/Adminhtml/Product/Gallery/RetrieveImage.php | 2 +- app/code/Magento/ProductVideo/Helper/Media.php | 2 +- .../Plugin/Catalog/Product/Gallery/AbstractHandler.php | 2 +- .../Model/Plugin/Catalog/Product/Gallery/CreateHandler.php | 2 +- .../Model/Plugin/Catalog/Product/Gallery/ReadHandler.php | 2 +- .../Model/Plugin/ExternalVideoResourceBackend.php | 2 +- .../Product/Attribute/Media/ExternalVideoEntryConverter.php | 2 +- .../Model/Product/Attribute/Media/VideoEntry.php | 2 +- app/code/Magento/ProductVideo/Model/ResourceModel/Video.php | 2 +- app/code/Magento/ProductVideo/Model/VideoExtractor.php | 2 +- .../ProductVideo/Observer/ChangeTemplateObserver.php | 2 +- app/code/Magento/ProductVideo/Setup/InstallSchema.php | 2 +- .../Test/Unit/Block/Adminhtml/Product/Edit/NewVideoTest.php | 2 +- .../Test/Unit/Block/Product/View/GalleryTest.php | 2 +- .../Adminhtml/Product/Gallery/RetrieveImageTest.php | 2 +- .../Magento/ProductVideo/Test/Unit/Helper/MediaTest.php | 2 +- .../Plugin/Catalog/Product/Gallery/CreateHandlerTest.php | 2 +- .../Plugin/Catalog/Product/Gallery/ReadHandlerTest.php | 2 +- .../Attribute/Media/ExternalVideoEntryConverterTest.php | 2 +- .../Unit/Model/Product/Attribute/Media/VideoEntryTest.php | 2 +- .../Test/Unit/Observer/ChangeTemplateObserverTest.php | 2 +- app/code/Magento/ProductVideo/etc/adminhtml/events.xml | 2 +- app/code/Magento/ProductVideo/etc/adminhtml/routes.xml | 2 +- app/code/Magento/ProductVideo/etc/adminhtml/system.xml | 2 +- app/code/Magento/ProductVideo/etc/config.xml | 2 +- app/code/Magento/ProductVideo/etc/di.xml | 2 +- app/code/Magento/ProductVideo/etc/extension_attributes.xml | 4 ++-- app/code/Magento/ProductVideo/etc/module.xml | 2 +- app/code/Magento/ProductVideo/registration.php | 2 +- .../view/adminhtml/layout/catalog_product_form.xml | 2 +- .../view/adminhtml/layout/catalog_product_new.xml | 2 +- .../Magento/ProductVideo/view/adminhtml/requirejs-config.js | 2 +- .../view/adminhtml/templates/helper/gallery.phtml | 2 +- .../view/adminhtml/templates/product/edit/base_image.phtml | 2 +- .../adminhtml/templates/product/edit/slideout/form.phtml | 2 +- .../view/adminhtml/web/js/get-video-information.js | 2 +- .../ProductVideo/view/adminhtml/web/js/new-video-dialog.js | 2 +- .../ProductVideo/view/adminhtml/web/js/video-modal.js | 2 +- .../view/frontend/layout/catalog_product_view.xml | 2 +- .../Magento/ProductVideo/view/frontend/requirejs-config.js | 2 +- .../view/frontend/templates/product/view/gallery.phtml | 2 +- .../view/frontend/web/js/fotorama-add-video-events.js | 2 +- .../ProductVideo/view/frontend/web/js/load-player.js | 2 +- .../Magento/Quote/Api/BillingAddressManagementInterface.php | 2 +- app/code/Magento/Quote/Api/CartItemRepositoryInterface.php | 2 +- app/code/Magento/Quote/Api/CartManagementInterface.php | 2 +- app/code/Magento/Quote/Api/CartRepositoryInterface.php | 2 +- app/code/Magento/Quote/Api/CartTotalManagementInterface.php | 2 +- app/code/Magento/Quote/Api/CartTotalRepositoryInterface.php | 2 +- app/code/Magento/Quote/Api/CouponManagementInterface.php | 2 +- .../Quote/Api/Data/AddressAdditionalDataInterface.php | 2 +- app/code/Magento/Quote/Api/Data/AddressInterface.php | 2 +- app/code/Magento/Quote/Api/Data/CartInterface.php | 2 +- app/code/Magento/Quote/Api/Data/CartItemInterface.php | 2 +- .../Magento/Quote/Api/Data/CartSearchResultsInterface.php | 2 +- app/code/Magento/Quote/Api/Data/CurrencyInterface.php | 2 +- .../Magento/Quote/Api/Data/EstimateAddressInterface.php | 2 +- app/code/Magento/Quote/Api/Data/PaymentInterface.php | 2 +- app/code/Magento/Quote/Api/Data/PaymentMethodInterface.php | 2 +- app/code/Magento/Quote/Api/Data/ProductOptionInterface.php | 2 +- .../Magento/Quote/Api/Data/ShippingAssignmentInterface.php | 2 +- app/code/Magento/Quote/Api/Data/ShippingInterface.php | 2 +- app/code/Magento/Quote/Api/Data/ShippingMethodInterface.php | 2 +- app/code/Magento/Quote/Api/Data/TotalSegmentInterface.php | 2 +- .../Quote/Api/Data/TotalsAdditionalDataInterface.php | 2 +- app/code/Magento/Quote/Api/Data/TotalsInterface.php | 2 +- app/code/Magento/Quote/Api/Data/TotalsItemInterface.php | 2 +- .../Quote/Api/GuestBillingAddressManagementInterface.php | 2 +- .../Magento/Quote/Api/GuestCartItemRepositoryInterface.php | 2 +- app/code/Magento/Quote/Api/GuestCartManagementInterface.php | 2 +- app/code/Magento/Quote/Api/GuestCartRepositoryInterface.php | 2 +- .../Magento/Quote/Api/GuestCartTotalManagementInterface.php | 2 +- .../Magento/Quote/Api/GuestCartTotalRepositoryInterface.php | 2 +- .../Magento/Quote/Api/GuestCouponManagementInterface.php | 2 +- .../Quote/Api/GuestPaymentMethodManagementInterface.php | 2 +- .../Magento/Quote/Api/GuestShipmentEstimationInterface.php | 2 +- .../Quote/Api/GuestShippingMethodManagementInterface.php | 2 +- .../Magento/Quote/Api/PaymentMethodManagementInterface.php | 2 +- app/code/Magento/Quote/Api/ShipmentEstimationInterface.php | 2 +- .../Magento/Quote/Api/ShippingMethodManagementInterface.php | 2 +- app/code/Magento/Quote/Model/AddressAdditionalData.php | 2 +- .../Magento/Quote/Model/AddressAdditionalDataProcessor.php | 2 +- app/code/Magento/Quote/Model/BillingAddressManagement.php | 2 +- app/code/Magento/Quote/Model/Cart/CartTotalManagement.php | 2 +- app/code/Magento/Quote/Model/Cart/CartTotalRepository.php | 2 +- app/code/Magento/Quote/Model/Cart/Currency.php | 2 +- app/code/Magento/Quote/Model/Cart/ShippingMethod.php | 2 +- .../Magento/Quote/Model/Cart/ShippingMethodConverter.php | 2 +- app/code/Magento/Quote/Model/Cart/TotalSegment.php | 2 +- app/code/Magento/Quote/Model/Cart/Totals.php | 2 +- app/code/Magento/Quote/Model/Cart/Totals/Item.php | 2 +- app/code/Magento/Quote/Model/Cart/Totals/ItemConverter.php | 2 +- app/code/Magento/Quote/Model/Cart/TotalsAdditionalData.php | 2 +- .../Quote/Model/Cart/TotalsAdditionalDataProcessor.php | 2 +- app/code/Magento/Quote/Model/Cart/TotalsConverter.php | 2 +- app/code/Magento/Quote/Model/CouponManagement.php | 2 +- app/code/Magento/Quote/Model/CustomerManagement.php | 2 +- app/code/Magento/Quote/Model/EstimateAddress.php | 2 +- .../Quote/Model/GuestCart/GuestBillingAddressManagement.php | 2 +- .../Quote/Model/GuestCart/GuestCartItemRepository.php | 2 +- .../Magento/Quote/Model/GuestCart/GuestCartManagement.php | 2 +- .../Magento/Quote/Model/GuestCart/GuestCartRepository.php | 2 +- .../Quote/Model/GuestCart/GuestCartTotalManagement.php | 2 +- .../Quote/Model/GuestCart/GuestCartTotalRepository.php | 2 +- .../Magento/Quote/Model/GuestCart/GuestCouponManagement.php | 2 +- .../Quote/Model/GuestCart/GuestPaymentMethodManagement.php | 2 +- .../Model/GuestCart/GuestShippingAddressManagement.php | 2 +- .../GuestCart/GuestShippingAddressManagementInterface.php | 2 +- .../Quote/Model/GuestCart/GuestShippingMethodManagement.php | 2 +- .../GuestCart/GuestShippingMethodManagementInterface.php | 2 +- .../Model/GuestCartManagement/Plugin/Authorization.php | 2 +- app/code/Magento/Quote/Model/PaymentMethodManagement.php | 2 +- .../Magento/Quote/Model/Product/Plugin/RemoveQuoteItems.php | 2 +- .../Magento/Quote/Model/Product/Plugin/UpdateQuoteItems.php | 2 +- app/code/Magento/Quote/Model/Product/QuoteItemsCleaner.php | 2 +- .../Quote/Model/Product/QuoteItemsCleanerInterface.php | 2 +- app/code/Magento/Quote/Model/QueryResolver.php | 2 +- app/code/Magento/Quote/Model/Quote.php | 2 +- app/code/Magento/Quote/Model/Quote/Address.php | 2 +- .../Quote/Model/Quote/Address/BillingAddressPersister.php | 2 +- .../Quote/Model/Quote/Address/CustomAttributeList.php | 2 +- .../Model/Quote/Address/CustomAttributeListInterface.php | 2 +- app/code/Magento/Quote/Model/Quote/Address/FreeShipping.php | 2 +- .../Quote/Model/Quote/Address/FreeShippingInterface.php | 2 +- app/code/Magento/Quote/Model/Quote/Address/Item.php | 2 +- app/code/Magento/Quote/Model/Quote/Address/Rate.php | 2 +- .../Quote/Model/Quote/Address/RateCollectorInterface.php | 2 +- .../Model/Quote/Address/RateCollectorInterfaceFactory.php | 2 +- app/code/Magento/Quote/Model/Quote/Address/RateRequest.php | 2 +- .../Quote/Model/Quote/Address/RateResult/AbstractResult.php | 2 +- .../Magento/Quote/Model/Quote/Address/RateResult/Error.php | 2 +- .../Magento/Quote/Model/Quote/Address/RateResult/Method.php | 2 +- app/code/Magento/Quote/Model/Quote/Address/Relation.php | 2 +- app/code/Magento/Quote/Model/Quote/Address/ToOrder.php | 2 +- .../Magento/Quote/Model/Quote/Address/ToOrderAddress.php | 2 +- app/code/Magento/Quote/Model/Quote/Address/Total.php | 2 +- .../Quote/Model/Quote/Address/Total/AbstractTotal.php | 2 +- .../Magento/Quote/Model/Quote/Address/Total/Collector.php | 2 +- .../Quote/Model/Quote/Address/Total/CollectorInterface.php | 2 +- app/code/Magento/Quote/Model/Quote/Address/Total/Grand.php | 2 +- .../Quote/Model/Quote/Address/Total/ReaderInterface.php | 2 +- .../Magento/Quote/Model/Quote/Address/Total/Shipping.php | 2 +- .../Magento/Quote/Model/Quote/Address/Total/Subtotal.php | 2 +- app/code/Magento/Quote/Model/Quote/Address/TotalFactory.php | 2 +- app/code/Magento/Quote/Model/Quote/Address/Validator.php | 2 +- app/code/Magento/Quote/Model/Quote/Config.php | 2 +- app/code/Magento/Quote/Model/Quote/Item.php | 2 +- app/code/Magento/Quote/Model/Quote/Item/AbstractItem.php | 2 +- .../Quote/Model/Quote/Item/CartItemOptionsProcessor.php | 2 +- .../Magento/Quote/Model/Quote/Item/CartItemPersister.php | 2 +- .../Quote/Model/Quote/Item/CartItemProcessorInterface.php | 2 +- .../Quote/Model/Quote/Item/CartItemProcessorsPool.php | 2 +- app/code/Magento/Quote/Model/Quote/Item/Compare.php | 2 +- app/code/Magento/Quote/Model/Quote/Item/Option.php | 2 +- app/code/Magento/Quote/Model/Quote/Item/Processor.php | 2 +- app/code/Magento/Quote/Model/Quote/Item/RelatedProducts.php | 2 +- app/code/Magento/Quote/Model/Quote/Item/Repository.php | 2 +- app/code/Magento/Quote/Model/Quote/Item/ToOrderItem.php | 2 +- app/code/Magento/Quote/Model/Quote/Item/Updater.php | 2 +- app/code/Magento/Quote/Model/Quote/Payment.php | 2 +- .../Magento/Quote/Model/Quote/Payment/ToOrderPayment.php | 2 +- app/code/Magento/Quote/Model/Quote/ProductOption.php | 2 +- app/code/Magento/Quote/Model/Quote/Relation.php | 2 +- .../ShippingAssignment/ShippingAssignmentPersister.php | 2 +- .../ShippingAssignment/ShippingAssignmentProcessor.php | 2 +- .../Model/Quote/ShippingAssignment/ShippingProcessor.php | 2 +- app/code/Magento/Quote/Model/Quote/TotalsCollector.php | 2 +- app/code/Magento/Quote/Model/Quote/TotalsCollectorList.php | 2 +- app/code/Magento/Quote/Model/Quote/TotalsReader.php | 2 +- .../Validator/MinimumOrderAmount/ValidationMessage.php | 2 +- app/code/Magento/Quote/Model/QuoteAddressValidator.php | 2 +- app/code/Magento/Quote/Model/QuoteIdMask.php | 2 +- app/code/Magento/Quote/Model/QuoteManagement.php | 2 +- app/code/Magento/Quote/Model/QuoteRepository.php | 2 +- .../Magento/Quote/Model/QuoteRepository/LoadHandler.php | 2 +- .../Quote/Model/QuoteRepository/Plugin/Authorization.php | 2 +- .../Magento/Quote/Model/QuoteRepository/SaveHandler.php | 2 +- app/code/Magento/Quote/Model/QuoteValidator.php | 2 +- app/code/Magento/Quote/Model/ResourceModel/Quote.php | 2 +- .../Magento/Quote/Model/ResourceModel/Quote/Address.php | 2 +- .../Model/ResourceModel/Quote/Address/Attribute/Backend.php | 2 +- .../ResourceModel/Quote/Address/Attribute/Backend/Child.php | 2 +- .../Quote/Address/Attribute/Backend/Region.php | 2 +- .../ResourceModel/Quote/Address/Attribute/Frontend.php | 2 +- .../Quote/Address/Attribute/Frontend/Custbalance.php | 2 +- .../Quote/Address/Attribute/Frontend/Discount.php | 2 +- .../Quote/Address/Attribute/Frontend/Grand.php | 2 +- .../Quote/Address/Attribute/Frontend/Shipping.php | 2 +- .../Quote/Address/Attribute/Frontend/Subtotal.php | 2 +- .../ResourceModel/Quote/Address/Attribute/Frontend/Tax.php | 2 +- .../Quote/Model/ResourceModel/Quote/Address/Collection.php | 2 +- .../Quote/Model/ResourceModel/Quote/Address/Item.php | 2 +- .../Model/ResourceModel/Quote/Address/Item/Collection.php | 2 +- .../Quote/Model/ResourceModel/Quote/Address/Rate.php | 2 +- .../Model/ResourceModel/Quote/Address/Rate/Collection.php | 2 +- .../Magento/Quote/Model/ResourceModel/Quote/Collection.php | 2 +- app/code/Magento/Quote/Model/ResourceModel/Quote/Item.php | 2 +- .../Quote/Model/ResourceModel/Quote/Item/Collection.php | 2 +- .../Magento/Quote/Model/ResourceModel/Quote/Item/Option.php | 2 +- .../Model/ResourceModel/Quote/Item/Option/Collection.php | 2 +- .../Magento/Quote/Model/ResourceModel/Quote/Payment.php | 2 +- .../Quote/Model/ResourceModel/Quote/Payment/Collection.php | 2 +- .../Magento/Quote/Model/ResourceModel/Quote/QuoteIdMask.php | 2 +- app/code/Magento/Quote/Model/Shipping.php | 2 +- app/code/Magento/Quote/Model/ShippingAddressAssignment.php | 2 +- app/code/Magento/Quote/Model/ShippingAddressManagement.php | 2 +- .../Quote/Model/ShippingAddressManagementInterface.php | 2 +- app/code/Magento/Quote/Model/ShippingAssignment.php | 2 +- app/code/Magento/Quote/Model/ShippingMethodManagement.php | 2 +- .../Quote/Model/ShippingMethodManagementInterface.php | 2 +- .../Magento/Quote/Model/Webapi/ParamOverriderCartId.php | 2 +- .../Quote/Observer/Backend/CustomerQuoteObserver.php | 2 +- .../Frontend/Quote/Address/CollectTotalsObserver.php | 2 +- .../Quote/Observer/Frontend/Quote/Address/VatValidator.php | 2 +- app/code/Magento/Quote/Observer/Webapi/SubmitObserver.php | 2 +- app/code/Magento/Quote/Setup/InstallData.php | 2 +- app/code/Magento/Quote/Setup/InstallSchema.php | 2 +- app/code/Magento/Quote/Setup/QuoteSetup.php | 2 +- app/code/Magento/Quote/Setup/UpgradeSchema.php | 2 +- .../Quote/Test/Unit/Model/BillingAddressManagementTest.php | 2 +- .../Quote/Test/Unit/Model/Cart/CartTotalManagementTest.php | 2 +- .../Quote/Test/Unit/Model/Cart/CartTotalRepositoryTest.php | 2 +- .../Test/Unit/Model/Cart/ShippingMethodConverterTest.php | 2 +- .../Quote/Test/Unit/Model/Cart/Totals/ItemConverterTest.php | 2 +- .../Magento/Quote/Test/Unit/Model/CouponManagementTest.php | 2 +- .../Quote/Test/Unit/Model/CustomerManagementTest.php | 2 +- .../Model/GuestCart/GuestBillingAddressManagementTest.php | 2 +- .../Unit/Model/GuestCart/GuestCartItemRepositoryTest.php | 2 +- .../Test/Unit/Model/GuestCart/GuestCartManagementTest.php | 2 +- .../Test/Unit/Model/GuestCart/GuestCartRepositoryTest.php | 2 +- .../Quote/Test/Unit/Model/GuestCart/GuestCartTestHelper.php | 2 +- .../Unit/Model/GuestCart/GuestCartTotalRepositoryTest.php | 2 +- .../Test/Unit/Model/GuestCart/GuestCouponManagementTest.php | 2 +- .../Model/GuestCart/GuestPaymentMethodManagementTest.php | 2 +- .../Model/GuestCart/GuestShippingAddressManagementTest.php | 2 +- .../Model/GuestCart/GuestShippingMethodManagementTest.php | 2 +- .../Model/GuestCartManagement/Plugin/AuthorizationTest.php | 2 +- .../Quote/Test/Unit/Model/PaymentMethodManagementTest.php | 2 +- .../Test/Unit/Model/Product/Plugin/RemoveQuoteItemsTest.php | 2 +- .../Test/Unit/Model/Product/Plugin/UpdateQuoteItemsTest.php | 2 +- .../Quote/Test/Unit/Model/Product/QuoteItemsCleanerTest.php | 2 +- .../Magento/Quote/Test/Unit/Model/QueryResolverTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Address/RelationTest.php | 2 +- .../Test/Unit/Model/Quote/Address/ToOrderAddressTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Address/ToOrderTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Address/Total/GrandTest.php | 2 +- .../Test/Unit/Model/Quote/Address/Total/ShippingTest.php | 2 +- .../Test/Unit/Model/Quote/Address/Total/SubtotalTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Address/TotalTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Address/ValidatorTest.php | 2 +- .../Magento/Quote/Test/Unit/Model/Quote/AddressTest.php | 2 +- app/code/Magento/Quote/Test/Unit/Model/Quote/ConfigTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Item/AbstractItemTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Item/CompareTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Item/ProcessorTest.php | 2 +- .../Test/Unit/Model/Quote/Item/RelatedProductsTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Item/RepositoryTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Item/ToOrderItemTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php | 2 +- app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php | 2 +- .../Test/Unit/Model/Quote/Payment/ToOrderPaymentTest.php | 2 +- .../Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php | 2 +- .../Magento/Quote/Test/Unit/Model/Quote/RelationTest.php | 2 +- .../ShippingAssignment/ShippingAssignmentProcessorTest.php | 2 +- .../Quote/ShippingAssignment/ShippingProcessorTest.php | 2 +- .../Quote/Test/Unit/Model/Quote/TotalsReaderTest.php | 2 +- .../Validator/MinimumOrderAmount/ValidationMessageTest.php | 2 +- .../Quote/Test/Unit/Model/QuoteAddressValidatorTest.php | 2 +- app/code/Magento/Quote/Test/Unit/Model/QuoteIdMaskTest.php | 2 +- .../Magento/Quote/Test/Unit/Model/QuoteManagementTest.php | 2 +- .../Unit/Model/QuoteRepository/Plugin/AuthorizationTest.php | 2 +- .../Test/Unit/Model/QuoteRepository/SaveHandlerTest.php | 2 +- .../Magento/Quote/Test/Unit/Model/QuoteRepositoryTest.php | 2 +- app/code/Magento/Quote/Test/Unit/Model/QuoteTest.php | 2 +- .../Magento/Quote/Test/Unit/Model/QuoteValidatorTest.php | 2 +- .../Unit/Model/ResourceModel/Quote/Item/CollectionTest.php | 2 +- .../Quote/Test/Unit/Model/ResourceModel/Quote/ItemTest.php | 2 +- .../Unit/Model/ResourceModel/Quote/QuoteAddressTest.php | 2 +- .../Quote/Test/Unit/Model/ResourceModel/QuoteTest.php | 2 +- .../Quote/Test/Unit/Model/ShippingAddressAssignmentTest.php | 2 +- .../Quote/Test/Unit/Model/ShippingAddressManagementTest.php | 2 +- .../Quote/Test/Unit/Model/ShippingMethodManagementTest.php | 2 +- .../Test/Unit/Model/Webapi/ParamOverriderCartIdTest.php | 2 +- .../Unit/Observer/Backend/CustomerQuoteObserverTest.php | 2 +- .../Frontend/Quote/Address/CollectTotalsObserverTest.php | 2 +- .../Observer/Frontend/Quote/Address/VatValidatorTest.php | 2 +- .../Quote/Test/Unit/Observer/Webapi/SubmitObserverTest.php | 2 +- app/code/Magento/Quote/etc/acl.xml | 2 +- app/code/Magento/Quote/etc/adminhtml/events.xml | 2 +- app/code/Magento/Quote/etc/di.xml | 2 +- app/code/Magento/Quote/etc/events.xml | 2 +- app/code/Magento/Quote/etc/extension_attributes.xml | 2 +- app/code/Magento/Quote/etc/fieldset.xml | 2 +- app/code/Magento/Quote/etc/module.xml | 2 +- app/code/Magento/Quote/etc/sales.xml | 2 +- app/code/Magento/Quote/etc/webapi.xml | 2 +- app/code/Magento/Quote/etc/webapi_rest/di.xml | 2 +- app/code/Magento/Quote/etc/webapi_rest/events.xml | 4 ++-- app/code/Magento/Quote/etc/webapi_soap/di.xml | 2 +- app/code/Magento/Quote/etc/webapi_soap/events.xml | 4 ++-- app/code/Magento/Quote/registration.php | 2 +- .../Reports/Block/Adminhtml/Config/Form/Field/MtdStart.php | 2 +- .../Reports/Block/Adminhtml/Config/Form/Field/YtdStart.php | 2 +- .../Magento/Reports/Block/Adminhtml/Customer/Accounts.php | 2 +- .../Magento/Reports/Block/Adminhtml/Customer/Orders.php | 2 +- .../Magento/Reports/Block/Adminhtml/Customer/Totals.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Grid.php | 2 +- .../Magento/Reports/Block/Adminhtml/Grid/AbstractGrid.php | 2 +- .../Block/Adminhtml/Grid/Column/Renderer/Blanknumber.php | 2 +- .../Block/Adminhtml/Grid/Column/Renderer/Currency.php | 2 +- .../Block/Adminhtml/Grid/Column/Renderer/Customer.php | 2 +- .../Block/Adminhtml/Grid/Column/Renderer/Product.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Grid/Shopcart.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Product.php | 2 +- .../Magento/Reports/Block/Adminhtml/Product/Downloads.php | 2 +- .../Reports/Block/Adminhtml/Product/Downloads/Grid.php | 2 +- .../Adminhtml/Product/Downloads/Renderer/Purchases.php | 2 +- .../Magento/Reports/Block/Adminhtml/Product/Lowstock.php | 2 +- .../Reports/Block/Adminhtml/Product/Lowstock/Grid.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Product/Sold.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Product/Viewed.php | 2 +- .../Magento/Reports/Block/Adminhtml/Product/Viewed/Grid.php | 2 +- .../Magento/Reports/Block/Adminhtml/Refresh/Statistics.php | 2 +- .../Magento/Reports/Block/Adminhtml/Review/Customer.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Review/Detail.php | 2 +- .../Magento/Reports/Block/Adminhtml/Review/Detail/Grid.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Review/Product.php | 2 +- .../Magento/Reports/Block/Adminhtml/Sales/Bestsellers.php | 2 +- .../Reports/Block/Adminhtml/Sales/Bestsellers/Grid.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons.php | 2 +- .../Magento/Reports/Block/Adminhtml/Sales/Coupons/Grid.php | 2 +- .../Block/Adminhtml/Sales/Grid/Column/Renderer/Date.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced.php | 2 +- .../Magento/Reports/Block/Adminhtml/Sales/Invoiced/Grid.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded.php | 2 +- .../Magento/Reports/Block/Adminhtml/Sales/Refunded/Grid.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Sales/Sales.php | 2 +- .../Magento/Reports/Block/Adminhtml/Sales/Sales/Grid.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping.php | 2 +- .../Magento/Reports/Block/Adminhtml/Sales/Shipping/Grid.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Sales/Tax.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Sales/Tax/Grid.php | 2 +- .../Magento/Reports/Block/Adminhtml/Shopcart/Abandoned.php | 2 +- .../Reports/Block/Adminhtml/Shopcart/Abandoned/Grid.php | 2 +- .../Magento/Reports/Block/Adminhtml/Shopcart/Customer.php | 2 +- .../Reports/Block/Adminhtml/Shopcart/Customer/Grid.php | 2 +- .../Magento/Reports/Block/Adminhtml/Shopcart/Product.php | 2 +- .../Reports/Block/Adminhtml/Shopcart/Product/Grid.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Wishlist.php | 2 +- app/code/Magento/Reports/Block/Adminhtml/Wishlist/Grid.php | 2 +- app/code/Magento/Reports/Block/Product/AbstractProduct.php | 2 +- app/code/Magento/Reports/Block/Product/Compared.php | 2 +- app/code/Magento/Reports/Block/Product/Viewed.php | 2 +- app/code/Magento/Reports/Block/Product/Widget/Compared.php | 2 +- app/code/Magento/Reports/Block/Product/Widget/Viewed.php | 2 +- .../Magento/Reports/Block/Product/Widget/Viewed/Item.php | 2 +- app/code/Magento/Reports/Controller/Adminhtml/Index.php | 2 +- .../Reports/Controller/Adminhtml/Report/AbstractReport.php | 2 +- .../Reports/Controller/Adminhtml/Report/Customer.php | 2 +- .../Controller/Adminhtml/Report/Customer/Accounts.php | 2 +- .../Adminhtml/Report/Customer/ExportAccountsCsv.php | 2 +- .../Adminhtml/Report/Customer/ExportAccountsExcel.php | 2 +- .../Adminhtml/Report/Customer/ExportOrdersCsv.php | 2 +- .../Adminhtml/Report/Customer/ExportOrdersExcel.php | 2 +- .../Adminhtml/Report/Customer/ExportTotalsCsv.php | 2 +- .../Adminhtml/Report/Customer/ExportTotalsExcel.php | 2 +- .../Reports/Controller/Adminhtml/Report/Customer/Orders.php | 2 +- .../Reports/Controller/Adminhtml/Report/Customer/Totals.php | 2 +- .../Magento/Reports/Controller/Adminhtml/Report/Product.php | 2 +- .../Controller/Adminhtml/Report/Product/Downloads.php | 2 +- .../Adminhtml/Report/Product/ExportDownloadsCsv.php | 2 +- .../Adminhtml/Report/Product/ExportDownloadsExcel.php | 2 +- .../Adminhtml/Report/Product/ExportLowstockCsv.php | 2 +- .../Adminhtml/Report/Product/ExportLowstockExcel.php | 2 +- .../Controller/Adminhtml/Report/Product/ExportSoldCsv.php | 2 +- .../Controller/Adminhtml/Report/Product/ExportSoldExcel.php | 2 +- .../Controller/Adminhtml/Report/Product/ExportViewedCsv.php | 2 +- .../Adminhtml/Report/Product/ExportViewedExcel.php | 2 +- .../Controller/Adminhtml/Report/Product/Lowstock.php | 2 +- .../Reports/Controller/Adminhtml/Report/Product/Sold.php | 2 +- .../Reports/Controller/Adminhtml/Report/Product/Viewed.php | 2 +- .../Magento/Reports/Controller/Adminhtml/Report/Review.php | 2 +- .../Reports/Controller/Adminhtml/Report/Review/Customer.php | 2 +- .../Adminhtml/Report/Review/ExportCustomerCsv.php | 2 +- .../Adminhtml/Report/Review/ExportCustomerExcel.php | 2 +- .../Controller/Adminhtml/Report/Review/ExportProductCsv.php | 2 +- .../Adminhtml/Report/Review/ExportProductDetailCsv.php | 2 +- .../Adminhtml/Report/Review/ExportProductDetailExcel.php | 2 +- .../Adminhtml/Report/Review/ExportProductExcel.php | 2 +- .../Reports/Controller/Adminhtml/Report/Review/Product.php | 2 +- .../Controller/Adminhtml/Report/Review/ProductDetail.php | 2 +- .../Magento/Reports/Controller/Adminhtml/Report/Sales.php | 2 +- .../Controller/Adminhtml/Report/Sales/Bestsellers.php | 2 +- .../Reports/Controller/Adminhtml/Report/Sales/Coupons.php | 2 +- .../Adminhtml/Report/Sales/ExportBestsellersCsv.php | 2 +- .../Adminhtml/Report/Sales/ExportBestsellersExcel.php | 2 +- .../Controller/Adminhtml/Report/Sales/ExportCouponsCsv.php | 2 +- .../Adminhtml/Report/Sales/ExportCouponsExcel.php | 2 +- .../Controller/Adminhtml/Report/Sales/ExportInvoicedCsv.php | 2 +- .../Adminhtml/Report/Sales/ExportInvoicedExcel.php | 2 +- .../Controller/Adminhtml/Report/Sales/ExportRefundedCsv.php | 2 +- .../Adminhtml/Report/Sales/ExportRefundedExcel.php | 2 +- .../Controller/Adminhtml/Report/Sales/ExportSalesCsv.php | 2 +- .../Controller/Adminhtml/Report/Sales/ExportSalesExcel.php | 2 +- .../Controller/Adminhtml/Report/Sales/ExportShippingCsv.php | 2 +- .../Adminhtml/Report/Sales/ExportShippingExcel.php | 2 +- .../Controller/Adminhtml/Report/Sales/ExportTaxCsv.php | 2 +- .../Controller/Adminhtml/Report/Sales/ExportTaxExcel.php | 2 +- .../Reports/Controller/Adminhtml/Report/Sales/Invoiced.php | 2 +- .../Controller/Adminhtml/Report/Sales/RefreshLifetime.php | 2 +- .../Controller/Adminhtml/Report/Sales/RefreshRecent.php | 2 +- .../Controller/Adminhtml/Report/Sales/RefreshStatistics.php | 2 +- .../Reports/Controller/Adminhtml/Report/Sales/Refunded.php | 2 +- .../Reports/Controller/Adminhtml/Report/Sales/Sales.php | 2 +- .../Reports/Controller/Adminhtml/Report/Sales/Shipping.php | 2 +- .../Reports/Controller/Adminhtml/Report/Sales/Tax.php | 2 +- .../Reports/Controller/Adminhtml/Report/Shopcart.php | 2 +- .../Controller/Adminhtml/Report/Shopcart/Abandoned.php | 2 +- .../Controller/Adminhtml/Report/Shopcart/Customer.php | 2 +- .../Adminhtml/Report/Shopcart/ExportAbandonedCsv.php | 2 +- .../Adminhtml/Report/Shopcart/ExportAbandonedExcel.php | 2 +- .../Adminhtml/Report/Shopcart/ExportCustomerCsv.php | 2 +- .../Adminhtml/Report/Shopcart/ExportCustomerExcel.php | 2 +- .../Adminhtml/Report/Shopcart/ExportProductCsv.php | 2 +- .../Adminhtml/Report/Shopcart/ExportProductExcel.php | 2 +- .../Controller/Adminhtml/Report/Shopcart/Product.php | 2 +- .../Reports/Controller/Adminhtml/Report/Statistics.php | 2 +- .../Controller/Adminhtml/Report/Statistics/Index.php | 2 +- .../Adminhtml/Report/Statistics/RefreshLifetime.php | 2 +- .../Adminhtml/Report/Statistics/RefreshRecent.php | 2 +- app/code/Magento/Reports/Helper/Data.php | 2 +- app/code/Magento/Reports/Model/Config.php | 2 +- app/code/Magento/Reports/Model/Event.php | 2 +- app/code/Magento/Reports/Model/Event/Type.php | 2 +- app/code/Magento/Reports/Model/Flag.php | 2 +- app/code/Magento/Reports/Model/Grouped/Collection.php | 2 +- app/code/Magento/Reports/Model/Item.php | 2 +- app/code/Magento/Reports/Model/Plugin/Log.php | 2 +- .../Magento/Reports/Model/Product/Index/AbstractIndex.php | 2 +- app/code/Magento/Reports/Model/Product/Index/Compared.php | 2 +- app/code/Magento/Reports/Model/Product/Index/Factory.php | 2 +- app/code/Magento/Reports/Model/Product/Index/Viewed.php | 2 +- .../Reports/Model/ResourceModel/Accounts/Collection.php | 2 +- .../Model/ResourceModel/Accounts/Collection/Initial.php | 2 +- .../Reports/Model/ResourceModel/Customer/Collection.php | 2 +- .../Model/ResourceModel/Customer/Orders/Collection.php | 2 +- .../ResourceModel/Customer/Orders/Collection/Initial.php | 2 +- .../Model/ResourceModel/Customer/Totals/Collection.php | 2 +- .../ResourceModel/Customer/Totals/Collection/Initial.php | 2 +- app/code/Magento/Reports/Model/ResourceModel/Event.php | 2 +- .../Reports/Model/ResourceModel/Event/Collection.php | 2 +- app/code/Magento/Reports/Model/ResourceModel/Event/Type.php | 2 +- .../Reports/Model/ResourceModel/Event/Type/Collection.php | 2 +- app/code/Magento/Reports/Model/ResourceModel/Helper.php | 2 +- .../Magento/Reports/Model/ResourceModel/HelperInterface.php | 2 +- .../Reports/Model/ResourceModel/Order/Collection.php | 2 +- .../Reports/Model/ResourceModel/Product/Collection.php | 2 +- .../Model/ResourceModel/Product/Downloads/Collection.php | 2 +- .../Model/ResourceModel/Product/Index/AbstractIndex.php | 2 +- .../Product/Index/Collection/AbstractCollection.php | 2 +- .../Reports/Model/ResourceModel/Product/Index/Compared.php | 2 +- .../ResourceModel/Product/Index/Compared/Collection.php | 2 +- .../Reports/Model/ResourceModel/Product/Index/Viewed.php | 2 +- .../Model/ResourceModel/Product/Index/Viewed/Collection.php | 2 +- .../Model/ResourceModel/Product/Lowstock/Collection.php | 2 +- .../Reports/Model/ResourceModel/Product/Sold/Collection.php | 2 +- .../Model/ResourceModel/Product/Sold/Collection/Initial.php | 2 +- .../Reports/Model/ResourceModel/Quote/Collection.php | 2 +- .../Reports/Model/ResourceModel/Quote/CollectionFactory.php | 2 +- .../ResourceModel/Quote/CollectionFactoryInterface.php | 2 +- .../Reports/Model/ResourceModel/Quote/Item/Collection.php | 2 +- .../Reports/Model/ResourceModel/Refresh/Collection.php | 2 +- .../Reports/Model/ResourceModel/Report/AbstractReport.php | 2 +- .../Reports/Model/ResourceModel/Report/Collection.php | 2 +- .../ResourceModel/Report/Collection/AbstractCollection.php | 2 +- .../Model/ResourceModel/Report/Collection/Factory.php | 2 +- .../Reports/Model/ResourceModel/Report/Product/Viewed.php | 2 +- .../ResourceModel/Report/Product/Viewed/Collection.php | 2 +- .../Reports/Model/ResourceModel/Review/Collection.php | 2 +- .../Model/ResourceModel/Review/Customer/Collection.php | 2 +- .../Model/ResourceModel/Review/Product/Collection.php | 2 +- .../Reports/Model/ResourceModel/Wishlist/Collection.php | 2 +- .../Model/ResourceModel/Wishlist/Product/Collection.php | 2 +- .../Observer/CatalogProductCompareAddProductObserver.php | 2 +- .../Reports/Observer/CatalogProductCompareClearObserver.php | 2 +- .../Magento/Reports/Observer/CatalogProductViewObserver.php | 2 +- .../Reports/Observer/CheckoutCartAddProductObserver.php | 2 +- app/code/Magento/Reports/Observer/CustomerLoginObserver.php | 2 +- .../Magento/Reports/Observer/CustomerLogoutObserver.php | 2 +- app/code/Magento/Reports/Observer/EventSaver.php | 2 +- .../Magento/Reports/Observer/SendfriendProductObserver.php | 2 +- .../Magento/Reports/Observer/WishlistAddProductObserver.php | 2 +- app/code/Magento/Reports/Observer/WishlistShareObserver.php | 2 +- app/code/Magento/Reports/Setup/InstallData.php | 2 +- app/code/Magento/Reports/Setup/InstallSchema.php | 2 +- app/code/Magento/Reports/Setup/Recurring.php | 2 +- .../Block/Adminhtml/Sales/Grid/Column/Renderer/DateTest.php | 2 +- .../Reports/Test/Unit/Block/Product/ComparedTest.php | 2 +- .../Magento/Reports/Test/Unit/Block/Product/ViewedTest.php | 2 +- .../Controller/Adminhtml/Report/AbstractControllerTest.php | 2 +- .../Controller/Adminhtml/Report/Customer/AccountsTest.php | 2 +- .../Adminhtml/Report/Customer/ExportAccountsCsvTest.php | 2 +- .../Adminhtml/Report/Customer/ExportAccountsExcelTest.php | 2 +- .../Adminhtml/Report/Customer/ExportOrdersCsvTest.php | 2 +- .../Adminhtml/Report/Customer/ExportOrdersExcelTest.php | 2 +- .../Adminhtml/Report/Customer/ExportTotalsCsvTest.php | 2 +- .../Adminhtml/Report/Customer/ExportTotalsExcelTest.php | 2 +- .../Controller/Adminhtml/Report/Customer/OrdersTest.php | 2 +- .../Controller/Adminhtml/Report/Customer/TotalsTest.php | 2 +- .../Controller/Adminhtml/Report/Product/DownloadsTest.php | 2 +- .../Adminhtml/Report/Product/ExportDownloadsCsvTest.php | 2 +- .../Adminhtml/Report/Product/ExportDownloadsExcelTest.php | 2 +- .../Adminhtml/Report/Product/ExportLowstockCsvTest.php | 2 +- .../Adminhtml/Report/Product/ExportLowstockExcelTest.php | 2 +- .../Adminhtml/Report/Product/ExportSoldCsvTest.php | 2 +- .../Adminhtml/Report/Product/ExportSoldExcelTest.php | 2 +- .../Adminhtml/Report/Product/ExportViewedCsvTest.php | 2 +- .../Adminhtml/Report/Product/ExportViewedExcelTest.php | 2 +- .../Controller/Adminhtml/Report/Product/LowstockTest.php | 2 +- .../Unit/Controller/Adminhtml/Report/Product/SoldTest.php | 2 +- .../Unit/Controller/Adminhtml/Report/Product/ViewedTest.php | 2 +- app/code/Magento/Reports/Test/Unit/Helper/DataTest.php | 2 +- app/code/Magento/Reports/Test/Unit/Model/Plugin/LogTest.php | 2 +- .../Reports/Test/Unit/Model/Product/Index/ComparedTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Event/CollectionTest.php | 2 +- .../Reports/Test/Unit/Model/ResourceModel/EventTest.php | 2 +- .../Reports/Test/Unit/Model/ResourceModel/HelperTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Order/CollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Quote/CollectionTest.php | 2 +- .../Report/Collection/AbstractCollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Report/CollectionTest.php | 2 +- .../Unit/Model/ResourceModel/Report/Product/ViewedTest.php | 2 +- .../Model/ResourceModel/Report/Quote/CollectionTest.php | 2 +- .../CatalogProductCompareAddProductObserverTest.php | 2 +- .../Test/Unit/Observer/CatalogProductViewObserverTest.php | 2 +- .../Test/Unit/Observer/CustomerLoginObserverTest.php | 2 +- .../Test/Unit/Observer/CustomerLogoutObserverTest.php | 2 +- app/code/Magento/Reports/etc/acl.xml | 2 +- app/code/Magento/Reports/etc/adminhtml/di.xml | 2 +- app/code/Magento/Reports/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Reports/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Reports/etc/adminhtml/system.xml | 2 +- app/code/Magento/Reports/etc/config.xml | 2 +- app/code/Magento/Reports/etc/di.xml | 2 +- app/code/Magento/Reports/etc/frontend/events.xml | 2 +- app/code/Magento/Reports/etc/module.xml | 2 +- app/code/Magento/Reports/etc/webapi_rest/events.xml | 2 +- app/code/Magento/Reports/etc/webapi_soap/events.xml | 2 +- app/code/Magento/Reports/etc/widget.xml | 2 +- app/code/Magento/Reports/registration.php | 2 +- .../adminhtml/layout/reports_report_customer_accounts.xml | 2 +- .../layout/reports_report_customer_accounts_grid.xml | 2 +- .../layout/reports_report_customer_exportaccountscsv.xml | 2 +- .../layout/reports_report_customer_exportaccountsexcel.xml | 2 +- .../layout/reports_report_customer_exportorderscsv.xml | 2 +- .../layout/reports_report_customer_exportordersexcel.xml | 2 +- .../layout/reports_report_customer_exporttotalscsv.xml | 2 +- .../layout/reports_report_customer_exporttotalsexcel.xml | 2 +- .../adminhtml/layout/reports_report_customer_orders.xml | 2 +- .../layout/reports_report_customer_orders_grid.xml | 2 +- .../adminhtml/layout/reports_report_customer_totals.xml | 2 +- .../layout/reports_report_customer_totals_grid.xml | 2 +- .../Reports/view/adminhtml/layout/reports_report_grid.xml | 2 +- .../adminhtml/layout/reports_report_product_downloads.xml | 2 +- .../layout/reports_report_product_exportlowstockcsv.xml | 2 +- .../layout/reports_report_product_exportlowstockexcel.xml | 2 +- .../layout/reports_report_product_exportsoldcsv.xml | 2 +- .../layout/reports_report_product_exportsoldexcel.xml | 2 +- .../adminhtml/layout/reports_report_product_lowstock.xml | 2 +- .../layout/reports_report_product_lowstock_grid.xml | 2 +- .../view/adminhtml/layout/reports_report_product_sold.xml | 2 +- .../adminhtml/layout/reports_report_product_sold_grid.xml | 2 +- .../view/adminhtml/layout/reports_report_product_viewed.xml | 2 +- .../adminhtml/layout/reports_report_review_customer.xml | 2 +- .../layout/reports_report_review_customer_grid.xml | 2 +- .../layout/reports_report_review_exportcustomercsv.xml | 2 +- .../layout/reports_report_review_exportcustomerexcel.xml | 2 +- .../layout/reports_report_review_exportproductcsv.xml | 2 +- .../layout/reports_report_review_exportproductexcel.xml | 2 +- .../view/adminhtml/layout/reports_report_review_product.xml | 2 +- .../adminhtml/layout/reports_report_review_product_grid.xml | 2 +- .../adminhtml/layout/reports_report_sales_bestsellers.xml | 2 +- .../view/adminhtml/layout/reports_report_sales_coupons.xml | 2 +- .../view/adminhtml/layout/reports_report_sales_invoiced.xml | 2 +- .../view/adminhtml/layout/reports_report_sales_refunded.xml | 2 +- .../view/adminhtml/layout/reports_report_sales_sales.xml | 2 +- .../view/adminhtml/layout/reports_report_sales_shipping.xml | 2 +- .../view/adminhtml/layout/reports_report_sales_tax.xml | 2 +- .../adminhtml/layout/reports_report_shopcart_abandoned.xml | 2 +- .../adminhtml/layout/reports_report_statistics_index.xml | 2 +- .../Magento/Reports/view/adminhtml/layout/reports_sales.xml | 2 +- .../Magento/Reports/view/adminhtml/templates/grid.phtml | 2 +- .../view/adminhtml/templates/report/grid/container.phtml | 2 +- .../adminhtml/templates/report/refresh/statistics.phtml | 2 +- .../Reports/view/adminhtml/templates/report/wishlist.phtml | 2 +- .../Reports/view/adminhtml/templates/store/switcher.phtml | 2 +- .../view/adminhtml/templates/store/switcher/enhanced.phtml | 2 +- app/code/Magento/Reports/view/frontend/layout/default.xml | 2 +- app/code/Magento/Reports/view/frontend/layout/print.xml | 2 +- app/code/Magento/Reports/view/frontend/requirejs-config.js | 4 ++-- .../Reports/view/frontend/templates/js/components.phtml | 2 +- .../view/frontend/templates/product/widget/viewed.phtml | 2 +- .../frontend/templates/product/widget/viewed/item.phtml | 2 +- .../widget/compared/column/compared_default_list.phtml | 2 +- .../widget/compared/column/compared_images_list.phtml | 2 +- .../widget/compared/column/compared_names_list.phtml | 2 +- .../templates/widget/compared/content/compared_grid.phtml | 2 +- .../templates/widget/compared/content/compared_list.phtml | 2 +- .../widget/viewed/column/viewed_default_list.phtml | 2 +- .../templates/widget/viewed/column/viewed_images_list.phtml | 2 +- .../templates/widget/viewed/column/viewed_names_list.phtml | 2 +- .../templates/widget/viewed/content/viewed_grid.phtml | 2 +- .../templates/widget/viewed/content/viewed_list.phtml | 2 +- .../Magento/Reports/view/frontend/web/js/recently-viewed.js | 4 ++-- app/code/Magento/RequireJs/Block/Html/Head/Config.php | 2 +- app/code/Magento/RequireJs/Model/FileManager.php | 2 +- .../RequireJs/Test/Unit/Block/Html/Head/ConfigTest.php | 2 +- .../Magento/RequireJs/Test/Unit/Model/FileManagerTest.php | 2 +- app/code/Magento/RequireJs/etc/di.xml | 2 +- app/code/Magento/RequireJs/etc/module.xml | 2 +- app/code/Magento/RequireJs/registration.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Add.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Add/Form.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Edit.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Edit/Form.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Grid.php | 2 +- .../Magento/Review/Block/Adminhtml/Grid/Filter/Type.php | 2 +- .../Magento/Review/Block/Adminhtml/Grid/Renderer/Type.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Main.php | 2 +- .../Magento/Review/Block/Adminhtml/Product/Edit/Tab.php | 2 +- .../Review/Block/Adminhtml/Product/Edit/Tab/Reviews.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Product/Grid.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Rating.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Rating/Detailed.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Rating/Edit.php | 2 +- .../Magento/Review/Block/Adminhtml/Rating/Edit/Form.php | 2 +- .../Magento/Review/Block/Adminhtml/Rating/Edit/Tab/Form.php | 2 +- .../Magento/Review/Block/Adminhtml/Rating/Edit/Tabs.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Rating/Summary.php | 2 +- app/code/Magento/Review/Block/Adminhtml/ReviewTab.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Rss.php | 2 +- app/code/Magento/Review/Block/Adminhtml/Rss/Grid/Link.php | 2 +- app/code/Magento/Review/Block/Customer/ListCustomer.php | 2 +- app/code/Magento/Review/Block/Customer/Recent.php | 2 +- app/code/Magento/Review/Block/Customer/View.php | 2 +- app/code/Magento/Review/Block/Form.php | 2 +- app/code/Magento/Review/Block/Form/Configure.php | 2 +- .../Block/Product/Compare/ListCompare/Plugin/Review.php | 2 +- app/code/Magento/Review/Block/Product/Review.php | 2 +- app/code/Magento/Review/Block/Product/ReviewRenderer.php | 2 +- app/code/Magento/Review/Block/Product/View.php | 2 +- app/code/Magento/Review/Block/Product/View/ListView.php | 2 +- app/code/Magento/Review/Block/Product/View/Other.php | 2 +- app/code/Magento/Review/Block/Rating/Entity/Detailed.php | 2 +- app/code/Magento/Review/Block/View.php | 2 +- app/code/Magento/Review/Controller/Adminhtml/Product.php | 2 +- .../Magento/Review/Controller/Adminhtml/Product/Delete.php | 2 +- .../Magento/Review/Controller/Adminhtml/Product/Edit.php | 2 +- .../Magento/Review/Controller/Adminhtml/Product/Index.php | 2 +- .../Review/Controller/Adminhtml/Product/JsonProductInfo.php | 2 +- .../Review/Controller/Adminhtml/Product/MassDelete.php | 2 +- .../Controller/Adminhtml/Product/MassUpdateStatus.php | 2 +- .../Review/Controller/Adminhtml/Product/MassVisibleIn.php | 2 +- .../Review/Controller/Adminhtml/Product/NewAction.php | 2 +- .../Magento/Review/Controller/Adminhtml/Product/Pending.php | 2 +- .../Magento/Review/Controller/Adminhtml/Product/Post.php | 2 +- .../Review/Controller/Adminhtml/Product/ProductGrid.php | 2 +- .../Review/Controller/Adminhtml/Product/RatingItems.php | 2 +- .../Review/Controller/Adminhtml/Product/ReviewGrid.php | 2 +- .../Review/Controller/Adminhtml/Product/Reviews/Grid.php | 2 +- .../Magento/Review/Controller/Adminhtml/Product/Save.php | 2 +- app/code/Magento/Review/Controller/Adminhtml/Rating.php | 2 +- .../Magento/Review/Controller/Adminhtml/Rating/Delete.php | 2 +- .../Magento/Review/Controller/Adminhtml/Rating/Edit.php | 2 +- .../Magento/Review/Controller/Adminhtml/Rating/Index.php | 2 +- .../Review/Controller/Adminhtml/Rating/NewAction.php | 2 +- .../Magento/Review/Controller/Adminhtml/Rating/Save.php | 2 +- app/code/Magento/Review/Controller/Customer.php | 2 +- app/code/Magento/Review/Controller/Customer/Index.php | 2 +- app/code/Magento/Review/Controller/Customer/View.php | 2 +- app/code/Magento/Review/Controller/Product.php | 2 +- app/code/Magento/Review/Controller/Product/ListAction.php | 2 +- app/code/Magento/Review/Controller/Product/ListAjax.php | 2 +- app/code/Magento/Review/Controller/Product/Post.php | 2 +- app/code/Magento/Review/Controller/Product/View.php | 2 +- app/code/Magento/Review/CustomerData/Review.php | 2 +- app/code/Magento/Review/Helper/Action/Pager.php | 2 +- app/code/Magento/Review/Helper/Data.php | 2 +- app/code/Magento/Review/Model/Rating.php | 2 +- app/code/Magento/Review/Model/Rating/Entity.php | 2 +- app/code/Magento/Review/Model/Rating/Option.php | 2 +- app/code/Magento/Review/Model/Rating/Option/Vote.php | 2 +- app/code/Magento/Review/Model/ResourceModel/Rating.php | 2 +- .../Review/Model/ResourceModel/Rating/Collection.php | 2 +- .../Magento/Review/Model/ResourceModel/Rating/Entity.php | 2 +- .../Review/Model/ResourceModel/Rating/Grid/Collection.php | 2 +- .../Magento/Review/Model/ResourceModel/Rating/Option.php | 2 +- .../Review/Model/ResourceModel/Rating/Option/Collection.php | 2 +- .../Review/Model/ResourceModel/Rating/Option/Vote.php | 2 +- .../Model/ResourceModel/Rating/Option/Vote/Collection.php | 2 +- app/code/Magento/Review/Model/ResourceModel/Review.php | 2 +- .../Review/Model/ResourceModel/Review/Collection.php | 2 +- .../Model/ResourceModel/Review/Product/Collection.php | 2 +- .../Magento/Review/Model/ResourceModel/Review/Status.php | 2 +- .../Review/Model/ResourceModel/Review/Status/Collection.php | 2 +- .../Magento/Review/Model/ResourceModel/Review/Summary.php | 2 +- .../Model/ResourceModel/Review/Summary/Collection.php | 2 +- app/code/Magento/Review/Model/Review.php | 2 +- app/code/Magento/Review/Model/Review/Status.php | 2 +- app/code/Magento/Review/Model/Review/Summary.php | 2 +- app/code/Magento/Review/Model/Rss.php | 2 +- .../CatalogBlockProductCollectionBeforeToHtmlObserver.php | 2 +- .../Observer/ProcessProductAfterDeleteEventObserver.php | 2 +- .../Observer/TagProductCollectionLoadAfterObserver.php | 2 +- app/code/Magento/Review/Setup/InstallData.php | 2 +- app/code/Magento/Review/Setup/InstallSchema.php | 2 +- .../Magento/Review/Test/Unit/Block/Adminhtml/MainTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Rating/Edit/Tab/FormTest.php | 2 +- .../Review/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php | 2 +- .../Magento/Review/Test/Unit/Block/Adminhtml/RssTest.php | 2 +- .../Magento/Review/Test/Unit/Block/Customer/RecentTest.php | 2 +- app/code/Magento/Review/Test/Unit/Block/FormTest.php | 2 +- .../Magento/Review/Test/Unit/Block/Product/ReviewTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Product/PostTest.php | 2 +- .../Review/Test/Unit/Controller/Product/PostTest.php | 2 +- .../Magento/Review/Test/Unit/Helper/Action/PagerTest.php | 2 +- app/code/Magento/Review/Test/Unit/Model/RatingTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Review/CollectionTest.php | 2 +- .../Model/ResourceModel/Review/Product/CollectionTest.php | 2 +- .../Model/ResourceModel/Review/Summary/CollectionTest.php | 2 +- app/code/Magento/Review/Test/Unit/Model/ReviewTest.php | 2 +- app/code/Magento/Review/Test/Unit/Model/RssTest.php | 2 +- .../Unit/Ui/Component/Listing/Columns/ReviewActionsTest.php | 2 +- .../Test/Unit/Ui/Component/Listing/Columns/StatusTest.php | 2 +- .../Test/Unit/Ui/Component/Listing/Columns/TypeTest.php | 2 +- .../Unit/Ui/Component/Listing/Columns/VisibilityTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/ReviewTest.php | 2 +- .../Unit/Ui/DataProvider/Product/ReviewDataProviderTest.php | 2 +- .../Review/Ui/Component/Listing/Columns/ReviewActions.php | 2 +- .../Magento/Review/Ui/Component/Listing/Columns/Status.php | 2 +- .../Magento/Review/Ui/Component/Listing/Columns/Type.php | 2 +- .../Review/Ui/Component/Listing/Columns/Visibility.php | 2 +- .../Review/Ui/DataProvider/Product/Form/Modifier/Review.php | 2 +- .../Review/Ui/DataProvider/Product/ReviewDataProvider.php | 2 +- app/code/Magento/Review/etc/acl.xml | 2 +- app/code/Magento/Review/etc/adminhtml/di.xml | 2 +- app/code/Magento/Review/etc/adminhtml/events.xml | 2 +- app/code/Magento/Review/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Review/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Review/etc/adminhtml/system.xml | 2 +- app/code/Magento/Review/etc/config.xml | 2 +- app/code/Magento/Review/etc/di.xml | 2 +- app/code/Magento/Review/etc/frontend/di.xml | 2 +- app/code/Magento/Review/etc/frontend/events.xml | 2 +- app/code/Magento/Review/etc/frontend/page_types.xml | 2 +- app/code/Magento/Review/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Review/etc/frontend/sections.xml | 2 +- app/code/Magento/Review/etc/module.xml | 2 +- app/code/Magento/Review/registration.php | 2 +- .../Review/view/adminhtml/layout/catalog_product_new.xml | 2 +- .../Review/view/adminhtml/layout/customer_index_edit.xml | 2 +- .../Magento/Review/view/adminhtml/layout/rating_block.xml | 2 +- .../Review/view/adminhtml/layout/review_product_edit.xml | 2 +- .../Review/view/adminhtml/layout/review_product_index.xml | 2 +- .../view/adminhtml/layout/review_product_reviews_grid.xml | 2 +- .../Review/view/adminhtml/layout/review_rating_edit.xml | 2 +- .../Review/view/adminhtml/layout/review_rating_index.xml | 2 +- app/code/Magento/Review/view/adminhtml/templates/add.phtml | 2 +- .../Review/view/adminhtml/templates/rating/detailed.phtml | 2 +- .../Review/view/adminhtml/templates/rating/form.phtml | 2 +- .../Review/view/adminhtml/templates/rating/options.phtml | 2 +- .../view/adminhtml/templates/rating/stars/detailed.phtml | 2 +- .../view/adminhtml/templates/rating/stars/summary.phtml | 2 +- .../Review/view/adminhtml/templates/rss/grid/link.phtml | 2 +- .../Review/view/adminhtml/ui_component/review_listing.xml | 2 +- app/code/Magento/Review/view/adminhtml/web/js/rating.js | 4 ++-- .../Review/view/frontend/layout/catalog_product_view.xml | 2 +- .../Review/view/frontend/layout/checkout_cart_configure.xml | 2 +- .../Review/view/frontend/layout/customer_account.xml | 2 +- .../Review/view/frontend/layout/customer_account_index.xml | 2 +- .../Review/view/frontend/layout/review_customer_index.xml | 2 +- .../Review/view/frontend/layout/review_customer_view.xml | 2 +- .../view/frontend/layout/review_product_form_component.xml | 4 ++-- .../Review/view/frontend/layout/review_product_list.xml | 2 +- .../Review/view/frontend/layout/review_product_listajax.xml | 2 +- .../Review/view/frontend/layout/review_product_view.xml | 2 +- .../view/frontend/layout/wishlist_index_configure.xml | 2 +- .../Review/view/frontend/templates/customer/list.phtml | 2 +- .../Review/view/frontend/templates/customer/recent.phtml | 2 +- .../Review/view/frontend/templates/customer/view.phtml | 2 +- .../Magento/Review/view/frontend/templates/detailed.phtml | 2 +- app/code/Magento/Review/view/frontend/templates/empty.phtml | 2 +- app/code/Magento/Review/view/frontend/templates/form.phtml | 2 +- .../Review/view/frontend/templates/helper/summary.phtml | 2 +- .../view/frontend/templates/helper/summary_short.phtml | 2 +- .../Review/view/frontend/templates/product/view/count.phtml | 2 +- .../Review/view/frontend/templates/product/view/list.phtml | 2 +- .../Review/view/frontend/templates/product/view/other.phtml | 2 +- .../Magento/Review/view/frontend/templates/redirect.phtml | 2 +- .../Magento/Review/view/frontend/templates/review.phtml | 2 +- app/code/Magento/Review/view/frontend/templates/view.phtml | 2 +- .../Magento/Review/view/frontend/web/js/error-placement.js | 2 +- .../Magento/Review/view/frontend/web/js/process-reviews.js | 2 +- app/code/Magento/Review/view/frontend/web/js/view/review.js | 2 +- .../Magento/Rss/App/Action/Plugin/BackendAuthentication.php | 2 +- app/code/Magento/Rss/Block/Feeds.php | 2 +- app/code/Magento/Rss/Controller/Adminhtml/Feed.php | 2 +- app/code/Magento/Rss/Controller/Adminhtml/Feed/Index.php | 2 +- app/code/Magento/Rss/Controller/Feed.php | 2 +- app/code/Magento/Rss/Controller/Feed/Index.php | 2 +- app/code/Magento/Rss/Controller/Index.php | 2 +- app/code/Magento/Rss/Controller/Index/Index.php | 2 +- app/code/Magento/Rss/Model/Rss.php | 2 +- app/code/Magento/Rss/Model/RssManager.php | 2 +- app/code/Magento/Rss/Model/System/Config/Backend/Links.php | 2 +- app/code/Magento/Rss/Model/UrlBuilder.php | 2 +- .../Unit/App/Action/Plugin/BackendAuthenticationTest.php | 2 +- app/code/Magento/Rss/Test/Unit/Block/FeedsTest.php | 2 +- .../Rss/Test/Unit/Controller/Adminhtml/Feed/IndexTest.php | 2 +- .../Magento/Rss/Test/Unit/Controller/Feed/IndexTest.php | 2 +- app/code/Magento/Rss/Test/Unit/Model/RssManagerTest.php | 2 +- app/code/Magento/Rss/Test/Unit/Model/RssTest.php | 2 +- app/code/Magento/Rss/Test/Unit/Model/UrlBuilderTest.php | 2 +- app/code/Magento/Rss/etc/acl.xml | 2 +- app/code/Magento/Rss/etc/adminhtml/di.xml | 2 +- app/code/Magento/Rss/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Rss/etc/adminhtml/system.xml | 2 +- app/code/Magento/Rss/etc/di.xml | 2 +- app/code/Magento/Rss/etc/frontend/page_types.xml | 2 +- app/code/Magento/Rss/etc/frontend/routes.xml | 2 +- app/code/Magento/Rss/etc/module.xml | 2 +- app/code/Magento/Rss/registration.php | 2 +- app/code/Magento/Rss/view/frontend/layout/default.xml | 2 +- .../Magento/Rss/view/frontend/layout/rss_index_index.xml | 2 +- app/code/Magento/Rss/view/frontend/templates/feeds.phtml | 2 +- app/code/Magento/Rule/Block/Actions.php | 2 +- app/code/Magento/Rule/Block/Conditions.php | 2 +- app/code/Magento/Rule/Block/Editable.php | 2 +- app/code/Magento/Rule/Block/Newchild.php | 2 +- app/code/Magento/Rule/Block/Rule.php | 2 +- app/code/Magento/Rule/Model/AbstractModel.php | 2 +- app/code/Magento/Rule/Model/Action/AbstractAction.php | 2 +- app/code/Magento/Rule/Model/Action/ActionInterface.php | 2 +- app/code/Magento/Rule/Model/Action/Collection.php | 2 +- app/code/Magento/Rule/Model/ActionFactory.php | 2 +- app/code/Magento/Rule/Model/Condition/AbstractCondition.php | 2 +- app/code/Magento/Rule/Model/Condition/Combine.php | 2 +- .../Magento/Rule/Model/Condition/ConditionInterface.php | 2 +- app/code/Magento/Rule/Model/Condition/Context.php | 2 +- .../Rule/Model/Condition/Product/AbstractProduct.php | 2 +- app/code/Magento/Rule/Model/Condition/Sql/Builder.php | 2 +- app/code/Magento/Rule/Model/Condition/Sql/Expression.php | 2 +- app/code/Magento/Rule/Model/ConditionFactory.php | 2 +- app/code/Magento/Rule/Model/Renderer/Actions.php | 2 +- app/code/Magento/Rule/Model/Renderer/Conditions.php | 2 +- .../Magento/Rule/Model/ResourceModel/AbstractResource.php | 2 +- .../ResourceModel/Rule/Collection/AbstractCollection.php | 2 +- app/code/Magento/Rule/Test/Unit/Model/ActionFactoryTest.php | 2 +- .../Test/Unit/Model/Condition/AbstractConditionTest.php | 2 +- .../Magento/Rule/Test/Unit/Model/Condition/CombineTest.php | 2 +- .../Unit/Model/Condition/Product/AbstractProductTest.php | 2 +- .../Rule/Test/Unit/Model/Condition/Sql/BuilderTest.php | 2 +- .../Rule/Test/Unit/Model/Condition/Sql/ExpressionTest.php | 2 +- .../Magento/Rule/Test/Unit/Model/ConditionFactoryTest.php | 2 +- .../Magento/Rule/Test/Unit/Model/Renderer/ActionsTest.php | 2 +- .../Rule/Test/Unit/Model/Renderer/ConditionsTest.php | 2 +- .../Rule/Collection/AbstractCollectionTest.php | 2 +- app/code/Magento/Rule/etc/module.xml | 2 +- app/code/Magento/Rule/registration.php | 2 +- app/code/Magento/Rule/view/adminhtml/web/rules.js | 4 ++-- .../Sales/Api/CreditmemoCommentRepositoryInterface.php | 2 +- .../Magento/Sales/Api/CreditmemoItemRepositoryInterface.php | 2 +- .../Magento/Sales/Api/CreditmemoManagementInterface.php | 2 +- .../Magento/Sales/Api/CreditmemoRepositoryInterface.php | 2 +- app/code/Magento/Sales/Api/Data/CommentInterface.php | 2 +- .../Sales/Api/Data/CreditmemoCommentCreationInterface.php | 2 +- .../Magento/Sales/Api/Data/CreditmemoCommentInterface.php | 2 +- .../Api/Data/CreditmemoCommentSearchResultInterface.php | 2 +- .../Sales/Api/Data/CreditmemoCreationArgumentsInterface.php | 2 +- app/code/Magento/Sales/Api/Data/CreditmemoInterface.php | 2 +- .../Sales/Api/Data/CreditmemoItemCreationInterface.php | 2 +- app/code/Magento/Sales/Api/Data/CreditmemoItemInterface.php | 2 +- .../Sales/Api/Data/CreditmemoItemSearchResultInterface.php | 2 +- .../Sales/Api/Data/CreditmemoSearchResultInterface.php | 2 +- app/code/Magento/Sales/Api/Data/EntityInterface.php | 2 +- .../Sales/Api/Data/InvoiceCommentCreationInterface.php | 2 +- app/code/Magento/Sales/Api/Data/InvoiceCommentInterface.php | 2 +- .../Sales/Api/Data/InvoiceCommentSearchResultInterface.php | 2 +- .../Sales/Api/Data/InvoiceCreationArgumentsInterface.php | 2 +- app/code/Magento/Sales/Api/Data/InvoiceInterface.php | 2 +- .../Magento/Sales/Api/Data/InvoiceItemCreationInterface.php | 2 +- app/code/Magento/Sales/Api/Data/InvoiceItemInterface.php | 2 +- .../Sales/Api/Data/InvoiceItemSearchResultInterface.php | 2 +- .../Magento/Sales/Api/Data/InvoiceSearchResultInterface.php | 2 +- app/code/Magento/Sales/Api/Data/LineItemInterface.php | 2 +- app/code/Magento/Sales/Api/Data/OrderAddressInterface.php | 2 +- .../Sales/Api/Data/OrderAddressSearchResultInterface.php | 2 +- app/code/Magento/Sales/Api/Data/OrderInterface.php | 2 +- app/code/Magento/Sales/Api/Data/OrderItemInterface.php | 2 +- .../Sales/Api/Data/OrderItemSearchResultInterface.php | 2 +- app/code/Magento/Sales/Api/Data/OrderPaymentInterface.php | 2 +- .../Sales/Api/Data/OrderPaymentSearchResultInterface.php | 2 +- .../Magento/Sales/Api/Data/OrderSearchResultInterface.php | 2 +- .../Magento/Sales/Api/Data/OrderStatusHistoryInterface.php | 2 +- .../Api/Data/OrderStatusHistorySearchResultInterface.php | 2 +- .../Sales/Api/Data/ShipmentCommentCreationInterface.php | 2 +- .../Magento/Sales/Api/Data/ShipmentCommentInterface.php | 2 +- .../Sales/Api/Data/ShipmentCommentSearchResultInterface.php | 2 +- .../Sales/Api/Data/ShipmentCreationArgumentsInterface.php | 2 +- app/code/Magento/Sales/Api/Data/ShipmentInterface.php | 2 +- .../Sales/Api/Data/ShipmentItemCreationInterface.php | 2 +- app/code/Magento/Sales/Api/Data/ShipmentItemInterface.php | 2 +- .../Sales/Api/Data/ShipmentItemSearchResultInterface.php | 2 +- .../Sales/Api/Data/ShipmentPackageCreationInterface.php | 2 +- .../Magento/Sales/Api/Data/ShipmentPackageInterface.php | 2 +- .../Sales/Api/Data/ShipmentSearchResultInterface.php | 2 +- .../Sales/Api/Data/ShipmentTrackCreationInterface.php | 2 +- app/code/Magento/Sales/Api/Data/ShipmentTrackInterface.php | 2 +- .../Sales/Api/Data/ShipmentTrackSearchResultInterface.php | 2 +- .../Magento/Sales/Api/Data/ShippingAssignmentInterface.php | 2 +- app/code/Magento/Sales/Api/Data/ShippingInterface.php | 2 +- app/code/Magento/Sales/Api/Data/TotalInterface.php | 2 +- app/code/Magento/Sales/Api/Data/TrackInterface.php | 2 +- app/code/Magento/Sales/Api/Data/TransactionInterface.php | 2 +- .../Sales/Api/Data/TransactionSearchResultInterface.php | 2 +- .../Api/Exception/CouldNotInvoiceExceptionInterface.php | 2 +- .../Api/Exception/CouldNotRefundExceptionInterface.php | 2 +- .../Sales/Api/Exception/CouldNotShipExceptionInterface.php | 2 +- .../Api/Exception/DocumentValidationExceptionInterface.php | 2 +- .../Magento/Sales/Api/InvoiceCommentRepositoryInterface.php | 2 +- .../Magento/Sales/Api/InvoiceItemRepositoryInterface.php | 2 +- app/code/Magento/Sales/Api/InvoiceManagementInterface.php | 2 +- app/code/Magento/Sales/Api/InvoiceOrderInterface.php | 2 +- app/code/Magento/Sales/Api/InvoiceRepositoryInterface.php | 2 +- .../Magento/Sales/Api/OrderAddressRepositoryInterface.php | 2 +- .../Magento/Sales/Api/OrderCustomerManagementInterface.php | 2 +- app/code/Magento/Sales/Api/OrderItemRepositoryInterface.php | 2 +- app/code/Magento/Sales/Api/OrderManagementInterface.php | 2 +- .../Magento/Sales/Api/OrderPaymentRepositoryInterface.php | 2 +- app/code/Magento/Sales/Api/OrderRepositoryInterface.php | 2 +- .../Sales/Api/OrderStatusHistoryRepositoryInterface.php | 2 +- app/code/Magento/Sales/Api/RefundInvoiceInterface.php | 2 +- app/code/Magento/Sales/Api/RefundOrderInterface.php | 2 +- app/code/Magento/Sales/Api/ShipOrderInterface.php | 2 +- .../Sales/Api/ShipmentCommentRepositoryInterface.php | 2 +- .../Magento/Sales/Api/ShipmentItemRepositoryInterface.php | 2 +- app/code/Magento/Sales/Api/ShipmentManagementInterface.php | 2 +- app/code/Magento/Sales/Api/ShipmentRepositoryInterface.php | 2 +- .../Magento/Sales/Api/ShipmentTrackRepositoryInterface.php | 2 +- .../Magento/Sales/Api/TransactionRepositoryInterface.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Creditmemo.php | 2 +- .../Magento/Sales/Block/Adminhtml/CustomerOrdersTab.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Invoice.php | 2 +- .../Magento/Sales/Block/Adminhtml/Items/AbstractItems.php | 2 +- .../Sales/Block/Adminhtml/Items/Column/DefaultColumn.php | 2 +- .../Magento/Sales/Block/Adminhtml/Items/Column/Name.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Items/Column/Qty.php | 2 +- .../Block/Adminhtml/Items/Renderer/DefaultRenderer.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/AbstractOrder.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/Address.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Address/Form.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Comments/View.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/Create.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/AbstractCreate.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Billing/Address.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Billing/Method.php | 2 +- .../Block/Adminhtml/Order/Create/Billing/Method/Form.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Comment.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Coupons.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Coupons/Form.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Customer.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Data.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Form.php | 2 +- .../Block/Adminhtml/Order/Create/Form/AbstractForm.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Form/Account.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Form/Address.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Giftmessage.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Giftmessage/Form.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Header.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Items.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Items/Grid.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Load.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Messages.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Newsletter.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Newsletter/Form.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Search.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Search/Grid.php | 2 +- .../Adminhtml/Order/Create/Search/Grid/Renderer/Price.php | 2 +- .../Adminhtml/Order/Create/Search/Grid/Renderer/Product.php | 2 +- .../Adminhtml/Order/Create/Search/Grid/Renderer/Qty.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Shipping/Address.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Shipping/Method.php | 2 +- .../Block/Adminhtml/Order/Create/Shipping/Method/Form.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Sidebar.php | 2 +- .../Adminhtml/Order/Create/Sidebar/AbstractSidebar.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Sidebar/Cart.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Sidebar/Compared.php | 2 +- .../Block/Adminhtml/Order/Create/Sidebar/Pcompared.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Sidebar/Pviewed.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Sidebar/Reorder.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Sidebar/Viewed.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Sidebar/Wishlist.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Store.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Store/Select.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/Totals.php | 2 +- .../Block/Adminhtml/Order/Create/Totals/DefaultTotals.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Totals/Discount.php | 2 +- .../Block/Adminhtml/Order/Create/Totals/Grandtotal.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Totals/Shipping.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Totals/Subtotal.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Totals/Table.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Totals/Tax.php | 2 +- .../Sales/Block/Adminhtml/Order/Creditmemo/Create.php | 2 +- .../Block/Adminhtml/Order/Creditmemo/Create/Adjustments.php | 2 +- .../Sales/Block/Adminhtml/Order/Creditmemo/Create/Form.php | 2 +- .../Sales/Block/Adminhtml/Order/Creditmemo/Create/Items.php | 2 +- .../Sales/Block/Adminhtml/Order/Creditmemo/Totals.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Creditmemo/View.php | 2 +- .../Block/Adminhtml/Order/Creditmemo/View/Comments.php | 2 +- .../Sales/Block/Adminhtml/Order/Creditmemo/View/Form.php | 2 +- .../Sales/Block/Adminhtml/Order/Creditmemo/View/Items.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/Details.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Invoice/Create.php | 2 +- .../Sales/Block/Adminhtml/Order/Invoice/Create/Form.php | 2 +- .../Sales/Block/Adminhtml/Order/Invoice/Create/Items.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Invoice/Totals.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Invoice/View.php | 2 +- .../Sales/Block/Adminhtml/Order/Invoice/View/Comments.php | 2 +- .../Sales/Block/Adminhtml/Order/Invoice/View/Form.php | 2 +- .../Sales/Block/Adminhtml/Order/Invoice/View/Items.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/Payment.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/Status.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Status/Assign.php | 2 +- .../Sales/Block/Adminhtml/Order/Status/Assign/Form.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Status/Edit.php | 2 +- .../Sales/Block/Adminhtml/Order/Status/Edit/Form.php | 2 +- .../Sales/Block/Adminhtml/Order/Status/NewStatus.php | 2 +- .../Sales/Block/Adminhtml/Order/Status/NewStatus/Form.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/Totalbar.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/Totals.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Totals/Item.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Tax.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/View.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/View/Form.php | 2 +- .../Sales/Block/Adminhtml/Order/View/Giftmessage.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/View/History.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/View/Info.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/View/Items.php | 2 +- .../Adminhtml/Order/View/Items/Renderer/DefaultRenderer.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/View/Messages.php | 2 +- .../Sales/Block/Adminhtml/Order/View/Tab/Creditmemos.php | 2 +- .../Sales/Block/Adminhtml/Order/View/Tab/History.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/View/Tab/Info.php | 2 +- .../Sales/Block/Adminhtml/Order/View/Tab/Invoices.php | 2 +- .../Sales/Block/Adminhtml/Order/View/Tab/Shipments.php | 2 +- .../Sales/Block/Adminhtml/Order/View/Tab/Transactions.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Order/View/Tabs.php | 2 +- .../Sales/Block/Adminhtml/Reorder/Renderer/Action.php | 2 +- .../Magento/Sales/Block/Adminhtml/Report/Filter/Form.php | 2 +- .../Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php | 2 +- .../Sales/Block/Adminhtml/Report/Filter/Form/Order.php | 2 +- .../Magento/Sales/Block/Adminhtml/Rss/Order/Grid/Link.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Shipment.php | 2 +- .../System/Config/Form/Fieldset/Order/Statuses.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Totals.php | 2 +- app/code/Magento/Sales/Block/Adminhtml/Transactions.php | 2 +- .../Magento/Sales/Block/Adminhtml/Transactions/Detail.php | 2 +- .../Sales/Block/Adminhtml/Transactions/Detail/Grid.php | 2 +- app/code/Magento/Sales/Block/Guest/Link.php | 2 +- app/code/Magento/Sales/Block/Items/AbstractItems.php | 2 +- app/code/Magento/Sales/Block/Order/Comments.php | 2 +- app/code/Magento/Sales/Block/Order/Creditmemo.php | 2 +- app/code/Magento/Sales/Block/Order/Creditmemo/Items.php | 2 +- app/code/Magento/Sales/Block/Order/Creditmemo/Totals.php | 2 +- .../Magento/Sales/Block/Order/Email/Creditmemo/Items.php | 2 +- app/code/Magento/Sales/Block/Order/Email/Invoice/Items.php | 2 +- app/code/Magento/Sales/Block/Order/Email/Items.php | 2 +- .../Magento/Sales/Block/Order/Email/Items/DefaultItems.php | 2 +- .../Sales/Block/Order/Email/Items/Order/DefaultOrder.php | 2 +- app/code/Magento/Sales/Block/Order/Email/Shipment/Items.php | 2 +- app/code/Magento/Sales/Block/Order/History.php | 2 +- app/code/Magento/Sales/Block/Order/History/Container.php | 2 +- app/code/Magento/Sales/Block/Order/Info.php | 2 +- app/code/Magento/Sales/Block/Order/Info/Buttons.php | 2 +- app/code/Magento/Sales/Block/Order/Info/Buttons/Rss.php | 2 +- app/code/Magento/Sales/Block/Order/Invoice.php | 2 +- app/code/Magento/Sales/Block/Order/Invoice/Items.php | 2 +- app/code/Magento/Sales/Block/Order/Invoice/Totals.php | 2 +- .../Sales/Block/Order/Item/Renderer/DefaultRenderer.php | 2 +- app/code/Magento/Sales/Block/Order/Items.php | 2 +- app/code/Magento/Sales/Block/Order/Link.php | 2 +- .../Magento/Sales/Block/Order/PrintOrder/Creditmemo.php | 2 +- app/code/Magento/Sales/Block/Order/PrintOrder/Invoice.php | 2 +- app/code/Magento/Sales/Block/Order/PrintOrder/Shipment.php | 2 +- app/code/Magento/Sales/Block/Order/PrintShipment.php | 2 +- app/code/Magento/Sales/Block/Order/Recent.php | 2 +- app/code/Magento/Sales/Block/Order/Totals.php | 2 +- app/code/Magento/Sales/Block/Order/View.php | 2 +- app/code/Magento/Sales/Block/Reorder/Sidebar.php | 2 +- app/code/Magento/Sales/Block/Status/Grid/Column/State.php | 2 +- .../Magento/Sales/Block/Status/Grid/Column/Unassign.php | 2 +- app/code/Magento/Sales/Block/Widget/Guest/Form.php | 2 +- .../Sales/Controller/AbstractController/Creditmemo.php | 2 +- .../Magento/Sales/Controller/AbstractController/Invoice.php | 2 +- .../Sales/Controller/AbstractController/OrderLoader.php | 2 +- .../Controller/AbstractController/OrderLoaderInterface.php | 2 +- .../AbstractController/OrderViewAuthorization.php | 2 +- .../AbstractController/OrderViewAuthorizationInterface.php | 2 +- .../Sales/Controller/AbstractController/PrintAction.php | 2 +- .../Sales/Controller/AbstractController/PrintCreditmemo.php | 2 +- .../Sales/Controller/AbstractController/PrintInvoice.php | 2 +- .../Sales/Controller/AbstractController/PrintShipment.php | 2 +- .../Magento/Sales/Controller/AbstractController/Reorder.php | 2 +- .../Sales/Controller/AbstractController/Shipment.php | 2 +- .../Magento/Sales/Controller/AbstractController/View.php | 2 +- .../Adminhtml/Creditmemo/AbstractCreditmemo/Email.php | 2 +- .../Adminhtml/Creditmemo/AbstractCreditmemo/Grid.php | 2 +- .../Adminhtml/Creditmemo/AbstractCreditmemo/Index.php | 2 +- .../Creditmemo/AbstractCreditmemo/Pdfcreditmemos.php | 2 +- .../Adminhtml/Creditmemo/AbstractCreditmemo/PrintAction.php | 2 +- .../Adminhtml/Creditmemo/AbstractCreditmemo/View.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Creditmemo/Email.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Creditmemo/Grid.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Creditmemo/Index.php | 2 +- .../Controller/Adminhtml/Creditmemo/Pdfcreditmemos.php | 2 +- .../Sales/Controller/Adminhtml/Creditmemo/PrintAction.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Creditmemo/View.php | 2 +- .../Controller/Adminhtml/Invoice/AbstractInvoice/Email.php | 2 +- .../Controller/Adminhtml/Invoice/AbstractInvoice/Grid.php | 2 +- .../Controller/Adminhtml/Invoice/AbstractInvoice/Index.php | 2 +- .../Adminhtml/Invoice/AbstractInvoice/Pdfinvoices.php | 2 +- .../Adminhtml/Invoice/AbstractInvoice/PrintAction.php | 2 +- .../Controller/Adminhtml/Invoice/AbstractInvoice/View.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Invoice/Email.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Invoice/Grid.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Invoice/Index.php | 2 +- .../Sales/Controller/Adminhtml/Invoice/Pdfinvoices.php | 2 +- .../Sales/Controller/Adminhtml/Invoice/PrintAction.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Invoice/View.php | 2 +- app/code/Magento/Sales/Controller/Adminhtml/Order.php | 2 +- .../Sales/Controller/Adminhtml/Order/AbstractMassAction.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/AddComment.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/Address.php | 2 +- .../Sales/Controller/Adminhtml/Order/AddressSave.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/Cancel.php | 2 +- .../Sales/Controller/Adminhtml/Order/CommentsHistory.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/Create.php | 2 +- .../Controller/Adminhtml/Order/Create/AddConfigured.php | 2 +- .../Sales/Controller/Adminhtml/Order/Create/Cancel.php | 2 +- .../Adminhtml/Order/Create/ConfigureProductToAdd.php | 2 +- .../Adminhtml/Order/Create/ConfigureQuoteItems.php | 2 +- .../Sales/Controller/Adminhtml/Order/Create/Index.php | 2 +- .../Sales/Controller/Adminhtml/Order/Create/LoadBlock.php | 2 +- .../Sales/Controller/Adminhtml/Order/Create/ProcessData.php | 2 +- .../Sales/Controller/Adminhtml/Order/Create/Reorder.php | 2 +- .../Sales/Controller/Adminhtml/Order/Create/Save.php | 2 +- .../Controller/Adminhtml/Order/Create/ShowUpdateResult.php | 2 +- .../Sales/Controller/Adminhtml/Order/Create/Start.php | 2 +- .../Controller/Adminhtml/Order/Creditmemo/AddComment.php | 2 +- .../Sales/Controller/Adminhtml/Order/Creditmemo/Cancel.php | 2 +- .../Sales/Controller/Adminhtml/Order/Creditmemo/Email.php | 2 +- .../Sales/Controller/Adminhtml/Order/Creditmemo/Grid.php | 2 +- .../Sales/Controller/Adminhtml/Order/Creditmemo/Index.php | 2 +- .../Controller/Adminhtml/Order/Creditmemo/NewAction.php | 2 +- .../Adminhtml/Order/Creditmemo/Pdfcreditmemos.php | 2 +- .../Controller/Adminhtml/Order/Creditmemo/PrintAction.php | 2 +- .../Sales/Controller/Adminhtml/Order/Creditmemo/Save.php | 2 +- .../Sales/Controller/Adminhtml/Order/Creditmemo/Start.php | 2 +- .../Controller/Adminhtml/Order/Creditmemo/UpdateQty.php | 2 +- .../Sales/Controller/Adminhtml/Order/Creditmemo/View.php | 2 +- .../Sales/Controller/Adminhtml/Order/Creditmemo/Void.php | 2 +- .../Sales/Controller/Adminhtml/Order/CreditmemoLoader.php | 2 +- .../Sales/Controller/Adminhtml/Order/Creditmemos.php | 2 +- .../Sales/Controller/Adminhtml/Order/Edit/AddConfigured.php | 2 +- .../Sales/Controller/Adminhtml/Order/Edit/Cancel.php | 2 +- .../Adminhtml/Order/Edit/ConfigureProductToAdd.php | 2 +- .../Controller/Adminhtml/Order/Edit/ConfigureQuoteItems.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/Edit/Index.php | 2 +- .../Sales/Controller/Adminhtml/Order/Edit/LoadBlock.php | 2 +- .../Sales/Controller/Adminhtml/Order/Edit/ProcessData.php | 2 +- .../Sales/Controller/Adminhtml/Order/Edit/Reorder.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/Edit/Save.php | 2 +- .../Controller/Adminhtml/Order/Edit/ShowUpdateResult.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/Edit/Start.php | 2 +- app/code/Magento/Sales/Controller/Adminhtml/Order/Email.php | 2 +- app/code/Magento/Sales/Controller/Adminhtml/Order/Grid.php | 2 +- app/code/Magento/Sales/Controller/Adminhtml/Order/Hold.php | 2 +- app/code/Magento/Sales/Controller/Adminhtml/Order/Index.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/AddComment.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/Cancel.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/Capture.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/Email.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/Grid.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/Index.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/NewAction.php | 2 +- .../Controller/Adminhtml/Order/Invoice/Pdfinvoices.php | 2 +- .../Controller/Adminhtml/Order/Invoice/PrintAction.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/Save.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/Start.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/UpdateQty.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/View.php | 2 +- .../Sales/Controller/Adminhtml/Order/Invoice/Void.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/Invoices.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/MassCancel.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/MassHold.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/MassUnhold.php | 2 +- .../Controller/Adminhtml/Order/PdfDocumentsMassAction.php | 2 +- .../Sales/Controller/Adminhtml/Order/Pdfcreditmemos.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/Pdfdocs.php | 2 +- .../Sales/Controller/Adminhtml/Order/Pdfinvoices.php | 2 +- .../Sales/Controller/Adminhtml/Order/Pdfshipments.php | 2 +- .../Sales/Controller/Adminhtml/Order/ReviewPayment.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/Shipments.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/Status.php | 2 +- .../Sales/Controller/Adminhtml/Order/Status/Assign.php | 2 +- .../Sales/Controller/Adminhtml/Order/Status/AssignPost.php | 2 +- .../Sales/Controller/Adminhtml/Order/Status/Edit.php | 2 +- .../Sales/Controller/Adminhtml/Order/Status/Index.php | 2 +- .../Sales/Controller/Adminhtml/Order/Status/NewAction.php | 2 +- .../Sales/Controller/Adminhtml/Order/Status/Save.php | 2 +- .../Sales/Controller/Adminhtml/Order/Status/Unassign.php | 2 +- .../Sales/Controller/Adminhtml/Order/Transactions.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/Unhold.php | 2 +- app/code/Magento/Sales/Controller/Adminhtml/Order/View.php | 2 +- .../Sales/Controller/Adminhtml/Order/View/Giftmessage.php | 2 +- .../Controller/Adminhtml/Order/View/Giftmessage/Save.php | 2 +- .../Sales/Controller/Adminhtml/Order/VoidPayment.php | 2 +- .../Adminhtml/Shipment/AbstractShipment/Index.php | 2 +- .../Adminhtml/Shipment/AbstractShipment/Pdfshipments.php | 2 +- .../Adminhtml/Shipment/AbstractShipment/PrintAction.php | 2 +- .../Controller/Adminhtml/Shipment/AbstractShipment/View.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Shipment/Index.php | 2 +- .../Sales/Controller/Adminhtml/Shipment/Pdfshipments.php | 2 +- .../Sales/Controller/Adminhtml/Shipment/PrintAction.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Shipment/View.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Transactions.php | 2 +- .../Sales/Controller/Adminhtml/Transactions/Fetch.php | 2 +- .../Sales/Controller/Adminhtml/Transactions/Grid.php | 2 +- .../Sales/Controller/Adminhtml/Transactions/Index.php | 2 +- .../Sales/Controller/Adminhtml/Transactions/View.php | 2 +- .../Sales/Controller/Download/DownloadCustomOption.php | 2 +- app/code/Magento/Sales/Controller/Guest/Creditmemo.php | 2 +- app/code/Magento/Sales/Controller/Guest/Form.php | 2 +- app/code/Magento/Sales/Controller/Guest/Invoice.php | 2 +- app/code/Magento/Sales/Controller/Guest/OrderLoader.php | 2 +- .../Sales/Controller/Guest/OrderViewAuthorization.php | 2 +- app/code/Magento/Sales/Controller/Guest/PrintAction.php | 2 +- app/code/Magento/Sales/Controller/Guest/PrintCreditmemo.php | 2 +- app/code/Magento/Sales/Controller/Guest/PrintInvoice.php | 2 +- app/code/Magento/Sales/Controller/Guest/PrintShipment.php | 2 +- app/code/Magento/Sales/Controller/Guest/Reorder.php | 2 +- app/code/Magento/Sales/Controller/Guest/Shipment.php | 2 +- app/code/Magento/Sales/Controller/Guest/View.php | 2 +- app/code/Magento/Sales/Controller/Order/Creditmemo.php | 2 +- app/code/Magento/Sales/Controller/Order/History.php | 2 +- app/code/Magento/Sales/Controller/Order/Invoice.php | 2 +- .../Sales/Controller/Order/Plugin/Authentication.php | 2 +- app/code/Magento/Sales/Controller/Order/PrintAction.php | 2 +- app/code/Magento/Sales/Controller/Order/PrintCreditmemo.php | 2 +- app/code/Magento/Sales/Controller/Order/PrintInvoice.php | 2 +- app/code/Magento/Sales/Controller/Order/PrintShipment.php | 2 +- app/code/Magento/Sales/Controller/Order/Reorder.php | 2 +- app/code/Magento/Sales/Controller/Order/Shipment.php | 2 +- app/code/Magento/Sales/Controller/Order/View.php | 2 +- app/code/Magento/Sales/Controller/OrderInterface.php | 2 +- app/code/Magento/Sales/Cron/CleanExpiredQuotes.php | 2 +- app/code/Magento/Sales/Cron/GridAsyncInsert.php | 2 +- app/code/Magento/Sales/Cron/SendEmails.php | 2 +- app/code/Magento/Sales/CustomerData/LastOrderedItems.php | 2 +- .../Magento/Sales/Exception/CouldNotInvoiceException.php | 2 +- .../Magento/Sales/Exception/CouldNotRefundException.php | 2 +- app/code/Magento/Sales/Exception/CouldNotShipException.php | 2 +- .../Magento/Sales/Exception/DocumentValidationException.php | 2 +- app/code/Magento/Sales/Helper/Admin.php | 2 +- app/code/Magento/Sales/Helper/Data.php | 2 +- app/code/Magento/Sales/Helper/Guest.php | 2 +- app/code/Magento/Sales/Helper/Reorder.php | 2 +- app/code/Magento/Sales/Model/AbstractModel.php | 2 +- app/code/Magento/Sales/Model/AbstractNotifier.php | 2 +- app/code/Magento/Sales/Model/AdminOrder/Create.php | 2 +- app/code/Magento/Sales/Model/AdminOrder/EmailSender.php | 2 +- .../Sales/Model/AdminOrder/Product/Quote/Initializer.php | 2 +- app/code/Magento/Sales/Model/Config.php | 2 +- .../Sales/Model/Config/Backend/Email/AsyncSending.php | 2 +- .../Sales/Model/Config/Backend/Grid/AsyncIndexing.php | 2 +- app/code/Magento/Sales/Model/Config/Converter.php | 2 +- app/code/Magento/Sales/Model/Config/Data.php | 2 +- app/code/Magento/Sales/Model/Config/Ordered.php | 2 +- app/code/Magento/Sales/Model/Config/Reader.php | 2 +- app/code/Magento/Sales/Model/Config/SchemaLocator.php | 2 +- app/code/Magento/Sales/Model/Config/Source/Order/Status.php | 2 +- .../Sales/Model/Config/Source/Order/Status/NewStatus.php | 2 +- .../Model/Config/Source/Order/Status/Newprocessing.php | 2 +- .../Sales/Model/Config/Source/Order/Status/Processing.php | 2 +- app/code/Magento/Sales/Model/ConfigInterface.php | 2 +- app/code/Magento/Sales/Model/Convert/Order.php | 2 +- .../Model/CronJob/AggregateSalesReportBestsellersData.php | 2 +- .../Model/CronJob/AggregateSalesReportInvoicedData.php | 2 +- .../Sales/Model/CronJob/AggregateSalesReportOrderData.php | 2 +- .../Model/CronJob/AggregateSalesReportRefundedData.php | 2 +- app/code/Magento/Sales/Model/CronJob/CleanExpiredOrders.php | 2 +- app/code/Magento/Sales/Model/Download.php | 2 +- app/code/Magento/Sales/Model/EmailSenderHandler.php | 2 +- app/code/Magento/Sales/Model/EntityInterface.php | 2 +- app/code/Magento/Sales/Model/EntityStorage.php | 2 +- .../Magento/Sales/Model/Grid/Child/CollectionUpdater.php | 2 +- app/code/Magento/Sales/Model/Grid/CollectionUpdater.php | 2 +- app/code/Magento/Sales/Model/GridAsyncInsert.php | 2 +- app/code/Magento/Sales/Model/Increment.php | 2 +- app/code/Magento/Sales/Model/InvoiceOrder.php | 2 +- app/code/Magento/Sales/Model/Order.php | 2 +- app/code/Magento/Sales/Model/Order/Address.php | 2 +- app/code/Magento/Sales/Model/Order/Address/Renderer.php | 2 +- app/code/Magento/Sales/Model/Order/Address/Validator.php | 2 +- app/code/Magento/Sales/Model/Order/AddressRepository.php | 2 +- app/code/Magento/Sales/Model/Order/Admin/Item.php | 2 +- app/code/Magento/Sales/Model/Order/Config.php | 2 +- app/code/Magento/Sales/Model/Order/Creditmemo.php | 2 +- app/code/Magento/Sales/Model/Order/Creditmemo/Comment.php | 2 +- .../Sales/Model/Order/Creditmemo/Comment/Validator.php | 2 +- .../Sales/Model/Order/Creditmemo/CommentCreation.php | 2 +- app/code/Magento/Sales/Model/Order/Creditmemo/Config.php | 2 +- .../Sales/Model/Order/Creditmemo/CreationArguments.php | 2 +- .../Sales/Model/Order/Creditmemo/CreditmemoValidator.php | 2 +- .../Model/Order/Creditmemo/CreditmemoValidatorInterface.php | 2 +- app/code/Magento/Sales/Model/Order/Creditmemo/Item.php | 2 +- .../Item/Validation/CreationQuantityValidator.php | 2 +- .../Magento/Sales/Model/Order/Creditmemo/ItemCreation.php | 2 +- .../Sales/Model/Order/Creditmemo/ItemCreationValidator.php | 2 +- .../Order/Creditmemo/ItemCreationValidatorInterface.php | 2 +- app/code/Magento/Sales/Model/Order/Creditmemo/Notifier.php | 2 +- .../Sales/Model/Order/Creditmemo/NotifierInterface.php | 2 +- .../Sales/Model/Order/Creditmemo/RefundOperation.php | 2 +- .../Sales/Model/Order/Creditmemo/Sender/EmailSender.php | 2 +- .../Sales/Model/Order/Creditmemo/SenderInterface.php | 2 +- .../Sales/Model/Order/Creditmemo/Total/AbstractTotal.php | 2 +- .../Magento/Sales/Model/Order/Creditmemo/Total/Cost.php | 2 +- .../Magento/Sales/Model/Order/Creditmemo/Total/Discount.php | 2 +- .../Magento/Sales/Model/Order/Creditmemo/Total/Grand.php | 2 +- .../Magento/Sales/Model/Order/Creditmemo/Total/Shipping.php | 2 +- .../Magento/Sales/Model/Order/Creditmemo/Total/Subtotal.php | 2 +- app/code/Magento/Sales/Model/Order/Creditmemo/Total/Tax.php | 2 +- .../Model/Order/Creditmemo/Validation/QuantityValidator.php | 2 +- .../Model/Order/Creditmemo/Validation/TotalsValidator.php | 2 +- .../Magento/Sales/Model/Order/CreditmemoDocumentFactory.php | 2 +- app/code/Magento/Sales/Model/Order/CreditmemoFactory.php | 2 +- app/code/Magento/Sales/Model/Order/CreditmemoNotifier.php | 2 +- app/code/Magento/Sales/Model/Order/CreditmemoRepository.php | 2 +- app/code/Magento/Sales/Model/Order/CustomerManagement.php | 2 +- .../Magento/Sales/Model/Order/Email/Container/Container.php | 2 +- .../Order/Email/Container/CreditmemoCommentIdentity.php | 2 +- .../Model/Order/Email/Container/CreditmemoIdentity.php | 2 +- .../Sales/Model/Order/Email/Container/IdentityInterface.php | 2 +- .../Model/Order/Email/Container/InvoiceCommentIdentity.php | 2 +- .../Sales/Model/Order/Email/Container/InvoiceIdentity.php | 2 +- .../Model/Order/Email/Container/OrderCommentIdentity.php | 2 +- .../Sales/Model/Order/Email/Container/OrderIdentity.php | 2 +- .../Model/Order/Email/Container/ShipmentCommentIdentity.php | 2 +- .../Sales/Model/Order/Email/Container/ShipmentIdentity.php | 2 +- .../Magento/Sales/Model/Order/Email/Container/Template.php | 2 +- app/code/Magento/Sales/Model/Order/Email/NotifySender.php | 2 +- app/code/Magento/Sales/Model/Order/Email/Sender.php | 2 +- .../Model/Order/Email/Sender/CreditmemoCommentSender.php | 2 +- .../Sales/Model/Order/Email/Sender/CreditmemoSender.php | 2 +- .../Sales/Model/Order/Email/Sender/InvoiceCommentSender.php | 2 +- .../Sales/Model/Order/Email/Sender/InvoiceSender.php | 2 +- .../Sales/Model/Order/Email/Sender/OrderCommentSender.php | 2 +- .../Magento/Sales/Model/Order/Email/Sender/OrderSender.php | 2 +- .../Model/Order/Email/Sender/ShipmentCommentSender.php | 2 +- .../Sales/Model/Order/Email/Sender/ShipmentSender.php | 2 +- app/code/Magento/Sales/Model/Order/Email/SenderBuilder.php | 2 +- .../Sales/Model/Order/Grid/Massaction/ItemsUpdater.php | 2 +- .../Magento/Sales/Model/Order/Grid/Row/UrlGenerator.php | 2 +- app/code/Magento/Sales/Model/Order/Invoice.php | 2 +- app/code/Magento/Sales/Model/Order/Invoice/Comment.php | 2 +- .../Magento/Sales/Model/Order/Invoice/Comment/Validator.php | 2 +- .../Magento/Sales/Model/Order/Invoice/CommentCreation.php | 2 +- app/code/Magento/Sales/Model/Order/Invoice/Config.php | 2 +- .../Magento/Sales/Model/Order/Invoice/CreationArguments.php | 2 +- .../Sales/Model/Order/Invoice/Grid/Row/UrlGenerator.php | 2 +- .../Magento/Sales/Model/Order/Invoice/InvoiceValidator.php | 2 +- .../Sales/Model/Order/Invoice/InvoiceValidatorInterface.php | 2 +- app/code/Magento/Sales/Model/Order/Invoice/Item.php | 2 +- app/code/Magento/Sales/Model/Order/Invoice/ItemCreation.php | 2 +- app/code/Magento/Sales/Model/Order/Invoice/Notifier.php | 2 +- .../Magento/Sales/Model/Order/Invoice/NotifierInterface.php | 2 +- app/code/Magento/Sales/Model/Order/Invoice/PayOperation.php | 2 +- .../Sales/Model/Order/Invoice/Plugin/AddressUpdate.php | 2 +- .../Sales/Model/Order/Invoice/Sender/EmailSender.php | 2 +- .../Magento/Sales/Model/Order/Invoice/SenderInterface.php | 2 +- .../Sales/Model/Order/Invoice/Total/AbstractTotal.php | 2 +- app/code/Magento/Sales/Model/Order/Invoice/Total/Cost.php | 2 +- .../Magento/Sales/Model/Order/Invoice/Total/Discount.php | 2 +- app/code/Magento/Sales/Model/Order/Invoice/Total/Grand.php | 2 +- .../Magento/Sales/Model/Order/Invoice/Total/Shipping.php | 2 +- .../Magento/Sales/Model/Order/Invoice/Total/Subtotal.php | 2 +- app/code/Magento/Sales/Model/Order/Invoice/Total/Tax.php | 2 +- .../Sales/Model/Order/Invoice/Validation/CanRefund.php | 2 +- .../Magento/Sales/Model/Order/InvoiceDocumentFactory.php | 2 +- app/code/Magento/Sales/Model/Order/InvoiceNotifier.php | 2 +- .../Magento/Sales/Model/Order/InvoiceNotifierInterface.php | 2 +- .../Magento/Sales/Model/Order/InvoiceQuantityValidator.php | 2 +- app/code/Magento/Sales/Model/Order/InvoiceRepository.php | 2 +- .../Magento/Sales/Model/Order/InvoiceStatisticInterface.php | 2 +- app/code/Magento/Sales/Model/Order/Item.php | 2 +- app/code/Magento/Sales/Model/Order/ItemRepository.php | 2 +- .../Sales/Model/Order/OrderStateResolverInterface.php | 2 +- app/code/Magento/Sales/Model/Order/OrderValidator.php | 2 +- .../Magento/Sales/Model/Order/OrderValidatorInterface.php | 2 +- app/code/Magento/Sales/Model/Order/Payment.php | 2 +- app/code/Magento/Sales/Model/Order/Payment/Info.php | 2 +- .../Model/Order/Payment/Operations/AbstractOperation.php | 2 +- .../Model/Order/Payment/Operations/AuthorizeOperation.php | 2 +- .../Model/Order/Payment/Operations/CaptureOperation.php | 2 +- .../Sales/Model/Order/Payment/Operations/OrderOperation.php | 2 +- .../Operations/RegisterCaptureNotificationOperation.php | 2 +- app/code/Magento/Sales/Model/Order/Payment/Processor.php | 2 +- app/code/Magento/Sales/Model/Order/Payment/Repository.php | 2 +- .../Sales/Model/Order/Payment/State/AuthorizeCommand.php | 2 +- .../Sales/Model/Order/Payment/State/CaptureCommand.php | 2 +- .../Sales/Model/Order/Payment/State/CommandInterface.php | 2 +- .../Sales/Model/Order/Payment/State/OrderCommand.php | 2 +- .../Payment/State/RegisterCaptureNotificationCommand.php | 2 +- app/code/Magento/Sales/Model/Order/Payment/Transaction.php | 2 +- .../Sales/Model/Order/Payment/Transaction/Builder.php | 2 +- .../Model/Order/Payment/Transaction/BuilderInterface.php | 2 +- .../Sales/Model/Order/Payment/Transaction/Manager.php | 2 +- .../Model/Order/Payment/Transaction/ManagerInterface.php | 2 +- .../Sales/Model/Order/Payment/Transaction/Repository.php | 2 +- app/code/Magento/Sales/Model/Order/PaymentAdapter.php | 2 +- .../Magento/Sales/Model/Order/PaymentAdapterInterface.php | 2 +- app/code/Magento/Sales/Model/Order/Pdf/AbstractPdf.php | 2 +- app/code/Magento/Sales/Model/Order/Pdf/Config.php | 2 +- app/code/Magento/Sales/Model/Order/Pdf/Config/Converter.php | 2 +- app/code/Magento/Sales/Model/Order/Pdf/Config/Reader.php | 2 +- .../Magento/Sales/Model/Order/Pdf/Config/SchemaLocator.php | 2 +- app/code/Magento/Sales/Model/Order/Pdf/Creditmemo.php | 2 +- app/code/Magento/Sales/Model/Order/Pdf/Invoice.php | 2 +- .../Magento/Sales/Model/Order/Pdf/Items/AbstractItems.php | 2 +- .../Model/Order/Pdf/Items/Creditmemo/DefaultCreditmemo.php | 2 +- .../Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php | 2 +- .../Model/Order/Pdf/Items/Shipment/DefaultShipment.php | 2 +- app/code/Magento/Sales/Model/Order/Pdf/ItemsFactory.php | 2 +- app/code/Magento/Sales/Model/Order/Pdf/Shipment.php | 2 +- .../Magento/Sales/Model/Order/Pdf/Total/DefaultTotal.php | 2 +- app/code/Magento/Sales/Model/Order/Pdf/Total/Factory.php | 2 +- app/code/Magento/Sales/Model/Order/Shipment.php | 2 +- app/code/Magento/Sales/Model/Order/Shipment/Comment.php | 2 +- .../Sales/Model/Order/Shipment/Comment/Validator.php | 2 +- .../Magento/Sales/Model/Order/Shipment/CommentCreation.php | 2 +- .../Sales/Model/Order/Shipment/CreationArguments.php | 2 +- app/code/Magento/Sales/Model/Order/Shipment/Item.php | 2 +- .../Magento/Sales/Model/Order/Shipment/ItemCreation.php | 2 +- app/code/Magento/Sales/Model/Order/Shipment/Notifier.php | 2 +- .../Sales/Model/Order/Shipment/NotifierInterface.php | 2 +- .../Magento/Sales/Model/Order/Shipment/OrderRegistrar.php | 2 +- .../Sales/Model/Order/Shipment/OrderRegistrarInterface.php | 2 +- app/code/Magento/Sales/Model/Order/Shipment/Package.php | 2 +- .../Magento/Sales/Model/Order/Shipment/PackageCreation.php | 2 +- .../Sales/Model/Order/Shipment/Sender/EmailSender.php | 2 +- .../Magento/Sales/Model/Order/Shipment/SenderInterface.php | 2 +- .../Sales/Model/Order/Shipment/ShipmentValidator.php | 2 +- .../Model/Order/Shipment/ShipmentValidatorInterface.php | 2 +- app/code/Magento/Sales/Model/Order/Shipment/Track.php | 2 +- .../Magento/Sales/Model/Order/Shipment/Track/Validator.php | 2 +- .../Magento/Sales/Model/Order/Shipment/TrackCreation.php | 2 +- .../Model/Order/Shipment/Validation/QuantityValidator.php | 2 +- .../Model/Order/Shipment/Validation/TrackValidator.php | 2 +- .../Magento/Sales/Model/Order/ShipmentDocumentFactory.php | 2 +- app/code/Magento/Sales/Model/Order/ShipmentFactory.php | 2 +- app/code/Magento/Sales/Model/Order/ShipmentRepository.php | 2 +- app/code/Magento/Sales/Model/Order/Shipping.php | 2 +- app/code/Magento/Sales/Model/Order/ShippingAssignment.php | 2 +- .../Magento/Sales/Model/Order/ShippingAssignmentBuilder.php | 2 +- app/code/Magento/Sales/Model/Order/ShippingBuilder.php | 2 +- app/code/Magento/Sales/Model/Order/ShippingTotal.php | 2 +- app/code/Magento/Sales/Model/Order/StateResolver.php | 2 +- app/code/Magento/Sales/Model/Order/Status.php | 2 +- app/code/Magento/Sales/Model/Order/Status/History.php | 2 +- .../Magento/Sales/Model/Order/Status/History/Validator.php | 2 +- app/code/Magento/Sales/Model/Order/Tax.php | 2 +- app/code/Magento/Sales/Model/Order/Tax/Item.php | 2 +- app/code/Magento/Sales/Model/Order/Total.php | 2 +- app/code/Magento/Sales/Model/Order/Total/AbstractTotal.php | 2 +- app/code/Magento/Sales/Model/Order/Total/Config/Base.php | 2 +- app/code/Magento/Sales/Model/Order/TotalFactory.php | 2 +- .../Magento/Sales/Model/Order/Validation/CanInvoice.php | 2 +- app/code/Magento/Sales/Model/Order/Validation/CanRefund.php | 2 +- app/code/Magento/Sales/Model/Order/Validation/CanShip.php | 2 +- .../Magento/Sales/Model/Order/Validation/InvoiceOrder.php | 2 +- .../Sales/Model/Order/Validation/InvoiceOrderInterface.php | 2 +- .../Magento/Sales/Model/Order/Validation/RefundInvoice.php | 2 +- .../Sales/Model/Order/Validation/RefundInvoiceInterface.php | 2 +- .../Magento/Sales/Model/Order/Validation/RefundOrder.php | 2 +- .../Sales/Model/Order/Validation/RefundOrderInterface.php | 2 +- app/code/Magento/Sales/Model/Order/Validation/ShipOrder.php | 2 +- .../Sales/Model/Order/Validation/ShipOrderInterface.php | 2 +- app/code/Magento/Sales/Model/OrderNotifier.php | 2 +- app/code/Magento/Sales/Model/OrderRepository.php | 2 +- app/code/Magento/Sales/Model/RefundInvoice.php | 2 +- app/code/Magento/Sales/Model/RefundOrder.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/AbstractGrid.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/Attribute.php | 2 +- .../Model/ResourceModel/Collection/AbstractCollection.php | 2 +- .../Magento/Sales/Model/ResourceModel/EntityAbstract.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/Grid.php | 2 +- .../Magento/Sales/Model/ResourceModel/Grid/Collection.php | 2 +- .../Magento/Sales/Model/ResourceModel/GridInterface.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/GridPool.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/Helper.php | 2 +- .../Magento/Sales/Model/ResourceModel/HelperInterface.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/Metadata.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/Order.php | 2 +- .../Magento/Sales/Model/ResourceModel/Order/Address.php | 2 +- .../Sales/Model/ResourceModel/Order/Address/Collection.php | 2 +- .../Model/ResourceModel/Order/Attribute/Backend/Billing.php | 2 +- .../Model/ResourceModel/Order/Attribute/Backend/Child.php | 2 +- .../ResourceModel/Order/Attribute/Backend/Shipping.php | 2 +- .../Magento/Sales/Model/ResourceModel/Order/Collection.php | 2 +- .../ResourceModel/Order/Collection/AbstractCollection.php | 2 +- .../Sales/Model/ResourceModel/Order/Collection/Factory.php | 2 +- .../Sales/Model/ResourceModel/Order/CollectionFactory.php | 2 +- .../ResourceModel/Order/CollectionFactoryInterface.php | 2 +- .../Order/Comment/Collection/AbstractCollection.php | 2 +- .../Magento/Sales/Model/ResourceModel/Order/Creditmemo.php | 2 +- .../Order/Creditmemo/Attribute/Backend/Child.php | 2 +- .../Model/ResourceModel/Order/Creditmemo/Collection.php | 2 +- .../Sales/Model/ResourceModel/Order/Creditmemo/Comment.php | 2 +- .../ResourceModel/Order/Creditmemo/Comment/Collection.php | 2 +- .../ResourceModel/Order/Creditmemo/Grid/Collection.php | 2 +- .../ResourceModel/Order/Creditmemo/Grid/StatusList.php | 2 +- .../Sales/Model/ResourceModel/Order/Creditmemo/Item.php | 2 +- .../ResourceModel/Order/Creditmemo/Item/Collection.php | 2 +- .../Order/Creditmemo/Order/Grid/Collection.php | 2 +- .../Sales/Model/ResourceModel/Order/Creditmemo/Relation.php | 2 +- .../ResourceModel/Order/Creditmemo/Relation/Refund.php | 2 +- .../Sales/Model/ResourceModel/Order/Customer/Collection.php | 2 +- .../Sales/Model/ResourceModel/Order/Grid/Collection.php | 2 +- .../Sales/Model/ResourceModel/Order/Handler/Address.php | 2 +- .../Sales/Model/ResourceModel/Order/Handler/State.php | 2 +- .../Magento/Sales/Model/ResourceModel/Order/Invoice.php | 2 +- .../ResourceModel/Order/Invoice/Attribute/Backend/Child.php | 2 +- .../ResourceModel/Order/Invoice/Attribute/Backend/Item.php | 2 +- .../ResourceModel/Order/Invoice/Attribute/Backend/Order.php | 2 +- .../Sales/Model/ResourceModel/Order/Invoice/Collection.php | 2 +- .../Sales/Model/ResourceModel/Order/Invoice/Comment.php | 2 +- .../ResourceModel/Order/Invoice/Comment/Collection.php | 2 +- .../Model/ResourceModel/Order/Invoice/Grid/Collection.php | 2 +- .../Model/ResourceModel/Order/Invoice/Grid/StatusList.php | 2 +- .../Sales/Model/ResourceModel/Order/Invoice/Item.php | 2 +- .../Model/ResourceModel/Order/Invoice/Item/Collection.php | 2 +- .../ResourceModel/Order/Invoice/Orders/Grid/Collection.php | 2 +- .../Sales/Model/ResourceModel/Order/Invoice/Relation.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/Order/Item.php | 2 +- .../Sales/Model/ResourceModel/Order/Item/Collection.php | 2 +- .../Magento/Sales/Model/ResourceModel/Order/Payment.php | 2 +- .../Sales/Model/ResourceModel/Order/Payment/Collection.php | 2 +- .../Sales/Model/ResourceModel/Order/Payment/Transaction.php | 2 +- .../ResourceModel/Order/Payment/Transaction/Collection.php | 2 +- .../Model/ResourceModel/Order/Plugin/Authorization.php | 2 +- .../Magento/Sales/Model/ResourceModel/Order/Relation.php | 2 +- .../Sales/Model/ResourceModel/Order/Rss/OrderStatus.php | 2 +- .../Magento/Sales/Model/ResourceModel/Order/Shipment.php | 2 +- .../Order/Shipment/Attribute/Backend/Child.php | 2 +- .../Sales/Model/ResourceModel/Order/Shipment/Collection.php | 2 +- .../Sales/Model/ResourceModel/Order/Shipment/Comment.php | 2 +- .../ResourceModel/Order/Shipment/Comment/Collection.php | 2 +- .../Model/ResourceModel/Order/Shipment/Grid/Collection.php | 2 +- .../Sales/Model/ResourceModel/Order/Shipment/Item.php | 2 +- .../Model/ResourceModel/Order/Shipment/Item/Collection.php | 2 +- .../ResourceModel/Order/Shipment/Order/Grid/Collection.php | 2 +- .../Sales/Model/ResourceModel/Order/Shipment/Relation.php | 2 +- .../Sales/Model/ResourceModel/Order/Shipment/Track.php | 2 +- .../Model/ResourceModel/Order/Shipment/Track/Collection.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/Order/Status.php | 2 +- .../Sales/Model/ResourceModel/Order/Status/Collection.php | 2 +- .../Sales/Model/ResourceModel/Order/Status/History.php | 2 +- .../Model/ResourceModel/Order/Status/History/Collection.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/Order/Tax.php | 2 +- .../Sales/Model/ResourceModel/Order/Tax/Collection.php | 2 +- .../Magento/Sales/Model/ResourceModel/Order/Tax/Item.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/Report.php | 2 +- .../Sales/Model/ResourceModel/Report/AbstractReport.php | 2 +- .../Sales/Model/ResourceModel/Report/Bestsellers.php | 2 +- .../Model/ResourceModel/Report/Bestsellers/Collection.php | 2 +- .../ResourceModel/Report/Collection/AbstractCollection.php | 2 +- .../Magento/Sales/Model/ResourceModel/Report/Invoiced.php | 2 +- .../ResourceModel/Report/Invoiced/Collection/Invoiced.php | 2 +- .../ResourceModel/Report/Invoiced/Collection/Order.php | 2 +- app/code/Magento/Sales/Model/ResourceModel/Report/Order.php | 2 +- .../Sales/Model/ResourceModel/Report/Order/Collection.php | 2 +- .../Sales/Model/ResourceModel/Report/Order/Createdat.php | 2 +- .../Sales/Model/ResourceModel/Report/Order/Updatedat.php | 2 +- .../ResourceModel/Report/Order/Updatedat/Collection.php | 2 +- .../Magento/Sales/Model/ResourceModel/Report/Refunded.php | 2 +- .../ResourceModel/Report/Refunded/Collection/Order.php | 2 +- .../ResourceModel/Report/Refunded/Collection/Refunded.php | 2 +- .../Magento/Sales/Model/ResourceModel/Report/Shipping.php | 2 +- .../ResourceModel/Report/Shipping/Collection/Order.php | 2 +- .../ResourceModel/Report/Shipping/Collection/Shipment.php | 2 +- .../Magento/Sales/Model/ResourceModel/Sale/Collection.php | 2 +- .../Magento/Sales/Model/ResourceModel/Status/Collection.php | 2 +- .../Model/ResourceModel/Transaction/Grid/Collection.php | 2 +- .../Sales/Model/ResourceModel/Transaction/Grid/TypeList.php | 2 +- app/code/Magento/Sales/Model/Rss/NewOrder.php | 2 +- app/code/Magento/Sales/Model/Rss/OrderStatus.php | 2 +- app/code/Magento/Sales/Model/Service/CreditmemoService.php | 2 +- app/code/Magento/Sales/Model/Service/InvoiceService.php | 2 +- app/code/Magento/Sales/Model/Service/OrderService.php | 2 +- app/code/Magento/Sales/Model/Service/ShipmentService.php | 2 +- app/code/Magento/Sales/Model/ShipOrder.php | 2 +- .../Sales/Model/Spi/CreditmemoCommentResourceInterface.php | 2 +- .../Sales/Model/Spi/CreditmemoItemResourceInterface.php | 2 +- .../Magento/Sales/Model/Spi/CreditmemoResourceInterface.php | 2 +- .../Sales/Model/Spi/InvoiceCommentResourceInterface.php | 2 +- .../Sales/Model/Spi/InvoiceItemResourceInterface.php | 2 +- .../Magento/Sales/Model/Spi/InvoiceResourceInterface.php | 2 +- .../Sales/Model/Spi/OrderAddressResourceInterface.php | 2 +- .../Magento/Sales/Model/Spi/OrderItemResourceInterface.php | 2 +- .../Sales/Model/Spi/OrderPaymentResourceInterface.php | 2 +- app/code/Magento/Sales/Model/Spi/OrderResourceInterface.php | 2 +- .../Sales/Model/Spi/OrderStatusHistoryResourceInterface.php | 2 +- .../Sales/Model/Spi/ShipmentCommentResourceInterface.php | 2 +- .../Sales/Model/Spi/ShipmentItemResourceInterface.php | 2 +- .../Magento/Sales/Model/Spi/ShipmentResourceInterface.php | 2 +- .../Sales/Model/Spi/ShipmentTrackResourceInterface.php | 2 +- .../Sales/Model/Spi/TransactionResourceInterface.php | 2 +- app/code/Magento/Sales/Model/Status/ListFactory.php | 2 +- app/code/Magento/Sales/Model/Status/ListStatus.php | 2 +- app/code/Magento/Sales/Model/Validator.php | 2 +- app/code/Magento/Sales/Model/ValidatorInterface.php | 2 +- app/code/Magento/Sales/Model/ValidatorResult.php | 2 +- app/code/Magento/Sales/Model/ValidatorResultInterface.php | 2 +- app/code/Magento/Sales/Model/ValidatorResultMerger.php | 2 +- .../Magento/Sales/Observer/Backend/CatalogPriceRule.php | 2 +- .../Observer/Backend/CatalogProductSaveAfterObserver.php | 2 +- .../Observer/Backend/SubtractQtyFromQuotesObserver.php | 2 +- .../Observer/Frontend/AddVatRequestParamsOrderComment.php | 2 +- .../Sales/Observer/Frontend/RestoreCustomerGroupId.php | 2 +- app/code/Magento/Sales/Observer/GridAsyncInsertObserver.php | 2 +- .../Magento/Sales/Observer/GridProcessAddressChange.php | 2 +- app/code/Magento/Sales/Observer/GridSyncInsertObserver.php | 2 +- app/code/Magento/Sales/Observer/GridSyncRemoveObserver.php | 2 +- app/code/Magento/Sales/Observer/Virtual/SendEmails.php | 2 +- app/code/Magento/Sales/Setup/InstallData.php | 2 +- app/code/Magento/Sales/Setup/InstallSchema.php | 2 +- app/code/Magento/Sales/Setup/SalesSetup.php | 2 +- app/code/Magento/Sales/Setup/UpgradeData.php | 2 +- app/code/Magento/Sales/Setup/UpgradeSchema.php | 2 +- .../Test/Unit/Block/Adminhtml/Items/AbstractItemsTest.php | 2 +- .../Sales/Test/Unit/Block/Adminhtml/Items/AbstractTest.php | 2 +- .../Unit/Block/Adminhtml/Items/Column/DefaultColumnTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Order/Comments/ViewTest.php | 2 +- .../Block/Adminhtml/Order/Create/AbstractCreateTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Order/Create/CustomerTest.php | 2 +- .../Unit/Block/Adminhtml/Order/Create/Items/GridTest.php | 2 +- .../Adminhtml/Order/Create/Search/Grid/Renderer/QtyTest.php | 2 +- .../Adminhtml/Order/Create/Sidebar/AbstractSidebarTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Order/Create/TotalsTest.php | 2 +- .../Block/Adminhtml/Order/Creditmemo/Create/ItemsTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Order/Invoice/ViewTest.php | 2 +- .../Unit/Block/Adminhtml/Order/Status/Assign/FormTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Order/Totals/TaxTest.php | 2 +- .../Unit/Block/Adminhtml/Order/View/GiftmessageTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Order/View/HistoryTest.php | 2 +- .../Sales/Test/Unit/Block/Adminhtml/Order/View/InfoTest.php | 2 +- .../Unit/Block/Adminhtml/Order/View/Tab/HistoryTest.php | 2 +- .../Block/Adminhtml/Order/View/Tab/Stub/OnlineMethod.php | 2 +- .../Block/Adminhtml/Order/View/Tab/TransactionsTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Rss/Order/Grid/LinkTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Block/Guest/LinkTest.php | 2 +- .../Magento/Sales/Test/Unit/Block/Items/AbstractTest.php | 2 +- .../Sales/Test/Unit/Block/Order/Create/TotalsTest.php | 2 +- .../Test/Unit/Block/Order/Email/Items/DefaultItemsTest.php | 2 +- .../Unit/Block/Order/Email/Items/Order/DefaultOrderTest.php | 2 +- .../Magento/Sales/Test/Unit/Block/Order/HistoryTest.php | 2 +- .../Sales/Test/Unit/Block/Order/Info/Buttons/RssTest.php | 2 +- .../Unit/Block/Order/Item/Renderer/DefaultRendererTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Block/Order/RecentTest.php | 2 +- .../Magento/Sales/Test/Unit/Block/Reorder/SidebarTest.php | 2 +- .../Sales/Test/Unit/Block/Status/Grid/Column/StateTest.php | 2 +- .../Adminhtml/Creditmemo/AbstractCreditmemo/EmailTest.php | 2 +- .../Adminhtml/Invoice/AbstractInvoice/EmailTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Order/CancelTest.php | 2 +- .../Controller/Adminhtml/Order/Create/ProcessDataTest.php | 2 +- .../Adminhtml/Order/Creditmemo/AddCommentTest.php | 2 +- .../Controller/Adminhtml/Order/Creditmemo/CancelTest.php | 2 +- .../Controller/Adminhtml/Order/Creditmemo/NewActionTest.php | 2 +- .../Adminhtml/Order/Creditmemo/PrintActionTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/Creditmemo/SaveTest.php | 2 +- .../Controller/Adminhtml/Order/Creditmemo/UpdateQtyTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/Creditmemo/ViewTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/Creditmemo/VoidTest.php | 2 +- .../Controller/Adminhtml/Order/CreditmemoLoaderTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Order/EmailTest.php | 2 +- .../Sales/Test/Unit/Controller/Adminhtml/Order/HoldTest.php | 2 +- .../Controller/Adminhtml/Order/Invoice/AddCommentTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/Invoice/CancelTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/Invoice/CaptureTest.php | 2 +- .../Controller/Adminhtml/Order/Invoice/NewActionTest.php | 2 +- .../Controller/Adminhtml/Order/Invoice/PrintActionTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/Invoice/SaveTest.php | 2 +- .../Controller/Adminhtml/Order/Invoice/UpdateQtyTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/Invoice/ViewTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/Invoice/VoidTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Order/MassCancelTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Order/MassHoldTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Order/MassUnholdTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/ReviewPaymentTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Order/UnholdTest.php | 2 +- .../Sales/Test/Unit/Controller/Adminhtml/Order/ViewTest.php | 2 +- .../Controller/Adminhtml/PdfDocumentsMassActionTest.php | 2 +- .../Unit/Controller/Download/DownloadCustomOptionTest.php | 2 +- .../Magento/Sales/Test/Unit/Controller/Guest/ViewTest.php | 2 +- .../Magento/Sales/Test/Unit/Cron/CleanExpiredQuotesTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Helper/AdminTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Helper/DataTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Helper/GuestTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Helper/ReorderTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/AbstractModelTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/AdminOrder/CreateTest.php | 2 +- .../Sales/Test/Unit/Model/AdminOrder/EmailSenderTest.php | 2 +- .../Unit/Model/AdminOrder/Product/Quote/InitializerTest.php | 2 +- .../Unit/Model/Config/Backend/Email/AsyncSendingTest.php | 2 +- .../Unit/Model/Config/Backend/Grid/AsyncIndexingTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Config/ConverterTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/Config/DataTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Config/ReaderTest.php | 2 +- .../Sales/Test/Unit/Model/Config/SchemaLocatorTest.php | 2 +- .../Test/Unit/Model/Config/Source/Order/StatusTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/Config/XsdTest.php | 2 +- .../Test/Unit/Model/Config/_files/core_totals_config.php | 2 +- .../Test/Unit/Model/Config/_files/custom_totals_config.php | 2 +- .../Sales/Test/Unit/Model/Config/_files/sales_invalid.xml | 2 +- .../Unit/Model/Config/_files/sales_invalid_duplicates.xml | 2 +- .../Unit/Model/Config/_files/sales_invalid_root_node.xml | 2 +- .../Test/Unit/Model/Config/_files/sales_invalid_scope.xml | 2 +- .../Config/_files/sales_invalid_without_attributes.xml | 2 +- .../Sales/Test/Unit/Model/Config/_files/sales_valid.xml | 2 +- app/code/Magento/Sales/Test/Unit/Model/ConfigTest.php | 2 +- .../CronJob/AggregateSalesReportBestsellersDataTest.php | 2 +- .../Model/CronJob/AggregateSalesReportInvoicedDataTest.php | 2 +- .../Model/CronJob/AggregateSalesReportOrderDataTest.php | 2 +- .../Model/CronJob/AggregateSalesReportRefundedDataTest.php | 2 +- .../Test/Unit/Model/CronJob/CleanExpiredOrdersTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/DownloadTest.php | 2 +- .../Sales/Test/Unit/Model/EmailSenderHandlerTest.php | 2 +- .../Test/Unit/Model/Grid/Child/CollectionUpdaterTest.php | 2 +- .../Sales/Test/Unit/Model/Grid/CollectionUpdaterTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/GridAsyncInsertTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/IncrementTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/InvoiceOrderTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/InvoiceRepositoryTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Address/ValidatorTest.php | 2 +- .../Sales/Test/Unit/Model/Order/AddressRepositoryTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Order/AddressTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Order/Admin/ItemTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php | 2 +- .../Unit/Model/Order/Creditmemo/Comment/ValidatorTest.php | 2 +- .../Item/Validation/CreateQuantityValidatorTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Creditmemo/ItemTest.php | 2 +- .../Unit/Model/Order/Creditmemo/RefundOperationTest.php | 2 +- .../Unit/Model/Order/Creditmemo/Sender/EmailSenderTest.php | 2 +- .../Test/Unit/Model/Order/Creditmemo/Total/CostTest.php | 2 +- .../Test/Unit/Model/Order/Creditmemo/Total/DiscountTest.php | 2 +- .../Test/Unit/Model/Order/Creditmemo/Total/ShippingTest.php | 2 +- .../Test/Unit/Model/Order/Creditmemo/Total/SubtotalTest.php | 2 +- .../Test/Unit/Model/Order/Creditmemo/Total/TaxTest.php | 2 +- .../Order/Creditmemo/Validation/QuantityValidatorTest.php | 2 +- .../Test/Unit/Model/Order/CreditmemoDocumentFactoryTest.php | 2 +- .../Sales/Test/Unit/Model/Order/CreditmemoNotifierTest.php | 2 +- .../Test/Unit/Model/Order/CreditmemoRepositoryTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Order/CreditmemoTest.php | 2 +- .../Sales/Test/Unit/Model/Order/CustomerManagementTest.php | 2 +- .../Order/Email/Container/CreditmemoCommentIdentityTest.php | 2 +- .../Model/Order/Email/Container/CreditmemoIdentityTest.php | 2 +- .../Order/Email/Container/InvoiceCommentIdentityTest.php | 2 +- .../Model/Order/Email/Container/InvoiceIdentityTest.php | 2 +- .../Order/Email/Container/OrderCommentIdentityTest.php | 2 +- .../Unit/Model/Order/Email/Container/OrderIdentityTest.php | 2 +- .../Order/Email/Container/ShipmentCommentIdentityTest.php | 2 +- .../Model/Order/Email/Container/ShipmentIdentityTest.php | 2 +- .../Test/Unit/Model/Order/Email/Container/TemplateTest.php | 2 +- .../Unit/Model/Order/Email/Sender/AbstractSenderTest.php | 2 +- .../Order/Email/Sender/CreditmemoCommentSenderTest.php | 2 +- .../Unit/Model/Order/Email/Sender/CreditmemoSenderTest.php | 2 +- .../Model/Order/Email/Sender/InvoiceCommentSenderTest.php | 2 +- .../Unit/Model/Order/Email/Sender/InvoiceSenderTest.php | 2 +- .../Model/Order/Email/Sender/OrderCommentSenderTest.php | 2 +- .../Test/Unit/Model/Order/Email/Sender/OrderSenderTest.php | 2 +- .../Model/Order/Email/Sender/ShipmentCommentSenderTest.php | 2 +- .../Unit/Model/Order/Email/Sender/ShipmentSenderTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Email/SenderBuilderTest.php | 2 +- .../Unit/Model/Order/Email/Stub/TransportInterfaceMock.php | 2 +- .../Unit/Model/Order/Grid/Massaction/ItemsUpdaterTest.php | 2 +- .../Test/Unit/Model/Order/Grid/Row/UrlGeneratorTest.php | 2 +- .../Test/Unit/Model/Order/Invoice/Comment/ValidatorTest.php | 2 +- .../Unit/Model/Order/Invoice/Grid/Row/UrlGeneratorTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Invoice/ItemTest.php | 2 +- .../Test/Unit/Model/Order/Invoice/PayOperationTest.php | 2 +- .../Unit/Model/Order/Invoice/Plugin/AddressUpdateTest.php | 2 +- .../Unit/Model/Order/Invoice/Sender/EmailSenderTest.php | 2 +- .../Test/Unit/Model/Order/Invoice/Total/ShippingTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Invoice/Total/TaxTest.php | 2 +- .../Unit/Model/Order/Invoice/Validation/CanRefundTest.php | 2 +- .../Test/Unit/Model/Order/InvoiceDocumentFactoryTest.php | 2 +- .../Sales/Test/Unit/Model/Order/InvoiceNotifierTest.php | 2 +- .../Test/Unit/Model/Order/InvoiceQuantityValidatorTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Order/InvoiceTest.php | 2 +- .../Sales/Test/Unit/Model/Order/ItemRepositoryTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Payment/InfoTest.php | 2 +- .../Model/Order/Payment/Operations/CaptureOperationTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Payment/RepositoryTest.php | 2 +- .../Unit/Model/Order/Payment/State/AuthorizeCommandTest.php | 2 +- .../Unit/Model/Order/Payment/State/CaptureCommandTest.php | 2 +- .../Unit/Model/Order/Payment/Transaction/BuilderTest.php | 2 +- .../Unit/Model/Order/Payment/Transaction/ManagerTest.php | 2 +- .../Unit/Model/Order/Payment/Transaction/RepositoryTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Payment/TransactionTest.php | 2 +- .../Sales/Test/Unit/Model/Order/PaymentAdapterTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Order/PaymentTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Pdf/AbstractTest.php | 2 +- .../Test/Unit/Model/Order/Pdf/Config/ConverterTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Pdf/Config/ReaderTest.php | 2 +- .../Test/Unit/Model/Order/Pdf/Config/SchemaLocatorTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Pdf/Config/XsdTest.php | 2 +- .../Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.php | 2 +- .../Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.xml | 2 +- .../Test/Unit/Model/Order/Pdf/Config/_files/pdf_one.xml | 2 +- .../Test/Unit/Model/Order/Pdf/Config/_files/pdf_two.xml | 2 +- .../Magento/Sales/Test/Unit/Model/Order/Pdf/ConfigTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Order/Pdf/InvoiceTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Pdf/Total/FactoryTest.php | 2 +- .../Unit/Model/Order/Shipment/Comment/ValidatorTest.php | 2 +- .../Test/Unit/Model/Order/Shipment/OrderRegistrarTest.php | 2 +- .../Unit/Model/Order/Shipment/Sender/EmailSenderTest.php | 2 +- .../Test/Unit/Model/Order/Shipment/Track/ValidatorTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Shipment/TrackTest.php | 2 +- .../Order/Shipment/Validation/QuantityValidatorTest.php | 2 +- .../Model/Order/Shipment/Validation/TrackValidatorTest.php | 2 +- .../Test/Unit/Model/Order/ShipmentDocumentFactoryTest.php | 2 +- .../Sales/Test/Unit/Model/Order/ShipmentFactoryTest.php | 2 +- .../Sales/Test/Unit/Model/Order/ShipmentRepositoryTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Order/ShipmentTest.php | 2 +- .../Sales/Test/Unit/Model/Order/StateResolverTest.php | 2 +- .../Test/Unit/Model/Order/Status/History/ValidatorTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Status/HistoryTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/Order/StatusTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Total/Config/BaseTest.php | 2 +- .../Test/Unit/Model/Order/Validation/CanInvoiceTest.php | 2 +- .../Test/Unit/Model/Order/Validation/CanRefundTest.php | 2 +- .../Sales/Test/Unit/Model/Order/Validation/CanShipTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/OrderNotifierTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/OrderRepositoryTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/OrderTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/RefundInvoiceTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/RefundOrderTest.php | 2 +- .../Sales/Test/Unit/Model/ResourceModel/AttributeTest.php | 2 +- .../Sales/Test/Unit/Model/ResourceModel/GridPoolTest.php | 2 +- .../Sales/Test/Unit/Model/ResourceModel/HelperTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Order/AddressTest.php | 2 +- .../Model/ResourceModel/Order/Creditmemo/CommentTest.php | 2 +- .../ResourceModel/Order/Creditmemo/Relation/RefundTest.php | 2 +- .../Model/ResourceModel/Order/Creditmemo/RelationTest.php | 2 +- .../Unit/Model/ResourceModel/Order/Handler/AddressTest.php | 2 +- .../Unit/Model/ResourceModel/Order/Handler/StateTest.php | 2 +- .../Unit/Model/ResourceModel/Order/Invoice/CommentTest.php | 2 +- .../Unit/Model/ResourceModel/Order/Invoice/RelationTest.php | 2 +- .../Model/ResourceModel/Order/Plugin/AuthorizationTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Order/RelationTest.php | 2 +- .../Unit/Model/ResourceModel/Order/Shipment/CommentTest.php | 2 +- .../Model/ResourceModel/Order/Shipment/RelationTest.php | 2 +- .../Unit/Model/ResourceModel/Order/Shipment/TrackTest.php | 2 +- .../ResourceModel/Order/Status/History/CollectionTest.php | 2 +- .../Unit/Model/ResourceModel/Order/Status/HistoryTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Order/StatusTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Order/Tax/ItemTest.php | 2 +- .../Sales/Test/Unit/Model/ResourceModel/OrderTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/Rss/NewOrderTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Rss/OrderStatusTest.php | 2 +- .../Sales/Test/Unit/Model/Service/CreditmemoServiceTest.php | 2 +- .../Sales/Test/Unit/Model/Service/InvoiceServiceTest.php | 2 +- .../Sales/Test/Unit/Model/Service/OrderServiceTest.php | 2 +- .../Sales/Test/Unit/Model/Service/ShipmentServiceTest.php | 2 +- app/code/Magento/Sales/Test/Unit/Model/ShipOrderTest.php | 2 +- .../Magento/Sales/Test/Unit/Model/Status/ListStatusTest.php | 2 +- .../Test/Unit/Observer/Backend/CatalogPriceRuleTest.php | 2 +- .../Backend/CatalogProductSaveAfterObserverTest.php | 2 +- .../Observer/Backend/SubtractQtyFromQuotesObserverTest.php | 2 +- .../Frontend/AddVatRequestParamsOrderCommentTest.php | 2 +- .../Unit/Observer/Frontend/RestoreCustomerGroupIdTest.php | 2 +- .../Test/Unit/Observer/GridProcessAddressChangeTest.php | 2 +- .../Sales/Test/Unit/Observer/GridSyncInsertObserverTest.php | 2 +- .../Sales/Test/Unit/Observer/GridSyncRemoveObserverTest.php | 2 +- .../Test/Unit/Ui/Component/DataProvider/DocumentTest.php | 2 +- .../Test/Unit/Ui/Component/Listing/Column/AddressTest.php | 2 +- .../Unit/Ui/Component/Listing/Column/CustomerGroupTest.php | 2 +- .../Unit/Ui/Component/Listing/Column/PaymentMethodTest.php | 2 +- .../Test/Unit/Ui/Component/Listing/Column/PriceTest.php | 2 +- .../Unit/Ui/Component/Listing/Column/PurchasedPriceTest.php | 2 +- .../Unit/Ui/Component/Listing/Column/Status/OptionsTest.php | 2 +- .../Test/Unit/Ui/Component/Listing/Column/StatusTest.php | 2 +- .../Unit/Ui/Component/Listing/Column/ViewActionTest.php | 2 +- app/code/Magento/Sales/Ui/Component/Control/PdfAction.php | 2 +- .../Magento/Sales/Ui/Component/DataProvider/Document.php | 2 +- .../Magento/Sales/Ui/Component/Listing/Column/Address.php | 2 +- .../Sales/Ui/Component/Listing/Column/Creditmemo/State.php | 2 +- .../Component/Listing/Column/Creditmemo/State/Options.php | 2 +- .../Sales/Ui/Component/Listing/Column/CustomerGroup.php | 2 +- .../Sales/Ui/Component/Listing/Column/Invoice/State.php | 2 +- .../Ui/Component/Listing/Column/Invoice/State/Options.php | 2 +- .../Sales/Ui/Component/Listing/Column/PaymentMethod.php | 2 +- .../Magento/Sales/Ui/Component/Listing/Column/Price.php | 2 +- .../Sales/Ui/Component/Listing/Column/PurchasedPrice.php | 2 +- .../Magento/Sales/Ui/Component/Listing/Column/Status.php | 2 +- .../Sales/Ui/Component/Listing/Column/Status/Options.php | 2 +- .../Sales/Ui/Component/Listing/Column/ViewAction.php | 2 +- app/code/Magento/Sales/etc/acl.xml | 2 +- app/code/Magento/Sales/etc/adminhtml/di.xml | 2 +- app/code/Magento/Sales/etc/adminhtml/events.xml | 2 +- app/code/Magento/Sales/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Sales/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Sales/etc/adminhtml/system.xml | 2 +- app/code/Magento/Sales/etc/catalog_attributes.xml | 2 +- app/code/Magento/Sales/etc/config.xml | 2 +- app/code/Magento/Sales/etc/crontab.xml | 2 +- app/code/Magento/Sales/etc/di.xml | 2 +- app/code/Magento/Sales/etc/email_templates.xml | 2 +- app/code/Magento/Sales/etc/events.xml | 2 +- app/code/Magento/Sales/etc/extension_attributes.xml | 2 +- app/code/Magento/Sales/etc/fieldset.xml | 2 +- app/code/Magento/Sales/etc/frontend/di.xml | 2 +- app/code/Magento/Sales/etc/frontend/events.xml | 2 +- app/code/Magento/Sales/etc/frontend/page_types.xml | 2 +- app/code/Magento/Sales/etc/frontend/routes.xml | 2 +- app/code/Magento/Sales/etc/frontend/sections.xml | 2 +- app/code/Magento/Sales/etc/module.xml | 2 +- app/code/Magento/Sales/etc/pdf.xml | 2 +- app/code/Magento/Sales/etc/pdf.xsd | 2 +- app/code/Magento/Sales/etc/pdf_file.xsd | 2 +- app/code/Magento/Sales/etc/resources.xml | 2 +- app/code/Magento/Sales/etc/sales.xml | 2 +- app/code/Magento/Sales/etc/sales.xsd | 2 +- app/code/Magento/Sales/etc/webapi.xml | 2 +- app/code/Magento/Sales/etc/webapi_rest/di.xml | 2 +- app/code/Magento/Sales/etc/webapi_rest/events.xml | 2 +- app/code/Magento/Sales/etc/webapi_soap/di.xml | 2 +- app/code/Magento/Sales/etc/webapi_soap/events.xml | 2 +- app/code/Magento/Sales/etc/widget.xml | 2 +- app/code/Magento/Sales/registration.php | 2 +- .../Sales/view/adminhtml/layout/customer_index_edit.xml | 2 +- .../view/adminhtml/layout/sales_creditmemo_exportcsv.xml | 2 +- .../view/adminhtml/layout/sales_creditmemo_exportexcel.xml | 2 +- .../Sales/view/adminhtml/layout/sales_creditmemo_grid.xml | 2 +- .../Sales/view/adminhtml/layout/sales_creditmemo_index.xml | 2 +- .../view/adminhtml/layout/sales_creditmemo_item_price.xml | 2 +- .../Sales/view/adminhtml/layout/sales_invoice_exportcsv.xml | 2 +- .../view/adminhtml/layout/sales_invoice_exportexcel.xml | 2 +- .../Sales/view/adminhtml/layout/sales_invoice_grid.xml | 2 +- .../Sales/view/adminhtml/layout/sales_invoice_index.xml | 2 +- .../view/adminhtml/layout/sales_invoice_item_price.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_addcomment.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_address.xml | 2 +- .../adminhtml/layout/sales_order_create_customer_block.xml | 2 +- .../view/adminhtml/layout/sales_order_create_index.xml | 2 +- .../view/adminhtml/layout/sales_order_create_item_price.xml | 2 +- .../sales_order_create_load_block_billing_address.xml | 2 +- .../layout/sales_order_create_load_block_billing_method.xml | 2 +- .../layout/sales_order_create_load_block_comment.xml | 2 +- .../layout/sales_order_create_load_block_customer_grid.xml | 2 +- .../adminhtml/layout/sales_order_create_load_block_data.xml | 2 +- .../layout/sales_order_create_load_block_form_account.xml | 2 +- .../layout/sales_order_create_load_block_giftmessage.xml | 2 +- .../layout/sales_order_create_load_block_header.xml | 2 +- .../layout/sales_order_create_load_block_items.xml | 2 +- .../adminhtml/layout/sales_order_create_load_block_json.xml | 2 +- .../layout/sales_order_create_load_block_message.xml | 2 +- .../layout/sales_order_create_load_block_newsletter.xml | 2 +- .../layout/sales_order_create_load_block_plain.xml | 2 +- .../layout/sales_order_create_load_block_search.xml | 2 +- .../layout/sales_order_create_load_block_search_grid.xml | 2 +- .../sales_order_create_load_block_shipping_address.xml | 2 +- .../sales_order_create_load_block_shipping_method.xml | 2 +- .../layout/sales_order_create_load_block_sidebar.xml | 2 +- .../layout/sales_order_create_load_block_sidebar_cart.xml | 2 +- .../sales_order_create_load_block_sidebar_compared.xml | 2 +- .../sales_order_create_load_block_sidebar_pcompared.xml | 2 +- .../sales_order_create_load_block_sidebar_pviewed.xml | 2 +- .../sales_order_create_load_block_sidebar_reorder.xml | 2 +- .../layout/sales_order_create_load_block_sidebar_viewed.xml | 2 +- .../sales_order_create_load_block_sidebar_wishlist.xml | 2 +- .../layout/sales_order_create_load_block_totals.xml | 2 +- .../adminhtml/layout/sales_order_creditmemo_addcomment.xml | 2 +- .../adminhtml/layout/sales_order_creditmemo_grid_block.xml | 2 +- .../view/adminhtml/layout/sales_order_creditmemo_new.xml | 2 +- .../adminhtml/layout/sales_order_creditmemo_updateqty.xml | 2 +- .../view/adminhtml/layout/sales_order_creditmemo_view.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_creditmemos.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_edit_index.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_exportcsv.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_exportexcel.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_grid.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_index.xml | 2 +- .../adminhtml/layout/sales_order_invoice_addcomment.xml | 2 +- .../adminhtml/layout/sales_order_invoice_grid_block.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_invoice_new.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_updateqty.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_view.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_invoices.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_item_price.xml | 2 +- .../adminhtml/layout/sales_order_shipment_grid_block.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_shipments.xml | 2 +- .../view/adminhtml/layout/sales_order_status_assign.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_status_edit.xml | 2 +- .../view/adminhtml/layout/sales_order_status_index.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_status_new.xml | 2 +- .../view/adminhtml/layout/sales_order_transactions.xml | 2 +- .../layout/sales_order_transactions_grid_block.xml | 2 +- .../Sales/view/adminhtml/layout/sales_order_view.xml | 2 +- .../view/adminhtml/layout/sales_shipment_exportcsv.xml | 2 +- .../view/adminhtml/layout/sales_shipment_exportexcel.xml | 2 +- .../Sales/view/adminhtml/layout/sales_shipment_index.xml | 4 ++-- .../view/adminhtml/layout/sales_transaction_child_block.xml | 2 +- .../Sales/view/adminhtml/layout/sales_transactions_grid.xml | 2 +- .../view/adminhtml/layout/sales_transactions_grid_block.xml | 2 +- .../view/adminhtml/layout/sales_transactions_index.xml | 2 +- .../Sales/view/adminhtml/layout/sales_transactions_view.xml | 2 +- app/code/Magento/Sales/view/adminhtml/requirejs-config.js | 4 ++-- .../Sales/view/adminhtml/templates/items/column/name.phtml | 2 +- .../Sales/view/adminhtml/templates/items/column/qty.phtml | 2 +- .../Sales/view/adminhtml/templates/items/price/row.phtml | 2 +- .../Sales/view/adminhtml/templates/items/price/total.phtml | 2 +- .../Sales/view/adminhtml/templates/items/price/unit.phtml | 2 +- .../view/adminhtml/templates/items/renderer/default.phtml | 2 +- .../Sales/view/adminhtml/templates/order/address/form.phtml | 2 +- .../view/adminhtml/templates/order/comments/view.phtml | 2 +- .../view/adminhtml/templates/order/create/abstract.phtml | 2 +- .../templates/order/create/billing/method/form.phtml | 2 +- .../view/adminhtml/templates/order/create/comment.phtml | 2 +- .../adminhtml/templates/order/create/coupons/form.phtml | 2 +- .../Sales/view/adminhtml/templates/order/create/data.phtml | 2 +- .../Sales/view/adminhtml/templates/order/create/form.phtml | 2 +- .../adminhtml/templates/order/create/form/account.phtml | 2 +- .../adminhtml/templates/order/create/form/address.phtml | 2 +- .../view/adminhtml/templates/order/create/giftmessage.phtml | 2 +- .../Sales/view/adminhtml/templates/order/create/items.phtml | 2 +- .../view/adminhtml/templates/order/create/items/grid.phtml | 2 +- .../adminhtml/templates/order/create/items/price/row.phtml | 2 +- .../templates/order/create/items/price/total.phtml | 2 +- .../adminhtml/templates/order/create/items/price/unit.phtml | 2 +- .../Sales/view/adminhtml/templates/order/create/js.phtml | 2 +- .../adminhtml/templates/order/create/newsletter/form.phtml | 2 +- .../templates/order/create/shipping/method/form.phtml | 2 +- .../view/adminhtml/templates/order/create/sidebar.phtml | 2 +- .../adminhtml/templates/order/create/sidebar/items.phtml | 2 +- .../adminhtml/templates/order/create/store/select.phtml | 2 +- .../view/adminhtml/templates/order/create/totals.phtml | 2 +- .../adminhtml/templates/order/create/totals/default.phtml | 2 +- .../templates/order/create/totals/grandtotal.phtml | 2 +- .../adminhtml/templates/order/create/totals/shipping.phtml | 2 +- .../adminhtml/templates/order/create/totals/subtotal.phtml | 2 +- .../view/adminhtml/templates/order/create/totals/tax.phtml | 2 +- .../adminhtml/templates/order/creditmemo/create/form.phtml | 2 +- .../adminhtml/templates/order/creditmemo/create/items.phtml | 2 +- .../order/creditmemo/create/items/renderer/default.phtml | 2 +- .../order/creditmemo/create/totals/adjustments.phtml | 2 +- .../adminhtml/templates/order/creditmemo/view/form.phtml | 2 +- .../adminhtml/templates/order/creditmemo/view/items.phtml | 2 +- .../order/creditmemo/view/items/renderer/default.phtml | 2 +- .../Sales/view/adminhtml/templates/order/details.phtml | 2 +- .../Sales/view/adminhtml/templates/order/giftoptions.phtml | 2 +- .../adminhtml/templates/order/invoice/create/form.phtml | 2 +- .../adminhtml/templates/order/invoice/create/items.phtml | 2 +- .../order/invoice/create/items/renderer/default.phtml | 2 +- .../view/adminhtml/templates/order/invoice/view/form.phtml | 2 +- .../view/adminhtml/templates/order/invoice/view/items.phtml | 2 +- .../order/invoice/view/items/renderer/default.phtml | 2 +- .../Sales/view/adminhtml/templates/order/totalbar.phtml | 2 +- .../Sales/view/adminhtml/templates/order/totals.phtml | 2 +- .../view/adminhtml/templates/order/totals/discount.phtml | 2 +- .../Sales/view/adminhtml/templates/order/totals/due.phtml | 2 +- .../view/adminhtml/templates/order/totals/footer.phtml | 2 +- .../Sales/view/adminhtml/templates/order/totals/grand.phtml | 2 +- .../Sales/view/adminhtml/templates/order/totals/item.phtml | 2 +- .../Sales/view/adminhtml/templates/order/totals/main.phtml | 2 +- .../Sales/view/adminhtml/templates/order/totals/paid.phtml | 2 +- .../view/adminhtml/templates/order/totals/refunded.phtml | 2 +- .../view/adminhtml/templates/order/totals/shipping.phtml | 2 +- .../Sales/view/adminhtml/templates/order/totals/tax.phtml | 2 +- .../Sales/view/adminhtml/templates/order/view/form.phtml | 2 +- .../view/adminhtml/templates/order/view/giftmessage.phtml | 2 +- .../Sales/view/adminhtml/templates/order/view/history.phtml | 2 +- .../Sales/view/adminhtml/templates/order/view/info.phtml | 2 +- .../Sales/view/adminhtml/templates/order/view/items.phtml | 2 +- .../templates/order/view/items/renderer/default.phtml | 2 +- .../view/adminhtml/templates/order/view/tab/history.phtml | 2 +- .../view/adminhtml/templates/order/view/tab/info.phtml | 2 +- .../Sales/view/adminhtml/templates/page/js/components.phtml | 2 +- .../view/adminhtml/templates/rss/order/grid/link.phtml | 2 +- .../view/adminhtml/templates/transactions/detail.phtml | 2 +- .../adminhtml/ui_component/sales_order_creditmemo_grid.xml | 2 +- .../Sales/view/adminhtml/ui_component/sales_order_grid.xml | 2 +- .../adminhtml/ui_component/sales_order_invoice_grid.xml | 2 +- .../adminhtml/ui_component/sales_order_shipment_grid.xml | 2 +- .../ui_component/sales_order_view_creditmemo_grid.xml | 2 +- .../ui_component/sales_order_view_invoice_grid.xml | 2 +- .../ui_component/sales_order_view_shipment_grid.xml | 2 +- .../view/adminhtml/web/js/bootstrap/order-create-index.js | 4 ++-- .../view/adminhtml/web/js/bootstrap/order-post-action.js | 2 +- .../Magento/Sales/view/adminhtml/web/order/create/form.js | 4 ++-- .../Sales/view/adminhtml/web/order/create/giftmessage.js | 4 ++-- .../Sales/view/adminhtml/web/order/create/scripts.js | 2 +- .../Sales/view/adminhtml/web/order/edit/address/form.js | 2 +- .../Magento/Sales/view/adminhtml/web/order/edit/message.js | 2 +- .../Sales/view/adminhtml/web/order/giftoptions_tooltip.js | 4 ++-- .../Sales/view/adminhtml/web/order/view/post-wrapper.js | 2 +- .../Magento/Sales/view/frontend/email/creditmemo_new.html | 2 +- .../Sales/view/frontend/email/creditmemo_new_guest.html | 2 +- .../Sales/view/frontend/email/creditmemo_update.html | 2 +- .../Sales/view/frontend/email/creditmemo_update_guest.html | 2 +- app/code/Magento/Sales/view/frontend/email/invoice_new.html | 2 +- .../Sales/view/frontend/email/invoice_new_guest.html | 2 +- .../Magento/Sales/view/frontend/email/invoice_update.html | 2 +- .../Sales/view/frontend/email/invoice_update_guest.html | 2 +- app/code/Magento/Sales/view/frontend/email/order_new.html | 2 +- .../Magento/Sales/view/frontend/email/order_new_guest.html | 2 +- .../Magento/Sales/view/frontend/email/order_update.html | 2 +- .../Sales/view/frontend/email/order_update_guest.html | 2 +- .../Magento/Sales/view/frontend/email/shipment_new.html | 2 +- .../Sales/view/frontend/email/shipment_new_guest.html | 2 +- .../Magento/Sales/view/frontend/email/shipment_update.html | 2 +- .../Sales/view/frontend/email/shipment_update_guest.html | 2 +- .../Sales/view/frontend/layout/checkout_index_index.xml | 2 +- .../Magento/Sales/view/frontend/layout/customer_account.xml | 2 +- .../Sales/view/frontend/layout/customer_account_index.xml | 2 +- app/code/Magento/Sales/view/frontend/layout/default.xml | 2 +- .../Sales/view/frontend/layout/sales_email_item_price.xml | 2 +- .../frontend/layout/sales_email_order_creditmemo_items.xml | 2 +- .../layout/sales_email_order_creditmemo_renderers.xml | 2 +- .../frontend/layout/sales_email_order_invoice_items.xml | 2 +- .../frontend/layout/sales_email_order_invoice_renderers.xml | 2 +- .../Sales/view/frontend/layout/sales_email_order_items.xml | 2 +- .../view/frontend/layout/sales_email_order_renderers.xml | 2 +- .../frontend/layout/sales_email_order_shipment_items.xml | 2 +- .../layout/sales_email_order_shipment_renderers.xml | 2 +- .../Sales/view/frontend/layout/sales_guest_creditmemo.xml | 2 +- .../Magento/Sales/view/frontend/layout/sales_guest_form.xml | 2 +- .../Sales/view/frontend/layout/sales_guest_invoice.xml | 2 +- .../Sales/view/frontend/layout/sales_guest_print.xml | 2 +- .../view/frontend/layout/sales_guest_printcreditmemo.xml | 2 +- .../Sales/view/frontend/layout/sales_guest_printinvoice.xml | 2 +- .../view/frontend/layout/sales_guest_printshipment.xml | 2 +- .../Sales/view/frontend/layout/sales_guest_reorder.xml | 2 +- .../Sales/view/frontend/layout/sales_guest_shipment.xml | 2 +- .../Magento/Sales/view/frontend/layout/sales_guest_view.xml | 2 +- .../Sales/view/frontend/layout/sales_order_creditmemo.xml | 2 +- .../frontend/layout/sales_order_creditmemo_renderers.xml | 2 +- .../view/frontend/layout/sales_order_guest_info_links.xml | 2 +- .../Sales/view/frontend/layout/sales_order_history.xml | 2 +- .../Sales/view/frontend/layout/sales_order_info_links.xml | 2 +- .../Sales/view/frontend/layout/sales_order_invoice.xml | 2 +- .../view/frontend/layout/sales_order_invoice_renderers.xml | 2 +- .../Sales/view/frontend/layout/sales_order_item_price.xml | 2 +- .../view/frontend/layout/sales_order_item_renderers.xml | 2 +- .../Sales/view/frontend/layout/sales_order_print.xml | 2 +- .../layout/sales_order_print_creditmemo_renderers.xml | 2 +- .../frontend/layout/sales_order_print_invoice_renderers.xml | 2 +- .../view/frontend/layout/sales_order_print_renderers.xml | 2 +- .../layout/sales_order_print_shipment_renderers.xml | 2 +- .../view/frontend/layout/sales_order_printcreditmemo.xml | 2 +- .../Sales/view/frontend/layout/sales_order_printinvoice.xml | 2 +- .../view/frontend/layout/sales_order_printshipment.xml | 2 +- .../Sales/view/frontend/layout/sales_order_reorder.xml | 2 +- .../Sales/view/frontend/layout/sales_order_shipment.xml | 2 +- .../view/frontend/layout/sales_order_shipment_renderers.xml | 2 +- .../Magento/Sales/view/frontend/layout/sales_order_view.xml | 2 +- app/code/Magento/Sales/view/frontend/requirejs-config.js | 4 ++-- .../view/frontend/templates/email/creditmemo/items.phtml | 2 +- .../Sales/view/frontend/templates/email/invoice/items.phtml | 2 +- .../Magento/Sales/view/frontend/templates/email/items.phtml | 2 +- .../frontend/templates/email/items/creditmemo/default.phtml | 2 +- .../frontend/templates/email/items/invoice/default.phtml | 2 +- .../view/frontend/templates/email/items/order/default.phtml | 2 +- .../view/frontend/templates/email/items/price/row.phtml | 2 +- .../frontend/templates/email/items/shipment/default.phtml | 2 +- .../view/frontend/templates/email/shipment/items.phtml | 2 +- .../view/frontend/templates/email/shipment/track.phtml | 2 +- .../Magento/Sales/view/frontend/templates/guest/form.phtml | 2 +- .../Sales/view/frontend/templates/items/price/row.phtml | 2 +- .../templates/items/price/total_after_discount.phtml | 2 +- .../Sales/view/frontend/templates/items/price/unit.phtml | 2 +- .../Sales/view/frontend/templates/js/components.phtml | 2 +- .../Sales/view/frontend/templates/order/comments.phtml | 2 +- .../Sales/view/frontend/templates/order/creditmemo.phtml | 2 +- .../view/frontend/templates/order/creditmemo/items.phtml | 2 +- .../templates/order/creditmemo/items/renderer/default.phtml | 2 +- .../Sales/view/frontend/templates/order/history.phtml | 2 +- .../Magento/Sales/view/frontend/templates/order/info.phtml | 2 +- .../Sales/view/frontend/templates/order/info/buttons.phtml | 2 +- .../view/frontend/templates/order/info/buttons/rss.phtml | 2 +- .../Sales/view/frontend/templates/order/invoice.phtml | 2 +- .../Sales/view/frontend/templates/order/invoice/items.phtml | 2 +- .../templates/order/invoice/items/renderer/default.phtml | 2 +- .../Magento/Sales/view/frontend/templates/order/items.phtml | 2 +- .../frontend/templates/order/items/renderer/default.phtml | 2 +- .../view/frontend/templates/order/order_comments.phtml | 2 +- .../Sales/view/frontend/templates/order/order_date.phtml | 2 +- .../Sales/view/frontend/templates/order/order_status.phtml | 2 +- .../view/frontend/templates/order/print/creditmemo.phtml | 2 +- .../Sales/view/frontend/templates/order/print/invoice.phtml | 2 +- .../view/frontend/templates/order/print/shipment.phtml | 2 +- .../Sales/view/frontend/templates/order/recent.phtml | 2 +- .../templates/order/shipment/items/renderer/default.phtml | 2 +- .../Sales/view/frontend/templates/order/totals.phtml | 2 +- .../Magento/Sales/view/frontend/templates/order/view.phtml | 2 +- .../Sales/view/frontend/templates/reorder/sidebar.phtml | 2 +- .../Sales/view/frontend/templates/widget/guest/form.phtml | 2 +- app/code/Magento/Sales/view/frontend/web/gift-message.js | 4 ++-- .../Sales/view/frontend/web/js/view/last-ordered-items.js | 2 +- app/code/Magento/Sales/view/frontend/web/orders-returns.js | 4 ++-- .../Magento/SalesInventory/Model/Order/ReturnProcessor.php | 2 +- .../Magento/SalesInventory/Model/Order/ReturnValidator.php | 2 +- .../Model/Plugin/Order/ReturnToStockInvoice.php | 2 +- .../Model/Plugin/Order/ReturnToStockOrder.php | 2 +- .../Order/Validation/InvoiceRefundCreationArguments.php | 2 +- .../Order/Validation/OrderRefundCreationArguments.php | 2 +- .../Observer/RefundOrderInventoryObserver.php | 2 +- .../Test/Unit/Model/Order/ReturnProcessorTest.php | 2 +- .../Test/Unit/Model/Order/ReturnValidatorTest.php | 2 +- .../Unit/Model/Plugin/Order/ReturnToStockInvoiceTest.php | 2 +- .../Test/Unit/Model/Plugin/Order/ReturnToStockOrderTest.php | 2 +- .../Order/Validation/InvoiceRefundCreationArgumentsTest.php | 2 +- .../Order/Validation/OrderRefundCreationArgumentsTest.php | 2 +- .../Test/Unit/Observer/RefundOrderInventoryObserverTest.php | 2 +- app/code/Magento/SalesInventory/etc/di.xml | 2 +- app/code/Magento/SalesInventory/etc/events.xml | 2 +- .../Magento/SalesInventory/etc/extension_attributes.xml | 4 ++-- app/code/Magento/SalesInventory/etc/module.xml | 2 +- app/code/Magento/SalesInventory/registration.php | 2 +- .../Magento/SalesRule/Api/CouponManagementInterface.php | 2 +- .../Magento/SalesRule/Api/CouponRepositoryInterface.php | 2 +- app/code/Magento/SalesRule/Api/Data/ConditionInterface.php | 2 +- .../SalesRule/Api/Data/CouponGenerationSpecInterface.php | 2 +- app/code/Magento/SalesRule/Api/Data/CouponInterface.php | 2 +- .../SalesRule/Api/Data/CouponMassDeleteResultInterface.php | 2 +- .../SalesRule/Api/Data/CouponSearchResultInterface.php | 2 +- app/code/Magento/SalesRule/Api/Data/RuleInterface.php | 2 +- app/code/Magento/SalesRule/Api/Data/RuleLabelInterface.php | 2 +- .../SalesRule/Api/Data/RuleSearchResultInterface.php | 2 +- app/code/Magento/SalesRule/Api/RuleRepositoryInterface.php | 2 +- app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/DeleteButton.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/GenericButton.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/ResetButton.php | 2 +- .../Adminhtml/Promo/Quote/Edit/SaveAndContinueButton.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/SaveButton.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/Tab/Actions.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/Tab/Conditions.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Form.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid.php | 2 +- .../Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/Tab/Labels.php | 2 +- .../SalesRule/Block/Adminhtml/Promo/Widget/Chooser.php | 2 +- app/code/Magento/SalesRule/Block/Rss/Discounts.php | 2 +- .../SalesRule/Block/Widget/Form/Element/Dependence.php | 2 +- .../Magento/SalesRule/Controller/Adminhtml/Promo/Quote.php | 2 +- .../Controller/Adminhtml/Promo/Quote/ApplyRules.php | 2 +- .../SalesRule/Controller/Adminhtml/Promo/Quote/Chooser.php | 2 +- .../Controller/Adminhtml/Promo/Quote/CouponsGrid.php | 2 +- .../Controller/Adminhtml/Promo/Quote/CouponsMassDelete.php | 2 +- .../SalesRule/Controller/Adminhtml/Promo/Quote/Delete.php | 2 +- .../SalesRule/Controller/Adminhtml/Promo/Quote/Edit.php | 2 +- .../Controller/Adminhtml/Promo/Quote/ExportCouponsCsv.php | 2 +- .../Controller/Adminhtml/Promo/Quote/ExportCouponsXml.php | 2 +- .../SalesRule/Controller/Adminhtml/Promo/Quote/Generate.php | 2 +- .../SalesRule/Controller/Adminhtml/Promo/Quote/Index.php | 2 +- .../Controller/Adminhtml/Promo/Quote/NewAction.php | 2 +- .../Controller/Adminhtml/Promo/Quote/NewActionHtml.php | 2 +- .../Controller/Adminhtml/Promo/Quote/NewConditionHtml.php | 2 +- .../SalesRule/Controller/Adminhtml/Promo/Quote/Save.php | 2 +- .../SalesRule/Controller/Adminhtml/Promo/Widget/Chooser.php | 2 +- .../SalesRule/Cron/AggregateSalesReportCouponsData.php | 2 +- app/code/Magento/SalesRule/Helper/Coupon.php | 2 +- app/code/Magento/SalesRule/Model/Converter/ToDataModel.php | 2 +- app/code/Magento/SalesRule/Model/Converter/ToModel.php | 2 +- app/code/Magento/SalesRule/Model/Coupon.php | 2 +- app/code/Magento/SalesRule/Model/Coupon/Codegenerator.php | 2 +- .../SalesRule/Model/Coupon/CodegeneratorInterface.php | 2 +- app/code/Magento/SalesRule/Model/Coupon/Massgenerator.php | 2 +- app/code/Magento/SalesRule/Model/CouponRepository.php | 2 +- app/code/Magento/SalesRule/Model/Data/Condition.php | 2 +- .../Magento/SalesRule/Model/Data/CouponGenerationSpec.php | 2 +- .../Magento/SalesRule/Model/Data/CouponMassDeleteResult.php | 2 +- app/code/Magento/SalesRule/Model/Data/Rule.php | 2 +- app/code/Magento/SalesRule/Model/Data/RuleLabel.php | 2 +- .../SalesRule/Model/Plugin/QuoteConfigProductAttributes.php | 2 +- .../Magento/SalesRule/Model/Plugin/ResourceModel/Rule.php | 2 +- app/code/Magento/SalesRule/Model/Plugin/Rule.php | 2 +- app/code/Magento/SalesRule/Model/Quote/Discount.php | 2 +- app/code/Magento/SalesRule/Model/RegistryConstants.php | 2 +- app/code/Magento/SalesRule/Model/ResourceModel/Coupon.php | 2 +- .../SalesRule/Model/ResourceModel/Coupon/Collection.php | 2 +- .../Magento/SalesRule/Model/ResourceModel/Coupon/Usage.php | 2 +- .../Magento/SalesRule/Model/ResourceModel/ReadHandler.php | 2 +- .../SalesRule/Model/ResourceModel/Report/Collection.php | 2 +- .../Magento/SalesRule/Model/ResourceModel/Report/Rule.php | 2 +- .../SalesRule/Model/ResourceModel/Report/Rule/Createdat.php | 2 +- .../SalesRule/Model/ResourceModel/Report/Rule/Updatedat.php | 2 +- .../Model/ResourceModel/Report/Updatedat/Collection.php | 2 +- app/code/Magento/SalesRule/Model/ResourceModel/Rule.php | 2 +- .../SalesRule/Model/ResourceModel/Rule/Collection.php | 2 +- .../Magento/SalesRule/Model/ResourceModel/Rule/Customer.php | 2 +- .../Model/ResourceModel/Rule/Customer/Collection.php | 2 +- .../SalesRule/Model/ResourceModel/Rule/DateApplier.php | 2 +- .../SalesRule/Model/ResourceModel/Rule/Quote/Collection.php | 2 +- .../Magento/SalesRule/Model/ResourceModel/SaveHandler.php | 2 +- app/code/Magento/SalesRule/Model/Rss/Discounts.php | 2 +- app/code/Magento/SalesRule/Model/Rule.php | 2 +- app/code/Magento/SalesRule/Model/Rule/Action/Collection.php | 2 +- .../Model/Rule/Action/Discount/AbstractDiscount.php | 2 +- .../SalesRule/Model/Rule/Action/Discount/BuyXGetY.php | 2 +- .../SalesRule/Model/Rule/Action/Discount/ByFixed.php | 2 +- .../SalesRule/Model/Rule/Action/Discount/ByPercent.php | 2 +- .../Model/Rule/Action/Discount/CalculatorFactory.php | 2 +- .../SalesRule/Model/Rule/Action/Discount/CartFixed.php | 2 +- .../Magento/SalesRule/Model/Rule/Action/Discount/Data.php | 2 +- .../Model/Rule/Action/Discount/DiscountInterface.php | 2 +- .../SalesRule/Model/Rule/Action/Discount/ToFixed.php | 2 +- .../SalesRule/Model/Rule/Action/Discount/ToPercent.php | 2 +- app/code/Magento/SalesRule/Model/Rule/Action/Product.php | 2 +- app/code/Magento/SalesRule/Model/Rule/Condition/Address.php | 2 +- app/code/Magento/SalesRule/Model/Rule/Condition/Combine.php | 2 +- app/code/Magento/SalesRule/Model/Rule/Condition/Product.php | 2 +- .../SalesRule/Model/Rule/Condition/Product/Combine.php | 2 +- .../SalesRule/Model/Rule/Condition/Product/Found.php | 2 +- .../SalesRule/Model/Rule/Condition/Product/Subselect.php | 2 +- app/code/Magento/SalesRule/Model/Rule/Customer.php | 2 +- app/code/Magento/SalesRule/Model/Rule/DataProvider.php | 2 +- .../Magento/SalesRule/Model/Rule/Metadata/ValueProvider.php | 2 +- app/code/Magento/SalesRule/Model/RuleRepository.php | 2 +- app/code/Magento/SalesRule/Model/RulesApplier.php | 2 +- .../SalesRule/Model/Service/CouponManagementService.php | 2 +- .../Magento/SalesRule/Model/Spi/CouponResourceInterface.php | 2 +- .../SalesRule/Model/System/Config/Source/Coupon/Format.php | 2 +- app/code/Magento/SalesRule/Model/Utility.php | 2 +- app/code/Magento/SalesRule/Model/Validator.php | 2 +- app/code/Magento/SalesRule/Model/Validator/Pool.php | 2 +- .../SalesRule/Observer/AddSalesRuleNameToOrderObserver.php | 2 +- .../Observer/CatalogAttributeDeleteAfterObserver.php | 2 +- .../Observer/CatalogAttributeSaveAfterObserver.php | 2 +- .../SalesRule/Observer/CheckSalesRulesAvailability.php | 2 +- .../SalesRule/Observer/SalesOrderAfterPlaceObserver.php | 2 +- app/code/Magento/SalesRule/Setup/InstallData.php | 2 +- app/code/Magento/SalesRule/Setup/InstallSchema.php | 2 +- app/code/Magento/SalesRule/Setup/UpgradeSchema.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/DeleteButtonTest.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/GenericButtonTest.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/ResetButtonTest.php | 2 +- .../Promo/Quote/Edit/SaveAndContinueButtonTest.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/SaveButtonTest.php | 2 +- .../Magento/SalesRule/Test/Unit/Block/Rss/DiscountsTest.php | 2 +- .../Test/Unit/Cron/AggregateSalesReportCouponsDataTest.php | 2 +- app/code/Magento/SalesRule/Test/Unit/Helper/CouponTest.php | 2 +- .../SalesRule/Test/Unit/Model/Converter/ToDataModelTest.php | 2 +- .../SalesRule/Test/Unit/Model/Converter/ToModelTest.php | 2 +- .../SalesRule/Test/Unit/Model/Coupon/CodegeneratorTest.php | 2 +- .../SalesRule/Test/Unit/Model/Coupon/MassgeneratorTest.php | 2 +- .../SalesRule/Test/Unit/Model/CouponRepositoryTest.php | 2 +- app/code/Magento/SalesRule/Test/Unit/Model/CouponTest.php | 2 +- .../Unit/Model/Plugin/QuoteConfigProductAttributesTest.php | 2 +- .../Test/Unit/Model/Plugin/ResourceModel/RuleTest.php | 2 +- .../Magento/SalesRule/Test/Unit/Model/Plugin/RuleTest.php | 2 +- .../SalesRule/Test/Unit/Model/Quote/DiscountTest.php | 2 +- .../Test/Unit/Model/ResourceModel/ReadHandlerTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Report/CollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Report/RuleTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Rule/DateApplierTest.php | 2 +- .../SalesRule/Test/Unit/Model/ResourceModel/RuleTest.php | 2 +- .../Test/Unit/Model/ResourceModel/SaveHandlerTest.php | 2 +- .../Magento/SalesRule/Test/Unit/Model/Rss/DiscountsTest.php | 2 +- .../Test/Unit/Model/Rule/Action/Discount/ByPercentTest.php | 2 +- .../Test/Unit/Model/Rule/Action/Discount/CartFixedTest.php | 2 +- .../Test/Unit/Model/Rule/Action/Discount/ToPercentTest.php | 2 +- .../Test/Unit/Model/Rule/Condition/ProductTest.php | 2 +- .../SalesRule/Test/Unit/Model/Rule/DataProviderTest.php | 2 +- .../Test/Unit/Model/Rule/Metadata/ValueProviderTest.php | 2 +- .../Test/Unit/Model/Rule/Metadata/_files/MetaData.php | 2 +- .../SalesRule/Test/Unit/Model/RuleRepositoryTest.php | 2 +- app/code/Magento/SalesRule/Test/Unit/Model/RuleTest.php | 2 +- .../Magento/SalesRule/Test/Unit/Model/RulesApplierTest.php | 2 +- .../Test/Unit/Model/Service/CouponManagementServiceTest.php | 2 +- .../Unit/Model/System/Config/Source/Coupon/FormatTest.php | 2 +- app/code/Magento/SalesRule/Test/Unit/Model/UtilityTest.php | 2 +- .../SalesRule/Test/Unit/Model/Validator/PoolTest.php | 2 +- .../Magento/SalesRule/Test/Unit/Model/ValidatorTest.php | 2 +- .../Test/Unit/Model/_files/quote_item_downloadable.php | 2 +- .../SalesRule/Test/Unit/Model/_files/quote_item_simple.php | 2 +- .../Unit/Observer/AddSalesRuleNameToOrderObserverTest.php | 2 +- .../Observer/CatalogAttributeDeleteAfterObserverTest.php | 2 +- .../Unit/Observer/CatalogAttributeSaveAfterObserverTest.php | 2 +- .../Test/Unit/Observer/SalesOrderAfterPlaceObserverTest.php | 2 +- app/code/Magento/SalesRule/etc/acl.xml | 2 +- app/code/Magento/SalesRule/etc/adminhtml/di.xml | 2 +- app/code/Magento/SalesRule/etc/adminhtml/events.xml | 2 +- app/code/Magento/SalesRule/etc/adminhtml/menu.xml | 2 +- app/code/Magento/SalesRule/etc/adminhtml/routes.xml | 2 +- app/code/Magento/SalesRule/etc/adminhtml/system.xml | 2 +- app/code/Magento/SalesRule/etc/config.xml | 2 +- app/code/Magento/SalesRule/etc/crontab.xml | 2 +- app/code/Magento/SalesRule/etc/di.xml | 2 +- app/code/Magento/SalesRule/etc/events.xml | 2 +- app/code/Magento/SalesRule/etc/fieldset.xml | 2 +- app/code/Magento/SalesRule/etc/frontend/di.xml | 2 +- app/code/Magento/SalesRule/etc/module.xml | 2 +- app/code/Magento/SalesRule/etc/sales.xml | 2 +- app/code/Magento/SalesRule/etc/webapi.xml | 2 +- app/code/Magento/SalesRule/registration.php | 2 +- .../adminhtml/layout/sales_rule_promo_quote_couponsgrid.xml | 2 +- .../view/adminhtml/layout/sales_rule_promo_quote_edit.xml | 2 +- .../view/adminhtml/layout/sales_rule_promo_quote_index.xml | 2 +- .../view/adminhtml/templates/promo/salesrulejs.phtml | 2 +- .../SalesRule/view/adminhtml/templates/tab/coupons.phtml | 2 +- .../view/adminhtml/ui_component/sales_rule_form.xml | 2 +- .../SalesRule/view/base/web/js/form/element/coupon-type.js | 2 +- .../view/base/web/js/form/element/manage-coupon-codes.js | 2 +- .../SalesRule/view/frontend/layout/checkout_cart_index.xml | 2 +- .../SalesRule/view/frontend/layout/checkout_index_index.xml | 4 ++-- .../SalesRule/view/frontend/web/js/action/cancel-coupon.js | 2 +- .../view/frontend/web/js/action/set-coupon-code.js | 2 +- .../view/frontend/web/js/model/payment/discount-messages.js | 2 +- .../view/frontend/web/js/view/cart/totals/discount.js | 2 +- .../view/frontend/web/js/view/payment/discount-messages.js | 2 +- .../SalesRule/view/frontend/web/js/view/payment/discount.js | 2 +- .../SalesRule/view/frontend/web/js/view/summary/discount.js | 2 +- .../view/frontend/web/template/cart/totals/discount.html | 2 +- .../view/frontend/web/template/payment/discount.html | 2 +- .../view/frontend/web/template/summary/discount.html | 2 +- app/code/Magento/SalesSequence/Model/Builder.php | 2 +- app/code/Magento/SalesSequence/Model/Config.php | 2 +- app/code/Magento/SalesSequence/Model/EntityPool.php | 2 +- app/code/Magento/SalesSequence/Model/Manager.php | 2 +- app/code/Magento/SalesSequence/Model/Meta.php | 2 +- app/code/Magento/SalesSequence/Model/Profile.php | 2 +- app/code/Magento/SalesSequence/Model/ResourceModel/Meta.php | 2 +- .../Magento/SalesSequence/Model/ResourceModel/Profile.php | 2 +- app/code/Magento/SalesSequence/Model/Sequence.php | 2 +- .../SalesSequence/Observer/SequenceCreatorObserver.php | 2 +- app/code/Magento/SalesSequence/Setup/InstallData.php | 2 +- app/code/Magento/SalesSequence/Setup/InstallSchema.php | 2 +- .../Magento/SalesSequence/Test/Unit/Model/BuilderTest.php | 2 +- .../Magento/SalesSequence/Test/Unit/Model/ManagerTest.php | 2 +- .../Test/Unit/Model/ResourceModel/MetaTest.php | 2 +- .../Test/Unit/Model/ResourceModel/ProfileTest.php | 2 +- .../Magento/SalesSequence/Test/Unit/Model/SequenceTest.php | 2 +- app/code/Magento/SalesSequence/etc/module.xml | 2 +- app/code/Magento/SalesSequence/registration.php | 2 +- .../SampleData/Console/Command/SampleDataDeployCommand.php | 2 +- .../SampleData/Console/Command/SampleDataRemoveCommand.php | 2 +- .../SampleData/Console/Command/SampleDataResetCommand.php | 2 +- app/code/Magento/SampleData/Console/CommandList.php | 2 +- app/code/Magento/SampleData/Model/Dependency.php | 2 +- app/code/Magento/SampleData/Setup/InstallData.php | 2 +- .../Unit/Console/Command/SampleDataDeployCommandTest.php | 2 +- app/code/Magento/SampleData/cli_commands.php | 2 +- app/code/Magento/SampleData/etc/di.xml | 2 +- app/code/Magento/SampleData/etc/module.xml | 2 +- app/code/Magento/SampleData/registration.php | 2 +- .../Magento/Search/Adapter/Query/Preprocessor/Synonyms.php | 2 +- app/code/Magento/Search/Api/Data/SynonymGroupInterface.php | 2 +- app/code/Magento/Search/Api/SearchInterface.php | 2 +- app/code/Magento/Search/Api/SynonymAnalyzerInterface.php | 2 +- .../Magento/Search/Api/SynonymGroupRepositoryInterface.php | 2 +- app/code/Magento/Search/Block/Adminhtml/Dashboard/Last.php | 2 +- app/code/Magento/Search/Block/Adminhtml/Dashboard/Top.php | 2 +- app/code/Magento/Search/Block/Adminhtml/Reports/Search.php | 2 +- app/code/Magento/Search/Block/Adminhtml/Synonyms.php | 2 +- .../Search/Block/Adminhtml/Synonyms/Edit/BackButton.php | 2 +- .../Search/Block/Adminhtml/Synonyms/Edit/DeleteButton.php | 2 +- .../Search/Block/Adminhtml/Synonyms/Edit/GenericButton.php | 2 +- .../Search/Block/Adminhtml/Synonyms/Edit/ResetButton.php | 2 +- .../Block/Adminhtml/Synonyms/Edit/SaveAndContinueButton.php | 2 +- .../Search/Block/Adminhtml/Synonyms/Edit/SaveButton.php | 2 +- app/code/Magento/Search/Block/Adminhtml/Term.php | 2 +- app/code/Magento/Search/Block/Adminhtml/Term/Edit.php | 2 +- app/code/Magento/Search/Block/Adminhtml/Term/Edit/Form.php | 2 +- app/code/Magento/Search/Block/Term.php | 2 +- .../Magento/Search/Controller/Adminhtml/Synonyms/Delete.php | 2 +- .../Magento/Search/Controller/Adminhtml/Synonyms/Edit.php | 2 +- .../Magento/Search/Controller/Adminhtml/Synonyms/Index.php | 2 +- .../Search/Controller/Adminhtml/Synonyms/MassDelete.php | 2 +- .../Search/Controller/Adminhtml/Synonyms/NewAction.php | 2 +- .../Controller/Adminhtml/Synonyms/ResultPageBuilder.php | 2 +- .../Magento/Search/Controller/Adminhtml/Synonyms/Save.php | 2 +- app/code/Magento/Search/Controller/Adminhtml/Term.php | 2 +- .../Magento/Search/Controller/Adminhtml/Term/Delete.php | 2 +- app/code/Magento/Search/Controller/Adminhtml/Term/Edit.php | 2 +- .../Search/Controller/Adminhtml/Term/ExportSearchCsv.php | 2 +- .../Search/Controller/Adminhtml/Term/ExportSearchExcel.php | 2 +- app/code/Magento/Search/Controller/Adminhtml/Term/Index.php | 2 +- .../Magento/Search/Controller/Adminhtml/Term/MassDelete.php | 2 +- .../Magento/Search/Controller/Adminhtml/Term/NewAction.php | 2 +- .../Magento/Search/Controller/Adminhtml/Term/Report.php | 2 +- app/code/Magento/Search/Controller/Adminhtml/Term/Save.php | 2 +- app/code/Magento/Search/Controller/Ajax/Suggest.php | 2 +- app/code/Magento/Search/Controller/RegistryConstants.php | 2 +- app/code/Magento/Search/Controller/Term/Popular.php | 2 +- app/code/Magento/Search/Helper/Data.php | 2 +- app/code/Magento/Search/Model/AdapterFactory.php | 2 +- .../Search/Model/Adminhtml/System/Config/Source/Engine.php | 2 +- app/code/Magento/Search/Model/Autocomplete.php | 2 +- .../Search/Model/Autocomplete/DataProviderInterface.php | 2 +- app/code/Magento/Search/Model/Autocomplete/Item.php | 2 +- app/code/Magento/Search/Model/Autocomplete/ItemFactory.php | 2 +- .../Magento/Search/Model/Autocomplete/ItemInterface.php | 2 +- app/code/Magento/Search/Model/AutocompleteInterface.php | 2 +- app/code/Magento/Search/Model/EngineResolver.php | 2 +- app/code/Magento/Search/Model/Query.php | 2 +- app/code/Magento/Search/Model/QueryFactory.php | 2 +- app/code/Magento/Search/Model/QueryFactoryInterface.php | 2 +- app/code/Magento/Search/Model/QueryInterface.php | 2 +- app/code/Magento/Search/Model/QueryResult.php | 2 +- app/code/Magento/Search/Model/ResourceModel/Query.php | 2 +- .../Magento/Search/Model/ResourceModel/Query/Collection.php | 2 +- .../Magento/Search/Model/ResourceModel/SynonymGroup.php | 2 +- .../Search/Model/ResourceModel/SynonymGroup/Collection.php | 2 +- .../Magento/Search/Model/ResourceModel/SynonymReader.php | 2 +- app/code/Magento/Search/Model/Search.php | 2 +- app/code/Magento/Search/Model/SearchCollectionFactory.php | 2 +- app/code/Magento/Search/Model/SearchCollectionInterface.php | 2 +- app/code/Magento/Search/Model/SearchEngine.php | 2 +- app/code/Magento/Search/Model/SearchEngine/Config.php | 2 +- app/code/Magento/Search/Model/SearchEngine/Config/Data.php | 2 +- app/code/Magento/Search/Model/SearchEngine/MenuBuilder.php | 2 +- app/code/Magento/Search/Model/Synonym/DataProvider.php | 2 +- .../Magento/Search/Model/Synonym/MergeConflictException.php | 2 +- app/code/Magento/Search/Model/SynonymAnalyzer.php | 2 +- app/code/Magento/Search/Model/SynonymGroup.php | 2 +- app/code/Magento/Search/Model/SynonymGroupRepository.php | 2 +- app/code/Magento/Search/Model/SynonymReader.php | 2 +- app/code/Magento/Search/Setup/InstallSchema.php | 2 +- app/code/Magento/Search/Setup/UpgradeSchema.php | 2 +- .../Test/Unit/Adapter/Query/Preprocessor/SynonymsTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Ajax/SuggestTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Synonyms/DeleteTest.php | 2 +- .../Unit/Controller/Adminhtml/Term/ExportSearchCsvTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Term/MassDeleteTest.php | 2 +- .../Search/Test/Unit/Controller/Adminhtml/Term/SaveTest.php | 2 +- app/code/Magento/Search/Test/Unit/Helper/DataTest.php | 2 +- .../Magento/Search/Test/Unit/Model/AdapterFactoryTest.php | 2 +- .../Magento/Search/Test/Unit/Model/AutocompleteTest.php | 2 +- .../Magento/Search/Test/Unit/Model/EngineResolverTest.php | 2 +- .../Magento/Search/Test/Unit/Model/QueryFactoryTest.php | 2 +- app/code/Magento/Search/Test/Unit/Model/QueryResultTest.php | 2 +- app/code/Magento/Search/Test/Unit/Model/QueryTest.php | 2 +- .../Search/Test/Unit/Model/ResourceModel/QueryTest.php | 2 +- .../Test/Unit/Model/ResourceModel/SynonymGroupTest.php | 2 +- .../Search/Test/Unit/Model/SearchEngine/ConfigTest.php | 2 +- .../Search/Test/Unit/Model/SearchEngine/MenuBuilderTest.php | 2 +- .../Magento/Search/Test/Unit/Model/SearchEngineTest.php | 2 +- .../Search/Test/Unit/Model/SynonymGroupRepositoryTest.php | 2 +- .../Magento/Search/Test/Unit/Model/SynonymGroupTest.php | 2 +- .../Search/Ui/Component/Listing/Column/Scope/Options.php | 2 +- .../Search/Ui/Component/Listing/Column/Store/Options.php | 2 +- .../Search/Ui/Component/Listing/Column/StoreView.php | 2 +- .../Search/Ui/Component/Listing/Column/SynonymActions.php | 2 +- .../Magento/Search/Ui/Component/Listing/Column/Website.php | 2 +- .../Search/Ui/Component/Listing/Column/Website/Options.php | 2 +- app/code/Magento/Search/etc/acl.xml | 2 +- app/code/Magento/Search/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Search/etc/adminhtml/routes.xml | 4 ++-- app/code/Magento/Search/etc/adminhtml/system.xml | 2 +- app/code/Magento/Search/etc/di.xml | 2 +- app/code/Magento/Search/etc/frontend/page_types.xml | 2 +- app/code/Magento/Search/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Search/etc/module.xml | 2 +- app/code/Magento/Search/etc/search_engine.xml | 2 +- app/code/Magento/Search/etc/webapi.xml | 2 +- app/code/Magento/Search/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_dashboard_index.xml | 2 +- .../Search/view/adminhtml/layout/search_synonyms_edit.xml | 4 ++-- .../Search/view/adminhtml/layout/search_synonyms_index.xml | 2 +- .../Search/view/adminhtml/layout/search_synonyms_new.xml | 4 ++-- .../Search/view/adminhtml/layout/search_term_block.xml | 2 +- .../Search/view/adminhtml/layout/search_term_edit.xml | 2 +- .../view/adminhtml/layout/search_term_exportsearchcsv.xml | 2 +- .../view/adminhtml/layout/search_term_exportsearchexcel.xml | 2 +- .../Search/view/adminhtml/layout/search_term_grid_block.xml | 2 +- .../Search/view/adminhtml/layout/search_term_index.xml | 2 +- .../Search/view/adminhtml/layout/search_term_report.xml | 2 +- .../view/adminhtml/layout/search_term_report_block.xml | 2 +- .../view/adminhtml/ui_component/search_synonyms_form.xml | 2 +- .../view/adminhtml/ui_component/search_synonyms_grid.xml | 2 +- app/code/Magento/Search/view/frontend/layout/default.xml | 2 +- .../Search/view/frontend/layout/search_term_popular.xml | 2 +- app/code/Magento/Search/view/frontend/requirejs-config.js | 4 ++-- .../Magento/Search/view/frontend/templates/form.mini.phtml | 2 +- app/code/Magento/Search/view/frontend/templates/term.phtml | 2 +- app/code/Magento/Search/view/frontend/web/form-mini.js | 2 +- .../Magento/Security/Block/Adminhtml/Session/Activity.php | 2 +- .../Security/Controller/Adminhtml/Session/Activity.php | 2 +- .../Security/Controller/Adminhtml/Session/LogoutAll.php | 2 +- app/code/Magento/Security/Model/AdminSessionInfo.php | 2 +- app/code/Magento/Security/Model/AdminSessionsManager.php | 2 +- app/code/Magento/Security/Model/Config.php | 2 +- .../Magento/Security/Model/Config/Source/ResetMethod.php | 2 +- app/code/Magento/Security/Model/ConfigInterface.php | 2 +- .../Magento/Security/Model/PasswordResetRequestEvent.php | 2 +- .../Magento/Security/Model/Plugin/AccountManagement.php | 2 +- app/code/Magento/Security/Model/Plugin/Auth.php | 2 +- app/code/Magento/Security/Model/Plugin/AuthSession.php | 2 +- app/code/Magento/Security/Model/Plugin/LoginController.php | 2 +- .../Security/Model/ResourceModel/AdminSessionInfo.php | 2 +- .../Model/ResourceModel/AdminSessionInfo/Collection.php | 2 +- .../Model/ResourceModel/PasswordResetRequestEvent.php | 2 +- .../ResourceModel/PasswordResetRequestEvent/Collection.php | 2 +- .../PasswordResetRequestEvent/CollectionFactory.php | 2 +- .../Magento/Security/Model/SecurityChecker/Frequency.php | 2 +- .../Magento/Security/Model/SecurityChecker/Quantity.php | 2 +- .../Model/SecurityChecker/SecurityCheckerInterface.php | 2 +- app/code/Magento/Security/Model/SecurityCookie.php | 2 +- app/code/Magento/Security/Model/SecurityManager.php | 2 +- app/code/Magento/Security/Setup/InstallSchema.php | 2 +- app/code/Magento/Security/Setup/UpgradeSchema.php | 2 +- .../Test/Unit/Block/Adminhtml/Session/ActivityTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Session/ActivityTest.php | 2 +- .../Unit/Controller/Adminhtml/Session/LogoutAllTest.php | 2 +- .../Security/Test/Unit/Model/AdminSessionInfoTest.php | 2 +- .../Security/Test/Unit/Model/AdminSessionsManagerTest.php | 2 +- .../Test/Unit/Model/Config/Source/ResetMethodTest.php | 2 +- app/code/Magento/Security/Test/Unit/Model/ConfigTest.php | 2 +- .../Test/Unit/Model/Plugin/AccountManagementTest.php | 2 +- .../Security/Test/Unit/Model/Plugin/AuthSessionTest.php | 2 +- .../Magento/Security/Test/Unit/Model/Plugin/AuthTest.php | 2 +- .../Security/Test/Unit/Model/Plugin/LoginControllerTest.php | 2 +- .../Model/ResourceModel/AdminSessionInfo/CollectionTest.php | 2 +- .../Test/Unit/Model/ResourceModel/AdminSessionInfoTest.php | 2 +- .../PasswordResetRequestEvent/CollectionFactoryTest.php | 2 +- .../PasswordResetRequestEvent/CollectionTest.php | 2 +- .../Model/ResourceModel/PasswordResetRequestEventTest.php | 2 +- .../Test/Unit/Model/SecurityChecker/FrequencyTest.php | 2 +- .../Test/Unit/Model/SecurityChecker/QuantityTest.php | 2 +- .../Magento/Security/Test/Unit/Model/SecurityCookieTest.php | 2 +- .../Security/Test/Unit/Model/SecurityManagerTest.php | 2 +- app/code/Magento/Security/etc/adminhtml/di.xml | 2 +- app/code/Magento/Security/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Security/etc/adminhtml/system.xml | 2 +- app/code/Magento/Security/etc/config.xml | 2 +- app/code/Magento/Security/etc/crontab.xml | 2 +- app/code/Magento/Security/etc/di.xml | 2 +- app/code/Magento/Security/etc/module.xml | 2 +- app/code/Magento/Security/registration.php | 2 +- app/code/Magento/Security/view/adminhtml/layout/default.xml | 2 +- .../view/adminhtml/layout/security_session_activity.xml | 2 +- .../Security/view/adminhtml/page_layout/admin-popup.xml | 2 +- .../Magento/Security/view/adminhtml/requirejs-config.js | 2 +- .../view/adminhtml/templates/page/activity_link.phtml | 2 +- .../view/adminhtml/templates/session/activity.phtml | 2 +- .../Magento/Security/view/adminhtml/web/css/activity.css | 2 +- .../Security/view/adminhtml/web/js/confirm-redirect.js | 2 +- .../SendFriend/Block/Plugin/Catalog/Product/View.php | 2 +- app/code/Magento/SendFriend/Block/Send.php | 2 +- app/code/Magento/SendFriend/Controller/Product.php | 2 +- app/code/Magento/SendFriend/Controller/Product/Send.php | 2 +- app/code/Magento/SendFriend/Controller/Product/Sendmail.php | 2 +- app/code/Magento/SendFriend/Helper/Data.php | 2 +- .../Magento/SendFriend/Model/ResourceModel/SendFriend.php | 2 +- .../Model/ResourceModel/SendFriend/Collection.php | 2 +- app/code/Magento/SendFriend/Model/SendFriend.php | 2 +- app/code/Magento/SendFriend/Model/Source/Checktype.php | 2 +- app/code/Magento/SendFriend/Setup/InstallSchema.php | 2 +- .../Test/Unit/Block/Plugin/Catalog/Product/ViewTest.php | 2 +- app/code/Magento/SendFriend/Test/Unit/Block/SendTest.php | 2 +- .../SendFriend/Test/Unit/Controller/Product/SendTest.php | 2 +- .../Test/Unit/Controller/Product/SendmailTest.php | 2 +- .../Magento/SendFriend/Test/Unit/Model/SendFriendTest.php | 2 +- app/code/Magento/SendFriend/etc/adminhtml/system.xml | 2 +- app/code/Magento/SendFriend/etc/config.xml | 2 +- app/code/Magento/SendFriend/etc/email_templates.xml | 2 +- app/code/Magento/SendFriend/etc/frontend/di.xml | 2 +- app/code/Magento/SendFriend/etc/frontend/page_types.xml | 2 +- app/code/Magento/SendFriend/etc/frontend/routes.xml | 4 ++-- app/code/Magento/SendFriend/etc/module.xml | 2 +- app/code/Magento/SendFriend/registration.php | 2 +- .../SendFriend/view/frontend/email/product_share.html | 2 +- .../view/frontend/layout/sendfriend_product_send.xml | 2 +- .../Magento/SendFriend/view/frontend/templates/send.phtml | 2 +- app/code/Magento/SendFriend/view/frontend/web/back-event.js | 2 +- app/code/Magento/Shipping/Block/Adminhtml/Create.php | 2 +- app/code/Magento/Shipping/Block/Adminhtml/Create/Form.php | 2 +- app/code/Magento/Shipping/Block/Adminhtml/Create/Items.php | 2 +- .../Magento/Shipping/Block/Adminhtml/Order/Packaging.php | 2 +- .../Shipping/Block/Adminhtml/Order/Packaging/Grid.php | 2 +- .../Magento/Shipping/Block/Adminhtml/Order/Tracking.php | 2 +- .../Shipping/Block/Adminhtml/Order/Tracking/Invoice.php | 2 +- .../Shipping/Block/Adminhtml/Order/Tracking/View.php | 2 +- app/code/Magento/Shipping/Block/Adminhtml/View.php | 2 +- app/code/Magento/Shipping/Block/Adminhtml/View/Comments.php | 2 +- app/code/Magento/Shipping/Block/Adminhtml/View/Form.php | 2 +- app/code/Magento/Shipping/Block/Adminhtml/View/Items.php | 2 +- app/code/Magento/Shipping/Block/Items.php | 2 +- app/code/Magento/Shipping/Block/Order/Shipment.php | 2 +- app/code/Magento/Shipping/Block/Tracking/Ajax.php | 2 +- app/code/Magento/Shipping/Block/Tracking/Link.php | 2 +- app/code/Magento/Shipping/Block/Tracking/Popup.php | 2 +- .../Controller/Adminhtml/Order/Shipment/AddComment.php | 2 +- .../Controller/Adminhtml/Order/Shipment/AddTrack.php | 2 +- .../Controller/Adminhtml/Order/Shipment/CreateLabel.php | 2 +- .../Shipping/Controller/Adminhtml/Order/Shipment/Email.php | 2 +- .../Adminhtml/Order/Shipment/GetShippingItemsGrid.php | 2 +- .../Shipping/Controller/Adminhtml/Order/Shipment/Index.php | 2 +- .../Adminhtml/Order/Shipment/MassPrintShippingLabel.php | 2 +- .../Controller/Adminhtml/Order/Shipment/NewAction.php | 2 +- .../Controller/Adminhtml/Order/Shipment/Pdfshipments.php | 2 +- .../Controller/Adminhtml/Order/Shipment/PrintAction.php | 2 +- .../Controller/Adminhtml/Order/Shipment/PrintLabel.php | 2 +- .../Controller/Adminhtml/Order/Shipment/PrintPackage.php | 2 +- .../Controller/Adminhtml/Order/Shipment/RemoveTrack.php | 2 +- .../Shipping/Controller/Adminhtml/Order/Shipment/Save.php | 2 +- .../Shipping/Controller/Adminhtml/Order/Shipment/Start.php | 2 +- .../Shipping/Controller/Adminhtml/Order/Shipment/View.php | 2 +- .../Shipping/Controller/Adminhtml/Order/ShipmentLoader.php | 2 +- .../Adminhtml/Shipment/MassPrintShippingLabel.php | 2 +- app/code/Magento/Shipping/Controller/Tracking/Popup.php | 2 +- app/code/Magento/Shipping/Helper/Carrier.php | 2 +- app/code/Magento/Shipping/Helper/Data.php | 2 +- app/code/Magento/Shipping/Model/Carrier/AbstractCarrier.php | 2 +- .../Shipping/Model/Carrier/AbstractCarrierInterface.php | 2 +- .../Shipping/Model/Carrier/AbstractCarrierOnline.php | 2 +- .../Magento/Shipping/Model/Carrier/CarrierInterface.php | 2 +- .../Shipping/Model/Carrier/Source/GenericDefault.php | 2 +- .../Shipping/Model/Carrier/Source/GenericInterface.php | 2 +- app/code/Magento/Shipping/Model/CarrierFactory.php | 2 +- app/code/Magento/Shipping/Model/CarrierFactoryInterface.php | 2 +- app/code/Magento/Shipping/Model/Config.php | 2 +- .../Magento/Shipping/Model/Config/Source/Allmethods.php | 2 +- .../Shipping/Model/Config/Source/Allspecificcountries.php | 2 +- .../Magento/Shipping/Model/Config/Source/Online/Mode.php | 2 +- .../Shipping/Model/Config/Source/Online/Requesttype.php | 2 +- app/code/Magento/Shipping/Model/Info.php | 2 +- app/code/Magento/Shipping/Model/Observer.php | 2 +- app/code/Magento/Shipping/Model/Order/Pdf/Packaging.php | 2 +- app/code/Magento/Shipping/Model/Order/Track.php | 2 +- app/code/Magento/Shipping/Model/Rate/Result.php | 2 +- .../Shipping/Model/ResourceModel/Order/Track/Collection.php | 2 +- app/code/Magento/Shipping/Model/Shipment/Request.php | 2 +- app/code/Magento/Shipping/Model/Shipment/ReturnShipment.php | 2 +- app/code/Magento/Shipping/Model/ShipmentNotifier.php | 2 +- app/code/Magento/Shipping/Model/Shipping.php | 2 +- app/code/Magento/Shipping/Model/Shipping/LabelGenerator.php | 2 +- app/code/Magento/Shipping/Model/Shipping/Labels.php | 2 +- app/code/Magento/Shipping/Model/Simplexml/Element.php | 2 +- app/code/Magento/Shipping/Model/Source/HandlingAction.php | 2 +- app/code/Magento/Shipping/Model/Source/HandlingType.php | 2 +- app/code/Magento/Shipping/Model/Tracking/Result.php | 2 +- .../Shipping/Model/Tracking/Result/AbstractResult.php | 2 +- app/code/Magento/Shipping/Model/Tracking/Result/Error.php | 2 +- app/code/Magento/Shipping/Model/Tracking/Result/Status.php | 2 +- .../Test/Unit/Block/Adminhtml/Order/TrackingTest.php | 2 +- .../Controller/Adminhtml/Order/Shipment/AddCommentTest.php | 2 +- .../Controller/Adminhtml/Order/Shipment/AddTrackTest.php | 2 +- .../Controller/Adminhtml/Order/Shipment/CreateLabelTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/Shipment/EmailTest.php | 2 +- .../Adminhtml/Order/Shipment/GetShippingItemsGridTest.php | 2 +- .../Controller/Adminhtml/Order/Shipment/NewActionTest.php | 2 +- .../Controller/Adminhtml/Order/Shipment/PrintLabelTest.php | 2 +- .../Adminhtml/Order/Shipment/PrintPackageTest.php | 2 +- .../Controller/Adminhtml/Order/Shipment/RemoveTrackTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/Shipment/SaveTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/Shipment/ViewTest.php | 2 +- .../Unit/Controller/Adminhtml/Order/ShipmentLoaderTest.php | 2 +- app/code/Magento/Shipping/Test/Unit/Helper/CarrierTest.php | 2 +- .../Test/Unit/Model/Carrier/AbstractCarrierOnlineTest.php | 2 +- .../Magento/Shipping/Test/Unit/Model/Order/TrackTest.php | 2 +- .../Shipping/Test/Unit/Model/ShipmentNotifierTest.php | 2 +- app/code/Magento/Shipping/Test/Unit/Model/ShipmentTest.php | 2 +- .../Test/Unit/Model/Shipping/LabelGeneratorTest.php | 2 +- .../Shipping/Test/Unit/Model/Shipping/LabelsTest.php | 2 +- app/code/Magento/Shipping/Test/Unit/Model/ShippingTest.php | 2 +- .../Shipping/Test/Unit/Model/Simplexml/ElementTest.php | 2 +- app/code/Magento/Shipping/etc/acl.xml | 2 +- app/code/Magento/Shipping/etc/adminhtml/di.xml | 2 +- app/code/Magento/Shipping/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Shipping/etc/adminhtml/system.xml | 2 +- app/code/Magento/Shipping/etc/config.xml | 2 +- app/code/Magento/Shipping/etc/crontab.xml | 2 +- app/code/Magento/Shipping/etc/di.xml | 2 +- app/code/Magento/Shipping/etc/frontend/page_types.xml | 2 +- app/code/Magento/Shipping/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Shipping/etc/module.xml | 2 +- app/code/Magento/Shipping/registration.php | 2 +- .../layout/adminhtml_order_shipment_addcomment.xml | 2 +- .../adminhtml/layout/adminhtml_order_shipment_addtrack.xml | 2 +- .../view/adminhtml/layout/adminhtml_order_shipment_new.xml | 2 +- .../layout/adminhtml_order_shipment_removetrack.xml | 2 +- .../view/adminhtml/layout/adminhtml_order_shipment_view.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_new.xml | 2 +- .../Shipping/view/adminhtml/layout/sales_order_view.xml | 2 +- .../Shipping/view/adminhtml/templates/create/form.phtml | 2 +- .../Shipping/view/adminhtml/templates/create/items.phtml | 2 +- .../adminhtml/templates/create/items/renderer/default.phtml | 2 +- .../view/adminhtml/templates/order/packaging/grid.phtml | 2 +- .../view/adminhtml/templates/order/packaging/packed.phtml | 2 +- .../view/adminhtml/templates/order/packaging/popup.phtml | 2 +- .../adminhtml/templates/order/packaging/popup_content.phtml | 2 +- .../Shipping/view/adminhtml/templates/order/tracking.phtml | 2 +- .../view/adminhtml/templates/order/tracking/view.phtml | 2 +- .../Shipping/view/adminhtml/templates/order/view/info.phtml | 2 +- .../Shipping/view/adminhtml/templates/view/form.phtml | 2 +- .../Shipping/view/adminhtml/templates/view/items.phtml | 2 +- .../adminhtml/templates/view/items/renderer/default.phtml | 2 +- app/code/Magento/Shipping/view/adminhtml/web/js/packages.js | 2 +- .../Magento/Shipping/view/adminhtml/web/order/packaging.js | 4 ++-- .../Shipping/view/frontend/layout/checkout_index_index.xml | 2 +- .../Shipping/view/frontend/layout/sales_guest_reorder.xml | 2 +- .../Shipping/view/frontend/layout/sales_guest_shipment.xml | 2 +- .../Shipping/view/frontend/layout/sales_guest_view.xml | 2 +- .../Shipping/view/frontend/layout/sales_order_reorder.xml | 2 +- .../Shipping/view/frontend/layout/sales_order_shipment.xml | 2 +- .../Shipping/view/frontend/layout/sales_order_view.xml | 2 +- .../view/frontend/layout/shipping_tracking_popup.xml | 2 +- .../Magento/Shipping/view/frontend/templates/items.phtml | 2 +- .../Shipping/view/frontend/templates/order/shipment.phtml | 2 +- .../Shipping/view/frontend/templates/tracking/details.phtml | 2 +- .../Shipping/view/frontend/templates/tracking/link.phtml | 2 +- .../Shipping/view/frontend/templates/tracking/popup.phtml | 2 +- .../view/frontend/templates/tracking/progress.phtml | 4 ++-- .../Magento/Shipping/view/frontend/web/js/model/config.js | 2 +- .../web/js/view/checkout/shipping/shipping-policy.js | 2 +- .../web/template/checkout/shipping/shipping-policy.html | 2 +- app/code/Magento/Sitemap/Block/Adminhtml/Edit.php | 2 +- app/code/Magento/Sitemap/Block/Adminhtml/Edit/Form.php | 2 +- .../Sitemap/Block/Adminhtml/Grid/Renderer/Action.php | 2 +- .../Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Link.php | 2 +- .../Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Time.php | 2 +- app/code/Magento/Sitemap/Block/Adminhtml/Sitemap.php | 2 +- app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap.php | 2 +- .../Magento/Sitemap/Controller/Adminhtml/Sitemap/Delete.php | 2 +- .../Magento/Sitemap/Controller/Adminhtml/Sitemap/Edit.php | 2 +- .../Sitemap/Controller/Adminhtml/Sitemap/Generate.php | 2 +- .../Magento/Sitemap/Controller/Adminhtml/Sitemap/Index.php | 2 +- .../Sitemap/Controller/Adminhtml/Sitemap/NewAction.php | 2 +- .../Magento/Sitemap/Controller/Adminhtml/Sitemap/Save.php | 2 +- app/code/Magento/Sitemap/Helper/Data.php | 2 +- app/code/Magento/Sitemap/Model/Config/Backend/Priority.php | 2 +- app/code/Magento/Sitemap/Model/Config/Source/Frequency.php | 2 +- app/code/Magento/Sitemap/Model/Observer.php | 2 +- .../Sitemap/Model/ResourceModel/Catalog/Category.php | 2 +- .../Magento/Sitemap/Model/ResourceModel/Catalog/Product.php | 2 +- app/code/Magento/Sitemap/Model/ResourceModel/Cms/Page.php | 2 +- app/code/Magento/Sitemap/Model/ResourceModel/Sitemap.php | 2 +- .../Sitemap/Model/ResourceModel/Sitemap/Collection.php | 2 +- app/code/Magento/Sitemap/Model/Sitemap.php | 2 +- .../Sitemap/Model/Source/Product/Image/IncludeImage.php | 2 +- app/code/Magento/Sitemap/Setup/InstallSchema.php | 2 +- .../Test/Unit/Controller/Adminhtml/Sitemap/DeleteTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Sitemap/SaveTest.php | 2 +- app/code/Magento/Sitemap/Test/Unit/Helper/DataTest.php | 2 +- app/code/Magento/Sitemap/Test/Unit/Model/ObserverTest.php | 2 +- app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php | 2 +- .../Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-1.xml | 2 +- .../Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-2.xml | 2 +- .../Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-3.xml | 2 +- .../Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-4.xml | 2 +- .../Sitemap/Test/Unit/Model/_files/sitemap-index.xml | 2 +- .../Sitemap/Test/Unit/Model/_files/sitemap-single.xml | 2 +- app/code/Magento/Sitemap/etc/acl.xml | 2 +- app/code/Magento/Sitemap/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Sitemap/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Sitemap/etc/adminhtml/system.xml | 2 +- app/code/Magento/Sitemap/etc/config.xml | 2 +- app/code/Magento/Sitemap/etc/crontab.xml | 2 +- app/code/Magento/Sitemap/etc/di.xml | 2 +- app/code/Magento/Sitemap/etc/email_templates.xml | 2 +- app/code/Magento/Sitemap/etc/module.xml | 2 +- app/code/Magento/Sitemap/registration.php | 2 +- .../Sitemap/view/adminhtml/email/generate_warnings.html | 2 +- .../view/adminhtml/layout/adminhtml_sitemap_index.xml | 2 +- .../adminhtml/layout/adminhtml_sitemap_index_grid_block.xml | 2 +- app/code/Magento/Store/Api/Data/GroupInterface.php | 2 +- app/code/Magento/Store/Api/Data/StoreConfigInterface.php | 2 +- app/code/Magento/Store/Api/Data/StoreInterface.php | 2 +- app/code/Magento/Store/Api/Data/WebsiteInterface.php | 2 +- app/code/Magento/Store/Api/GroupRepositoryInterface.php | 2 +- app/code/Magento/Store/Api/StoreConfigManagerInterface.php | 2 +- app/code/Magento/Store/Api/StoreCookieManagerInterface.php | 2 +- app/code/Magento/Store/Api/StoreManagementInterface.php | 2 +- app/code/Magento/Store/Api/StoreRepositoryInterface.php | 2 +- app/code/Magento/Store/Api/StoreResolverInterface.php | 2 +- .../Magento/Store/Api/StoreWebsiteRelationInterface.php | 2 +- app/code/Magento/Store/Api/WebsiteManagementInterface.php | 2 +- app/code/Magento/Store/Api/WebsiteRepositoryInterface.php | 2 +- app/code/Magento/Store/App/Action/Plugin/Context.php | 2 +- app/code/Magento/Store/App/Action/Plugin/StoreCheck.php | 2 +- .../Magento/Store/App/Config/Source/RuntimeConfigSource.php | 2 +- app/code/Magento/Store/App/Config/Type/Scopes.php | 2 +- .../Store/App/FrontController/Plugin/DefaultStore.php | 2 +- .../App/FrontController/Plugin/RequestPreprocessor.php | 2 +- app/code/Magento/Store/App/Request/PathInfoProcessor.php | 2 +- app/code/Magento/Store/App/Response/Redirect.php | 2 +- app/code/Magento/Store/Block/Store/Switcher.php | 2 +- app/code/Magento/Store/Block/Switcher.php | 2 +- app/code/Magento/Store/Controller/Store/SwitchAction.php | 2 +- app/code/Magento/Store/Model/Address/Renderer.php | 2 +- app/code/Magento/Store/Model/App/Emulation.php | 2 +- app/code/Magento/Store/Model/BaseUrlChecker.php | 2 +- app/code/Magento/Store/Model/Config/Converter.php | 2 +- app/code/Magento/Store/Model/Config/Placeholder.php | 2 +- app/code/Magento/Store/Model/Config/Processor/Fallback.php | 2 +- .../Magento/Store/Model/Config/Processor/Placeholder.php | 2 +- .../Model/Config/Reader/Source/Dynamic/DefaultScope.php | 2 +- .../Store/Model/Config/Reader/Source/Dynamic/Store.php | 2 +- .../Store/Model/Config/Reader/Source/Dynamic/Website.php | 2 +- .../Model/Config/Reader/Source/Initial/DefaultScope.php | 2 +- .../Store/Model/Config/Reader/Source/Initial/Store.php | 2 +- .../Store/Model/Config/Reader/Source/Initial/Website.php | 2 +- app/code/Magento/Store/Model/Config/StoreView.php | 2 +- app/code/Magento/Store/Model/Data/StoreConfig.php | 2 +- app/code/Magento/Store/Model/DefaultStoreScopeProvider.php | 2 +- app/code/Magento/Store/Model/Group.php | 2 +- app/code/Magento/Store/Model/GroupRepository.php | 2 +- app/code/Magento/Store/Model/HeaderProvider/Hsts.php | 2 +- .../Magento/Store/Model/HeaderProvider/UpgradeInsecure.php | 2 +- app/code/Magento/Store/Model/Information.php | 2 +- app/code/Magento/Store/Model/PathConfig.php | 2 +- app/code/Magento/Store/Model/Plugin/StoreCookie.php | 2 +- app/code/Magento/Store/Model/Resolver/Group.php | 2 +- app/code/Magento/Store/Model/Resolver/Store.php | 2 +- app/code/Magento/Store/Model/Resolver/Website.php | 2 +- .../Store/Model/ResourceModel/Config/Collection/Scoped.php | 2 +- app/code/Magento/Store/Model/ResourceModel/Group.php | 2 +- .../Magento/Store/Model/ResourceModel/Group/Collection.php | 2 +- app/code/Magento/Store/Model/ResourceModel/Store.php | 2 +- .../Magento/Store/Model/ResourceModel/Store/Collection.php | 2 +- .../Store/Model/ResourceModel/StoreWebsiteRelation.php | 2 +- app/code/Magento/Store/Model/ResourceModel/Website.php | 2 +- .../Store/Model/ResourceModel/Website/Collection.php | 2 +- .../Store/Model/ResourceModel/Website/Grid/Collection.php | 2 +- app/code/Magento/Store/Model/ScopeFallbackResolver.php | 2 +- app/code/Magento/Store/Model/ScopeInterface.php | 2 +- app/code/Magento/Store/Model/ScopeTreeProvider.php | 2 +- app/code/Magento/Store/Model/ScopeValidator.php | 2 +- app/code/Magento/Store/Model/Service/StoreConfigManager.php | 2 +- app/code/Magento/Store/Model/Store.php | 2 +- app/code/Magento/Store/Model/StoreCookieManager.php | 2 +- app/code/Magento/Store/Model/StoreIsInactiveException.php | 2 +- app/code/Magento/Store/Model/StoreManagement.php | 2 +- app/code/Magento/Store/Model/StoreManager.php | 2 +- app/code/Magento/Store/Model/StoreManagerInterface.php | 2 +- app/code/Magento/Store/Model/StoreRepository.php | 2 +- app/code/Magento/Store/Model/StoreResolver.php | 2 +- app/code/Magento/Store/Model/StoreResolver/Group.php | 2 +- .../Magento/Store/Model/StoreResolver/ReaderInterface.php | 2 +- app/code/Magento/Store/Model/StoreResolver/ReaderList.php | 2 +- app/code/Magento/Store/Model/StoreResolver/Store.php | 2 +- app/code/Magento/Store/Model/StoreResolver/Website.php | 2 +- app/code/Magento/Store/Model/StoreScopeProvider.php | 2 +- app/code/Magento/Store/Model/StoresConfig.php | 2 +- app/code/Magento/Store/Model/System/Store.php | 2 +- app/code/Magento/Store/Model/Website.php | 2 +- app/code/Magento/Store/Model/WebsiteManagement.php | 2 +- app/code/Magento/Store/Model/WebsiteRepository.php | 2 +- app/code/Magento/Store/Setup/InstallSchema.php | 2 +- .../Store/Test/Unit/App/Action/Plugin/ContextTest.php | 2 +- .../Store/Test/Unit/App/Action/Plugin/StoreCheckTest.php | 2 +- .../Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php | 2 +- .../App/FrontController/Plugin/RequestPreprocessorTest.php | 2 +- .../Store/Test/Unit/App/Request/PathInfoProcessorTest.php | 2 +- .../Magento/Store/Test/Unit/App/Response/RedirectTest.php | 2 +- .../Magento/Store/Test/Unit/Block/Store/SwitcherTest.php | 2 +- app/code/Magento/Store/Test/Unit/Block/SwitcherTest.php | 2 +- .../Store/Test/Unit/Controller/Store/SwitchActionTest.php | 2 +- .../Magento/Store/Test/Unit/Model/Address/RendererTest.php | 2 +- .../Magento/Store/Test/Unit/Model/App/EmulationTest.php | 2 +- .../Magento/Store/Test/Unit/Model/Config/ConverterTest.php | 2 +- .../Store/Test/Unit/Model/Config/PlaceholderTest.php | 2 +- .../Test/Unit/Model/Config/Processor/PlaceholderTest.php | 2 +- .../Model/Config/Reader/Source/Dynamic/DefaultScopeTest.php | 2 +- .../Unit/Model/Config/Reader/Source/Dynamic/StoreTest.php | 2 +- .../Unit/Model/Config/Reader/Source/Dynamic/WebsiteTest.php | 2 +- .../Model/Config/Reader/Source/Initial/DefaultScopeTest.php | 2 +- .../Unit/Model/Config/Reader/Source/Initial/StoreTest.php | 2 +- .../Unit/Model/Config/Reader/Source/Initial/WebsiteTest.php | 2 +- .../Store/Test/Unit/Model/HeaderProvider/HstsTest.php | 2 +- .../Test/Unit/Model/HeaderProvider/UpgradeInsecureTest.php | 2 +- app/code/Magento/Store/Test/Unit/Model/InformationTest.php | 2 +- app/code/Magento/Store/Test/Unit/Model/PathConfigTest.php | 2 +- .../Store/Test/Unit/Model/Plugin/StoreCookieTest.php | 2 +- .../Magento/Store/Test/Unit/Model/Resolver/GroupTest.php | 2 +- .../Magento/Store/Test/Unit/Model/Resolver/StoreTest.php | 2 +- .../Magento/Store/Test/Unit/Model/Resolver/WebsiteTest.php | 2 +- .../Unit/Model/ResourceModel/StoreWebsiteRelationTest.php | 2 +- .../Store/Test/Unit/Model/ScopeFallbackResolverTest.php | 2 +- .../Magento/Store/Test/Unit/Model/ScopeTreeProviderTest.php | 2 +- .../Magento/Store/Test/Unit/Model/ScopeValidatorTest.php | 2 +- .../Test/Unit/Model/Service/StoreConfigManagerTest.php | 2 +- .../Magento/Store/Test/Unit/Model/StoreManagementTest.php | 2 +- app/code/Magento/Store/Test/Unit/Model/StoreManagerTest.php | 2 +- .../Magento/Store/Test/Unit/Model/StoreRepositoryTest.php | 2 +- app/code/Magento/Store/Test/Unit/Model/StoreTest.php | 2 +- app/code/Magento/Store/Test/Unit/Model/StoresConfigTest.php | 2 +- app/code/Magento/Store/Test/Unit/Model/System/StoreTest.php | 2 +- .../Magento/Store/Test/Unit/Model/WebsiteManagementTest.php | 2 +- .../Magento/Store/Test/Unit/Model/WebsiteRepositoryTest.php | 2 +- app/code/Magento/Store/Test/Unit/Model/WebsiteTest.php | 2 +- .../Test/Unit/Ui/Component/Listing/Column/StoreTest.php | 2 +- .../Store/Test/Unit/Url/Plugin/RouteParamsResolverTest.php | 2 +- .../Magento/Store/Test/Unit/Url/Plugin/SecurityInfoTest.php | 2 +- .../Magento/Store/Ui/Component/Form/Fieldset/Websites.php | 2 +- .../Magento/Store/Ui/Component/Listing/Column/Store.php | 2 +- .../Store/Ui/Component/Listing/Column/Store/Options.php | 2 +- app/code/Magento/Store/Url/Plugin/RouteParamsResolver.php | 2 +- app/code/Magento/Store/Url/Plugin/SecurityInfo.php | 2 +- app/code/Magento/Store/etc/adminhtml/di.xml | 2 +- app/code/Magento/Store/etc/cache.xml | 2 +- app/code/Magento/Store/etc/config.xml | 2 +- app/code/Magento/Store/etc/config.xsd | 2 +- app/code/Magento/Store/etc/data_source/website.xml | 4 ++-- app/code/Magento/Store/etc/di.xml | 2 +- app/code/Magento/Store/etc/frontend/di.xml | 2 +- app/code/Magento/Store/etc/frontend/routes.xml | 2 +- app/code/Magento/Store/etc/frontend/sections.xml | 2 +- app/code/Magento/Store/etc/module.xml | 2 +- app/code/Magento/Store/etc/webapi.xml | 2 +- app/code/Magento/Store/registration.php | 2 +- .../Store/view/frontend/templates/switch/flags.phtml | 2 +- .../Store/view/frontend/templates/switch/languages.phtml | 2 +- .../Store/view/frontend/templates/switch/stores.phtml | 2 +- app/code/Magento/Swagger/Controller/Index/Index.php | 2 +- .../Swagger/Test/Unit/Controller/Index/IndexTest.php | 2 +- app/code/Magento/Swagger/etc/frontend/routes.xml | 2 +- app/code/Magento/Swagger/etc/module.xml | 2 +- app/code/Magento/Swagger/registration.php | 2 +- .../Swagger/view/frontend/layout/swagger_index_index.xml | 2 +- .../view/frontend/web/swagger-ui/js/magento-swagger.js | 2 +- .../Adminhtml/Attribute/Edit/Options/AbstractSwatch.php | 2 +- .../Block/Adminhtml/Attribute/Edit/Options/Text.php | 2 +- .../Block/Adminhtml/Attribute/Edit/Options/Visual.php | 2 +- .../Block/Adminhtml/Product/Attribute/Edit/Form.php | 2 +- .../Swatches/Block/LayeredNavigation/RenderLayered.php | 2 +- .../Swatches/Block/Product/Renderer/Configurable.php | 2 +- .../Block/Product/Renderer/Listing/Configurable.php | 2 +- .../Magento/Swatches/Controller/Adminhtml/Iframe/Show.php | 2 +- .../Controller/Adminhtml/Product/Attribute/Plugin/Save.php | 2 +- app/code/Magento/Swatches/Controller/Ajax/Media.php | 2 +- app/code/Magento/Swatches/Helper/Data.php | 2 +- app/code/Magento/Swatches/Helper/Media.php | 2 +- app/code/Magento/Swatches/Model/AttributesList.php | 2 +- .../Magento/Swatches/Model/Form/Element/AbstractSwatch.php | 2 +- app/code/Magento/Swatches/Model/Form/Element/SwatchText.php | 2 +- .../Magento/Swatches/Model/Form/Element/SwatchVisual.php | 2 +- app/code/Magento/Swatches/Model/Plugin/Configurable.php | 2 +- app/code/Magento/Swatches/Model/Plugin/EavAttribute.php | 2 +- app/code/Magento/Swatches/Model/Plugin/FilterRenderer.php | 2 +- app/code/Magento/Swatches/Model/Plugin/Product.php | 2 +- app/code/Magento/Swatches/Model/Plugin/ProductImage.php | 2 +- app/code/Magento/Swatches/Model/ResourceModel/Swatch.php | 2 +- .../Swatches/Model/ResourceModel/Swatch/Collection.php | 2 +- app/code/Magento/Swatches/Model/Swatch.php | 2 +- .../Swatches/Observer/AddFieldsToAttributeObserver.php | 2 +- .../Swatches/Observer/AddSwatchAttributeTypeObserver.php | 2 +- .../Magento/Swatches/Plugin/Catalog/CacheInvalidate.php | 2 +- app/code/Magento/Swatches/Setup/InstallData.php | 2 +- app/code/Magento/Swatches/Setup/InstallSchema.php | 2 +- app/code/Magento/Swatches/Setup/UpgradeData.php | 2 +- .../Adminhtml/Attribute/Edit/Options/AbstractSwatchTest.php | 2 +- .../Block/Adminhtml/Product/Attribute/Edit/FormTest.php | 2 +- .../Test/Unit/Block/LayeredNavigation/RenderLayeredTest.php | 2 +- .../Test/Unit/Block/Product/Renderer/ConfigurableTest.php | 2 +- .../Block/Product/Renderer/Listing/ConfigurableTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Iframe/ShowTest.php | 2 +- .../Adminhtml/Product/Attribute/Plugin/SaveTest.php | 2 +- .../Swatches/Test/Unit/Controller/Ajax/MediaTest.php | 2 +- app/code/Magento/Swatches/Test/Unit/Helper/DataTest.php | 2 +- app/code/Magento/Swatches/Test/Unit/Helper/MediaTest.php | 2 +- .../Magento/Swatches/Test/Unit/Model/AttributesListTest.php | 2 +- .../Test/Unit/Model/Form/Element/AbstractSwatchTest.php | 2 +- .../Swatches/Test/Unit/Model/Plugin/ConfigurableTest.php | 2 +- .../Swatches/Test/Unit/Model/Plugin/EavAttributeTest.php | 2 +- .../Swatches/Test/Unit/Model/Plugin/FilterRendererTest.php | 2 +- .../Swatches/Test/Unit/Model/Plugin/ProductImageTest.php | 2 +- .../Magento/Swatches/Test/Unit/Model/Plugin/ProductTest.php | 2 +- .../Test/Unit/Observer/AddFieldsToAttributeObserverTest.php | 2 +- .../Unit/Observer/AddSwatchAttributeTypeObserverTest.php | 2 +- .../Test/Unit/Plugin/Catalog/CacheInvalidateTest.php | 2 +- app/code/Magento/Swatches/etc/adminhtml/di.xml | 2 +- app/code/Magento/Swatches/etc/adminhtml/events.xml | 2 +- app/code/Magento/Swatches/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Swatches/etc/adminhtml/system.xml | 2 +- app/code/Magento/Swatches/etc/config.xml | 2 +- app/code/Magento/Swatches/etc/di.xml | 2 +- app/code/Magento/Swatches/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Swatches/etc/module.xml | 2 +- app/code/Magento/Swatches/etc/view.xml | 2 +- app/code/Magento/Swatches/registration.php | 2 +- .../adminhtml/layout/catalog_product_attribute_edit.xml | 4 ++-- .../layout/catalog_product_attribute_edit_popup.xml | 2 +- .../Swatches/view/adminhtml/layout/catalog_product_form.xml | 2 +- .../adminhtml/layout/catalog_product_superconfig_config.xml | 2 +- .../Magento/Swatches/view/adminhtml/requirejs-config.js | 2 +- .../adminhtml/templates/catalog/product/attribute/js.phtml | 2 +- .../templates/catalog/product/attribute/text.phtml | 2 +- .../templates/catalog/product/attribute/visual.phtml | 2 +- .../product/edit/attribute/steps/attributes_values.phtml | 2 +- .../view/adminhtml/ui_component/design_config_form.xml | 2 +- .../adminhtml/ui_component/product_attribute_add_form.xml | 2 +- .../Magento/Swatches/view/adminhtml/web/css/swatches.css | 2 +- .../view/adminhtml/web/js/form/element/swatch-visual.js | 2 +- .../Swatches/view/adminhtml/web/js/product-attributes.js | 2 +- app/code/Magento/Swatches/view/adminhtml/web/js/text.js | 2 +- .../Magento/Swatches/view/adminhtml/web/js/type-change.js | 2 +- app/code/Magento/Swatches/view/adminhtml/web/js/visual.js | 2 +- .../Swatches/view/adminhtml/web/template/swatch-visual.html | 2 +- .../Swatches/view/frontend/layout/catalog_category_view.xml | 2 +- .../layout/catalog_product_view_type_configurable.xml | 2 +- .../view/frontend/layout/catalogsearch_advanced_result.xml | 2 +- .../view/frontend/layout/catalogsearch_result_index.xml | 2 +- .../layout/checkout_cart_configure_type_configurable.xml | 2 +- .../layout/wishlist_index_configure_type_configurable.xml | 2 +- .../view/frontend/templates/product/layered/renderer.phtml | 2 +- .../view/frontend/templates/product/listing/renderer.phtml | 2 +- .../view/frontend/templates/product/view/renderer.phtml | 2 +- .../Magento/Swatches/view/frontend/web/css/swatches.css | 2 +- .../Swatches/view/frontend/web/js/catalog-add-to-cart.js | 2 +- .../Swatches/view/frontend/web/js/swatch-renderer.js | 2 +- app/code/Magento/SwatchesLayeredNavigation/etc/module.xml | 2 +- app/code/Magento/SwatchesLayeredNavigation/registration.php | 2 +- .../adminhtml/ui_component/product_attribute_add_form.xml | 2 +- app/code/Magento/Tax/Api/Data/AppliedTaxInterface.php | 2 +- app/code/Magento/Tax/Api/Data/AppliedTaxRateInterface.php | 2 +- .../Magento/Tax/Api/Data/GrandTotalDetailsInterface.php | 2 +- app/code/Magento/Tax/Api/Data/GrandTotalRatesInterface.php | 2 +- .../Tax/Api/Data/OrderTaxDetailsAppliedTaxInterface.php | 2 +- app/code/Magento/Tax/Api/Data/OrderTaxDetailsInterface.php | 2 +- .../Magento/Tax/Api/Data/OrderTaxDetailsItemInterface.php | 2 +- app/code/Magento/Tax/Api/Data/QuoteDetailsInterface.php | 2 +- app/code/Magento/Tax/Api/Data/QuoteDetailsItemInterface.php | 2 +- app/code/Magento/Tax/Api/Data/TaxClassInterface.php | 2 +- app/code/Magento/Tax/Api/Data/TaxClassKeyInterface.php | 2 +- .../Magento/Tax/Api/Data/TaxClassSearchResultsInterface.php | 2 +- app/code/Magento/Tax/Api/Data/TaxDetailsInterface.php | 2 +- app/code/Magento/Tax/Api/Data/TaxDetailsItemInterface.php | 2 +- app/code/Magento/Tax/Api/Data/TaxRateInterface.php | 2 +- .../Magento/Tax/Api/Data/TaxRateSearchResultsInterface.php | 2 +- app/code/Magento/Tax/Api/Data/TaxRateTitleInterface.php | 2 +- app/code/Magento/Tax/Api/Data/TaxRuleInterface.php | 2 +- .../Magento/Tax/Api/Data/TaxRuleSearchResultsInterface.php | 2 +- app/code/Magento/Tax/Api/OrderTaxManagementInterface.php | 2 +- app/code/Magento/Tax/Api/TaxCalculationInterface.php | 2 +- app/code/Magento/Tax/Api/TaxClassManagementInterface.php | 2 +- app/code/Magento/Tax/Api/TaxClassRepositoryInterface.php | 2 +- app/code/Magento/Tax/Api/TaxRateManagementInterface.php | 2 +- app/code/Magento/Tax/Api/TaxRateRepositoryInterface.php | 2 +- app/code/Magento/Tax/Api/TaxRuleRepositoryInterface.php | 2 +- .../Magento/Tax/Block/Adminhtml/Frontend/Region/Updater.php | 2 +- .../Magento/Tax/Block/Adminhtml/Items/Price/Renderer.php | 2 +- app/code/Magento/Tax/Block/Adminhtml/Rate/Form.php | 2 +- .../Magento/Tax/Block/Adminhtml/Rate/Grid/Renderer/Data.php | 2 +- app/code/Magento/Tax/Block/Adminhtml/Rate/Title.php | 2 +- .../Magento/Tax/Block/Adminhtml/Rate/Title/Fieldset.php | 2 +- app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Add.php | 2 +- app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Save.php | 2 +- app/code/Magento/Tax/Block/Adminhtml/Rule.php | 2 +- app/code/Magento/Tax/Block/Adminhtml/Rule/Edit.php | 2 +- app/code/Magento/Tax/Block/Adminhtml/Rule/Edit/Form.php | 2 +- app/code/Magento/Tax/Block/Checkout/Discount.php | 2 +- app/code/Magento/Tax/Block/Checkout/Grandtotal.php | 2 +- app/code/Magento/Tax/Block/Checkout/Shipping.php | 2 +- app/code/Magento/Tax/Block/Checkout/Shipping/Price.php | 2 +- app/code/Magento/Tax/Block/Checkout/Subtotal.php | 2 +- app/code/Magento/Tax/Block/Checkout/Tax.php | 2 +- app/code/Magento/Tax/Block/Item/Price/Renderer.php | 2 +- app/code/Magento/Tax/Block/Sales/Order/Tax.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rate.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rate/Add.php | 2 +- .../Magento/Tax/Controller/Adminhtml/Rate/AjaxDelete.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxLoad.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxSave.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rate/Delete.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rate/Edit.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rate/Index.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rate/Save.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rule.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rule/Delete.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rule/Edit.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rule/Index.php | 2 +- .../Magento/Tax/Controller/Adminhtml/Rule/NewAction.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Rule/Save.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Tax.php | 2 +- .../Magento/Tax/Controller/Adminhtml/Tax/AjaxDelete.php | 2 +- app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxSave.php | 2 +- .../Tax/Controller/Adminhtml/Tax/IgnoreTaxNotification.php | 2 +- app/code/Magento/Tax/Controller/RegistryConstants.php | 2 +- .../Tax/CustomerData/CheckoutTotalsJsLayoutDataProvider.php | 2 +- app/code/Magento/Tax/Helper/Data.php | 2 +- app/code/Magento/Tax/Model/AggregateSalesReportTaxData.php | 2 +- .../Api/SearchCriteria/JoinProcessor/CalculationData.php | 2 +- .../Api/SearchCriteria/JoinProcessor/CustomerTaxClass.php | 2 +- .../Api/SearchCriteria/JoinProcessor/ProductTaxClass.php | 2 +- .../Tax/Model/Api/SearchCriteria/JoinProcessor/Rate.php | 2 +- app/code/Magento/Tax/Model/App/Action/ContextPlugin.php | 2 +- app/code/Magento/Tax/Model/Calculation.php | 2 +- .../Tax/Model/Calculation/AbstractAggregateCalculator.php | 2 +- .../Magento/Tax/Model/Calculation/AbstractCalculator.php | 2 +- .../Magento/Tax/Model/Calculation/CalculatorFactory.php | 2 +- .../Magento/Tax/Model/Calculation/GrandTotalDetails.php | 2 +- app/code/Magento/Tax/Model/Calculation/GrandTotalRates.php | 2 +- app/code/Magento/Tax/Model/Calculation/Rate.php | 2 +- app/code/Magento/Tax/Model/Calculation/Rate/Converter.php | 2 +- app/code/Magento/Tax/Model/Calculation/Rate/Title.php | 2 +- app/code/Magento/Tax/Model/Calculation/RateFactory.php | 2 +- app/code/Magento/Tax/Model/Calculation/RateRegistry.php | 2 +- app/code/Magento/Tax/Model/Calculation/RateRepository.php | 2 +- .../Magento/Tax/Model/Calculation/RowBaseCalculator.php | 2 +- app/code/Magento/Tax/Model/Calculation/Rule.php | 2 +- app/code/Magento/Tax/Model/Calculation/Rule/Validator.php | 2 +- app/code/Magento/Tax/Model/Calculation/TaxRuleRegistry.php | 2 +- .../Magento/Tax/Model/Calculation/TotalBaseCalculator.php | 2 +- .../Magento/Tax/Model/Calculation/UnitBaseCalculator.php | 2 +- app/code/Magento/Tax/Model/ClassModel.php | 2 +- app/code/Magento/Tax/Model/ClassModelRegistry.php | 2 +- app/code/Magento/Tax/Model/Config.php | 2 +- app/code/Magento/Tax/Model/Config/Notification.php | 2 +- app/code/Magento/Tax/Model/Config/Price/IncludePrice.php | 2 +- app/code/Magento/Tax/Model/Config/Source/Apply/On.php | 2 +- app/code/Magento/Tax/Model/Config/Source/Basedon.php | 2 +- app/code/Magento/Tax/Model/Config/Source/Catalog.php | 2 +- app/code/Magento/Tax/Model/Config/TaxClass.php | 2 +- app/code/Magento/Tax/Model/Layout/DepersonalizePlugin.php | 2 +- app/code/Magento/Tax/Model/Plugin/OrderSave.php | 2 +- .../Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php | 2 +- app/code/Magento/Tax/Model/Quote/ToOrderConverter.php | 2 +- app/code/Magento/Tax/Model/Rate/Source.php | 2 +- app/code/Magento/Tax/Model/ResourceModel/Calculation.php | 2 +- .../Tax/Model/ResourceModel/Calculation/Collection.php | 2 +- .../Magento/Tax/Model/ResourceModel/Calculation/Rate.php | 2 +- .../Tax/Model/ResourceModel/Calculation/Rate/Collection.php | 2 +- .../Tax/Model/ResourceModel/Calculation/Rate/Title.php | 2 +- .../ResourceModel/Calculation/Rate/Title/Collection.php | 2 +- .../Magento/Tax/Model/ResourceModel/Calculation/Rule.php | 2 +- .../Tax/Model/ResourceModel/Calculation/Rule/Collection.php | 2 +- .../Magento/Tax/Model/ResourceModel/Report/Collection.php | 2 +- app/code/Magento/Tax/Model/ResourceModel/Report/Tax.php | 2 +- .../Tax/Model/ResourceModel/Report/Tax/Createdat.php | 2 +- .../Tax/Model/ResourceModel/Report/Tax/Updatedat.php | 2 +- .../Tax/Model/ResourceModel/Report/Updatedat/Collection.php | 2 +- .../Magento/Tax/Model/ResourceModel/Sales/Order/Tax.php | 2 +- .../Tax/Model/ResourceModel/Sales/Order/Tax/Collection.php | 2 +- app/code/Magento/Tax/Model/ResourceModel/TaxClass.php | 2 +- .../Magento/Tax/Model/ResourceModel/TaxClass/Collection.php | 2 +- app/code/Magento/Tax/Model/Sales/Order/Details.php | 2 +- app/code/Magento/Tax/Model/Sales/Order/Tax.php | 2 +- app/code/Magento/Tax/Model/Sales/Order/TaxManagement.php | 2 +- app/code/Magento/Tax/Model/Sales/Pdf/Grandtotal.php | 2 +- app/code/Magento/Tax/Model/Sales/Pdf/Shipping.php | 2 +- app/code/Magento/Tax/Model/Sales/Pdf/Subtotal.php | 2 +- app/code/Magento/Tax/Model/Sales/Pdf/Tax.php | 2 +- app/code/Magento/Tax/Model/Sales/Quote/ItemDetails.php | 2 +- app/code/Magento/Tax/Model/Sales/Quote/QuoteDetails.php | 2 +- .../Tax/Model/Sales/Total/Quote/CommonTaxCollector.php | 2 +- app/code/Magento/Tax/Model/Sales/Total/Quote/Shipping.php | 2 +- app/code/Magento/Tax/Model/Sales/Total/Quote/Subtotal.php | 2 +- app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php | 2 +- .../Magento/Tax/Model/System/Config/Source/Algorithm.php | 2 +- app/code/Magento/Tax/Model/System/Config/Source/Apply.php | 2 +- .../Magento/Tax/Model/System/Config/Source/PriceType.php | 2 +- .../Magento/Tax/Model/System/Config/Source/Tax/Country.php | 2 +- .../Tax/Model/System/Config/Source/Tax/Display/Type.php | 2 +- .../Magento/Tax/Model/System/Config/Source/Tax/Region.php | 2 +- app/code/Magento/Tax/Model/System/Message/Notifications.php | 2 +- app/code/Magento/Tax/Model/TaxCalculation.php | 2 +- app/code/Magento/Tax/Model/TaxClass/AbstractType.php | 2 +- app/code/Magento/Tax/Model/TaxClass/Factory.php | 2 +- app/code/Magento/Tax/Model/TaxClass/Key.php | 2 +- app/code/Magento/Tax/Model/TaxClass/Management.php | 2 +- app/code/Magento/Tax/Model/TaxClass/Repository.php | 2 +- app/code/Magento/Tax/Model/TaxClass/Source/Customer.php | 2 +- app/code/Magento/Tax/Model/TaxClass/Source/Product.php | 2 +- app/code/Magento/Tax/Model/TaxClass/Type/Customer.php | 2 +- app/code/Magento/Tax/Model/TaxClass/Type/Product.php | 2 +- app/code/Magento/Tax/Model/TaxClass/Type/TypeInterface.php | 2 +- app/code/Magento/Tax/Model/TaxConfigProvider.php | 2 +- app/code/Magento/Tax/Model/TaxDetails/AppliedTax.php | 2 +- app/code/Magento/Tax/Model/TaxDetails/AppliedTaxRate.php | 2 +- app/code/Magento/Tax/Model/TaxDetails/ItemDetails.php | 2 +- app/code/Magento/Tax/Model/TaxDetails/TaxDetails.php | 2 +- app/code/Magento/Tax/Model/TaxRateCollection.php | 2 +- app/code/Magento/Tax/Model/TaxRateManagement.php | 2 +- app/code/Magento/Tax/Model/TaxRuleCollection.php | 2 +- app/code/Magento/Tax/Model/TaxRuleRepository.php | 2 +- app/code/Magento/Tax/Observer/AfterAddressSaveObserver.php | 2 +- app/code/Magento/Tax/Observer/CustomerLoggedInObserver.php | 2 +- .../Magento/Tax/Observer/GetPriceConfigurationObserver.php | 2 +- .../Magento/Tax/Observer/UpdateProductOptionsObserver.php | 2 +- app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php | 2 +- app/code/Magento/Tax/Pricing/Adjustment.php | 2 +- app/code/Magento/Tax/Pricing/Render/Adjustment.php | 2 +- app/code/Magento/Tax/Setup/InstallData.php | 2 +- app/code/Magento/Tax/Setup/InstallSchema.php | 2 +- app/code/Magento/Tax/Setup/TaxSetup.php | 2 +- app/code/Magento/Tax/Setup/UpgradeData.php | 2 +- .../Magento/Tax/Test/Unit/App/Action/ContextPluginTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Items/Price/RendererTest.php | 2 +- .../Tax/Test/Unit/Block/Checkout/Shipping/PriceTest.php | 2 +- .../Magento/Tax/Test/Unit/Block/Checkout/ShippingTest.php | 2 +- .../Magento/Tax/Test/Unit/Block/Item/Price/RendererTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Rate/AjaxLoadTest.php | 2 +- .../Controller/Adminhtml/Tax/IgnoreTaxNotificationTest.php | 2 +- app/code/Magento/Tax/Test/Unit/GetterSetterTest.php | 2 +- app/code/Magento/Tax/Test/Unit/Helper/DataTest.php | 2 +- .../Test/Unit/Model/Calculation/CalculatorFactoryTest.php | 2 +- .../Tax/Test/Unit/Model/Calculation/Rate/ConverterTest.php | 2 +- .../Tax/Test/Unit/Model/Calculation/RateRegistryTest.php | 2 +- .../Tax/Test/Unit/Model/Calculation/RateRepositoryTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/Calculation/RateTest.php | 2 +- .../Calculation/RowBaseAndTotalBaseCalculatorTestCase.php | 2 +- .../Test/Unit/Model/Calculation/RowBaseCalculatorTest.php | 2 +- .../Tax/Test/Unit/Model/Calculation/TaxRuleRegistryTest.php | 2 +- .../Test/Unit/Model/Calculation/TotalBaseCalculatorTest.php | 2 +- .../Test/Unit/Model/Calculation/UnitBaseCalculatorTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/ClassModelRegistryTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/Config/TaxClassTest.php | 2 +- app/code/Magento/Tax/Test/Unit/Model/ConfigTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/Plugin/OrderSaveTest.php | 2 +- .../Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php | 2 +- .../Tax/Test/Unit/Model/Quote/ToOrderConverterTest.php | 2 +- .../Tax/Test/Unit/Model/ResourceModel/CalculationTest.php | 2 +- .../Tax/Test/Unit/Model/Sales/Order/TaxManagementTest.php | 2 +- .../Unit/Model/Sales/Total/Quote/CommonTaxCollectorTest.php | 2 +- .../Tax/Test/Unit/Model/Sales/Total/Quote/ShippingTest.php | 2 +- .../Tax/Test/Unit/Model/Sales/Total/Quote/SubtotalTest.php | 2 +- .../Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php | 2 +- app/code/Magento/Tax/Test/Unit/Model/TaxCalculationTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/TaxClass/FactoryTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/TaxClass/ManagementTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/TaxClass/RepositoryTest.php | 2 +- .../Tax/Test/Unit/Model/TaxClass/Source/CustomerTest.php | 2 +- .../Tax/Test/Unit/Model/TaxClass/Source/ProductTest.php | 2 +- .../Tax/Test/Unit/Model/TaxClass/Type/CustomerTest.php | 2 +- .../Tax/Test/Unit/Model/TaxClass/Type/ProductTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/TaxConfigProviderTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/TaxRateCollectionTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/TaxRateManagementTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/TaxRuleCollectionTest.php | 2 +- .../Magento/Tax/Test/Unit/Model/TaxRuleRepositoryTest.php | 2 +- .../Tax/Test/Unit/Observer/AfterAddressSaveObserverTest.php | 2 +- .../Tax/Test/Unit/Observer/CustomerLoggedInObserverTest.php | 2 +- .../Unit/Observer/GetPriceConfigurationObserverTest.php | 2 +- .../Test/Unit/Observer/UpdateProductOptionsObserverTest.php | 2 +- .../Tax/Test/Unit/Plugin/Checkout/CustomerData/CartTest.php | 2 +- app/code/Magento/Tax/Test/Unit/Pricing/AdjustmentTest.php | 2 +- .../Magento/Tax/Test/Unit/Pricing/Render/AdjustmentTest.php | 2 +- app/code/Magento/Tax/Test/Unit/Setup/TaxSetupTest.php | 2 +- app/code/Magento/Tax/etc/acl.xml | 2 +- app/code/Magento/Tax/etc/adminhtml/di.xml | 2 +- app/code/Magento/Tax/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Tax/etc/adminhtml/routes.xml | 4 ++-- app/code/Magento/Tax/etc/adminhtml/system.xml | 2 +- app/code/Magento/Tax/etc/catalog_attributes.xml | 2 +- app/code/Magento/Tax/etc/config.xml | 2 +- app/code/Magento/Tax/etc/crontab.xml | 2 +- app/code/Magento/Tax/etc/di.xml | 2 +- app/code/Magento/Tax/etc/events.xml | 2 +- app/code/Magento/Tax/etc/extension_attributes.xml | 2 +- app/code/Magento/Tax/etc/fieldset.xml | 2 +- app/code/Magento/Tax/etc/frontend/di.xml | 2 +- app/code/Magento/Tax/etc/frontend/events.xml | 2 +- app/code/Magento/Tax/etc/module.xml | 2 +- app/code/Magento/Tax/etc/pdf.xml | 2 +- app/code/Magento/Tax/etc/sales.xml | 2 +- app/code/Magento/Tax/etc/webapi.xml | 2 +- app/code/Magento/Tax/registration.php | 2 +- .../view/adminhtml/layout/sales_creditmemo_item_price.xml | 2 +- .../Tax/view/adminhtml/layout/sales_invoice_item_price.xml | 2 +- .../view/adminhtml/layout/sales_order_create_item_price.xml | 2 +- .../Tax/view/adminhtml/layout/sales_order_item_price.xml | 2 +- .../Magento/Tax/view/adminhtml/layout/tax_rate_block.xml | 2 +- .../Tax/view/adminhtml/layout/tax_rate_exportcsv.xml | 2 +- .../Tax/view/adminhtml/layout/tax_rate_exportxml.xml | 2 +- .../Magento/Tax/view/adminhtml/layout/tax_rate_index.xml | 2 +- .../Magento/Tax/view/adminhtml/layout/tax_rule_block.xml | 2 +- .../Magento/Tax/view/adminhtml/layout/tax_rule_edit.xml | 2 +- .../Magento/Tax/view/adminhtml/layout/tax_rule_index.xml | 2 +- .../Tax/view/adminhtml/templates/class/page/edit.phtml | 2 +- .../Tax/view/adminhtml/templates/items/price/row.phtml | 2 +- .../Tax/view/adminhtml/templates/items/price/total.phtml | 2 +- .../Tax/view/adminhtml/templates/items/price/unit.phtml | 2 +- .../adminhtml/templates/order/create/items/price/row.phtml | 2 +- .../templates/order/create/items/price/total.phtml | 2 +- .../adminhtml/templates/order/create/items/price/unit.phtml | 2 +- .../Magento/Tax/view/adminhtml/templates/rate/form.phtml | 2 +- app/code/Magento/Tax/view/adminhtml/templates/rate/js.phtml | 2 +- .../Magento/Tax/view/adminhtml/templates/rate/title.phtml | 2 +- .../Magento/Tax/view/adminhtml/templates/rule/edit.phtml | 2 +- .../Tax/view/adminhtml/templates/rule/rate/form.phtml | 2 +- .../Tax/view/adminhtml/templates/toolbar/class/add.phtml | 2 +- .../Tax/view/adminhtml/templates/toolbar/class/save.phtml | 2 +- .../Tax/view/adminhtml/templates/toolbar/rate/add.phtml | 2 +- .../Tax/view/adminhtml/templates/toolbar/rate/save.phtml | 2 +- .../Tax/view/adminhtml/templates/toolbar/rule/add.phtml | 2 +- .../Tax/view/adminhtml/templates/toolbar/rule/save.phtml | 2 +- app/code/Magento/Tax/view/adminhtml/web/js/bootstrap.js | 4 ++-- .../Magento/Tax/view/base/layout/catalog_product_prices.xml | 2 +- .../Tax/view/base/templates/pricing/adjustment.phtml | 2 +- .../Tax/view/base/templates/pricing/adjustment/bundle.phtml | 2 +- .../Tax/view/frontend/layout/checkout_cart_index.xml | 2 +- .../layout/checkout_cart_sidebar_total_renderers.xml | 2 +- .../Tax/view/frontend/layout/checkout_index_index.xml | 4 ++-- .../view/frontend/layout/checkout_item_price_renderers.xml | 2 +- .../Tax/view/frontend/layout/sales_email_item_price.xml | 2 +- .../Tax/view/frontend/layout/sales_order_item_price.xml | 2 +- .../templates/checkout/cart/item/price/sidebar.phtml | 2 +- .../Tax/view/frontend/templates/checkout/discount.phtml | 2 +- .../Tax/view/frontend/templates/checkout/grandtotal.phtml | 2 +- .../Tax/view/frontend/templates/checkout/shipping.phtml | 4 ++-- .../view/frontend/templates/checkout/shipping/price.phtml | 2 +- .../Tax/view/frontend/templates/checkout/subtotal.phtml | 2 +- .../Magento/Tax/view/frontend/templates/checkout/tax.phtml | 2 +- .../Tax/view/frontend/templates/email/items/price/row.phtml | 2 +- .../Tax/view/frontend/templates/item/price/row.phtml | 2 +- .../templates/item/price/total_after_discount.phtml | 2 +- .../Tax/view/frontend/templates/item/price/unit.phtml | 2 +- .../Magento/Tax/view/frontend/templates/order/tax.phtml | 2 +- .../web/js/view/checkout/cart/totals/grand-total.js | 2 +- .../frontend/web/js/view/checkout/cart/totals/shipping.js | 2 +- .../view/frontend/web/js/view/checkout/cart/totals/tax.js | 2 +- .../web/js/view/checkout/minicart/subtotal/totals.js | 2 +- .../frontend/web/js/view/checkout/shipping_method/price.js | 2 +- .../frontend/web/js/view/checkout/summary/grand-total.js | 2 +- .../web/js/view/checkout/summary/item/details/subtotal.js | 2 +- .../view/frontend/web/js/view/checkout/summary/shipping.js | 2 +- .../view/frontend/web/js/view/checkout/summary/subtotal.js | 2 +- .../Tax/view/frontend/web/js/view/checkout/summary/tax.js | 2 +- .../web/template/checkout/cart/totals/grand-total.html | 2 +- .../web/template/checkout/cart/totals/shipping.html | 2 +- .../frontend/web/template/checkout/cart/totals/tax.html | 2 +- .../web/template/checkout/minicart/subtotal/totals.html | 2 +- .../web/template/checkout/shipping_method/price.html | 2 +- .../frontend/web/template/checkout/summary/grand-total.html | 2 +- .../template/checkout/summary/item/details/subtotal.html | 4 ++-- .../frontend/web/template/checkout/summary/shipping.html | 2 +- .../frontend/web/template/checkout/summary/subtotal.html | 2 +- .../view/frontend/web/template/checkout/summary/tax.html | 2 +- .../Block/Adminhtml/Rate/Grid/Renderer/Country.php | 2 +- .../TaxImportExport/Block/Adminhtml/Rate/ImportExport.php | 2 +- .../Block/Adminhtml/Rate/ImportExportHeader.php | 2 +- .../Magento/TaxImportExport/Controller/Adminhtml/Rate.php | 2 +- .../TaxImportExport/Controller/Adminhtml/Rate/ExportCsv.php | 2 +- .../Controller/Adminhtml/Rate/ExportPost.php | 2 +- .../TaxImportExport/Controller/Adminhtml/Rate/ExportXml.php | 2 +- .../Controller/Adminhtml/Rate/ImportExport.php | 2 +- .../Controller/Adminhtml/Rate/ImportPost.php | 2 +- .../Magento/TaxImportExport/Model/Rate/CsvImportHandler.php | 2 +- .../Test/Unit/Controller/Adminhtml/Rate/ExportPostTest.php | 2 +- app/code/Magento/TaxImportExport/etc/acl.xml | 2 +- app/code/Magento/TaxImportExport/etc/adminhtml/menu.xml | 2 +- app/code/Magento/TaxImportExport/etc/adminhtml/routes.xml | 2 +- app/code/Magento/TaxImportExport/etc/module.xml | 2 +- app/code/Magento/TaxImportExport/registration.php | 2 +- .../view/adminhtml/layout/tax_rate_block.xml | 2 +- .../TaxImportExport/view/adminhtml/layout/tax_rule_edit.xml | 2 +- .../view/adminhtml/templates/importExport.phtml | 2 +- .../view/adminhtml/templates/importExportHeader.phtml | 2 +- .../Magento/Theme/Api/Data/DesignConfigDataInterface.php | 2 +- app/code/Magento/Theme/Api/Data/DesignConfigInterface.php | 2 +- .../Magento/Theme/Api/DesignConfigRepositoryInterface.php | 2 +- .../Theme/Block/Adminhtml/Design/Config/Edit/BackButton.php | 2 +- .../Adminhtml/Design/Config/Edit/SaveAndContinueButton.php | 2 +- .../Theme/Block/Adminhtml/Design/Config/Edit/SaveButton.php | 2 +- .../Theme/Block/Adminhtml/Design/Config/Edit/Scope.php | 2 +- .../Magento/Theme/Block/Adminhtml/System/Design/Theme.php | 2 +- .../Theme/Block/Adminhtml/System/Design/Theme/Edit.php | 2 +- .../Adminhtml/System/Design/Theme/Edit/AbstractTab.php | 2 +- .../Theme/Block/Adminhtml/System/Design/Theme/Edit/Form.php | 2 +- .../System/Design/Theme/Edit/Form/Element/File.php | 2 +- .../System/Design/Theme/Edit/Form/Element/Image.php | 2 +- .../System/Design/Theme/Edit/Form/Element/Links.php | 2 +- .../Block/Adminhtml/System/Design/Theme/Edit/Tab/Css.php | 2 +- .../Adminhtml/System/Design/Theme/Edit/Tab/General.php | 2 +- .../Block/Adminhtml/System/Design/Theme/Edit/Tab/Js.php | 2 +- .../Theme/Block/Adminhtml/System/Design/Theme/Edit/Tabs.php | 2 +- .../Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Content.php | 2 +- .../Theme/Block/Adminhtml/Wysiwyg/Files/Content/Files.php | 2 +- .../Block/Adminhtml/Wysiwyg/Files/Content/Uploader.php | 2 +- .../Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Tree.php | 2 +- app/code/Magento/Theme/Block/Html/Breadcrumbs.php | 2 +- app/code/Magento/Theme/Block/Html/Footer.php | 2 +- app/code/Magento/Theme/Block/Html/Header.php | 2 +- app/code/Magento/Theme/Block/Html/Header/Logo.php | 2 +- app/code/Magento/Theme/Block/Html/Notices.php | 2 +- app/code/Magento/Theme/Block/Html/Pager.php | 2 +- app/code/Magento/Theme/Block/Html/Title.php | 2 +- app/code/Magento/Theme/Block/Html/Topmenu.php | 2 +- app/code/Magento/Theme/Block/Html/Welcome.php | 2 +- .../Magento/Theme/Console/Command/ThemeUninstallCommand.php | 2 +- .../Theme/Controller/Adminhtml/Design/Config/Edit.php | 2 +- .../Adminhtml/Design/Config/FileUploader/Save.php | 2 +- .../Theme/Controller/Adminhtml/Design/Config/Index.php | 2 +- .../Theme/Controller/Adminhtml/Design/Config/Save.php | 2 +- .../Theme/Controller/Adminhtml/System/Design/Theme.php | 2 +- .../Controller/Adminhtml/System/Design/Theme/Delete.php | 2 +- .../Adminhtml/System/Design/Theme/DownloadCss.php | 2 +- .../Adminhtml/System/Design/Theme/DownloadCustomCss.php | 2 +- .../Theme/Controller/Adminhtml/System/Design/Theme/Edit.php | 2 +- .../Theme/Controller/Adminhtml/System/Design/Theme/Grid.php | 2 +- .../Controller/Adminhtml/System/Design/Theme/Index.php | 2 +- .../Controller/Adminhtml/System/Design/Theme/NewAction.php | 2 +- .../Theme/Controller/Adminhtml/System/Design/Theme/Save.php | 2 +- .../Controller/Adminhtml/System/Design/Theme/UploadCss.php | 2 +- .../Controller/Adminhtml/System/Design/Theme/UploadJs.php | 2 +- .../Controller/Adminhtml/System/Design/Wysiwyg/Files.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/Contents.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/DeleteFiles.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/DeleteFolder.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/Index.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/NewFolder.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/OnInsert.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/PreviewImage.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/TreeJson.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/Upload.php | 2 +- app/code/Magento/Theme/Controller/Result/MessagePlugin.php | 2 +- app/code/Magento/Theme/CustomerData/Messages.php | 2 +- app/code/Magento/Theme/Helper/Storage.php | 2 +- app/code/Magento/Theme/Helper/Theme.php | 2 +- app/code/Magento/Theme/Model/Config.php | 2 +- app/code/Magento/Theme/Model/Config/Customization.php | 2 +- app/code/Magento/Theme/Model/CopyService.php | 2 +- app/code/Magento/Theme/Model/Data/Design/Config.php | 2 +- app/code/Magento/Theme/Model/Data/Design/Config/Data.php | 2 +- app/code/Magento/Theme/Model/Data/Design/ConfigFactory.php | 2 +- app/code/Magento/Theme/Model/Design.php | 2 +- app/code/Magento/Theme/Model/Design/Backend/Exceptions.php | 2 +- app/code/Magento/Theme/Model/Design/Backend/Favicon.php | 2 +- app/code/Magento/Theme/Model/Design/Backend/File.php | 2 +- app/code/Magento/Theme/Model/Design/Backend/Image.php | 2 +- app/code/Magento/Theme/Model/Design/Backend/Logo.php | 2 +- app/code/Magento/Theme/Model/Design/Backend/Theme.php | 2 +- app/code/Magento/Theme/Model/Design/BackendModelFactory.php | 2 +- app/code/Magento/Theme/Model/Design/Config/DataProvider.php | 2 +- .../Theme/Model/Design/Config/DataProvider/DataLoader.php | 2 +- .../Model/Design/Config/DataProvider/MetadataLoader.php | 2 +- .../Model/Design/Config/FileUploader/FileProcessor.php | 2 +- .../Magento/Theme/Model/Design/Config/MetadataProvider.php | 2 +- .../Theme/Model/Design/Config/MetadataProviderInterface.php | 2 +- app/code/Magento/Theme/Model/Design/Config/Plugin.php | 2 +- app/code/Magento/Theme/Model/Design/Config/Storage.php | 2 +- app/code/Magento/Theme/Model/Design/Config/Validator.php | 2 +- app/code/Magento/Theme/Model/Design/Config/ValueChecker.php | 2 +- .../Magento/Theme/Model/Design/Config/ValueProcessor.php | 2 +- app/code/Magento/Theme/Model/Design/Theme/Label.php | 2 +- app/code/Magento/Theme/Model/DesignConfigRepository.php | 2 +- app/code/Magento/Theme/Model/Favicon/Favicon.php | 2 +- app/code/Magento/Theme/Model/Indexer/Design/Config.php | 2 +- .../Theme/Model/Indexer/Design/Config/FieldsProvider.php | 2 +- .../Theme/Model/Indexer/Design/Config/Plugin/Store.php | 2 +- .../Theme/Model/Indexer/Design/Config/Plugin/StoreGroup.php | 2 +- .../Theme/Model/Indexer/Design/Config/Plugin/Website.php | 2 +- app/code/Magento/Theme/Model/Layout/Config.php | 2 +- app/code/Magento/Theme/Model/Layout/Config/Converter.php | 2 +- app/code/Magento/Theme/Model/Layout/Config/Reader.php | 2 +- .../Magento/Theme/Model/Layout/Config/SchemaLocator.php | 2 +- app/code/Magento/Theme/Model/Layout/Source/Layout.php | 2 +- app/code/Magento/Theme/Model/PageLayout/Config/Builder.php | 2 +- app/code/Magento/Theme/Model/ResourceModel/Design.php | 2 +- .../Magento/Theme/Model/ResourceModel/Design/Collection.php | 2 +- .../Magento/Theme/Model/ResourceModel/Design/Config.php | 2 +- .../Theme/Model/ResourceModel/Design/Config/Collection.php | 2 +- .../Model/ResourceModel/Design/Config/Scope/Collection.php | 2 +- app/code/Magento/Theme/Model/ResourceModel/Theme.php | 2 +- .../Magento/Theme/Model/ResourceModel/Theme/Collection.php | 2 +- .../Model/ResourceModel/Theme/Customization/Update.php | 2 +- .../Theme/Model/ResourceModel/Theme/Data/Collection.php | 2 +- app/code/Magento/Theme/Model/ResourceModel/Theme/File.php | 2 +- .../Theme/Model/ResourceModel/Theme/File/Collection.php | 2 +- .../Theme/Model/ResourceModel/Theme/Grid/Collection.php | 2 +- app/code/Magento/Theme/Model/Theme.php | 2 +- app/code/Magento/Theme/Model/Theme/Collection.php | 2 +- app/code/Magento/Theme/Model/Theme/Customization/Config.php | 2 +- .../Theme/Model/Theme/Customization/File/CustomCss.php | 2 +- app/code/Magento/Theme/Model/Theme/Data.php | 2 +- app/code/Magento/Theme/Model/Theme/Data/Collection.php | 2 +- app/code/Magento/Theme/Model/Theme/Domain/Physical.php | 2 +- app/code/Magento/Theme/Model/Theme/Domain/Staging.php | 2 +- app/code/Magento/Theme/Model/Theme/Domain/Virtual.php | 2 +- app/code/Magento/Theme/Model/Theme/File.php | 2 +- app/code/Magento/Theme/Model/Theme/FileProvider.php | 2 +- app/code/Magento/Theme/Model/Theme/Image/Path.php | 2 +- app/code/Magento/Theme/Model/Theme/Plugin/Registration.php | 2 +- app/code/Magento/Theme/Model/Theme/Registration.php | 2 +- app/code/Magento/Theme/Model/Theme/Resolver.php | 2 +- app/code/Magento/Theme/Model/Theme/SingleFile.php | 2 +- app/code/Magento/Theme/Model/Theme/Source/Theme.php | 2 +- .../Magento/Theme/Model/Theme/ThemeDependencyChecker.php | 2 +- app/code/Magento/Theme/Model/Theme/ThemePackageInfo.php | 2 +- app/code/Magento/Theme/Model/Theme/ThemeProvider.php | 2 +- app/code/Magento/Theme/Model/Theme/ThemeUninstaller.php | 2 +- app/code/Magento/Theme/Model/ThemeValidator.php | 2 +- app/code/Magento/Theme/Model/Uploader/Service.php | 2 +- app/code/Magento/Theme/Model/Url/Plugin/Signature.php | 2 +- app/code/Magento/Theme/Model/View/Design.php | 2 +- app/code/Magento/Theme/Model/Wysiwyg/Storage.php | 2 +- .../Theme/Observer/ApplyThemeCustomizationObserver.php | 2 +- .../Magento/Theme/Observer/CheckThemeIsAssignedObserver.php | 2 +- .../Theme/Observer/CleanThemeRelatedContentObserver.php | 2 +- app/code/Magento/Theme/Setup/InstallData.php | 2 +- app/code/Magento/Theme/Setup/InstallSchema.php | 2 +- app/code/Magento/Theme/Setup/RecurringData.php | 2 +- app/code/Magento/Theme/Setup/UpgradeData.php | 2 +- .../Block/Adminhtml/Design/Config/Edit/BackButtonTest.php | 2 +- .../Block/Adminhtml/Design/Config/Edit/SaveButtonTest.php | 2 +- .../Unit/Block/Adminhtml/Design/Config/Edit/ScopeTest.php | 2 +- .../System/Design/Theme/Edit/Form/Element/FileTest.php | 2 +- .../Block/Adminhtml/System/Design/Theme/Edit/FormTest.php | 2 +- .../Block/Adminhtml/System/Design/Theme/Tab/CssTest.php | 2 +- .../Unit/Block/Adminhtml/System/Design/Theme/Tab/JsTest.php | 2 +- .../Block/Adminhtml/System/Design/Theme/TabAbstractTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Wysiwyg/Files/ContentTest.php | 2 +- .../Test/Unit/Block/Adminhtml/Wysiwyg/Files/TreeTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Block/Html/FooterTest.php | 2 +- .../Magento/Theme/Test/Unit/Block/Html/Header/LogoTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Block/Html/HeaderTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Block/Html/TitleTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Block/Html/TopmenuTest.php | 2 +- .../Test/Unit/Console/Command/ThemeUninstallCommandTest.php | 2 +- .../Unit/Controller/Adminhtml/Design/Config/EditTest.php | 2 +- .../Adminhtml/Design/Config/FileUploader/SaveTest.php | 2 +- .../Unit/Controller/Adminhtml/Design/Config/IndexTest.php | 2 +- .../Unit/Controller/Adminhtml/Design/Config/SaveTest.php | 2 +- .../Controller/Adminhtml/System/Design/Theme/DeleteTest.php | 2 +- .../Adminhtml/System/Design/Theme/DownloadCssTest.php | 2 +- .../Adminhtml/System/Design/Theme/DownloadCustomCssTest.php | 2 +- .../Controller/Adminhtml/System/Design/Theme/EditTest.php | 2 +- .../Controller/Adminhtml/System/Design/Theme/GridTest.php | 2 +- .../Controller/Adminhtml/System/Design/Theme/IndexTest.php | 2 +- .../Controller/Adminhtml/System/Design/Theme/SaveTest.php | 2 +- .../Adminhtml/System/Design/Theme/UploadCssTest.php | 2 +- .../Adminhtml/System/Design/Theme/UploadJsTest.php | 2 +- .../Unit/Controller/Adminhtml/System/Design/ThemeTest.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/ContentsTest.php | 2 +- .../System/Design/Wysiwyg/Files/DeleteFilesTest.php | 2 +- .../System/Design/Wysiwyg/Files/DeleteFolderTest.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/IndexTest.php | 2 +- .../Adminhtml/System/Design/Wysiwyg/Files/OnInsertTest.php | 2 +- .../Theme/Test/Unit/Controller/Result/MessagePluginTest.php | 2 +- .../Magento/Theme/Test/Unit/CustomerData/MessagesTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Helper/StorageTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Helper/ThemeTest.php | 2 +- .../Theme/Test/Unit/Model/Config/CustomizationTest.php | 2 +- .../Magento/Theme/Test/Unit/Model/Config/ValidatorTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Model/ConfigTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Model/CopyServiceTest.php | 2 +- .../Theme/Test/Unit/Model/Data/Design/ConfigFactoryTest.php | 2 +- .../Theme/Test/Unit/Model/Design/Backend/ExceptionsTest.php | 2 +- .../Theme/Test/Unit/Model/Design/Backend/FileTest.php | 2 +- .../Theme/Test/Unit/Model/Design/Backend/ThemeTest.php | 2 +- .../Test/Unit/Model/Design/BackendModelFactoryTest.php | 2 +- .../Model/Design/Config/DataProvider/DataLoaderTest.php | 2 +- .../Model/Design/Config/DataProvider/MetadataLoaderTest.php | 2 +- .../Test/Unit/Model/Design/Config/DataProviderTest.php | 2 +- .../Model/Design/Config/FileUploader/FileProcessorTest.php | 2 +- .../Theme/Test/Unit/Model/Design/Config/PluginTest.php | 2 +- .../Theme/Test/Unit/Model/Design/Config/StorageTest.php | 2 +- .../Test/Unit/Model/Design/Config/ValueCheckerTest.php | 2 +- .../Test/Unit/Model/Design/Config/ValueProcessorTest.php | 2 +- .../Theme/Test/Unit/Model/DesignConfigRepositoryTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Model/DesignTest.php | 2 +- .../Magento/Theme/Test/Unit/Model/Favicon/FaviconTest.php | 2 +- .../Model/Indexer/Design/Config/Plugin/StoreGroupTest.php | 2 +- .../Unit/Model/Indexer/Design/Config/Plugin/StoreTest.php | 2 +- .../Unit/Model/Indexer/Design/Config/Plugin/WebsiteTest.php | 2 +- .../Theme/Test/Unit/Model/Indexer/Design/ConfigTest.php | 2 +- .../Theme/Test/Unit/Model/Layout/Config/ConverterTest.php | 2 +- .../Test/Unit/Model/Layout/Config/SchemaLocatorTest.php | 2 +- .../Test/Unit/Model/Layout/Config/_files/page_layouts.xml | 2 +- .../Magento/Theme/Test/Unit/Model/Layout/ConfigTest.php | 2 +- .../Theme/Test/Unit/Model/Layout/Source/LayoutTest.php | 2 +- .../Theme/Test/Unit/Model/PageLayout/Config/BuilderTest.php | 2 +- .../ResourceModel/Design/Config/Scope/CollectionTest.php | 2 +- .../Magento/Theme/Test/Unit/Model/Theme/CollectionTest.php | 2 +- .../Test/Unit/Model/Theme/Customization/ConfigTest.php | 2 +- .../Unit/Model/Theme/Customization/File/CustomCssTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Model/Theme/DataTest.php | 2 +- .../Theme/Test/Unit/Model/Theme/Domain/PhysicalTest.php | 2 +- .../Theme/Test/Unit/Model/Theme/Domain/StagingTest.php | 2 +- .../Theme/Test/Unit/Model/Theme/Domain/VirtualTest.php | 2 +- .../Theme/Test/Unit/Model/Theme/FileProviderTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Model/Theme/FileTest.php | 2 +- .../Magento/Theme/Test/Unit/Model/Theme/Image/PathTest.php | 2 +- .../Theme/Test/Unit/Model/Theme/Plugin/RegistrationTest.php | 2 +- .../Theme/Test/Unit/Model/Theme/RegistrationTest.php | 2 +- .../Magento/Theme/Test/Unit/Model/Theme/ResolverTest.php | 2 +- .../Magento/Theme/Test/Unit/Model/Theme/SingleFileTest.php | 2 +- .../Theme/Test/Unit/Model/Theme/Source/ThemeTest.php | 2 +- .../Test/Unit/Model/Theme/ThemeDependencyCheckerTest.php | 2 +- .../Theme/Test/Unit/Model/Theme/ThemePackageInfoTest.php | 2 +- .../Theme/Test/Unit/Model/Theme/ThemeProviderTest.php | 2 +- .../Theme/Test/Unit/Model/Theme/ThemeUninstallerTest.php | 2 +- .../Magento/Theme/Test/Unit/Model/Theme/ValidationTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Model/ThemeTest.php | 2 +- .../Magento/Theme/Test/Unit/Model/ThemeValidatorTest.php | 2 +- .../Magento/Theme/Test/Unit/Model/Uploader/ServiceTest.php | 2 +- .../Theme/Test/Unit/Model/Url/Plugin/SignatureTest.php | 2 +- app/code/Magento/Theme/Test/Unit/Model/View/DesignTest.php | 2 +- .../Magento/Theme/Test/Unit/Model/Wysiwyg/StorageTest.php | 2 +- .../Unit/Model/_files/frontend/magento_iphone/theme.xml | 2 +- .../Model/_files/frontend/magento_iphone/theme_invalid.xml | 2 +- .../Unit/Observer/ApplyThemeCustomizationObserverTest.php | 2 +- .../Test/Unit/Observer/CheckThemeIsAssignedObserverTest.php | 2 +- .../Unit/Observer/CleanThemeRelatedContentObserverTest.php | 2 +- .../Design/Config/SearchRobots/ResetButtonTest.php | 2 +- .../Unit/Ui/Component/Listing/Column/EditActionTest.php | 2 +- .../Theme/Ui/Component/Design/Config/DataProvider.php | 2 +- .../Ui/Component/Design/Config/SearchRobots/ResetButton.php | 4 ++-- .../Theme/Ui/Component/Listing/Column/EditAction.php | 2 +- app/code/Magento/Theme/etc/acl.xml | 2 +- app/code/Magento/Theme/etc/adminhtml/di.xml | 2 +- app/code/Magento/Theme/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Theme/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Theme/etc/config.xml | 4 ++-- app/code/Magento/Theme/etc/di.xml | 2 +- app/code/Magento/Theme/etc/events.xml | 2 +- app/code/Magento/Theme/etc/extension_attributes.xml | 2 +- app/code/Magento/Theme/etc/frontend/di.xml | 2 +- app/code/Magento/Theme/etc/frontend/events.xml | 2 +- app/code/Magento/Theme/etc/frontend/sections.xml | 2 +- app/code/Magento/Theme/etc/indexer.xml | 2 +- app/code/Magento/Theme/etc/module.xml | 2 +- app/code/Magento/Theme/etc/mview.xml | 2 +- app/code/Magento/Theme/i18n/en_US.csv | 2 +- app/code/Magento/Theme/registration.php | 2 +- .../layout/adminhtml_system_design_theme_block.xml | 2 +- .../adminhtml/layout/adminhtml_system_design_theme_edit.xml | 2 +- .../adminhtml/layout/adminhtml_system_design_theme_grid.xml | 2 +- .../layout/adminhtml_system_design_theme_index.xml | 2 +- .../adminhtml_system_design_wysiwyg_files_contents.xml | 2 +- .../layout/adminhtml_system_design_wysiwyg_files_index.xml | 2 +- .../view/adminhtml/layout/theme_design_config_edit.xml | 2 +- .../view/adminhtml/layout/theme_design_config_index.xml | 2 +- app/code/Magento/Theme/view/adminhtml/layouts.xml | 2 +- .../Theme/view/adminhtml/page_layout/admin-1column.xml | 2 +- .../view/adminhtml/page_layout/admin-2columns-left.xml | 2 +- .../Theme/view/adminhtml/page_layout/admin-empty.xml | 2 +- .../Theme/view/adminhtml/page_layout/admin-login.xml | 2 +- app/code/Magento/Theme/view/adminhtml/requirejs-config.js | 2 +- .../Theme/view/adminhtml/templates/browser/content.phtml | 2 +- .../view/adminhtml/templates/browser/content/files.phtml | 2 +- .../view/adminhtml/templates/browser/content/uploader.phtml | 2 +- .../view/adminhtml/templates/design/config/edit/scope.phtml | 2 +- .../Magento/Theme/view/adminhtml/templates/tabs/css.phtml | 2 +- .../Theme/view/adminhtml/templates/tabs/fieldset/js.phtml | 2 +- .../Magento/Theme/view/adminhtml/templates/tabs/js.phtml | 2 +- app/code/Magento/Theme/view/adminhtml/templates/title.phtml | 2 +- .../view/adminhtml/ui_component/design_config_form.xml | 2 +- .../view/adminhtml/ui_component/design_config_listing.xml | 2 +- app/code/Magento/Theme/view/adminhtml/web/css/theme.css | 2 +- app/code/Magento/Theme/view/adminhtml/web/js/bootstrap.js | 4 ++-- .../Magento/Theme/view/adminhtml/web/js/custom-js-list.js | 2 +- app/code/Magento/Theme/view/adminhtml/web/js/form.js | 4 ++-- .../adminhtml/web/js/form/component/robots-reset-button.js | 2 +- app/code/Magento/Theme/view/adminhtml/web/js/sortable.js | 4 ++-- .../Magento/Theme/view/adminhtml/web/prototype/magento.css | 2 +- .../view/adminhtml/web/template/form/button-field.html | 4 ++-- .../view/adminhtml/web/template/form/element/button.html | 4 ++-- app/code/Magento/Theme/view/base/layouts.xml | 2 +- app/code/Magento/Theme/view/base/page_layout/empty.xml | 2 +- app/code/Magento/Theme/view/base/requirejs-config.js | 2 +- app/code/Magento/Theme/view/base/templates/root.phtml | 2 +- app/code/Magento/Theme/view/frontend/layout/default.xml | 2 +- .../Theme/view/frontend/layout/default_head_blocks.xml | 2 +- .../Magento/Theme/view/frontend/layout/page_calendar.xml | 2 +- app/code/Magento/Theme/view/frontend/layout/print.xml | 2 +- app/code/Magento/Theme/view/frontend/layouts.xml | 2 +- .../Magento/Theme/view/frontend/page_layout/1column.xml | 2 +- .../Theme/view/frontend/page_layout/2columns-left.xml | 2 +- .../Theme/view/frontend/page_layout/2columns-right.xml | 2 +- .../Magento/Theme/view/frontend/page_layout/3columns.xml | 2 +- app/code/Magento/Theme/view/frontend/requirejs-config.js | 2 +- .../Theme/view/frontend/templates/callouts/left_col.phtml | 2 +- .../Theme/view/frontend/templates/callouts/right_col.phtml | 2 +- .../view/frontend/templates/html/absolute_footer.phtml | 2 +- .../Magento/Theme/view/frontend/templates/html/block.phtml | 2 +- .../Theme/view/frontend/templates/html/breadcrumbs.phtml | 2 +- .../Theme/view/frontend/templates/html/bugreport.phtml | 2 +- .../Theme/view/frontend/templates/html/collapsible.phtml | 2 +- .../Theme/view/frontend/templates/html/container.phtml | 2 +- .../Theme/view/frontend/templates/html/copyright.phtml | 2 +- .../Magento/Theme/view/frontend/templates/html/footer.phtml | 2 +- .../Magento/Theme/view/frontend/templates/html/header.phtml | 2 +- .../Theme/view/frontend/templates/html/header/logo.phtml | 2 +- .../Theme/view/frontend/templates/html/messages.phtml | 4 ++-- .../Theme/view/frontend/templates/html/notices.phtml | 2 +- .../Magento/Theme/view/frontend/templates/html/pager.phtml | 2 +- .../Magento/Theme/view/frontend/templates/html/print.phtml | 2 +- .../Theme/view/frontend/templates/html/sections.phtml | 2 +- .../Magento/Theme/view/frontend/templates/html/skip.phtml | 2 +- .../Theme/view/frontend/templates/html/skiptarget.phtml | 2 +- .../Magento/Theme/view/frontend/templates/html/title.phtml | 2 +- .../Theme/view/frontend/templates/html/topmenu.phtml | 2 +- .../Magento/Theme/view/frontend/templates/js/calendar.phtml | 2 +- .../Theme/view/frontend/templates/js/components.phtml | 2 +- .../Magento/Theme/view/frontend/templates/js/cookie.phtml | 2 +- app/code/Magento/Theme/view/frontend/templates/link.phtml | 2 +- .../Magento/Theme/view/frontend/templates/messages.phtml | 2 +- .../Theme/view/frontend/templates/page/js/require_js.phtml | 2 +- .../Magento/Theme/view/frontend/templates/template.phtml | 2 +- app/code/Magento/Theme/view/frontend/templates/text.phtml | 2 +- app/code/Magento/Theme/view/frontend/web/css/tabs.css | 2 +- app/code/Magento/Theme/view/frontend/web/css/validate.css | 4 ++-- app/code/Magento/Theme/view/frontend/web/js/row-builder.js | 2 +- app/code/Magento/Theme/view/frontend/web/js/truncate.js | 4 ++-- .../Magento/Theme/view/frontend/web/js/view/messages.js | 2 +- app/code/Magento/Theme/view/frontend/web/menu.js | 4 ++-- .../Magento/Theme/view/frontend/web/prototype/magento.css | 2 +- .../Magento/Translation/App/Config/Type/Translation.php | 2 +- app/code/Magento/Translation/Block/Html/Head/Config.php | 2 +- app/code/Magento/Translation/Block/Js.php | 2 +- .../Console/Command/UninstallLanguageCommand.php | 2 +- app/code/Magento/Translation/Controller/Ajax/Index.php | 2 +- app/code/Magento/Translation/Model/FileManager.php | 2 +- app/code/Magento/Translation/Model/Inline/CacheManager.php | 2 +- app/code/Magento/Translation/Model/Inline/Config.php | 2 +- app/code/Magento/Translation/Model/Inline/Parser.php | 2 +- app/code/Magento/Translation/Model/Js/Config.php | 2 +- .../Magento/Translation/Model/Js/Config/Source/Strategy.php | 2 +- app/code/Magento/Translation/Model/Js/DataProvider.php | 2 +- .../Magento/Translation/Model/Js/DataProviderInterface.php | 2 +- app/code/Magento/Translation/Model/Js/PreProcessor.php | 2 +- app/code/Magento/Translation/Model/Json/PreProcessor.php | 2 +- .../Magento/Translation/Model/ResourceModel/StringUtils.php | 2 +- .../Magento/Translation/Model/ResourceModel/Translate.php | 2 +- .../Translation/Model/Source/InitialTranslationSource.php | 2 +- app/code/Magento/Translation/Model/StringUtils.php | 2 +- app/code/Magento/Translation/Setup/InstallSchema.php | 2 +- .../Test/Unit/App/Config/Type/TranslationTest.php | 2 +- app/code/Magento/Translation/Test/Unit/Block/JsTest.php | 2 +- .../Unit/Console/Command/UninstallLanguageCommandTest.php | 2 +- .../Magento/Translation/Test/Unit/Model/FileManagerTest.php | 2 +- .../Translation/Test/Unit/Model/Inline/CacheManagerTest.php | 2 +- .../Translation/Test/Unit/Model/Inline/ConfigTest.php | 2 +- .../Translation/Test/Unit/Model/Inline/ParserTest.php | 2 +- .../Test/Unit/Model/Js/Config/Source/StrategyTest.php | 2 +- .../Magento/Translation/Test/Unit/Model/Js/ConfigTest.php | 2 +- .../Translation/Test/Unit/Model/Js/DataProviderTest.php | 2 +- .../Translation/Test/Unit/Model/Js/PreProcessorTest.php | 2 +- .../Translation/Test/Unit/Model/Json/PreProcessorTest.php | 2 +- .../Test/Unit/Model/Source/InitialTranslationSourceTest.php | 2 +- app/code/Magento/Translation/etc/adminhtml/di.xml | 2 +- app/code/Magento/Translation/etc/adminhtml/routes.xml | 4 ++-- app/code/Magento/Translation/etc/adminhtml/system.xml | 2 +- app/code/Magento/Translation/etc/cache.xml | 2 +- app/code/Magento/Translation/etc/config.xml | 2 +- app/code/Magento/Translation/etc/di.xml | 2 +- app/code/Magento/Translation/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Translation/etc/module.xml | 2 +- app/code/Magento/Translation/registration.php | 2 +- .../view/adminhtml/templates/translate_inline.phtml | 2 +- .../Magento/Translation/view/base/templates/translate.phtml | 4 ++-- .../Magento/Translation/view/base/web/js/i18n-config.js | 2 +- .../Magento/Translation/view/frontend/requirejs-config.js | 2 +- .../view/frontend/templates/translate_inline.phtml | 2 +- app/code/Magento/Translation/view/frontend/web/add-class.js | 2 +- app/code/Magento/Ui/Api/BookmarkManagementInterface.php | 2 +- app/code/Magento/Ui/Api/BookmarkRepositoryInterface.php | 2 +- app/code/Magento/Ui/Api/Data/BookmarkExtensionInterface.php | 2 +- app/code/Magento/Ui/Api/Data/BookmarkInterface.php | 2 +- .../Magento/Ui/Api/Data/BookmarkSearchResultsInterface.php | 2 +- app/code/Magento/Ui/Block/Component/StepsWizard.php | 2 +- .../Magento/Ui/Block/Component/StepsWizard/StepAbstract.php | 2 +- .../Ui/Block/Component/StepsWizard/StepInterface.php | 2 +- app/code/Magento/Ui/Block/Logger.php | 2 +- app/code/Magento/Ui/Component/AbstractComponent.php | 2 +- app/code/Magento/Ui/Component/Action.php | 2 +- app/code/Magento/Ui/Component/Bookmark.php | 2 +- app/code/Magento/Ui/Component/Container.php | 2 +- app/code/Magento/Ui/Component/Control/Action.php | 2 +- app/code/Magento/Ui/Component/Control/ActionPool.php | 2 +- app/code/Magento/Ui/Component/Control/Button.php | 2 +- app/code/Magento/Ui/Component/Control/Container.php | 2 +- app/code/Magento/Ui/Component/Control/Item.php | 2 +- app/code/Magento/Ui/Component/Control/Link.php | 2 +- app/code/Magento/Ui/Component/Control/SplitButton.php | 2 +- app/code/Magento/Ui/Component/DataSource.php | 2 +- app/code/Magento/Ui/Component/DynamicRows.php | 2 +- app/code/Magento/Ui/Component/ExportButton.php | 2 +- app/code/Magento/Ui/Component/Filters.php | 2 +- app/code/Magento/Ui/Component/Filters/FilterModifier.php | 2 +- .../Magento/Ui/Component/Filters/Type/AbstractFilter.php | 2 +- app/code/Magento/Ui/Component/Filters/Type/Date.php | 2 +- app/code/Magento/Ui/Component/Filters/Type/DateRange.php | 2 +- app/code/Magento/Ui/Component/Filters/Type/Input.php | 2 +- app/code/Magento/Ui/Component/Filters/Type/Range.php | 2 +- app/code/Magento/Ui/Component/Filters/Type/Search.php | 2 +- app/code/Magento/Ui/Component/Filters/Type/Select.php | 2 +- app/code/Magento/Ui/Component/Form.php | 2 +- app/code/Magento/Ui/Component/Form/AttributeMapper.php | 2 +- app/code/Magento/Ui/Component/Form/Collection.php | 2 +- .../Magento/Ui/Component/Form/Element/AbstractElement.php | 2 +- .../Ui/Component/Form/Element/AbstractOptionsField.php | 2 +- app/code/Magento/Ui/Component/Form/Element/ActionDelete.php | 2 +- app/code/Magento/Ui/Component/Form/Element/Checkbox.php | 2 +- app/code/Magento/Ui/Component/Form/Element/CheckboxSet.php | 2 +- .../Ui/Component/Form/Element/DataType/AbstractDataType.php | 2 +- .../Magento/Ui/Component/Form/Element/DataType/Boolean.php | 2 +- .../Component/Form/Element/DataType/DataTypeInterface.php | 2 +- .../Magento/Ui/Component/Form/Element/DataType/Date.php | 2 +- .../Magento/Ui/Component/Form/Element/DataType/Email.php | 2 +- .../Magento/Ui/Component/Form/Element/DataType/Media.php | 2 +- .../Magento/Ui/Component/Form/Element/DataType/Number.php | 2 +- .../Magento/Ui/Component/Form/Element/DataType/Password.php | 2 +- .../Magento/Ui/Component/Form/Element/DataType/Price.php | 2 +- .../Magento/Ui/Component/Form/Element/DataType/Text.php | 2 +- .../Magento/Ui/Component/Form/Element/ElementInterface.php | 2 +- app/code/Magento/Ui/Component/Form/Element/Hidden.php | 2 +- app/code/Magento/Ui/Component/Form/Element/Input.php | 2 +- app/code/Magento/Ui/Component/Form/Element/MultiSelect.php | 2 +- app/code/Magento/Ui/Component/Form/Element/Multiline.php | 2 +- app/code/Magento/Ui/Component/Form/Element/Radio.php | 2 +- app/code/Magento/Ui/Component/Form/Element/RadioSet.php | 2 +- app/code/Magento/Ui/Component/Form/Element/Range.php | 2 +- app/code/Magento/Ui/Component/Form/Element/Select.php | 2 +- app/code/Magento/Ui/Component/Form/Element/Textarea.php | 2 +- app/code/Magento/Ui/Component/Form/Element/Wysiwyg.php | 2 +- app/code/Magento/Ui/Component/Form/Field.php | 2 +- app/code/Magento/Ui/Component/Form/Fieldset.php | 2 +- app/code/Magento/Ui/Component/Form/Fieldset/Factory.php | 2 +- app/code/Magento/Ui/Component/HtmlContent.php | 2 +- app/code/Magento/Ui/Component/Layout.php | 2 +- app/code/Magento/Ui/Component/Layout/Tabs.php | 2 +- app/code/Magento/Ui/Component/Layout/Tabs/Nav.php | 2 +- app/code/Magento/Ui/Component/Layout/Tabs/Tab.php | 2 +- app/code/Magento/Ui/Component/Layout/Tabs/TabInterface.php | 2 +- app/code/Magento/Ui/Component/Layout/Tabs/TabWrapper.php | 2 +- app/code/Magento/Ui/Component/Listing.php | 2 +- app/code/Magento/Ui/Component/Listing/Columns.php | 2 +- app/code/Magento/Ui/Component/Listing/Columns/Column.php | 2 +- .../Ui/Component/Listing/Columns/ColumnInterface.php | 2 +- app/code/Magento/Ui/Component/Listing/Columns/Date.php | 2 +- app/code/Magento/Ui/Component/Listing/RowInterface.php | 2 +- app/code/Magento/Ui/Component/MassAction.php | 2 +- app/code/Magento/Ui/Component/MassAction/Columns/Column.php | 2 +- app/code/Magento/Ui/Component/MassAction/Filter.php | 2 +- app/code/Magento/Ui/Component/Modal.php | 2 +- app/code/Magento/Ui/Component/Paging.php | 2 +- app/code/Magento/Ui/Component/Wrapper/Block.php | 2 +- app/code/Magento/Ui/Component/Wrapper/UiComponent.php | 2 +- app/code/Magento/Ui/Component/Wysiwyg/Config.php | 2 +- app/code/Magento/Ui/Component/Wysiwyg/ConfigInterface.php | 2 +- app/code/Magento/Ui/Controller/Adminhtml/AbstractAction.php | 2 +- .../Magento/Ui/Controller/Adminhtml/Bookmark/Delete.php | 2 +- app/code/Magento/Ui/Controller/Adminhtml/Bookmark/Save.php | 2 +- .../Magento/Ui/Controller/Adminhtml/Export/GridToCsv.php | 2 +- .../Magento/Ui/Controller/Adminhtml/Export/GridToXml.php | 2 +- app/code/Magento/Ui/Controller/Adminhtml/Index/Render.php | 2 +- .../Magento/Ui/Controller/Adminhtml/Index/Render/Handle.php | 2 +- app/code/Magento/Ui/Controller/UiActionInterface.php | 2 +- app/code/Magento/Ui/DataProvider/AbstractDataProvider.php | 2 +- app/code/Magento/Ui/DataProvider/AddFieldToCollection.php | 2 +- .../Ui/DataProvider/AddFieldToCollectionInterface.php | 2 +- .../Ui/DataProvider/AddFilterToCollectionInterface.php | 2 +- app/code/Magento/Ui/DataProvider/EavValidationRules.php | 2 +- app/code/Magento/Ui/DataProvider/Mapper/FormElement.php | 2 +- app/code/Magento/Ui/DataProvider/Mapper/MapperInterface.php | 2 +- app/code/Magento/Ui/DataProvider/Mapper/MetaProperties.php | 2 +- app/code/Magento/Ui/DataProvider/Modifier/Dummy.php | 2 +- .../Magento/Ui/DataProvider/Modifier/ModifierFactory.php | 2 +- .../Magento/Ui/DataProvider/Modifier/ModifierInterface.php | 2 +- app/code/Magento/Ui/DataProvider/Modifier/Pool.php | 2 +- app/code/Magento/Ui/DataProvider/Modifier/PoolInterface.php | 2 +- app/code/Magento/Ui/Model/Bookmark.php | 2 +- app/code/Magento/Ui/Model/BookmarkManagement.php | 2 +- app/code/Magento/Ui/Model/Config.php | 2 +- app/code/Magento/Ui/Model/Export/ConvertToCsv.php | 2 +- app/code/Magento/Ui/Model/Export/ConvertToXml.php | 2 +- app/code/Magento/Ui/Model/Export/MetadataProvider.php | 2 +- app/code/Magento/Ui/Model/Export/SearchResultIterator.php | 2 +- app/code/Magento/Ui/Model/Manager.php | 2 +- app/code/Magento/Ui/Model/ResourceModel/Bookmark.php | 2 +- .../Magento/Ui/Model/ResourceModel/Bookmark/Collection.php | 2 +- .../Magento/Ui/Model/ResourceModel/BookmarkRepository.php | 2 +- app/code/Magento/Ui/Setup/InstallSchema.php | 2 +- .../Ui/TemplateEngine/Xhtml/Compiler/Element/Content.php | 2 +- .../Ui/TemplateEngine/Xhtml/Compiler/Element/Form.php | 2 +- .../Ui/TemplateEngine/Xhtml/Compiler/Element/Render.php | 2 +- app/code/Magento/Ui/TemplateEngine/Xhtml/Result.php | 2 +- .../Ui/Test/Unit/Component/AbstractComponentTest.php | 2 +- .../Ui/Test/Unit/Component/Control/ActionPoolTest.php | 2 +- .../Magento/Ui/Test/Unit/Component/Control/ActionTest.php | 2 +- .../Magento/Ui/Test/Unit/Component/Control/ButtonTest.php | 2 +- .../Ui/Test/Unit/Component/Control/ContainerTest.php | 2 +- .../Magento/Ui/Test/Unit/Component/Control/LinkTest.php | 2 +- .../Magento/Ui/Test/Unit/Component/ExportButtonTest.php | 2 +- .../Ui/Test/Unit/Component/Filters/FilterModifierTest.php | 2 +- .../Ui/Test/Unit/Component/Filters/Type/DateRangeTest.php | 2 +- .../Ui/Test/Unit/Component/Filters/Type/DateTest.php | 2 +- .../Ui/Test/Unit/Component/Filters/Type/InputTest.php | 2 +- .../Ui/Test/Unit/Component/Filters/Type/RangeTest.php | 2 +- .../Ui/Test/Unit/Component/Filters/Type/SelectTest.php | 2 +- .../Unit/Component/Form/Element/AbstractElementTest.php | 2 +- .../Test/Unit/Component/Form/Element/ActionDeleteTest.php | 2 +- .../Ui/Test/Unit/Component/Form/Element/CheckboxSetTest.php | 2 +- .../Test/Unit/Component/Form/Element/DataType/DateTest.php | 2 +- .../Test/Unit/Component/Form/Element/DataType/MediaTest.php | 2 +- .../Ui/Test/Unit/Component/Form/Element/MultiSelectTest.php | 2 +- .../Ui/Test/Unit/Component/Form/Element/RadioSetTest.php | 2 +- .../Ui/Test/Unit/Component/Form/Element/SelectTest.php | 2 +- .../Ui/Test/Unit/Component/Form/Element/WysiwygTest.php | 2 +- .../Ui/Test/Unit/Component/Form/Field/MultilineTest.php | 2 +- app/code/Magento/Ui/Test/Unit/Component/Form/FieldTest.php | 2 +- app/code/Magento/Ui/Test/Unit/Component/FormTest.php | 2 +- .../Ui/Test/Unit/Component/Listing/Columns/ColumnTest.php | 2 +- .../Ui/Test/Unit/Component/Listing/Columns/DateTest.php | 2 +- .../Magento/Ui/Test/Unit/Component/Listing/ColumnsTest.php | 2 +- app/code/Magento/Ui/Test/Unit/Component/ListingTest.php | 2 +- .../Test/Unit/Component/MassAction/Columns/ColumnTest.php | 2 +- .../Ui/Test/Unit/Component/MassAction/FilterTest.php | 2 +- app/code/Magento/Ui/Test/Unit/Component/MassActionTest.php | 2 +- app/code/Magento/Ui/Test/Unit/Component/PagingTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Export/GridToCsvTest.php | 2 +- .../Test/Unit/Controller/Adminhtml/Export/GridToXmlTest.php | 2 +- .../Unit/Controller/Adminhtml/Index/Render/HandleTest.php | 2 +- .../Ui/Test/Unit/Controller/Adminhtml/Index/RenderTest.php | 2 +- .../Ui/Test/Unit/DataProvider/EavValidationRulesTest.php | 2 +- .../Magento/Ui/Test/Unit/DataProvider/Modifier/PoolTest.php | 2 +- .../Magento/Ui/Test/Unit/Model/BookmarkManagementTest.php | 2 +- .../Magento/Ui/Test/Unit/Model/Export/ConvertToCsvTest.php | 2 +- .../Magento/Ui/Test/Unit/Model/Export/ConvertToXmlTest.php | 2 +- .../Ui/Test/Unit/Model/Export/MetadataProviderTest.php | 2 +- app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php | 2 +- .../Unit/Model/ResourceModel/BookmarkRepositoryTest.php | 2 +- app/code/Magento/Ui/etc/adminhtml/di.xml | 4 ++-- app/code/Magento/Ui/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Ui/etc/adminhtml/system.xml | 2 +- app/code/Magento/Ui/etc/config.xml | 2 +- app/code/Magento/Ui/etc/data_source.xsd | 2 +- app/code/Magento/Ui/etc/di.xml | 2 +- app/code/Magento/Ui/etc/module.xml | 2 +- app/code/Magento/Ui/etc/ui_components.xsd | 2 +- app/code/Magento/Ui/etc/ui_configuration.xsd | 2 +- app/code/Magento/Ui/etc/ui_definition.xsd | 2 +- app/code/Magento/Ui/etc/ui_template.xsd | 2 +- app/code/Magento/Ui/registration.php | 2 +- .../adminhtml/web/templates/modal/modal-prompt-content.html | 2 +- app/code/Magento/Ui/view/base/layout/default.xml | 2 +- app/code/Magento/Ui/view/base/requirejs-config.js | 2 +- .../Ui/view/base/templates/container/content/default.phtml | 2 +- .../Magento/Ui/view/base/templates/context/default.phtml | 2 +- .../Ui/view/base/templates/control/button/default.phtml | 2 +- .../Ui/view/base/templates/control/button/split.phtml | 2 +- app/code/Magento/Ui/view/base/templates/form/default.phtml | 2 +- app/code/Magento/Ui/view/base/templates/label/default.phtml | 2 +- .../Ui/view/base/templates/layout/tabs/default.phtml | 2 +- .../Ui/view/base/templates/layout/tabs/nav/default.phtml | 2 +- app/code/Magento/Ui/view/base/templates/logger.phtml | 2 +- app/code/Magento/Ui/view/base/templates/stepswizard.phtml | 2 +- .../Magento/Ui/view/base/ui_component/etc/definition.xml | 2 +- .../base/ui_component/templates/container/default.xhtml | 2 +- .../Ui/view/base/ui_component/templates/export/button.xhtml | 4 ++-- .../view/base/ui_component/templates/form/collapsible.xhtml | 2 +- .../Ui/view/base/ui_component/templates/form/default.xhtml | 2 +- .../view/base/ui_component/templates/listing/default.xhtml | 2 +- app/code/Magento/Ui/view/base/web/js/block-loader.js | 2 +- app/code/Magento/Ui/view/base/web/js/core/app.js | 2 +- .../Magento/Ui/view/base/web/js/core/renderer/layout.js | 2 +- app/code/Magento/Ui/view/base/web/js/core/renderer/types.js | 2 +- .../Ui/view/base/web/js/dynamic-rows/action-delete.js | 2 +- app/code/Magento/Ui/view/base/web/js/dynamic-rows/dnd.js | 2 +- .../Ui/view/base/web/js/dynamic-rows/dynamic-rows-grid.js | 2 +- .../Ui/view/base/web/js/dynamic-rows/dynamic-rows.js | 2 +- app/code/Magento/Ui/view/base/web/js/dynamic-rows/record.js | 2 +- app/code/Magento/Ui/view/base/web/js/form/adapter.js | 4 ++-- app/code/Magento/Ui/view/base/web/js/form/button-adapter.js | 2 +- app/code/Magento/Ui/view/base/web/js/form/client.js | 2 +- .../Magento/Ui/view/base/web/js/form/components/area.js | 2 +- .../Magento/Ui/view/base/web/js/form/components/button.js | 2 +- .../Ui/view/base/web/js/form/components/collection.js | 2 +- .../Ui/view/base/web/js/form/components/collection/item.js | 2 +- .../Magento/Ui/view/base/web/js/form/components/fieldset.js | 2 +- .../Magento/Ui/view/base/web/js/form/components/group.js | 2 +- .../Magento/Ui/view/base/web/js/form/components/html.js | 2 +- .../Ui/view/base/web/js/form/components/insert-form.js | 2 +- .../Ui/view/base/web/js/form/components/insert-listing.js | 2 +- .../Magento/Ui/view/base/web/js/form/components/insert.js | 2 +- app/code/Magento/Ui/view/base/web/js/form/components/tab.js | 2 +- .../Ui/view/base/web/js/form/components/tab_group.js | 2 +- .../Magento/Ui/view/base/web/js/form/element/abstract.js | 2 +- .../Magento/Ui/view/base/web/js/form/element/boolean.js | 2 +- .../Ui/view/base/web/js/form/element/checkbox-set.js | 2 +- .../Magento/Ui/view/base/web/js/form/element/country.js | 2 +- app/code/Magento/Ui/view/base/web/js/form/element/date.js | 2 +- .../Ui/view/base/web/js/form/element/file-uploader.js | 2 +- app/code/Magento/Ui/view/base/web/js/form/element/media.js | 2 +- .../Magento/Ui/view/base/web/js/form/element/multiselect.js | 2 +- .../Magento/Ui/view/base/web/js/form/element/post-code.js | 2 +- app/code/Magento/Ui/view/base/web/js/form/element/region.js | 2 +- app/code/Magento/Ui/view/base/web/js/form/element/select.js | 2 +- .../web/js/form/element/single-checkbox-toggle-notice.js | 2 +- .../base/web/js/form/element/single-checkbox-use-config.js | 2 +- .../Ui/view/base/web/js/form/element/single-checkbox.js | 2 +- app/code/Magento/Ui/view/base/web/js/form/element/text.js | 2 +- .../Magento/Ui/view/base/web/js/form/element/textarea.js | 2 +- .../Magento/Ui/view/base/web/js/form/element/ui-select.js | 2 +- .../Magento/Ui/view/base/web/js/form/element/website.js | 2 +- .../Magento/Ui/view/base/web/js/form/element/wysiwyg.js | 2 +- app/code/Magento/Ui/view/base/web/js/form/form.js | 2 +- app/code/Magento/Ui/view/base/web/js/form/provider.js | 2 +- .../Magento/Ui/view/base/web/js/grid/columns/actions.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/columns/column.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/columns/date.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/columns/link.js | 2 +- .../Magento/Ui/view/base/web/js/grid/columns/multiselect.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/columns/onoff.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/columns/select.js | 2 +- .../Magento/Ui/view/base/web/js/grid/columns/thumbnail.js | 2 +- .../view/base/web/js/grid/controls/bookmarks/bookmarks.js | 2 +- .../Ui/view/base/web/js/grid/controls/bookmarks/storage.js | 2 +- .../Magento/Ui/view/base/web/js/grid/controls/columns.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/data-storage.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/dnd.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/editing/bulk.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/editing/client.js | 2 +- .../Magento/Ui/view/base/web/js/grid/editing/editor-view.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/editing/editor.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/editing/record.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/export.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/filters/chips.js | 2 +- .../Magento/Ui/view/base/web/js/grid/filters/filters.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/filters/range.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/listing.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/massactions.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/paging/paging.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/paging/sizes.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/provider.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/resize.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/search/search.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/sticky/sticky.js | 2 +- app/code/Magento/Ui/view/base/web/js/grid/toolbar.js | 2 +- .../Magento/Ui/view/base/web/js/grid/tree-massactions.js | 2 +- app/code/Magento/Ui/view/base/web/js/lib/collapsible.js | 2 +- app/code/Magento/Ui/view/base/web/js/lib/core/class.js | 2 +- app/code/Magento/Ui/view/base/web/js/lib/core/collection.js | 2 +- .../Magento/Ui/view/base/web/js/lib/core/element/element.js | 2 +- .../Magento/Ui/view/base/web/js/lib/core/element/links.js | 2 +- app/code/Magento/Ui/view/base/web/js/lib/core/events.js | 2 +- .../Magento/Ui/view/base/web/js/lib/core/storage/local.js | 2 +- app/code/Magento/Ui/view/base/web/js/lib/key-codes.js | 2 +- .../view/base/web/js/lib/knockout/bindings/after-render.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/autoselect.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/bind-html.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/bootstrap.js | 2 +- .../view/base/web/js/lib/knockout/bindings/collapsible.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/datepicker.js | 2 +- .../view/base/web/js/lib/knockout/bindings/fadeVisible.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/i18n.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/keyboard.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/mage-init.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/optgroup.js | 4 ++-- .../view/base/web/js/lib/knockout/bindings/outer_click.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/range.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/resizable.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/scope.js | 2 +- .../base/web/js/lib/knockout/bindings/simple-checked.js | 2 +- .../view/base/web/js/lib/knockout/bindings/staticChecked.js | 2 +- .../Ui/view/base/web/js/lib/knockout/bindings/tooltip.js | 2 +- .../Magento/Ui/view/base/web/js/lib/knockout/bootstrap.js | 2 +- .../view/base/web/js/lib/knockout/extender/bound-nodes.js | 2 +- .../base/web/js/lib/knockout/extender/observable_array.js | 2 +- .../Ui/view/base/web/js/lib/knockout/template/engine.js | 2 +- .../Ui/view/base/web/js/lib/knockout/template/loader.js | 2 +- .../base/web/js/lib/knockout/template/observable_source.js | 2 +- .../Ui/view/base/web/js/lib/knockout/template/renderer.js | 2 +- .../Magento/Ui/view/base/web/js/lib/registry/registry.js | 2 +- app/code/Magento/Ui/view/base/web/js/lib/spinner.js | 2 +- app/code/Magento/Ui/view/base/web/js/lib/step-wizard.js | 2 +- .../Magento/Ui/view/base/web/js/lib/validation/rules.js | 2 +- .../Magento/Ui/view/base/web/js/lib/validation/utils.js | 4 ++-- .../Magento/Ui/view/base/web/js/lib/validation/validator.js | 2 +- .../Magento/Ui/view/base/web/js/lib/view/utils/async.js | 2 +- .../Magento/Ui/view/base/web/js/lib/view/utils/bindings.js | 2 +- .../Ui/view/base/web/js/lib/view/utils/dom-observer.js | 2 +- app/code/Magento/Ui/view/base/web/js/lib/view/utils/raf.js | 2 +- app/code/Magento/Ui/view/base/web/js/modal/alert.js | 2 +- app/code/Magento/Ui/view/base/web/js/modal/confirm.js | 2 +- .../Magento/Ui/view/base/web/js/modal/modal-component.js | 2 +- app/code/Magento/Ui/view/base/web/js/modal/modal.js | 2 +- app/code/Magento/Ui/view/base/web/js/modal/modalToggle.js | 2 +- app/code/Magento/Ui/view/base/web/js/modal/prompt.js | 2 +- .../Magento/Ui/view/base/web/js/timeline/timeline-view.js | 2 +- app/code/Magento/Ui/view/base/web/js/timeline/timeline.js | 2 +- app/code/Magento/Ui/view/base/web/templates/area.html | 4 ++-- .../Magento/Ui/view/base/web/templates/block-loader.html | 4 ++-- app/code/Magento/Ui/view/base/web/templates/collection.html | 2 +- .../Magento/Ui/view/base/web/templates/content/content.html | 4 ++-- .../web/templates/dynamic-rows/cells/action-delete.html | 4 ++-- .../Ui/view/base/web/templates/dynamic-rows/cells/dnd.html | 2 +- .../Ui/view/base/web/templates/dynamic-rows/cells/text.html | 4 ++-- .../base/web/templates/dynamic-rows/cells/thumbnail.html | 4 ++-- .../web/templates/dynamic-rows/templates/collapsible.html | 2 +- .../base/web/templates/dynamic-rows/templates/default.html | 2 +- .../base/web/templates/dynamic-rows/templates/grid.html | 4 ++-- .../Magento/Ui/view/base/web/templates/form/collection.html | 2 +- .../web/templates/form/components/button/container.html | 2 +- .../base/web/templates/form/components/button/simple.html | 4 ++-- .../view/base/web/templates/form/components/collection.html | 2 +- .../web/templates/form/components/collection/preview.html | 4 ++-- .../Ui/view/base/web/templates/form/components/complex.html | 2 +- .../base/web/templates/form/components/single/checkbox.html | 2 +- .../base/web/templates/form/components/single/field.html | 2 +- .../base/web/templates/form/components/single/radio.html | 2 +- .../base/web/templates/form/components/single/switcher.html | 2 +- .../Ui/view/base/web/templates/form/element/button.html | 4 ++-- .../view/base/web/templates/form/element/checkbox-set.html | 4 ++-- .../Ui/view/base/web/templates/form/element/checkbox.html | 2 +- .../Ui/view/base/web/templates/form/element/date.html | 2 +- .../Ui/view/base/web/templates/form/element/email.html | 2 +- .../web/templates/form/element/helper/fallback-reset.html | 2 +- .../base/web/templates/form/element/helper/service.html | 2 +- .../base/web/templates/form/element/helper/tooltip.html | 2 +- .../Ui/view/base/web/templates/form/element/hidden.html | 2 +- .../Ui/view/base/web/templates/form/element/input.html | 2 +- .../Ui/view/base/web/templates/form/element/media.html | 2 +- .../view/base/web/templates/form/element/multiselect.html | 2 +- .../Ui/view/base/web/templates/form/element/preview.html | 2 +- .../Ui/view/base/web/templates/form/element/price.html | 4 ++-- .../Ui/view/base/web/templates/form/element/radio.html | 2 +- .../Ui/view/base/web/templates/form/element/select.html | 2 +- .../view/base/web/templates/form/element/split-button.html | 4 ++-- .../Ui/view/base/web/templates/form/element/switcher.html | 2 +- .../Ui/view/base/web/templates/form/element/text.html | 2 +- .../Ui/view/base/web/templates/form/element/textDate.html | 2 +- .../Ui/view/base/web/templates/form/element/textarea.html | 2 +- .../base/web/templates/form/element/uploader/preview.html | 2 +- .../base/web/templates/form/element/uploader/uploader.html | 2 +- .../Ui/view/base/web/templates/form/element/wysiwyg.html | 2 +- app/code/Magento/Ui/view/base/web/templates/form/field.html | 2 +- .../Magento/Ui/view/base/web/templates/form/fieldset.html | 2 +- .../Magento/Ui/view/base/web/templates/form/insert.html | 2 +- .../Magento/Ui/view/base/web/templates/grid/actions.html | 2 +- .../Ui/view/base/web/templates/grid/cells/actions.html | 2 +- .../Magento/Ui/view/base/web/templates/grid/cells/html.html | 4 ++-- .../Magento/Ui/view/base/web/templates/grid/cells/link.html | 2 +- .../Ui/view/base/web/templates/grid/cells/multiselect.html | 4 ++-- .../Ui/view/base/web/templates/grid/cells/onoff.html | 2 +- .../Magento/Ui/view/base/web/templates/grid/cells/text.html | 4 ++-- .../Ui/view/base/web/templates/grid/cells/thumbnail.html | 4 ++-- .../base/web/templates/grid/cells/thumbnail/preview.html | 2 +- .../view/base/web/templates/grid/columns/multiselect.html | 4 ++-- .../Ui/view/base/web/templates/grid/columns/onoff.html | 2 +- .../Ui/view/base/web/templates/grid/columns/text.html | 2 +- .../web/templates/grid/controls/bookmarks/bookmarks.html | 2 +- .../base/web/templates/grid/controls/bookmarks/view.html | 4 ++-- .../Ui/view/base/web/templates/grid/controls/columns.html | 4 ++-- .../Ui/view/base/web/templates/grid/editing/bulk.html | 2 +- .../Ui/view/base/web/templates/grid/editing/field.html | 2 +- .../base/web/templates/grid/editing/header-buttons.html | 2 +- .../view/base/web/templates/grid/editing/row-buttons.html | 4 ++-- .../Ui/view/base/web/templates/grid/editing/row.html | 2 +- .../Ui/view/base/web/templates/grid/exportButton.html | 4 ++-- .../Ui/view/base/web/templates/grid/filters/chips.html | 4 ++-- .../base/web/templates/grid/filters/elements/group.html | 2 +- .../templates/grid/filters/elements/ui-select-optgroup.html | 4 ++-- .../base/web/templates/grid/filters/elements/ui-select.html | 4 ++-- .../Ui/view/base/web/templates/grid/filters/field.html | 2 +- .../Ui/view/base/web/templates/grid/filters/filters.html | 2 +- .../Magento/Ui/view/base/web/templates/grid/listing.html | 4 ++-- .../Ui/view/base/web/templates/grid/paging-total.html | 2 +- .../web/templates/grid/paging/paging-detailed-total.html | 2 +- .../Ui/view/base/web/templates/grid/paging/paging.html | 2 +- .../Ui/view/base/web/templates/grid/paging/sizes.html | 4 ++-- .../Ui/view/base/web/templates/grid/search/search.html | 2 +- .../Ui/view/base/web/templates/grid/sticky/filters.html | 2 +- .../Ui/view/base/web/templates/grid/sticky/listing.html | 4 ++-- .../Ui/view/base/web/templates/grid/sticky/sticky.html | 2 +- .../Magento/Ui/view/base/web/templates/grid/submenu.html | 2 +- .../Magento/Ui/view/base/web/templates/grid/toolbar.html | 2 +- .../Ui/view/base/web/templates/grid/tree-massactions.html | 2 +- .../Ui/view/base/web/templates/grid/view-switcher.html | 2 +- .../Magento/Ui/view/base/web/templates/group/group.html | 2 +- .../Ui/view/base/web/templates/modal/modal-component.html | 2 +- .../Ui/view/base/web/templates/modal/modal-custom.html | 2 +- .../Ui/view/base/web/templates/modal/modal-popup.html | 2 +- .../view/base/web/templates/modal/modal-prompt-content.html | 2 +- .../Ui/view/base/web/templates/modal/modal-slide.html | 2 +- app/code/Magento/Ui/view/base/web/templates/tab.html | 4 ++-- .../Magento/Ui/view/base/web/templates/timeline/record.html | 2 +- .../Ui/view/base/web/templates/timeline/timeline.html | 2 +- .../Magento/Ui/view/base/web/templates/tooltip/tooltip.html | 4 ++-- .../Magento/Ui/view/frontend/web/js/model/messageList.js | 2 +- app/code/Magento/Ui/view/frontend/web/js/model/messages.js | 2 +- app/code/Magento/Ui/view/frontend/web/js/view/messages.js | 2 +- .../Magento/Ui/view/frontend/web/template/messages.html | 2 +- .../view/frontend/web/templates/form/element/checkbox.html | 2 +- .../Ui/view/frontend/web/templates/form/element/date.html | 2 +- .../Ui/view/frontend/web/templates/form/element/email.html | 2 +- .../frontend/web/templates/form/element/helper/tooltip.html | 2 +- .../Ui/view/frontend/web/templates/form/element/input.html | 2 +- .../view/frontend/web/templates/form/element/password.html | 2 +- .../Ui/view/frontend/web/templates/form/element/select.html | 2 +- .../Magento/Ui/view/frontend/web/templates/form/field.html | 2 +- .../Magento/Ui/view/frontend/web/templates/group/group.html | 2 +- app/code/Magento/Ups/Block/Backend/System/CarrierConfig.php | 2 +- app/code/Magento/Ups/Helper/Config.php | 2 +- app/code/Magento/Ups/Model/Carrier.php | 2 +- app/code/Magento/Ups/Model/Config/Source/Container.php | 2 +- app/code/Magento/Ups/Model/Config/Source/DestType.php | 2 +- app/code/Magento/Ups/Model/Config/Source/Freemethod.php | 2 +- app/code/Magento/Ups/Model/Config/Source/Generic.php | 2 +- app/code/Magento/Ups/Model/Config/Source/Method.php | 2 +- app/code/Magento/Ups/Model/Config/Source/OriginShipment.php | 2 +- app/code/Magento/Ups/Model/Config/Source/Pickup.php | 2 +- app/code/Magento/Ups/Model/Config/Source/Type.php | 2 +- app/code/Magento/Ups/Model/Config/Source/Unitofmeasure.php | 2 +- app/code/Magento/Ups/Test/Unit/Helper/ConfigTest.php | 2 +- app/code/Magento/Ups/Test/Unit/Model/CarrierTest.php | 2 +- app/code/Magento/Ups/etc/adminhtml/system.xml | 2 +- app/code/Magento/Ups/etc/config.xml | 2 +- app/code/Magento/Ups/etc/di.xml | 2 +- app/code/Magento/Ups/etc/module.xml | 2 +- app/code/Magento/Ups/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_system_config_edit.xml | 2 +- .../templates/system/shipping/carrier_config.phtml | 2 +- .../Ups/view/frontend/layout/checkout_cart_index.xml | 2 +- .../Ups/view/frontend/layout/checkout_index_index.xml | 2 +- .../web/js/model/shipping-rates-validation-rules.js | 2 +- .../view/frontend/web/js/model/shipping-rates-validator.js | 2 +- .../view/frontend/web/js/view/shipping-rates-validation.js | 2 +- app/code/Magento/UrlRewrite/Block/Catalog/Category/Edit.php | 2 +- app/code/Magento/UrlRewrite/Block/Catalog/Category/Tree.php | 2 +- app/code/Magento/UrlRewrite/Block/Catalog/Edit/Form.php | 2 +- app/code/Magento/UrlRewrite/Block/Catalog/Product/Edit.php | 2 +- app/code/Magento/UrlRewrite/Block/Catalog/Product/Grid.php | 2 +- app/code/Magento/UrlRewrite/Block/Cms/Page/Edit.php | 2 +- app/code/Magento/UrlRewrite/Block/Cms/Page/Edit/Form.php | 2 +- app/code/Magento/UrlRewrite/Block/Cms/Page/Grid.php | 2 +- app/code/Magento/UrlRewrite/Block/Edit.php | 2 +- app/code/Magento/UrlRewrite/Block/Edit/Form.php | 2 +- app/code/Magento/UrlRewrite/Block/GridContainer.php | 2 +- app/code/Magento/UrlRewrite/Block/Link.php | 2 +- .../Block/Plugin/Store/Switcher/SetRedirectUrl.php | 2 +- app/code/Magento/UrlRewrite/Block/Selector.php | 2 +- .../Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite.php | 2 +- .../Controller/Adminhtml/Url/Rewrite/CategoriesJson.php | 2 +- .../Controller/Adminhtml/Url/Rewrite/CmsPageGrid.php | 2 +- .../UrlRewrite/Controller/Adminhtml/Url/Rewrite/Delete.php | 2 +- .../UrlRewrite/Controller/Adminhtml/Url/Rewrite/Edit.php | 2 +- .../UrlRewrite/Controller/Adminhtml/Url/Rewrite/Index.php | 2 +- .../Controller/Adminhtml/Url/Rewrite/ProductGrid.php | 2 +- .../UrlRewrite/Controller/Adminhtml/Url/Rewrite/Save.php | 2 +- app/code/Magento/UrlRewrite/Controller/Router.php | 2 +- app/code/Magento/UrlRewrite/Helper/UrlRewrite.php | 2 +- app/code/Magento/UrlRewrite/Model/OptionProvider.php | 2 +- .../Magento/UrlRewrite/Model/ResourceModel/UrlRewrite.php | 2 +- .../UrlRewrite/Model/ResourceModel/UrlRewriteCollection.php | 2 +- .../Magento/UrlRewrite/Model/Storage/AbstractStorage.php | 2 +- app/code/Magento/UrlRewrite/Model/Storage/DbStorage.php | 2 +- app/code/Magento/UrlRewrite/Model/StorageInterface.php | 2 +- app/code/Magento/UrlRewrite/Model/UrlFinderInterface.php | 2 +- app/code/Magento/UrlRewrite/Model/UrlPersistInterface.php | 2 +- app/code/Magento/UrlRewrite/Model/UrlRewrite.php | 2 +- app/code/Magento/UrlRewrite/Service/V1/Data/UrlRewrite.php | 2 +- app/code/Magento/UrlRewrite/Setup/InstallSchema.php | 2 +- .../UrlRewrite/Test/Unit/Block/Catalog/Edit/FormTest.php | 2 +- .../Unit/Block/Plugin/Store/Switcher/SetRedirectUrlTest.php | 2 +- .../Magento/UrlRewrite/Test/Unit/Controller/RouterTest.php | 2 +- .../Magento/UrlRewrite/Test/Unit/Helper/UrlRewriteTest.php | 2 +- .../Unit/Model/ResourceModel/UrlRewriteCollectionTest.php | 2 +- .../Test/Unit/Model/Storage/AbstractStorageTest.php | 2 +- .../UrlRewrite/Test/Unit/Model/Storage/DbStorageTest.php | 2 +- app/code/Magento/UrlRewrite/etc/acl.xml | 2 +- app/code/Magento/UrlRewrite/etc/adminhtml/menu.xml | 2 +- app/code/Magento/UrlRewrite/etc/adminhtml/routes.xml | 2 +- app/code/Magento/UrlRewrite/etc/config.xml | 2 +- app/code/Magento/UrlRewrite/etc/di.xml | 2 +- app/code/Magento/UrlRewrite/etc/frontend/di.xml | 2 +- app/code/Magento/UrlRewrite/etc/module.xml | 2 +- app/code/Magento/UrlRewrite/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_url_rewrite_index.xml | 2 +- .../UrlRewrite/view/adminhtml/templates/categories.phtml | 2 +- .../Magento/UrlRewrite/view/adminhtml/templates/edit.phtml | 2 +- .../UrlRewrite/view/adminhtml/templates/selector.phtml | 2 +- app/code/Magento/User/Api/Data/UserInterface.php | 2 +- app/code/Magento/User/Block/Adminhtml/Locks.php | 2 +- app/code/Magento/User/Block/Buttons.php | 2 +- app/code/Magento/User/Block/Role.php | 2 +- app/code/Magento/User/Block/Role/Edit.php | 2 +- app/code/Magento/User/Block/Role/Grid/User.php | 2 +- app/code/Magento/User/Block/Role/Tab/Edit.php | 2 +- app/code/Magento/User/Block/Role/Tab/Info.php | 2 +- app/code/Magento/User/Block/Role/Tab/Users.php | 2 +- app/code/Magento/User/Block/User.php | 2 +- app/code/Magento/User/Block/User/Edit.php | 2 +- app/code/Magento/User/Block/User/Edit/Form.php | 2 +- app/code/Magento/User/Block/User/Edit/Tab/Main.php | 2 +- app/code/Magento/User/Block/User/Edit/Tab/Roles.php | 2 +- app/code/Magento/User/Block/User/Edit/Tabs.php | 2 +- app/code/Magento/User/Console/UnlockAdminAccountCommand.php | 2 +- app/code/Magento/User/Controller/Adminhtml/Auth.php | 2 +- .../User/Controller/Adminhtml/Auth/Forgotpassword.php | 2 +- .../User/Controller/Adminhtml/Auth/ResetPassword.php | 2 +- .../User/Controller/Adminhtml/Auth/ResetPasswordPost.php | 2 +- app/code/Magento/User/Controller/Adminhtml/Locks.php | 2 +- app/code/Magento/User/Controller/Adminhtml/Locks/Grid.php | 2 +- app/code/Magento/User/Controller/Adminhtml/Locks/Index.php | 2 +- .../Magento/User/Controller/Adminhtml/Locks/MassUnlock.php | 2 +- app/code/Magento/User/Controller/Adminhtml/User.php | 2 +- app/code/Magento/User/Controller/Adminhtml/User/Delete.php | 2 +- app/code/Magento/User/Controller/Adminhtml/User/Edit.php | 2 +- app/code/Magento/User/Controller/Adminhtml/User/Index.php | 2 +- .../User/Controller/Adminhtml/User/InvalidateToken.php | 2 +- .../Magento/User/Controller/Adminhtml/User/NewAction.php | 2 +- app/code/Magento/User/Controller/Adminhtml/User/Role.php | 2 +- .../Magento/User/Controller/Adminhtml/User/Role/Delete.php | 2 +- .../User/Controller/Adminhtml/User/Role/EditRole.php | 2 +- .../User/Controller/Adminhtml/User/Role/Editrolegrid.php | 2 +- .../Magento/User/Controller/Adminhtml/User/Role/Index.php | 2 +- .../User/Controller/Adminhtml/User/Role/RoleGrid.php | 2 +- .../User/Controller/Adminhtml/User/Role/SaveRole.php | 2 +- .../Magento/User/Controller/Adminhtml/User/RoleGrid.php | 2 +- .../Magento/User/Controller/Adminhtml/User/RolesGrid.php | 2 +- app/code/Magento/User/Controller/Adminhtml/User/Save.php | 2 +- .../Magento/User/Controller/Adminhtml/User/Validate.php | 2 +- app/code/Magento/User/Helper/Data.php | 2 +- .../User/Model/Authorization/AdminSessionUserContext.php | 2 +- .../Magento/User/Model/Backend/Config/ObserverConfig.php | 2 +- app/code/Magento/User/Model/Plugin/AuthorizationRole.php | 2 +- .../User/Model/ResourceModel/Role/User/Collection.php | 2 +- app/code/Magento/User/Model/ResourceModel/User.php | 2 +- .../Magento/User/Model/ResourceModel/User/Collection.php | 2 +- .../User/Model/ResourceModel/User/Locked/Collection.php | 2 +- .../Magento/User/Model/System/Config/Source/Password.php | 2 +- app/code/Magento/User/Model/User.php | 2 +- app/code/Magento/User/Model/UserValidationRules.php | 2 +- app/code/Magento/User/Observer/Backend/AuthObserver.php | 2 +- .../Observer/Backend/ForceAdminPasswordChangeObserver.php | 2 +- .../User/Observer/Backend/TrackAdminNewPasswordObserver.php | 2 +- app/code/Magento/User/Setup/InstallSchema.php | 2 +- app/code/Magento/User/Setup/UpgradeData.php | 2 +- app/code/Magento/User/Setup/UpgradeSchema.php | 2 +- app/code/Magento/User/Test/Unit/Block/Role/EditTest.php | 2 +- .../Magento/User/Test/Unit/Block/Role/Grid/UserTest.php | 2 +- app/code/Magento/User/Test/Unit/Block/Role/Tab/EditTest.php | 2 +- app/code/Magento/User/Test/Unit/Block/Role/Tab/InfoTest.php | 2 +- .../Magento/User/Test/Unit/Block/Role/Tab/UsersTest.php | 2 +- .../Test/Unit/Console/UnlockAdminAccountCommandTest.php | 2 +- .../User/Test/Unit/Controller/Adminhtml/User/DeleteTest.php | 2 +- app/code/Magento/User/Test/Unit/Helper/DataTest.php | 2 +- .../Model/Authorization/AdminSessionUserContextTest.php | 2 +- .../User/Test/Unit/Model/Plugin/AuthorizationRoleTest.php | 2 +- .../Magento/User/Test/Unit/Model/ResourceModel/UserTest.php | 2 +- app/code/Magento/User/Test/Unit/Model/UserTest.php | 2 +- .../User/Test/Unit/Model/UserValidationRulesTest.php | 2 +- .../User/Test/Unit/Observer/Backend/AuthObserverTest.php | 2 +- .../Backend/ForceAdminPasswordChangeObserverTest.php | 2 +- .../Observer/Backend/TrackAdminNewPasswordObserverTest.php | 2 +- app/code/Magento/User/etc/acl.xml | 2 +- app/code/Magento/User/etc/adminhtml/di.xml | 2 +- app/code/Magento/User/etc/adminhtml/events.xml | 2 +- app/code/Magento/User/etc/adminhtml/menu.xml | 2 +- app/code/Magento/User/etc/adminhtml/routes.xml | 2 +- app/code/Magento/User/etc/adminhtml/system.xml | 2 +- app/code/Magento/User/etc/config.xml | 2 +- app/code/Magento/User/etc/di.xml | 2 +- app/code/Magento/User/etc/email_templates.xml | 2 +- app/code/Magento/User/etc/module.xml | 2 +- app/code/Magento/User/etc/webapi_rest/di.xml | 2 +- app/code/Magento/User/registration.php | 2 +- .../view/adminhtml/email/password_reset_confirmation.html | 2 +- .../User/view/adminhtml/email/user_notification.html | 2 +- .../view/adminhtml/layout/adminhtml_auth_forgotpassword.xml | 2 +- .../User/view/adminhtml/layout/adminhtml_auth_login.xml | 2 +- .../view/adminhtml/layout/adminhtml_auth_resetpassword.xml | 4 ++-- .../User/view/adminhtml/layout/adminhtml_locks_block.xml | 2 +- .../User/view/adminhtml/layout/adminhtml_locks_grid.xml | 2 +- .../User/view/adminhtml/layout/adminhtml_locks_index.xml | 2 +- .../User/view/adminhtml/layout/adminhtml_user_edit.xml | 2 +- .../view/adminhtml/layout/adminhtml_user_grid_block.xml | 2 +- .../User/view/adminhtml/layout/adminhtml_user_index.xml | 2 +- .../view/adminhtml/layout/adminhtml_user_role_editrole.xml | 2 +- .../adminhtml/layout/adminhtml_user_role_editrolegrid.xml | 2 +- .../adminhtml/layout/adminhtml_user_role_grid_block.xml | 2 +- .../view/adminhtml/layout/adminhtml_user_role_index.xml | 2 +- .../view/adminhtml/layout/adminhtml_user_role_rolegrid.xml | 2 +- .../User/view/adminhtml/layout/adminhtml_user_rolegrid.xml | 2 +- .../User/view/adminhtml/layout/adminhtml_user_rolesgrid.xml | 2 +- app/code/Magento/User/view/adminhtml/requirejs-config.js | 2 +- .../view/adminhtml/templates/admin/forgotpassword.phtml | 2 +- .../view/adminhtml/templates/admin/forgotpassword_url.phtml | 2 +- .../adminhtml/templates/admin/resetforgottenpassword.phtml | 2 +- .../Magento/User/view/adminhtml/templates/role/edit.phtml | 2 +- .../Magento/User/view/adminhtml/templates/role/info.phtml | 2 +- .../Magento/User/view/adminhtml/templates/role/users.phtml | 2 +- .../User/view/adminhtml/templates/role/users_grid_js.phtml | 2 +- .../User/view/adminhtml/templates/user/roles_grid_js.phtml | 2 +- app/code/Magento/User/view/adminhtml/web/app-config.js | 2 +- .../User/view/adminhtml/web/js/delete-user-account.js | 2 +- app/code/Magento/User/view/adminhtml/web/js/roles-tree.js | 4 ++-- .../Block/Adminhtml/Order/Packaging/Plugin/DisplayGirth.php | 2 +- app/code/Magento/Usps/Helper/Data.php | 2 +- app/code/Magento/Usps/Model/Carrier.php | 2 +- app/code/Magento/Usps/Model/Source/Container.php | 2 +- app/code/Magento/Usps/Model/Source/Freemethod.php | 2 +- app/code/Magento/Usps/Model/Source/Generic.php | 2 +- app/code/Magento/Usps/Model/Source/Machinable.php | 2 +- app/code/Magento/Usps/Model/Source/Method.php | 2 +- app/code/Magento/Usps/Model/Source/Size.php | 2 +- app/code/Magento/Usps/Setup/InstallData.php | 2 +- app/code/Magento/Usps/Test/Unit/Helper/DataTest.php | 2 +- app/code/Magento/Usps/Test/Unit/Model/CarrierTest.php | 2 +- .../Magento/Usps/Test/Unit/Model/Source/GenericTest.php | 2 +- .../Usps/Test/Unit/Model/_files/rates_request_data.php | 2 +- .../Test/Unit/Model/_files/return_shipment_request_data.php | 2 +- .../Test/Unit/Model/_files/success_usps_response_rates.xml | 2 +- .../Model/_files/success_usps_response_return_shipment.xml | 2 +- app/code/Magento/Usps/etc/adminhtml/di.xml | 2 +- app/code/Magento/Usps/etc/adminhtml/system.xml | 2 +- app/code/Magento/Usps/etc/config.xml | 2 +- app/code/Magento/Usps/etc/di.xml | 2 +- app/code/Magento/Usps/etc/module.xml | 2 +- app/code/Magento/Usps/registration.php | 2 +- .../Usps/view/frontend/layout/checkout_cart_index.xml | 2 +- .../Usps/view/frontend/layout/checkout_index_index.xml | 2 +- .../web/js/model/shipping-rates-validation-rules.js | 2 +- .../view/frontend/web/js/model/shipping-rates-validator.js | 2 +- .../view/frontend/web/js/view/shipping-rates-validation.js | 2 +- app/code/Magento/Variable/Block/System/Variable.php | 2 +- app/code/Magento/Variable/Block/System/Variable/Edit.php | 2 +- .../Magento/Variable/Block/System/Variable/Edit/Form.php | 2 +- .../Variable/Controller/Adminhtml/System/Variable.php | 2 +- .../Controller/Adminhtml/System/Variable/Delete.php | 2 +- .../Variable/Controller/Adminhtml/System/Variable/Edit.php | 2 +- .../Variable/Controller/Adminhtml/System/Variable/Index.php | 2 +- .../Controller/Adminhtml/System/Variable/NewAction.php | 2 +- .../Variable/Controller/Adminhtml/System/Variable/Save.php | 2 +- .../Controller/Adminhtml/System/Variable/Validate.php | 2 +- .../Controller/Adminhtml/System/Variable/WysiwygPlugin.php | 2 +- app/code/Magento/Variable/Model/ResourceModel/Variable.php | 2 +- .../Variable/Model/ResourceModel/Variable/Collection.php | 2 +- app/code/Magento/Variable/Model/Variable.php | 2 +- app/code/Magento/Variable/Model/Variable/Config.php | 2 +- app/code/Magento/Variable/Setup/InstallSchema.php | 2 +- .../Controller/Adminhtml/System/Variable/ValidateTest.php | 2 +- .../Variable/Test/Unit/Model/Variable/ConfigTest.php | 2 +- app/code/Magento/Variable/Test/Unit/Model/VariableTest.php | 2 +- app/code/Magento/Variable/etc/acl.xml | 2 +- app/code/Magento/Variable/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Variable/etc/adminhtml/routes.xml | 4 ++-- app/code/Magento/Variable/etc/module.xml | 2 +- app/code/Magento/Variable/registration.php | 2 +- .../adminhtml/layout/adminhtml_system_variable_edit.xml | 2 +- .../layout/adminhtml_system_variable_grid_block.xml | 2 +- .../adminhtml/layout/adminhtml_system_variable_index.xml | 2 +- .../view/adminhtml/templates/system/variable/js.phtml | 2 +- app/code/Magento/Variable/view/adminhtml/web/variables.js | 4 ++-- app/code/Magento/Vault/Api/Data/PaymentTokenInterface.php | 2 +- .../Magento/Vault/Api/Data/PaymentTokenInterfaceFactory.php | 4 ++-- .../Vault/Api/Data/PaymentTokenSearchResultsInterface.php | 2 +- app/code/Magento/Vault/Api/PaymentMethodListInterface.php | 2 +- .../Magento/Vault/Api/PaymentTokenManagementInterface.php | 2 +- .../Magento/Vault/Api/PaymentTokenRepositoryInterface.php | 2 +- app/code/Magento/Vault/Block/AbstractCardRenderer.php | 2 +- app/code/Magento/Vault/Block/AbstractTokenRenderer.php | 2 +- app/code/Magento/Vault/Block/CardRendererInterface.php | 2 +- app/code/Magento/Vault/Block/Customer/AccountTokens.php | 2 +- app/code/Magento/Vault/Block/Customer/CreditCards.php | 2 +- app/code/Magento/Vault/Block/Customer/IconInterface.php | 4 ++-- app/code/Magento/Vault/Block/Customer/PaymentTokens.php | 2 +- app/code/Magento/Vault/Block/Form.php | 2 +- app/code/Magento/Vault/Block/TokenRendererInterface.php | 2 +- app/code/Magento/Vault/Controller/Cards/DeleteAction.php | 2 +- app/code/Magento/Vault/Controller/Cards/ListAction.php | 2 +- app/code/Magento/Vault/Controller/CardsManagement.php | 2 +- .../Magento/Vault/Model/AbstractPaymentTokenFactory.php | 2 +- app/code/Magento/Vault/Model/AccountPaymentTokenFactory.php | 2 +- app/code/Magento/Vault/Model/CreditCardTokenFactory.php | 2 +- app/code/Magento/Vault/Model/CustomerTokenManagement.php | 2 +- app/code/Magento/Vault/Model/Method/NullPaymentProvider.php | 2 +- app/code/Magento/Vault/Model/Method/Vault.php | 2 +- app/code/Magento/Vault/Model/PaymentMethodList.php | 2 +- app/code/Magento/Vault/Model/PaymentToken.php | 2 +- app/code/Magento/Vault/Model/PaymentTokenManagement.php | 2 +- app/code/Magento/Vault/Model/PaymentTokenRepository.php | 2 +- app/code/Magento/Vault/Model/ResourceModel/PaymentToken.php | 2 +- .../Vault/Model/ResourceModel/PaymentToken/Collection.php | 2 +- .../Vault/Model/Ui/Adminhtml/TokensConfigProvider.php | 2 +- app/code/Magento/Vault/Model/Ui/TokenUiComponent.php | 2 +- .../Magento/Vault/Model/Ui/TokenUiComponentInterface.php | 2 +- .../Vault/Model/Ui/TokenUiComponentProviderInterface.php | 2 +- app/code/Magento/Vault/Model/Ui/TokensConfigProvider.php | 2 +- app/code/Magento/Vault/Model/Ui/VaultConfigProvider.php | 2 +- app/code/Magento/Vault/Model/VaultPaymentInterface.php | 2 +- .../Magento/Vault/Observer/AfterPaymentSaveObserver.php | 2 +- app/code/Magento/Vault/Observer/PaymentTokenAssigner.php | 2 +- app/code/Magento/Vault/Observer/VaultEnableAssigner.php | 2 +- .../Magento/Vault/Plugin/PaymentVaultAttributesLoad.php | 2 +- .../Vault/Plugin/PaymentVaultConfigurationProcess.php | 2 +- app/code/Magento/Vault/Setup/InstallSchema.php | 2 +- app/code/Magento/Vault/Setup/UpgradeData.php | 2 +- .../Vault/Test/Unit/Block/Customer/AccountTokensTest.php | 2 +- .../Test/Unit/Model/AccountPaymentTokenFactoryTest.php | 2 +- .../Vault/Test/Unit/Model/CreditCardTokenFactoryTest.php | 2 +- .../Vault/Test/Unit/Model/CustomerTokenManagementTest.php | 2 +- app/code/Magento/Vault/Test/Unit/Model/Method/VaultTest.php | 2 +- .../Magento/Vault/Test/Unit/Model/PaymentMethodListTest.php | 2 +- .../Vault/Test/Unit/Model/PaymentTokenManagementTest.php | 2 +- .../Vault/Test/Unit/Model/PaymentTokenRepositoryTest.php | 2 +- .../Unit/Model/Ui/Adminhtml/TokensConfigProviderTest.php | 2 +- .../Vault/Test/Unit/Model/Ui/TokensConfigProviderTest.php | 2 +- .../Vault/Test/Unit/Model/Ui/VaultConfigProviderTest.php | 2 +- .../Test/Unit/Observer/AfterPaymentSaveObserverTest.php | 2 +- .../Vault/Test/Unit/Observer/PaymentTokenAssignerTest.php | 2 +- .../Vault/Test/Unit/Observer/VaultEnableAssignerTest.php | 2 +- .../Unit/Plugin/PaymentVaultConfigurationProcessTest.php | 2 +- app/code/Magento/Vault/etc/adminhtml/di.xml | 4 ++-- app/code/Magento/Vault/etc/config.xml | 2 +- app/code/Magento/Vault/etc/di.xml | 2 +- app/code/Magento/Vault/etc/events.xml | 2 +- app/code/Magento/Vault/etc/extension_attributes.xml | 2 +- app/code/Magento/Vault/etc/frontend/di.xml | 2 +- app/code/Magento/Vault/etc/frontend/routes.xml | 2 +- app/code/Magento/Vault/etc/module.xml | 2 +- app/code/Magento/Vault/registration.php | 2 +- .../Magento/Vault/view/adminhtml/templates/form/vault.phtml | 2 +- app/code/Magento/Vault/view/adminhtml/web/js/vault.js | 2 +- .../Vault/view/frontend/layout/checkout_index_index.xml | 2 +- .../Magento/Vault/view/frontend/layout/customer_account.xml | 2 +- .../Vault/view/frontend/layout/vault_cards_listaction.xml | 2 +- .../Magento/Vault/view/frontend/templates/cards_list.phtml | 2 +- .../frontend/templates/customer_account/credit_card.phtml | 2 +- .../Magento/Vault/view/frontend/templates/token_list.phtml | 2 +- .../view/frontend/web/js/customer_account/deleteWidget.js | 2 +- .../frontend/web/js/view/payment/method-renderer/vault.js | 2 +- .../view/frontend/web/js/view/payment/vault-enabler.js | 2 +- .../Vault/view/frontend/web/js/view/payment/vault.js | 2 +- .../Vault/view/frontend/web/template/payment/form.html | 4 ++-- app/code/Magento/Version/Controller/Index/Index.php | 2 +- app/code/Magento/Version/etc/frontend/routes.xml | 2 +- app/code/Magento/Version/etc/module.xml | 2 +- app/code/Magento/Version/registration.php | 2 +- app/code/Magento/Webapi/Controller/PathProcessor.php | 2 +- app/code/Magento/Webapi/Controller/Rest.php | 2 +- .../Magento/Webapi/Controller/Rest/InputParamsResolver.php | 2 +- .../Webapi/Controller/Rest/ParamOverriderCustomerId.php | 2 +- app/code/Magento/Webapi/Controller/Rest/ParamsOverrider.php | 2 +- .../Magento/Webapi/Controller/Rest/RequestValidator.php | 2 +- app/code/Magento/Webapi/Controller/Rest/Router.php | 2 +- app/code/Magento/Webapi/Controller/Rest/Router/Route.php | 2 +- app/code/Magento/Webapi/Controller/Soap.php | 2 +- app/code/Magento/Webapi/Controller/Soap/Request/Handler.php | 2 +- app/code/Magento/Webapi/Model/AbstractSchemaGenerator.php | 2 +- .../Magento/Webapi/Model/Authorization/GuestUserContext.php | 2 +- .../Magento/Webapi/Model/Authorization/OauthUserContext.php | 2 +- .../Magento/Webapi/Model/Authorization/TokenUserContext.php | 2 +- app/code/Magento/Webapi/Model/Cache/Type/Webapi.php | 2 +- app/code/Magento/Webapi/Model/Config.php | 2 +- app/code/Magento/Webapi/Model/Config/ClassReflector.php | 2 +- app/code/Magento/Webapi/Model/Config/Converter.php | 2 +- app/code/Magento/Webapi/Model/Config/Reader.php | 2 +- app/code/Magento/Webapi/Model/Config/SchemaLocator.php | 2 +- app/code/Magento/Webapi/Model/Plugin/GuestAuthorization.php | 2 +- app/code/Magento/Webapi/Model/Plugin/Manager.php | 2 +- app/code/Magento/Webapi/Model/Rest/Config.php | 2 +- app/code/Magento/Webapi/Model/Rest/Swagger.php | 2 +- app/code/Magento/Webapi/Model/Rest/Swagger/Generator.php | 2 +- app/code/Magento/Webapi/Model/ServiceMetadata.php | 2 +- app/code/Magento/Webapi/Model/Soap/Config.php | 2 +- app/code/Magento/Webapi/Model/Soap/Fault.php | 2 +- app/code/Magento/Webapi/Model/Soap/Server.php | 2 +- app/code/Magento/Webapi/Model/Soap/ServerFactory.php | 2 +- app/code/Magento/Webapi/Model/Soap/Wsdl.php | 2 +- .../Magento/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy.php | 2 +- app/code/Magento/Webapi/Model/Soap/Wsdl/Generator.php | 2 +- app/code/Magento/Webapi/Model/Soap/WsdlFactory.php | 2 +- app/code/Magento/Webapi/Model/WebapiRoleLocator.php | 2 +- .../Webapi/Test/Unit/Controller/PathProcessorTest.php | 2 +- .../Unit/Controller/Rest/ParamOverriderCustomerIdTest.php | 2 +- .../Test/Unit/Controller/Rest/ParamsOverriderTest.php | 2 +- .../Test/Unit/Controller/Rest/RequestValidatorTest.php | 2 +- .../Webapi/Test/Unit/Controller/Rest/Router/RouteTest.php | 2 +- .../Magento/Webapi/Test/Unit/Controller/Rest/RouterTest.php | 2 +- app/code/Magento/Webapi/Test/Unit/Controller/RestTest.php | 2 +- .../Test/Unit/Controller/Soap/Request/HandlerTest.php | 2 +- app/code/Magento/Webapi/Test/Unit/Controller/SoapTest.php | 2 +- app/code/Magento/Webapi/Test/Unit/ExceptionTest.php | 2 +- .../Test/Unit/Model/Authorization/GuestUserContextTest.php | 2 +- .../Test/Unit/Model/Authorization/OauthUserContextTest.php | 2 +- .../Test/Unit/Model/Authorization/TokenUserContextTest.php | 2 +- .../Webapi/Test/Unit/Model/Config/ClassReflectorTest.php | 2 +- .../Magento/Webapi/Test/Unit/Model/Config/ConverterTest.php | 2 +- .../Test/Unit/Model/Config/TestServiceForClassReflector.php | 2 +- .../Magento/Webapi/Test/Unit/Model/Config/_files/webapi.php | 2 +- .../Magento/Webapi/Test/Unit/Model/Config/_files/webapi.xml | 2 +- app/code/Magento/Webapi/Test/Unit/Model/ConfigTest.php | 2 +- .../Webapi/Test/Unit/Model/DataObjectProcessorTest.php | 2 +- .../Webapi/Test/Unit/Model/Files/TestDataInterface.php | 2 +- .../Magento/Webapi/Test/Unit/Model/Files/TestDataObject.php | 2 +- .../Magento/Webapi/Test/Unit/Model/Plugin/ManagerTest.php | 2 +- .../Webapi/Test/Unit/Model/Rest/Swagger/GeneratorTest.php | 2 +- .../Magento/Webapi/Test/Unit/Model/ServiceMetadataTest.php | 2 +- app/code/Magento/Webapi/Test/Unit/Model/Soap/FaultTest.php | 2 +- app/code/Magento/Webapi/Test/Unit/Model/Soap/ServerTest.php | 2 +- .../Test/Unit/Model/Soap/Wsdl/ComplexTypeStrategyTest.php | 2 +- .../Webapi/Test/Unit/Model/Soap/Wsdl/GeneratorTest.php | 2 +- .../Magento/Webapi/Test/Unit/Model/Soap/WsdlFactoryTest.php | 2 +- .../Webapi/Test/Unit/Model/WebapiRoleLocatorTest.php | 2 +- app/code/Magento/Webapi/Test/Unit/Model/_files/acl.php | 2 +- app/code/Magento/Webapi/Test/Unit/Model/_files/acl.xml | 2 +- app/code/Magento/Webapi/Test/Unit/Model/_files/acl.xsd | 2 +- .../Unit/_files/soap_fault/soap_fault_expected_xmls.php | 2 +- app/code/Magento/Webapi/etc/adminhtml/system.xml | 2 +- app/code/Magento/Webapi/etc/cache.xml | 2 +- app/code/Magento/Webapi/etc/di.xml | 2 +- app/code/Magento/Webapi/etc/frontend/routes.xml | 2 +- app/code/Magento/Webapi/etc/module.xml | 2 +- app/code/Magento/Webapi/etc/webapi.xsd | 2 +- app/code/Magento/Webapi/etc/webapi_rest/di.xml | 2 +- app/code/Magento/Webapi/etc/webapi_soap/di.xml | 2 +- app/code/Magento/Webapi/registration.php | 2 +- .../view/adminhtml/layout/adminhtml_integration_edit.xml | 2 +- .../layout/adminhtml_integration_permissionsdialog.xml | 2 +- .../Model/Plugin/AnonymousResourceSecurity.php | 2 +- .../WebapiSecurity/Model/Plugin/CacheInvalidator.php | 2 +- app/code/Magento/WebapiSecurity/etc/adminhtml/system.xml | 2 +- app/code/Magento/WebapiSecurity/etc/config.xml | 2 +- app/code/Magento/WebapiSecurity/etc/di.xml | 2 +- app/code/Magento/WebapiSecurity/etc/module.xml | 2 +- app/code/Magento/WebapiSecurity/registration.php | 2 +- .../Magento/Weee/Block/Adminhtml/Items/Price/Renderer.php | 2 +- app/code/Magento/Weee/Block/Element/Weee/Tax.php | 2 +- app/code/Magento/Weee/Block/Item/Price/Renderer.php | 2 +- app/code/Magento/Weee/Block/Renderer/Weee/Tax.php | 2 +- app/code/Magento/Weee/Block/Sales/Order/Totals.php | 2 +- app/code/Magento/Weee/Helper/Data.php | 2 +- app/code/Magento/Weee/Model/App/Action/ContextPlugin.php | 2 +- app/code/Magento/Weee/Model/Attribute/Backend/Weee/Tax.php | 2 +- app/code/Magento/Weee/Model/Config.php | 2 +- app/code/Magento/Weee/Model/Config/Source/Display.php | 2 +- .../Weee/Model/ResourceModel/Attribute/Backend/Weee/Tax.php | 2 +- app/code/Magento/Weee/Model/ResourceModel/Tax.php | 2 +- app/code/Magento/Weee/Model/Sales/Pdf/Weee.php | 2 +- app/code/Magento/Weee/Model/Tax.php | 2 +- app/code/Magento/Weee/Model/Total/Creditmemo/Weee.php | 2 +- app/code/Magento/Weee/Model/Total/Invoice/Weee.php | 2 +- app/code/Magento/Weee/Model/Total/Quote/Weee.php | 2 +- app/code/Magento/Weee/Model/Total/Quote/WeeeTax.php | 2 +- app/code/Magento/Weee/Model/WeeeConfigProvider.php | 2 +- .../Weee/Observer/AddWeeeTaxAttributeTypeObserver.php | 2 +- app/code/Magento/Weee/Observer/AfterAddressSave.php | 2 +- .../Weee/Observer/AssignBackendModelToAttributeObserver.php | 2 +- app/code/Magento/Weee/Observer/CustomerLoggedIn.php | 2 +- .../Magento/Weee/Observer/GetPriceConfigurationObserver.php | 2 +- .../Magento/Weee/Observer/SetWeeeRendererInFormObserver.php | 2 +- .../Magento/Weee/Observer/UpdateElementTypesObserver.php | 2 +- .../Weee/Observer/UpdateExcludedFieldListObserver.php | 2 +- .../Magento/Weee/Observer/UpdateProductOptionsObserver.php | 2 +- app/code/Magento/Weee/Plugin/Checkout/CustomerData/Cart.php | 2 +- app/code/Magento/Weee/Pricing/Adjustment.php | 2 +- app/code/Magento/Weee/Pricing/Render/Adjustment.php | 2 +- app/code/Magento/Weee/Pricing/Render/TaxAdjustment.php | 2 +- app/code/Magento/Weee/Pricing/TaxAdjustment.php | 2 +- app/code/Magento/Weee/Setup/InstallData.php | 2 +- app/code/Magento/Weee/Setup/InstallSchema.php | 2 +- app/code/Magento/Weee/Setup/Recurring.php | 2 +- .../Magento/Weee/Test/Unit/App/Action/ContextPluginTest.php | 2 +- .../Magento/Weee/Test/Unit/Block/Element/Weee/TaxTest.php | 2 +- .../Weee/Test/Unit/Block/Item/Price/RendererTest.php | 2 +- app/code/Magento/Weee/Test/Unit/Helper/DataTest.php | 2 +- .../Weee/Test/Unit/Model/Attribute/Backend/Weee/TaxTest.php | 2 +- app/code/Magento/Weee/Test/Unit/Model/ConfigTest.php | 2 +- .../Model/ResourceModel/Attribute/Backend/Weee/TaxTest.php | 2 +- .../Magento/Weee/Test/Unit/Model/ResourceModel/TaxTest.php | 2 +- app/code/Magento/Weee/Test/Unit/Model/TaxTest.php | 2 +- .../Weee/Test/Unit/Model/Total/Creditmemo/WeeeTest.php | 2 +- .../Magento/Weee/Test/Unit/Model/Total/Invoice/WeeeTest.php | 2 +- .../Weee/Test/Unit/Model/Total/Quote/WeeeTaxTest.php | 2 +- .../Magento/Weee/Test/Unit/Model/Total/Quote/WeeeTest.php | 2 +- .../Magento/Weee/Test/Unit/Model/WeeeConfigProviderTest.php | 2 +- .../Weee/Test/Unit/Observer/AfterAddressSaveTest.php | 2 +- .../Weee/Test/Unit/Observer/CustomerLoggedInTest.php | 2 +- .../Unit/Observer/GetPriceConfigurationObserverTest.php | 2 +- .../Test/Unit/Observer/UpdateProductOptionsObserverTest.php | 2 +- app/code/Magento/Weee/Test/Unit/Pricing/AdjustmentTest.php | 2 +- .../Weee/Test/Unit/Pricing/Render/AdjustmentTest.php | 2 +- .../Weee/Test/Unit/Pricing/Render/TaxAdjustmentTest.php | 2 +- .../Magento/Weee/Test/Unit/Pricing/TaxAdjustmentTest.php | 2 +- .../Product/Form/Modifier/Manager/WebsiteTest.php | 2 +- .../Unit/Ui/DataProvider/Product/Form/Modifier/WeeeTest.php | 2 +- .../DataProvider/Product/Form/Modifier/Manager/Website.php | 2 +- .../Weee/Ui/DataProvider/Product/Form/Modifier/Weee.php | 2 +- app/code/Magento/Weee/etc/adminhtml/di.xml | 2 +- app/code/Magento/Weee/etc/adminhtml/events.xml | 2 +- app/code/Magento/Weee/etc/adminhtml/system.xml | 2 +- app/code/Magento/Weee/etc/config.xml | 2 +- app/code/Magento/Weee/etc/di.xml | 2 +- app/code/Magento/Weee/etc/events.xml | 2 +- app/code/Magento/Weee/etc/fieldset.xml | 2 +- app/code/Magento/Weee/etc/frontend/di.xml | 2 +- app/code/Magento/Weee/etc/frontend/events.xml | 2 +- app/code/Magento/Weee/etc/module.xml | 2 +- app/code/Magento/Weee/etc/pdf.xml | 2 +- app/code/Magento/Weee/etc/sales.xml | 2 +- app/code/Magento/Weee/registration.php | 2 +- .../Weee/view/adminhtml/layout/catalog_product_form.xml | 2 +- .../view/adminhtml/layout/sales_creditmemo_item_price.xml | 2 +- .../Weee/view/adminhtml/layout/sales_invoice_item_price.xml | 2 +- .../view/adminhtml/layout/sales_order_create_item_price.xml | 2 +- .../view/adminhtml/layout/sales_order_creditmemo_new.xml | 2 +- .../adminhtml/layout/sales_order_creditmemo_updateqty.xml | 2 +- .../view/adminhtml/layout/sales_order_creditmemo_view.xml | 2 +- .../Weee/view/adminhtml/layout/sales_order_invoice_new.xml | 2 +- .../view/adminhtml/layout/sales_order_invoice_updateqty.xml | 2 +- .../Weee/view/adminhtml/layout/sales_order_invoice_view.xml | 2 +- .../Weee/view/adminhtml/layout/sales_order_item_price.xml | 2 +- .../Magento/Weee/view/adminhtml/layout/sales_order_view.xml | 2 +- app/code/Magento/Weee/view/adminhtml/requirejs-config.js | 4 ++-- .../Weee/view/adminhtml/templates/items/price/row.phtml | 2 +- .../Weee/view/adminhtml/templates/items/price/total.phtml | 2 +- .../Weee/view/adminhtml/templates/items/price/unit.phtml | 2 +- .../adminhtml/templates/order/create/items/price/row.phtml | 2 +- .../templates/order/create/items/price/total.phtml | 2 +- .../adminhtml/templates/order/create/items/price/unit.phtml | 2 +- .../Weee/view/adminhtml/templates/renderer/tax.phtml | 2 +- .../adminhtml/ui_component/product_attribute_add_form.xml | 2 +- .../Magento/Weee/view/adminhtml/web/js/fpt-attribute.js | 2 +- app/code/Magento/Weee/view/adminhtml/web/js/fpt-group.js | 2 +- .../Weee/view/adminhtml/web/js/regions-tax-select.js | 2 +- .../Weee/view/base/layout/catalog_product_prices.xml | 2 +- .../Weee/view/base/templates/pricing/adjustment.phtml | 2 +- .../Weee/view/frontend/layout/checkout_cart_index.xml | 2 +- .../Weee/view/frontend/layout/checkout_index_index.xml | 4 ++-- .../view/frontend/layout/checkout_item_price_renderers.xml | 2 +- app/code/Magento/Weee/view/frontend/layout/default.xml | 2 +- .../Weee/view/frontend/layout/sales_email_item_price.xml | 2 +- .../frontend/layout/sales_email_order_creditmemo_items.xml | 2 +- .../frontend/layout/sales_email_order_invoice_items.xml | 2 +- .../Weee/view/frontend/layout/sales_email_order_items.xml | 2 +- .../Weee/view/frontend/layout/sales_guest_creditmemo.xml | 2 +- .../Weee/view/frontend/layout/sales_guest_invoice.xml | 2 +- .../Magento/Weee/view/frontend/layout/sales_guest_print.xml | 2 +- .../view/frontend/layout/sales_guest_printcreditmemo.xml | 2 +- .../Weee/view/frontend/layout/sales_guest_printinvoice.xml | 2 +- .../Magento/Weee/view/frontend/layout/sales_guest_view.xml | 2 +- .../Weee/view/frontend/layout/sales_order_creditmemo.xml | 2 +- .../Weee/view/frontend/layout/sales_order_invoice.xml | 2 +- .../Weee/view/frontend/layout/sales_order_item_price.xml | 2 +- .../Magento/Weee/view/frontend/layout/sales_order_print.xml | 2 +- .../view/frontend/layout/sales_order_printcreditmemo.xml | 2 +- .../Weee/view/frontend/layout/sales_order_printinvoice.xml | 2 +- .../Magento/Weee/view/frontend/layout/sales_order_view.xml | 2 +- app/code/Magento/Weee/view/frontend/requirejs-config.js | 2 +- .../templates/checkout/cart/item/price/sidebar.phtml | 2 +- .../checkout/onepage/review/item/price/row_excl_tax.phtml | 2 +- .../checkout/onepage/review/item/price/row_incl_tax.phtml | 2 +- .../checkout/onepage/review/item/price/unit_excl_tax.phtml | 2 +- .../checkout/onepage/review/item/price/unit_incl_tax.phtml | 2 +- .../view/frontend/templates/email/items/price/row.phtml | 2 +- .../Weee/view/frontend/templates/item/price/row.phtml | 2 +- .../templates/item/price/total_after_discount.phtml | 2 +- .../Weee/view/frontend/templates/item/price/unit.phtml | 2 +- .../Weee/view/frontend/web/js/view/cart/totals/weee.js | 2 +- .../web/js/view/checkout/summary/item/price/row_excl_tax.js | 2 +- .../web/js/view/checkout/summary/item/price/row_incl_tax.js | 2 +- .../web/js/view/checkout/summary/item/price/weee.js | 2 +- .../Weee/view/frontend/web/js/view/checkout/summary/weee.js | 2 +- app/code/Magento/Weee/view/frontend/web/tax-toggle.js | 2 +- .../template/checkout/summary/item/price/row_excl_tax.html | 2 +- .../template/checkout/summary/item/price/row_incl_tax.html | 2 +- .../view/frontend/web/template/checkout/summary/weee.html | 4 ++-- app/code/Magento/Widget/Block/Adminhtml/Widget.php | 2 +- .../Block/Adminhtml/Widget/Catalog/Category/Chooser.php | 2 +- app/code/Magento/Widget/Block/Adminhtml/Widget/Chooser.php | 2 +- app/code/Magento/Widget/Block/Adminhtml/Widget/Form.php | 2 +- app/code/Magento/Widget/Block/Adminhtml/Widget/Instance.php | 2 +- .../Magento/Widget/Block/Adminhtml/Widget/Instance/Edit.php | 2 +- .../Adminhtml/Widget/Instance/Edit/Chooser/Container.php | 2 +- .../Widget/Instance/Edit/Chooser/DesignAbstraction.php | 2 +- .../Block/Adminhtml/Widget/Instance/Edit/Chooser/Layout.php | 2 +- .../Adminhtml/Widget/Instance/Edit/Chooser/Template.php | 2 +- .../Widget/Block/Adminhtml/Widget/Instance/Edit/Form.php | 2 +- .../Block/Adminhtml/Widget/Instance/Edit/Tab/Main.php | 2 +- .../Adminhtml/Widget/Instance/Edit/Tab/Main/Layout.php | 2 +- .../Block/Adminhtml/Widget/Instance/Edit/Tab/Properties.php | 2 +- .../Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php | 2 +- .../Widget/Block/Adminhtml/Widget/Instance/Edit/Tabs.php | 2 +- app/code/Magento/Widget/Block/Adminhtml/Widget/Options.php | 2 +- app/code/Magento/Widget/Block/BlockInterface.php | 2 +- .../Widget/Controller/Adminhtml/Widget/BuildWidget.php | 2 +- .../Magento/Widget/Controller/Adminhtml/Widget/Index.php | 2 +- .../Magento/Widget/Controller/Adminhtml/Widget/Instance.php | 2 +- .../Widget/Controller/Adminhtml/Widget/Instance/Blocks.php | 2 +- .../Controller/Adminhtml/Widget/Instance/Categories.php | 2 +- .../Widget/Controller/Adminhtml/Widget/Instance/Delete.php | 2 +- .../Widget/Controller/Adminhtml/Widget/Instance/Edit.php | 2 +- .../Widget/Controller/Adminhtml/Widget/Instance/Index.php | 2 +- .../Controller/Adminhtml/Widget/Instance/NewAction.php | 2 +- .../Controller/Adminhtml/Widget/Instance/Products.php | 2 +- .../Widget/Controller/Adminhtml/Widget/Instance/Save.php | 2 +- .../Controller/Adminhtml/Widget/Instance/Template.php | 2 +- .../Controller/Adminhtml/Widget/Instance/Validate.php | 2 +- .../Widget/Controller/Adminhtml/Widget/LoadOptions.php | 2 +- app/code/Magento/Widget/Helper/Conditions.php | 2 +- app/code/Magento/Widget/Model/Config/Converter.php | 2 +- app/code/Magento/Widget/Model/Config/Data.php | 2 +- app/code/Magento/Widget/Model/Config/FileResolver.php | 2 +- app/code/Magento/Widget/Model/Config/Reader.php | 2 +- app/code/Magento/Widget/Model/Config/SchemaLocator.php | 2 +- app/code/Magento/Widget/Model/Layout/Link.php | 2 +- app/code/Magento/Widget/Model/Layout/Update.php | 2 +- app/code/Magento/Widget/Model/NamespaceResolver.php | 2 +- app/code/Magento/Widget/Model/ResourceModel/Layout/Link.php | 2 +- .../Widget/Model/ResourceModel/Layout/Link/Collection.php | 2 +- .../Magento/Widget/Model/ResourceModel/Layout/Plugin.php | 2 +- .../Magento/Widget/Model/ResourceModel/Layout/Update.php | 2 +- .../Widget/Model/ResourceModel/Layout/Update/Collection.php | 2 +- app/code/Magento/Widget/Model/ResourceModel/Widget.php | 2 +- .../Magento/Widget/Model/ResourceModel/Widget/Instance.php | 2 +- .../Model/ResourceModel/Widget/Instance/Collection.php | 2 +- .../Model/ResourceModel/Widget/Instance/Options/ThemeId.php | 2 +- .../Model/ResourceModel/Widget/Instance/Options/Themes.php | 2 +- .../Model/ResourceModel/Widget/Instance/Options/Types.php | 2 +- app/code/Magento/Widget/Model/Template/Filter.php | 2 +- app/code/Magento/Widget/Model/Template/FilterEmulate.php | 2 +- app/code/Magento/Widget/Model/Widget.php | 2 +- app/code/Magento/Widget/Model/Widget/Config.php | 2 +- app/code/Magento/Widget/Model/Widget/Instance.php | 2 +- .../Magento/Widget/Model/Widget/Instance/OptionsFactory.php | 2 +- app/code/Magento/Widget/Setup/InstallData.php | 2 +- app/code/Magento/Widget/Setup/InstallSchema.php | 2 +- .../Block/Adminhtml/Widget/Catalog/Category/ChooserTest.php | 2 +- .../Widget/Instance/Edit/Chooser/AbstractContainerTest.php | 2 +- .../Widget/Instance/Edit/Chooser/ContainerTest.php | 2 +- .../Adminhtml/Widget/Instance/Edit/Tab/PropertiesTest.php | 2 +- .../Controller/Adminhtml/Widget/Instance/CategoriesTest.php | 2 +- .../Unit/Controller/Adminhtml/Widget/LoadOptionsTest.php | 2 +- app/code/Magento/Widget/Test/Unit/Helper/ConditionsTest.php | 2 +- .../Magento/Widget/Test/Unit/Model/Config/ConverterTest.php | 2 +- .../Widget/Test/Unit/Model/Config/FileResolverTest.php | 2 +- .../Widget/Test/Unit/Model/NamespaceResolverTest.php | 2 +- .../Unit/Model/ResourceModel/Layout/AbstractTestCase.php | 2 +- .../Unit/Model/ResourceModel/Layout/Link/CollectionTest.php | 2 +- .../Model/ResourceModel/Layout/Update/CollectionTest.php | 2 +- .../ResourceModel/Widget/Instance/Options/ThemesTest.php | 2 +- .../Widget/Test/Unit/Model/Template/FilterEmulateTest.php | 2 +- .../Magento/Widget/Test/Unit/Model/Template/FilterTest.php | 2 +- .../Magento/Widget/Test/Unit/Model/Widget/InstanceTest.php | 2 +- app/code/Magento/Widget/Test/Unit/Model/WidgetTest.php | 2 +- .../Widget/Test/Unit/Model/_files/mappedConfigArray1.php | 2 +- .../Widget/Test/Unit/Model/_files/mappedConfigArray2.php | 2 +- .../Widget/Test/Unit/Model/_files/mappedConfigArrayAll.php | 2 +- app/code/Magento/Widget/Test/Unit/Model/_files/widget.xml | 2 +- .../Magento/Widget/Test/Unit/Model/_files/widget_config.php | 2 +- app/code/Magento/Widget/etc/acl.xml | 2 +- app/code/Magento/Widget/etc/adminhtml/di.xml | 2 +- app/code/Magento/Widget/etc/adminhtml/menu.xml | 2 +- app/code/Magento/Widget/etc/adminhtml/routes.xml | 2 +- app/code/Magento/Widget/etc/di.xml | 2 +- app/code/Magento/Widget/etc/module.xml | 2 +- app/code/Magento/Widget/etc/types.xsd | 4 ++-- app/code/Magento/Widget/etc/widget.xsd | 2 +- app/code/Magento/Widget/etc/widget_file.xsd | 2 +- app/code/Magento/Widget/registration.php | 2 +- .../Widget/view/adminhtml/layout/adminhtml_widget_index.xml | 2 +- .../adminhtml/layout/adminhtml_widget_instance_block.xml | 2 +- .../adminhtml/layout/adminhtml_widget_instance_edit.xml | 2 +- .../adminhtml/layout/adminhtml_widget_instance_index.xml | 2 +- .../view/adminhtml/layout/adminhtml_widget_loadoptions.xml | 2 +- .../adminhtml/templates/catalog/category/widget/tree.phtml | 2 +- .../view/adminhtml/templates/instance/edit/layout.phtml | 2 +- .../Widget/view/adminhtml/templates/instance/js.phtml | 2 +- app/code/Magento/Widget/view/frontend/layout/default.xml | 2 +- app/code/Magento/Widget/view/frontend/layout/print.xml | 2 +- app/code/Magento/Wishlist/Block/AbstractBlock.php | 2 +- app/code/Magento/Wishlist/Block/AddToWishlist.php | 2 +- .../Block/Adminhtml/Widget/Grid/Column/Filter/Text.php | 2 +- app/code/Magento/Wishlist/Block/Adminhtml/WishlistTab.php | 2 +- .../Block/Cart/Item/Renderer/Actions/MoveToWishlist.php | 2 +- .../Catalog/Product/ProductList/Item/AddTo/Wishlist.php | 2 +- .../Wishlist/Block/Catalog/Product/View/AddTo/Wishlist.php | 2 +- app/code/Magento/Wishlist/Block/Customer/Sharing.php | 2 +- app/code/Magento/Wishlist/Block/Customer/Sidebar.php | 2 +- app/code/Magento/Wishlist/Block/Customer/Wishlist.php | 2 +- .../Magento/Wishlist/Block/Customer/Wishlist/Button.php | 2 +- .../Wishlist/Block/Customer/Wishlist/Item/Column.php | 2 +- .../Block/Customer/Wishlist/Item/Column/Actions.php | 2 +- .../Wishlist/Block/Customer/Wishlist/Item/Column/Cart.php | 2 +- .../Block/Customer/Wishlist/Item/Column/Comment.php | 2 +- .../Wishlist/Block/Customer/Wishlist/Item/Column/Edit.php | 2 +- .../Wishlist/Block/Customer/Wishlist/Item/Column/Image.php | 2 +- .../Wishlist/Block/Customer/Wishlist/Item/Column/Info.php | 2 +- .../Wishlist/Block/Customer/Wishlist/Item/Column/Remove.php | 2 +- .../Wishlist/Block/Customer/Wishlist/Item/Options.php | 2 +- app/code/Magento/Wishlist/Block/Customer/Wishlist/Items.php | 2 +- app/code/Magento/Wishlist/Block/Item/Configure.php | 2 +- app/code/Magento/Wishlist/Block/Link.php | 2 +- app/code/Magento/Wishlist/Block/Rss/EmailLink.php | 2 +- app/code/Magento/Wishlist/Block/Rss/Link.php | 2 +- app/code/Magento/Wishlist/Block/Share/Email/Items.php | 2 +- app/code/Magento/Wishlist/Block/Share/Wishlist.php | 2 +- app/code/Magento/Wishlist/Controller/AbstractIndex.php | 2 +- app/code/Magento/Wishlist/Controller/Index/Add.php | 2 +- app/code/Magento/Wishlist/Controller/Index/Allcart.php | 2 +- app/code/Magento/Wishlist/Controller/Index/Cart.php | 2 +- app/code/Magento/Wishlist/Controller/Index/Configure.php | 2 +- .../Wishlist/Controller/Index/DownloadCustomOption.php | 2 +- app/code/Magento/Wishlist/Controller/Index/Fromcart.php | 2 +- app/code/Magento/Wishlist/Controller/Index/Index.php | 2 +- app/code/Magento/Wishlist/Controller/Index/Plugin.php | 2 +- app/code/Magento/Wishlist/Controller/Index/Remove.php | 2 +- app/code/Magento/Wishlist/Controller/Index/Send.php | 2 +- app/code/Magento/Wishlist/Controller/Index/Share.php | 2 +- app/code/Magento/Wishlist/Controller/Index/Update.php | 2 +- .../Magento/Wishlist/Controller/Index/UpdateItemOptions.php | 2 +- app/code/Magento/Wishlist/Controller/IndexInterface.php | 2 +- app/code/Magento/Wishlist/Controller/Shared/Allcart.php | 2 +- app/code/Magento/Wishlist/Controller/Shared/Cart.php | 2 +- app/code/Magento/Wishlist/Controller/Shared/Index.php | 2 +- .../Magento/Wishlist/Controller/Shared/WishlistProvider.php | 2 +- app/code/Magento/Wishlist/Controller/WishlistProvider.php | 2 +- .../Wishlist/Controller/WishlistProviderInterface.php | 2 +- app/code/Magento/Wishlist/CustomerData/Wishlist.php | 2 +- app/code/Magento/Wishlist/Helper/Data.php | 2 +- app/code/Magento/Wishlist/Helper/Rss.php | 2 +- app/code/Magento/Wishlist/Model/AuthenticationState.php | 2 +- .../Magento/Wishlist/Model/AuthenticationStateInterface.php | 2 +- app/code/Magento/Wishlist/Model/Config.php | 2 +- app/code/Magento/Wishlist/Model/Config/Source/Summary.php | 2 +- app/code/Magento/Wishlist/Model/Item.php | 2 +- app/code/Magento/Wishlist/Model/Item/Option.php | 2 +- app/code/Magento/Wishlist/Model/ItemCarrier.php | 2 +- app/code/Magento/Wishlist/Model/LocaleQuantityProcessor.php | 2 +- app/code/Magento/Wishlist/Model/ResourceModel/Item.php | 2 +- .../Wishlist/Model/ResourceModel/Item/Collection.php | 2 +- .../Wishlist/Model/ResourceModel/Item/Collection/Grid.php | 2 +- .../Magento/Wishlist/Model/ResourceModel/Item/Option.php | 2 +- .../Wishlist/Model/ResourceModel/Item/Option/Collection.php | 2 +- app/code/Magento/Wishlist/Model/ResourceModel/Wishlist.php | 2 +- .../Wishlist/Model/ResourceModel/Wishlist/Collection.php | 2 +- app/code/Magento/Wishlist/Model/Rss/Wishlist.php | 2 +- app/code/Magento/Wishlist/Model/Wishlist.php | 2 +- app/code/Magento/Wishlist/Observer/AddToCart.php | 2 +- app/code/Magento/Wishlist/Observer/CartUpdateBefore.php | 2 +- app/code/Magento/Wishlist/Observer/CustomerLogin.php | 2 +- app/code/Magento/Wishlist/Observer/CustomerLogout.php | 2 +- .../Pricing/ConfiguredPrice/ConfigurableProduct.php | 2 +- .../Wishlist/Pricing/ConfiguredPrice/Downloadable.php | 2 +- .../Magento/Wishlist/Pricing/Render/ConfiguredPriceBox.php | 2 +- app/code/Magento/Wishlist/Setup/InstallSchema.php | 2 +- app/code/Magento/Wishlist/Setup/Recurring.php | 2 +- .../Block/Adminhtml/Widget/Grid/Column/Filter/TextTest.php | 2 +- .../Block/Cart/Item/Renderer/Actions/MoveToWishlistTest.php | 2 +- .../Wishlist/Test/Unit/Block/Customer/SidebarTest.php | 2 +- .../Test/Unit/Block/Customer/Wishlist/Item/OptionsTest.php | 2 +- .../Magento/Wishlist/Test/Unit/Block/Item/ConfigureTest.php | 2 +- .../Magento/Wishlist/Test/Unit/Block/Rss/EmailLinkTest.php | 2 +- app/code/Magento/Wishlist/Test/Unit/Block/Rss/LinkTest.php | 2 +- .../Wishlist/Test/Unit/Controller/Index/AllcartTest.php | 2 +- .../Wishlist/Test/Unit/Controller/Index/CartTest.php | 2 +- .../Wishlist/Test/Unit/Controller/Index/FromcartTest.php | 2 +- .../Wishlist/Test/Unit/Controller/Index/IndexTest.php | 2 +- .../Wishlist/Test/Unit/Controller/Index/PluginTest.php | 2 +- .../Wishlist/Test/Unit/Controller/Index/RemoveTest.php | 2 +- .../Wishlist/Test/Unit/Controller/Index/SendTest.php | 2 +- .../Wishlist/Test/Unit/Controller/Index/ShareTest.php | 2 +- .../Test/Unit/Controller/Index/UpdateItemOptionsTest.php | 2 +- .../Wishlist/Test/Unit/Controller/Shared/AllcartTest.php | 2 +- .../Wishlist/Test/Unit/Controller/Shared/CartTest.php | 2 +- .../Wishlist/Test/Unit/Controller/WishlistProviderTest.php | 2 +- .../Wishlist/Test/Unit/CustomerData/WishlistTest.php | 2 +- app/code/Magento/Wishlist/Test/Unit/Helper/DataTest.php | 2 +- app/code/Magento/Wishlist/Test/Unit/Helper/RssTest.php | 2 +- .../Wishlist/Test/Unit/Model/AuthenticationStateTest.php | 2 +- app/code/Magento/Wishlist/Test/Unit/Model/ConfigTest.php | 2 +- .../Magento/Wishlist/Test/Unit/Model/ItemCarrierTest.php | 2 +- app/code/Magento/Wishlist/Test/Unit/Model/ItemTest.php | 2 +- .../Test/Unit/Model/LocaleQuantityProcessorTest.php | 2 +- .../Test/Unit/Model/ResourceModel/Item/CollectionTest.php | 2 +- .../Magento/Wishlist/Test/Unit/Model/Rss/WishlistTest.php | 2 +- app/code/Magento/Wishlist/Test/Unit/Model/WishlistTest.php | 2 +- .../Magento/Wishlist/Test/Unit/Observer/AddToCartTest.php | 2 +- .../Wishlist/Test/Unit/Observer/CartUpdateBeforeTest.php | 2 +- .../Wishlist/Test/Unit/Observer/CustomerLoginTest.php | 2 +- .../Wishlist/Test/Unit/Observer/CustomerLogoutTest.php | 2 +- .../Pricing/ConfiguredPrice/ConfigurableProductTest.php | 2 +- .../Test/Unit/Pricing/ConfiguredPrice/DownloadableTest.php | 2 +- .../Test/Unit/Pricing/Render/ConfiguredPriceBoxTest.php | 2 +- app/code/Magento/Wishlist/etc/acl.xml | 2 +- app/code/Magento/Wishlist/etc/adminhtml/di.xml | 2 +- app/code/Magento/Wishlist/etc/adminhtml/system.xml | 2 +- app/code/Magento/Wishlist/etc/catalog_attributes.xml | 2 +- app/code/Magento/Wishlist/etc/config.xml | 2 +- app/code/Magento/Wishlist/etc/di.xml | 2 +- app/code/Magento/Wishlist/etc/email_templates.xml | 2 +- app/code/Magento/Wishlist/etc/events.xml | 2 +- app/code/Magento/Wishlist/etc/frontend/di.xml | 2 +- app/code/Magento/Wishlist/etc/frontend/events.xml | 2 +- app/code/Magento/Wishlist/etc/frontend/page_types.xml | 2 +- app/code/Magento/Wishlist/etc/frontend/routes.xml | 4 ++-- app/code/Magento/Wishlist/etc/frontend/sections.xml | 2 +- app/code/Magento/Wishlist/etc/module.xml | 2 +- app/code/Magento/Wishlist/etc/view.xml | 2 +- app/code/Magento/Wishlist/registration.php | 2 +- .../Wishlist/view/adminhtml/layout/customer_index_edit.xml | 2 +- .../view/adminhtml/layout/customer_index_wishlist.xml | 2 +- .../adminhtml/templates/customer/edit/tab/wishlist.phtml | 2 +- .../Wishlist/view/base/layout/catalog_product_prices.xml | 2 +- .../Wishlist/view/frontend/email/share_notification.html | 2 +- .../Wishlist/view/frontend/layout/catalog_category_view.xml | 2 +- .../Wishlist/view/frontend/layout/catalog_product_view.xml | 2 +- .../view/frontend/layout/catalogsearch_advanced_result.xml | 2 +- .../view/frontend/layout/catalogsearch_result_index.xml | 2 +- .../Wishlist/view/frontend/layout/checkout_cart_index.xml | 2 +- .../view/frontend/layout/checkout_cart_item_renderers.xml | 2 +- .../Wishlist/view/frontend/layout/customer_account.xml | 2 +- app/code/Magento/Wishlist/view/frontend/layout/default.xml | 2 +- .../Wishlist/view/frontend/layout/wishlist_email_items.xml | 2 +- .../Wishlist/view/frontend/layout/wishlist_email_rss.xml | 2 +- .../view/frontend/layout/wishlist_index_configure.xml | 2 +- .../layout/wishlist_index_configure_type_bundle.xml | 2 +- .../layout/wishlist_index_configure_type_configurable.xml | 2 +- .../layout/wishlist_index_configure_type_downloadable.xml | 2 +- .../layout/wishlist_index_configure_type_grouped.xml | 2 +- .../layout/wishlist_index_configure_type_simple.xml | 2 +- .../Wishlist/view/frontend/layout/wishlist_index_index.xml | 2 +- .../Wishlist/view/frontend/layout/wishlist_index_share.xml | 2 +- .../Wishlist/view/frontend/layout/wishlist_shared_index.xml | 2 +- app/code/Magento/Wishlist/view/frontend/requirejs-config.js | 4 ++-- .../Magento/Wishlist/view/frontend/templates/addto.phtml | 2 +- .../Wishlist/view/frontend/templates/button/share.phtml | 2 +- .../Wishlist/view/frontend/templates/button/tocart.phtml | 2 +- .../Wishlist/view/frontend/templates/button/update.phtml | 2 +- .../cart/item/renderer/actions/move_to_wishlist.phtml | 2 +- .../templates/catalog/product/list/addto/wishlist.phtml | 2 +- .../templates/catalog/product/view/addto/wishlist.phtml | 2 +- .../Wishlist/view/frontend/templates/email/items.phtml | 2 +- .../view/frontend/templates/item/column/actions.phtml | 2 +- .../Wishlist/view/frontend/templates/item/column/cart.phtml | 2 +- .../view/frontend/templates/item/column/comment.phtml | 2 +- .../Wishlist/view/frontend/templates/item/column/edit.phtml | 2 +- .../view/frontend/templates/item/column/image.phtml | 2 +- .../Wishlist/view/frontend/templates/item/column/name.phtml | 2 +- .../view/frontend/templates/item/column/price.phtml | 2 +- .../view/frontend/templates/item/column/remove.phtml | 2 +- .../view/frontend/templates/item/configure/addto.phtml | 4 ++-- .../frontend/templates/item/configure/addto/wishlist.phtml | 4 ++-- .../Wishlist/view/frontend/templates/item/list.phtml | 2 +- .../Wishlist/view/frontend/templates/js/components.phtml | 2 +- .../Magento/Wishlist/view/frontend/templates/link.phtml | 2 +- .../templates/messages/addProductSuccessMessage.phtml | 2 +- .../Wishlist/view/frontend/templates/options_list.phtml | 2 +- .../Wishlist/view/frontend/templates/rss/email.phtml | 2 +- .../Wishlist/view/frontend/templates/rss/wishlist.phtml | 2 +- .../Magento/Wishlist/view/frontend/templates/shared.phtml | 2 +- .../Magento/Wishlist/view/frontend/templates/sharing.phtml | 2 +- .../Magento/Wishlist/view/frontend/templates/sidebar.phtml | 2 +- .../Magento/Wishlist/view/frontend/templates/view.phtml | 2 +- .../Wishlist/view/frontend/web/js/add-to-wishlist.js | 2 +- app/code/Magento/Wishlist/view/frontend/web/js/search.js | 4 ++-- .../Magento/Wishlist/view/frontend/web/js/view/wishlist.js | 2 +- app/code/Magento/Wishlist/view/frontend/web/wishlist.js | 2 +- .../Magento_AdminNotification/web/css/source/_module.less | 2 +- .../Magento_AdvancedCheckout/web/css/source/_module.less | 2 +- .../Magento/backend/Magento_Backend/layout/default.xml | 2 +- .../Magento/backend/Magento_Backend/layout/styles.xml | 2 +- .../backend/Magento_Backend/web/css/source/_module-old.less | 2 +- .../backend/Magento_Backend/web/css/source/_module.less | 2 +- .../Magento_Backend/web/css/source/module/_footer.less | 2 +- .../Magento_Backend/web/css/source/module/_header.less | 2 +- .../Magento_Backend/web/css/source/module/_main.less | 2 +- .../Magento_Backend/web/css/source/module/_menu.less | 2 +- .../web/css/source/module/header/_actions-group.less | 2 +- .../web/css/source/module/header/_headings-group.less | 2 +- .../source/module/header/actions-group/_notifications.less | 2 +- .../web/css/source/module/header/actions-group/_search.less | 2 +- .../web/css/source/module/header/actions-group/_user.less | 2 +- .../source/module/header/headings-group/_breadcrumbs.less | 2 +- .../web/css/source/module/main/_actions-bar.less | 2 +- .../web/css/source/module/main/_collapsible-blocks.less | 2 +- .../web/css/source/module/main/_page-nav.less | 2 +- .../web/css/source/module/main/_store-scope.less | 2 +- .../css/source/module/main/actions-bar/_store-switcher.less | 2 +- .../web/css/source/module/pages/_cache-management.less | 2 +- .../web/css/source/module/pages/_dashboard.less | 2 +- .../Magento_Backend/web/css/source/module/pages/_login.less | 2 +- .../backend/Magento_Banner/web/css/source/_module.less | 2 +- .../backend/Magento_Braintree/web/css/source/_module.less | 2 +- .../backend/Magento_Catalog/web/css/source/_module-old.less | 2 +- .../backend/Magento_Catalog/web/css/source/_module.less | 2 +- .../Magento_CatalogPermissions/web/css/source/_module.less | 2 +- .../backend/Magento_Config/web/css/source/_module.less | 2 +- .../web/css/source/_module-old.less | 2 +- .../Magento_ConfigurableProduct/web/css/source/_module.less | 2 +- .../module/components/_attributes_template_popup.less | 2 +- .../web/css/source/module/components/_currency-addon.less | 2 +- .../web/css/source/module/components/_grid.less | 2 +- .../web/css/source/module/components/_navigation-bar.less | 2 +- .../web/css/source/module/components/_steps-wizard.less | 2 +- .../source/module/components/navigation-bar/_buttons.less | 2 +- .../module/components/navigation-bar/_navigation-bar.less | 2 +- .../web/css/source/module/steps/_attribute-values.less | 2 +- .../web/css/source/module/steps/_bulk-images.less | 2 +- .../web/css/source/module/steps/_select-attributes.less | 2 +- .../web/css/source/module/steps/_summary.less | 2 +- .../Magento_CurrencySymbol/web/css/source/_module.less | 2 +- .../backend/Magento_Customer/web/css/source/_module.less | 2 +- .../Magento_CustomerBalance/web/css/source/_module.less | 2 +- .../Magento_Developer/web/css/source/_module-old.less | 2 +- .../Magento_Downloadable/web/css/source/_module.less | 2 +- .../Magento/backend/Magento_Enterprise/layout/default.xml | 2 +- .../Magento_Enterprise/web/css/source/_module-old.less | 2 +- .../backend/Magento_GiftCard/web/css/source/_module.less | 2 +- .../Magento_GiftRegistry/web/css/source/_module-old.less | 2 +- .../Magento_GiftRegistry/web/css/source/_module.less | 2 +- .../Magento_GiftWrapping/web/css/source/_module.less | 2 +- .../backend/Magento_Integration/web/css/source/_module.less | 2 +- .../backend/Magento_Marketplace/web/css/source/_module.less | 2 +- .../backend/Magento_Msrp/web/css/source/_module-old.less | 2 +- .../Magento_ProductVideo/web/css/source/_module.less | 2 +- .../backend/Magento_Review/web/css/source/_module.less | 2 +- .../backend/Magento_Reward/web/css/source/_module.less | 2 +- .../Magento/backend/Magento_Rma/web/css/source/_module.less | 2 +- .../backend/Magento_Sales/web/css/source/_module.less | 2 +- .../Magento_Sales/web/css/source/module/_edit-order.less | 2 +- .../backend/Magento_Sales/web/css/source/module/_order.less | 2 +- .../Magento_Sales/web/css/source/module/order/_address.less | 2 +- .../web/css/source/module/order/_discounts.less | 2 +- .../web/css/source/module/order/_gift-options.less | 2 +- .../Magento_Sales/web/css/source/module/order/_items.less | 2 +- .../web/css/source/module/order/_order-account.less | 2 +- .../web/css/source/module/order/_order-comments.less | 2 +- .../web/css/source/module/order/_payment-shipping.less | 2 +- .../Magento_Sales/web/css/source/module/order/_sidebar.less | 2 +- .../Magento_Sales/web/css/source/module/order/_sku.less | 2 +- .../Magento_Sales/web/css/source/module/order/_total.less | 2 +- .../backend/Magento_Shipping/web/css/source/_module.less | 2 +- .../backend/Magento_Staging/web/css/source/_module.less | 2 +- .../web/css/source/module/_scheduled-changes-modal.less | 2 +- .../web/css/source/module/_scheduled-changes.less | 2 +- .../web/css/source/module/_staging-data-tooltip.less | 2 +- .../backend/Magento_Tax/web/css/source/_module-old.less | 2 +- .../Magento/backend/Magento_Tax/web/css/source/_module.less | 2 +- .../backend/Magento_Theme/web/css/source/_module-old.less | 2 +- .../backend/Magento_Translation/web/css/source/_module.less | 2 +- .../backend/Magento_Ui/web/css/source/_module-old.less | 2 +- .../Magento/backend/Magento_Ui/web/css/source/_module.less | 2 +- .../Magento_Ui/web/css/source/module/_data-grid.less | 2 +- .../web/css/source/module/data-grid/_data-grid-header.less | 2 +- .../web/css/source/module/data-grid/_data-grid-static.less | 2 +- .../data-grid-header/_data-grid-action-bookmarks.less | 2 +- .../data-grid-header/_data-grid-action-columns.less | 2 +- .../data-grid-header/_data-grid-action-export.less | 2 +- .../data-grid/data-grid-header/_data-grid-filters.less | 2 +- .../module/data-grid/data-grid-header/_data-grid-pager.less | 2 +- .../data-grid-header/_data-grid-sticky-header.less | 2 +- .../backend/Magento_Vault/web/css/source/_module.less | 2 +- .../backend/Magento_VersionsCms/web/css/source/_module.less | 2 +- .../Magento_VisualMerchandiser/web/css/source/_module.less | 2 +- app/design/adminhtml/Magento/backend/etc/view.xml | 2 +- app/design/adminhtml/Magento/backend/registration.php | 2 +- app/design/adminhtml/Magento/backend/theme.xml | 2 +- .../Magento/backend/web/app/setup/styles/less/_setup.less | 2 +- .../web/app/setup/styles/less/components/_messages.less | 2 +- .../app/setup/styles/less/components/_navigation-bar.less | 2 +- .../app/setup/styles/less/components/_progress-bars.less | 2 +- .../web/app/setup/styles/less/components/_tooltips.less | 2 +- .../styles/less/components/tooltips/_password-strength.less | 2 +- .../setup/styles/less/components/tooltips/_tooltips.less | 2 +- .../backend/web/app/setup/styles/less/lib/_buttons.less | 2 +- .../backend/web/app/setup/styles/less/lib/_classes.less | 2 +- .../backend/web/app/setup/styles/less/lib/_collector.less | 2 +- .../backend/web/app/setup/styles/less/lib/_extends.less | 2 +- .../backend/web/app/setup/styles/less/lib/_forms.less | 2 +- .../backend/web/app/setup/styles/less/lib/_icons.less | 2 +- .../backend/web/app/setup/styles/less/lib/_lists.less | 2 +- .../backend/web/app/setup/styles/less/lib/_structures.less | 2 +- .../backend/web/app/setup/styles/less/lib/_utilities.less | 2 +- .../backend/web/app/setup/styles/less/lib/_variables.less | 2 +- .../app/setup/styles/less/lib/forms/_checkbox-radio.less | 2 +- .../backend/web/app/setup/styles/less/lib/forms/_forms.less | 2 +- .../web/app/setup/styles/less/lib/forms/_legends.less | 2 +- .../web/app/setup/styles/less/lib/forms/_multiselects.less | 2 +- .../web/app/setup/styles/less/lib/forms/_selects.less | 2 +- .../web/app/setup/styles/less/lib/forms/_validation.less | 2 +- .../app/setup/styles/less/lib/utilities/_animations.less | 2 +- .../setup/styles/less/lib/utilities/_grid-framework.less | 2 +- .../web/app/setup/styles/less/lib/utilities/_grid.less | 2 +- .../setup/styles/less/lib/utilities/_vendor-prefixes.less | 2 +- .../backend/web/app/setup/styles/less/pages/_common.less | 2 +- .../app/setup/styles/less/pages/_customize-your-store.less | 2 +- .../backend/web/app/setup/styles/less/pages/_install.less | 2 +- .../backend/web/app/setup/styles/less/pages/_landing.less | 2 +- .../backend/web/app/setup/styles/less/pages/_license.less | 2 +- .../web/app/setup/styles/less/pages/_readiness-check.less | 2 +- .../web/app/setup/styles/less/pages/_web-configuration.less | 2 +- .../web/app/updater/styles/less/components/_data-grid.less | 2 +- .../web/app/updater/styles/less/components/_header.less | 2 +- .../web/app/updater/styles/less/components/_menu.less | 2 +- .../web/app/updater/styles/less/components/_modals.less | 2 +- .../styles/less/components/_navigation-bar_extend.less | 2 +- .../web/app/updater/styles/less/components/_page-inner.less | 2 +- .../backend/web/app/updater/styles/less/pages/_common.less | 2 +- .../app/updater/styles/less/pages/_extension-manager.less | 2 +- .../backend/web/app/updater/styles/less/pages/_home.less | 2 +- .../backend/web/app/updater/styles/less/pages/_login.less | 2 +- .../web/app/updater/styles/less/source/_extends.less | 2 +- .../backend/web/app/updater/styles/less/source/_forms.less | 2 +- .../backend/web/app/updater/styles/less/source/_lists.less | 2 +- .../web/app/updater/styles/less/source/_structure.less | 2 +- .../web/app/updater/styles/less/source/_typography.less | 2 +- .../web/app/updater/styles/less/source/_variables.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_actions.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_classes.less | 2 +- .../Magento/backend/web/css/source/_components.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_extends.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_forms.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_grid.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_icons.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_lists.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_reset.less | 2 +- .../Magento/backend/web/css/source/_responsive.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_sources.less | 2 +- .../Magento/backend/web/css/source/_structure.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_tables.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_tabs.less | 2 +- .../adminhtml/Magento/backend/web/css/source/_theme.less | 2 +- .../Magento/backend/web/css/source/_typography.less | 2 +- .../Magento/backend/web/css/source/_utilities.less | 2 +- .../Magento/backend/web/css/source/_variables.less | 2 +- .../backend/web/css/source/actions/_actions-dropdown.less | 2 +- .../backend/web/css/source/actions/_actions-multicheck.less | 2 +- .../web/css/source/actions/_actions-multiselect.less | 2 +- .../backend/web/css/source/actions/_actions-select.less | 2 +- .../backend/web/css/source/actions/_actions-split.less | 2 +- .../backend/web/css/source/actions/_actions-switcher.less | 2 +- .../backend/web/css/source/components/_calendar-temp.less | 2 +- .../backend/web/css/source/components/_data-tooltip.less | 2 +- .../backend/web/css/source/components/_file-insertion.less | 2 +- .../backend/web/css/source/components/_file-uploader.less | 2 +- .../backend/web/css/source/components/_media-gallery.less | 2 +- .../backend/web/css/source/components/_messages.less | 4 ++-- .../backend/web/css/source/components/_modals_extend.less | 2 +- .../backend/web/css/source/components/_popups-old.less | 2 +- .../Magento/backend/web/css/source/components/_popups.less | 2 +- .../backend/web/css/source/components/_resizable-block.less | 2 +- .../backend/web/css/source/components/_rules-temp.less | 2 +- .../Magento/backend/web/css/source/components/_slider.less | 2 +- .../Magento/backend/web/css/source/components/_spinner.less | 2 +- .../backend/web/css/source/components/_timeline.less | 2 +- .../Magento/backend/web/css/source/forms/_controls.less | 2 +- .../Magento/backend/web/css/source/forms/_extends.less | 2 +- .../Magento/backend/web/css/source/forms/_fields.less | 2 +- .../Magento/backend/web/css/source/forms/_form-wysiwyg.less | 2 +- .../Magento/backend/web/css/source/forms/_temp.less | 2 +- .../web/css/source/forms/controls/_checkbox-radio.less | 2 +- .../web/css/source/forms/fields/_control-collapsible.less | 2 +- .../backend/web/css/source/forms/fields/_control-table.less | 2 +- .../backend/web/css/source/forms/fields/_field-reset.less | 2 +- .../web/css/source/forms/fields/_field-tooltips.less | 2 +- .../Magento/backend/web/css/source/utilities/_actions.less | 2 +- .../backend/web/css/source/utilities/_animations.less | 2 +- .../backend/web/css/source/utilities/_grid-framework.less | 2 +- .../Magento/backend/web/css/source/utilities/_grid.less | 2 +- .../Magento/backend/web/css/source/utilities/_spinner.less | 2 +- .../Magento/backend/web/css/source/variables/_actions.less | 2 +- .../backend/web/css/source/variables/_animations.less | 2 +- .../Magento/backend/web/css/source/variables/_colors.less | 2 +- .../backend/web/css/source/variables/_components.less | 2 +- .../backend/web/css/source/variables/_data-grid.less | 2 +- .../Magento/backend/web/css/source/variables/_forms.less | 2 +- .../Magento/backend/web/css/source/variables/_icons.less | 2 +- .../Magento/backend/web/css/source/variables/_spinner.less | 2 +- .../backend/web/css/source/variables/_structure.less | 2 +- .../backend/web/css/source/variables/_typography.less | 2 +- .../adminhtml/Magento/backend/web/css/styles-old.less | 2 +- app/design/adminhtml/Magento/backend/web/css/styles.less | 2 +- app/design/adminhtml/Magento/backend/web/js/theme.js | 2 +- .../adminhtml/Magento/backend/web/mui/clearless/_all.less | 2 +- .../Magento/backend/web/mui/clearless/_arrows.less | 2 +- .../Magento/backend/web/mui/clearless/_helpers.less | 2 +- .../adminhtml/Magento/backend/web/mui/clearless/_icons.less | 2 +- .../Magento/backend/web/mui/clearless/_settings.less | 2 +- .../Magento/backend/web/mui/clearless/_sprites.less | 2 +- .../adminhtml/Magento/backend/web/mui/styles/_abstract.less | 2 +- .../adminhtml/Magento/backend/web/mui/styles/_base.less | 2 +- .../adminhtml/Magento/backend/web/mui/styles/_table.less | 2 +- .../adminhtml/Magento/backend/web/mui/styles/_vars.less | 2 +- .../Magento_AdvancedCheckout/web/css/source/_module.less | 2 +- .../Magento_AdvancedCheckout/web/css/source/_widgets.less | 2 +- .../blank/Magento_Banner/web/css/source/_widgets.less | 2 +- .../blank/Magento_Braintree/web/css/source/_module.less | 2 +- .../Magento/blank/Magento_Bundle/web/css/source/_email.less | 2 +- .../blank/Magento_Bundle/web/css/source/_module.less | 2 +- .../blank/Magento_Catalog/web/css/source/_module.less | 2 +- .../blank/Magento_Catalog/web/css/source/_widgets.less | 2 +- .../Magento_Catalog/web/css/source/module/_listings.less | 2 +- .../Magento_Catalog/web/css/source/module/_toolbar.less | 2 +- .../blank/Magento_CatalogEvent/web/css/source/_module.less | 2 +- .../blank/Magento_CatalogEvent/web/css/source/_widgets.less | 2 +- .../blank/Magento_CatalogSearch/web/css/source/_module.less | 2 +- .../blank/Magento_Checkout/web/css/source/_module.less | 2 +- .../blank/Magento_Checkout/web/css/source/module/_cart.less | 2 +- .../Magento_Checkout/web/css/source/module/_checkout.less | 2 +- .../Magento_Checkout/web/css/source/module/_minicart.less | 2 +- .../web/css/source/module/checkout/_authentication.less | 2 +- .../css/source/module/checkout/_checkout-agreements.less | 2 +- .../web/css/source/module/checkout/_checkout.less | 2 +- .../web/css/source/module/checkout/_estimated-total.less | 2 +- .../web/css/source/module/checkout/_fields.less | 2 +- .../web/css/source/module/checkout/_modals.less | 2 +- .../web/css/source/module/checkout/_order-summary.less | 2 +- .../web/css/source/module/checkout/_payment-options.less | 2 +- .../web/css/source/module/checkout/_payments.less | 2 +- .../web/css/source/module/checkout/_progress-bar.less | 2 +- .../web/css/source/module/checkout/_shipping-policy.less | 2 +- .../web/css/source/module/checkout/_shipping.less | 2 +- .../module/checkout/_sidebar-shipping-information.less | 2 +- .../web/css/source/module/checkout/_sidebar.less | 2 +- .../web/css/source/module/checkout/_tooltip.less | 2 +- .../Magento/blank/Magento_Cms/web/css/source/_widgets.less | 2 +- .../blank/Magento_Customer/web/css/source/_module.less | 2 +- .../blank/Magento_Downloadable/web/css/source/_module.less | 2 +- .../blank/Magento_GiftCard/web/css/source/_module.less | 2 +- .../Magento_GiftCardAccount/web/css/source/_module.less | 2 +- .../blank/Magento_GiftMessage/web/css/source/_module.less | 2 +- .../blank/Magento_GiftRegistry/web/css/source/_module.less | 2 +- .../blank/Magento_GiftRegistry/web/css/source/_widgets.less | 2 +- .../blank/Magento_GiftWrapping/web/css/source/_module.less | 2 +- .../Magento_GroupedProduct/web/css/source/_module.less | 2 +- .../blank/Magento_Invitation/web/css/source/_module.less | 2 +- .../Magento_LayeredNavigation/web/css/source/_module.less | 2 +- .../Magento/blank/Magento_Msrp/web/css/source/_module.less | 2 +- .../Magento_MultipleWishlist/web/css/source/_module.less | 2 +- .../Magento_MultipleWishlist/web/css/source/_widgets.less | 2 +- .../blank/Magento_Multishipping/web/css/source/_module.less | 2 +- .../blank/Magento_Newsletter/web/css/source/_module.less | 2 +- .../blank/Magento_Paypal/web/css/source/_module.less | 2 +- .../Magento_Paypal/web/css/source/module/_billing.less | 2 +- .../web/css/source/module/_paypal-button.less | 2 +- .../blank/Magento_Paypal/web/css/source/module/_review.less | 2 +- .../blank/Magento_ProductVideo/web/css/source/_module.less | 2 +- .../blank/Magento_Reports/web/css/source/_widgets.less | 2 +- .../blank/Magento_Review/web/css/source/_module.less | 2 +- .../blank/Magento_Reward/web/css/source/_module.less | 2 +- .../Magento/blank/Magento_Rma/web/css/source/_email.less | 2 +- .../Magento/blank/Magento_Rma/web/css/source/_module.less | 2 +- .../Magento/blank/Magento_Sales/web/css/source/_email.less | 2 +- .../Magento/blank/Magento_Sales/web/css/source/_module.less | 2 +- .../blank/Magento_Sales/web/css/source/_widgets.less | 2 +- .../blank/Magento_SalesRule/web/css/source/_module.less | 2 +- .../blank/Magento_SendFriend/web/css/source/_module.less | 2 +- .../blank/Magento_Theme/layout/default_head_blocks.xml | 2 +- .../Magento/blank/Magento_Theme/web/css/source/_module.less | 2 +- .../Magento/blank/Magento_Vault/web/css/source/_module.less | 2 +- .../blank/Magento_VersionsCms/web/css/source/_widgets.less | 2 +- .../Magento/blank/Magento_Weee/web/css/source/_module.less | 2 +- .../blank/Magento_Wishlist/web/css/source/_module.less | 2 +- app/design/frontend/Magento/blank/etc/view.xml | 2 +- app/design/frontend/Magento/blank/registration.php | 2 +- app/design/frontend/Magento/blank/theme.xml | 2 +- app/design/frontend/Magento/blank/web/css/_styles.less | 2 +- app/design/frontend/Magento/blank/web/css/email-fonts.less | 2 +- app/design/frontend/Magento/blank/web/css/email-inline.less | 2 +- app/design/frontend/Magento/blank/web/css/email.less | 2 +- app/design/frontend/Magento/blank/web/css/print.less | 2 +- .../Magento/blank/web/css/source/_actions-toolbar.less | 2 +- .../frontend/Magento/blank/web/css/source/_breadcrumbs.less | 2 +- .../frontend/Magento/blank/web/css/source/_buttons.less | 2 +- .../frontend/Magento/blank/web/css/source/_components.less | 2 +- .../frontend/Magento/blank/web/css/source/_email-base.less | 2 +- .../Magento/blank/web/css/source/_email-extend.less | 2 +- .../Magento/blank/web/css/source/_email-variables.less | 2 +- .../frontend/Magento/blank/web/css/source/_extends.less | 2 +- .../frontend/Magento/blank/web/css/source/_forms.less | 2 +- .../frontend/Magento/blank/web/css/source/_icons.less | 2 +- .../frontend/Magento/blank/web/css/source/_layout.less | 2 +- .../frontend/Magento/blank/web/css/source/_loaders.less | 2 +- .../frontend/Magento/blank/web/css/source/_messages.less | 2 +- .../frontend/Magento/blank/web/css/source/_navigation.less | 2 +- .../frontend/Magento/blank/web/css/source/_pages.less | 2 +- .../frontend/Magento/blank/web/css/source/_popups.less | 2 +- .../frontend/Magento/blank/web/css/source/_price.less | 2 +- .../frontend/Magento/blank/web/css/source/_reset.less | 2 +- .../frontend/Magento/blank/web/css/source/_sections.less | 2 +- .../frontend/Magento/blank/web/css/source/_sources.less | 2 +- .../frontend/Magento/blank/web/css/source/_tables.less | 2 +- .../frontend/Magento/blank/web/css/source/_theme.less | 2 +- .../frontend/Magento/blank/web/css/source/_tooltips.less | 2 +- .../frontend/Magento/blank/web/css/source/_typography.less | 2 +- .../frontend/Magento/blank/web/css/source/_variables.less | 2 +- .../blank/web/css/source/components/_modals_extend.less | 2 +- app/design/frontend/Magento/blank/web/css/styles-l.less | 2 +- app/design/frontend/Magento/blank/web/css/styles-m.less | 2 +- app/design/frontend/Magento/blank/web/js/navigation-menu.js | 2 +- app/design/frontend/Magento/blank/web/js/responsive.js | 2 +- app/design/frontend/Magento/blank/web/js/theme.js | 2 +- .../Magento_AdvancedCheckout/web/css/source/_module.less | 2 +- .../Magento_AdvancedCheckout/web/css/source/_widgets.less | 2 +- .../luma/Magento_AdvancedSearch/web/css/source/_module.less | 2 +- .../Magento/luma/Magento_Bundle/web/css/source/_module.less | 2 +- .../luma/Magento_Catalog/layout/catalog_product_view.xml | 2 +- .../Magento/luma/Magento_Catalog/layout/default.xml | 2 +- .../luma/Magento_Catalog/web/css/source/_module.less | 2 +- .../Magento_Catalog/web/css/source/module/_listings.less | 2 +- .../Magento_Catalog/web/css/source/module/_toolbar.less | 2 +- .../luma/Magento_CatalogSearch/web/css/source/_module.less | 2 +- .../luma/Magento_Checkout/layout/checkout_cart_index.xml | 2 +- .../luma/Magento_Checkout/web/css/source/_module.less | 2 +- .../luma/Magento_Checkout/web/css/source/module/_cart.less | 2 +- .../Magento_Checkout/web/css/source/module/_minicart.less | 2 +- .../web/css/source/module/checkout/_checkout.less | 2 +- .../web/css/source/module/checkout/_estimated-total.less | 2 +- .../web/css/source/module/checkout/_fields.less | 2 +- .../web/css/source/module/checkout/_modals.less | 2 +- .../web/css/source/module/checkout/_order-summary.less | 2 +- .../web/css/source/module/checkout/_payment-options.less | 2 +- .../web/css/source/module/checkout/_payments.less | 2 +- .../web/css/source/module/checkout/_progress-bar.less | 2 +- .../web/css/source/module/checkout/_shipping.less | 2 +- .../Magento/luma/Magento_Customer/email/account_new.html | 2 +- .../luma/Magento_Customer/layout/customer_account.xml | 2 +- .../Magento/luma/Magento_Customer/layout/default.xml | 2 +- .../luma/Magento_Customer/web/css/source/_email.less | 2 +- .../luma/Magento_Customer/web/css/source/_module.less | 2 +- .../Magento_CustomerBalance/web/css/source/_module.less | 2 +- .../luma/Magento_Downloadable/web/css/source/_module.less | 2 +- .../frontend/Magento/luma/Magento_Email/email/footer.html | 2 +- .../luma/Magento_GiftCard/web/css/source/_module.less | 2 +- .../Magento_GiftCardAccount/layout/checkout_cart_index.xml | 2 +- .../Magento_GiftCardAccount/web/css/source/_module.less | 2 +- .../luma/Magento_GiftMessage/web/css/source/_module.less | 2 +- .../luma/Magento_GiftRegistry/web/css/source/_module.less | 2 +- .../luma/Magento_GiftWrapping/web/css/source/_module.less | 2 +- .../luma/Magento_GroupedProduct/web/css/source/_module.less | 2 +- .../luma/Magento_Invitation/web/css/source/_module.less | 2 +- .../Magento_LayeredNavigation/templates/layer/state.phtml | 2 +- .../Magento_LayeredNavigation/templates/layer/view.phtml | 2 +- .../Magento_LayeredNavigation/web/css/source/_module.less | 2 +- .../Magento/luma/Magento_Msrp/web/css/source/_module.less | 2 +- .../Magento_MultipleWishlist/web/css/source/_module.less | 2 +- .../luma/Magento_Newsletter/web/css/source/_module.less | 2 +- .../luma/Magento_Paypal/web/css/source/module/_billing.less | 2 +- .../web/css/source/module/_paypal-button.less | 2 +- .../luma/Magento_Paypal/web/css/source/module/_review.less | 2 +- .../Magento/luma/Magento_Review/web/css/source/_module.less | 2 +- .../Magento/luma/Magento_Reward/web/css/source/_module.less | 2 +- .../Magento/luma/Magento_Rma/web/css/source/_module.less | 2 +- .../Magento/luma/Magento_Sales/email/creditmemo_new.html | 2 +- .../luma/Magento_Sales/email/creditmemo_new_guest.html | 2 +- .../Magento/luma/Magento_Sales/email/creditmemo_update.html | 2 +- .../luma/Magento_Sales/email/creditmemo_update_guest.html | 2 +- .../Magento/luma/Magento_Sales/email/invoice_new.html | 2 +- .../Magento/luma/Magento_Sales/email/invoice_new_guest.html | 2 +- .../Magento/luma/Magento_Sales/email/invoice_update.html | 2 +- .../luma/Magento_Sales/email/invoice_update_guest.html | 2 +- .../Magento/luma/Magento_Sales/email/order_new.html | 2 +- .../Magento/luma/Magento_Sales/email/order_new_guest.html | 2 +- .../Magento/luma/Magento_Sales/email/order_update.html | 2 +- .../luma/Magento_Sales/email/order_update_guest.html | 2 +- .../Magento/luma/Magento_Sales/email/shipment_new.html | 2 +- .../luma/Magento_Sales/email/shipment_new_guest.html | 2 +- .../Magento/luma/Magento_Sales/email/shipment_update.html | 2 +- .../luma/Magento_Sales/email/shipment_update_guest.html | 2 +- .../Magento/luma/Magento_Sales/web/css/source/_email.less | 2 +- .../Magento/luma/Magento_Sales/web/css/source/_module.less | 2 +- .../luma/Magento_SendFriend/web/css/source/_module.less | 2 +- .../frontend/Magento/luma/Magento_Theme/layout/default.xml | 2 +- .../luma/Magento_Theme/layout/default_head_blocks.xml | 2 +- .../Magento/luma/Magento_Theme/web/css/source/_module.less | 2 +- .../web/css/source/module/_collapsible_navigation.less | 2 +- .../Magento/luma/Magento_Vault/web/css/source/_module.less | 2 +- .../luma/Magento_Wishlist/web/css/source/_module.less | 2 +- app/design/frontend/Magento/luma/etc/view.xml | 2 +- app/design/frontend/Magento/luma/registration.php | 2 +- app/design/frontend/Magento/luma/theme.xml | 2 +- .../Magento/luma/web/css/source/_actions-toolbar.less | 2 +- .../frontend/Magento/luma/web/css/source/_breadcrumbs.less | 2 +- .../frontend/Magento/luma/web/css/source/_buttons.less | 2 +- .../frontend/Magento/luma/web/css/source/_email-extend.less | 2 +- .../Magento/luma/web/css/source/_email-variables.less | 2 +- .../frontend/Magento/luma/web/css/source/_extends.less | 2 +- app/design/frontend/Magento/luma/web/css/source/_forms.less | 2 +- app/design/frontend/Magento/luma/web/css/source/_pages.less | 2 +- .../frontend/Magento/luma/web/css/source/_popups.less | 2 +- .../frontend/Magento/luma/web/css/source/_sections.less | 2 +- .../frontend/Magento/luma/web/css/source/_tables.less | 2 +- app/design/frontend/Magento/luma/web/css/source/_theme.less | 2 +- .../frontend/Magento/luma/web/css/source/_variables.less | 2 +- .../luma/web/css/source/components/_modals_extend.less | 2 +- app/etc/NonComposerComponentRegistration.php | 2 +- app/etc/di.xml | 2 +- app/functions.php | 2 +- app/i18n/Magento/de_DE/language.xml | 2 +- app/i18n/Magento/de_DE/registration.php | 2 +- app/i18n/Magento/en_US/language.xml | 2 +- app/i18n/Magento/en_US/registration.php | 2 +- app/i18n/Magento/es_ES/language.xml | 2 +- app/i18n/Magento/es_ES/registration.php | 2 +- app/i18n/Magento/fr_FR/language.xml | 2 +- app/i18n/Magento/fr_FR/registration.php | 2 +- app/i18n/Magento/nl_NL/language.xml | 2 +- app/i18n/Magento/nl_NL/registration.php | 2 +- app/i18n/Magento/pt_BR/language.xml | 2 +- app/i18n/Magento/pt_BR/registration.php | 2 +- app/i18n/Magento/zh_Hans_CN/language.xml | 2 +- app/i18n/Magento/zh_Hans_CN/registration.php | 2 +- bin/magento | 2 +- .../_files/Magento/TestModule1/Controller/CookieTester.php | 2 +- .../TestModule1/Controller/CookieTester/DeleteCookie.php | 2 +- .../TestModule1/Controller/CookieTester/SetPublicCookie.php | 2 +- .../Controller/CookieTester/SetSensitiveCookie.php | 2 +- .../Magento/TestModule1/Service/V1/AllSoapAndRest.php | 2 +- .../TestModule1/Service/V1/AllSoapAndRestInterface.php | 2 +- .../_files/Magento/TestModule1/Service/V1/Entity/Item.php | 2 +- .../Magento/TestModule1/Service/V2/AllSoapAndRest.php | 2 +- .../TestModule1/Service/V2/AllSoapAndRestInterface.php | 2 +- .../_files/Magento/TestModule1/Service/V2/Entity/Item.php | 2 +- .../api-functional/_files/Magento/TestModule1/etc/acl.xml | 2 +- .../api-functional/_files/Magento/TestModule1/etc/di.xml | 2 +- .../_files/Magento/TestModule1/etc/extension_attributes.xml | 2 +- .../_files/Magento/TestModule1/etc/frontend/routes.xml | 4 ++-- .../_files/Magento/TestModule1/etc/module.xml | 2 +- .../_files/Magento/TestModule1/etc/webapi.xml | 2 +- .../_files/Magento/TestModule1/registration.php | 2 +- .../_files/Magento/TestModule2/Service/V1/Entity/Item.php | 2 +- .../_files/Magento/TestModule2/Service/V1/NoWebApiXml.php | 2 +- .../Magento/TestModule2/Service/V1/NoWebApiXmlInterface.php | 2 +- .../_files/Magento/TestModule2/Service/V1/SubsetRest.php | 2 +- .../Magento/TestModule2/Service/V1/SubsetRestInterface.php | 2 +- .../api-functional/_files/Magento/TestModule2/etc/acl.xml | 2 +- .../api-functional/_files/Magento/TestModule2/etc/di.xml | 2 +- .../_files/Magento/TestModule2/etc/module.xml | 2 +- .../Magento/TestModule2/etc/schema/AllSoapNoRestV1.xsd | 2 +- .../_files/Magento/TestModule2/etc/schema/NoWebApiXmlV1.xsd | 2 +- .../_files/Magento/TestModule2/etc/schema/SubsetRestV1.xsd | 2 +- .../_files/Magento/TestModule2/etc/webapi.xml | 2 +- .../_files/Magento/TestModule2/registration.php | 2 +- .../Magento/TestModule3/Service/V1/Entity/Parameter.php | 2 +- .../TestModule3/Service/V1/Entity/WrappedErrorParameter.php | 2 +- .../_files/Magento/TestModule3/Service/V1/Error.php | 2 +- .../Magento/TestModule3/Service/V1/ErrorInterface.php | 2 +- .../api-functional/_files/Magento/TestModule3/etc/acl.xml | 2 +- .../api-functional/_files/Magento/TestModule3/etc/di.xml | 2 +- .../_files/Magento/TestModule3/etc/module.xml | 2 +- .../_files/Magento/TestModule3/etc/webapi.xml | 2 +- .../_files/Magento/TestModule3/registration.php | 2 +- .../_files/Magento/TestModule4/Model/ResourceModel/Item.php | 2 +- .../Magento/TestModule4/Service/V1/DataObjectService.php | 2 +- .../TestModule4/Service/V1/DataObjectServiceInterface.php | 2 +- .../TestModule4/Service/V1/Entity/DataObjectRequest.php | 2 +- .../TestModule4/Service/V1/Entity/DataObjectResponse.php | 2 +- .../TestModule4/Service/V1/Entity/ExtensibleRequest.php | 2 +- .../Service/V1/Entity/ExtensibleRequestInterface.php | 2 +- .../Service/V1/Entity/NestedDataObjectRequest.php | 2 +- .../api-functional/_files/Magento/TestModule4/etc/acl.xml | 2 +- .../api-functional/_files/Magento/TestModule4/etc/di.xml | 2 +- .../_files/Magento/TestModule4/etc/module.xml | 2 +- .../_files/Magento/TestModule4/etc/webapi.xml | 2 +- .../_files/Magento/TestModule4/registration.php | 2 +- .../Magento/TestModule5/Service/V1/AllSoapAndRest.php | 2 +- .../TestModule5/Service/V1/AllSoapAndRestInterface.php | 2 +- .../TestModule5/Service/V1/Entity/AllSoapAndRest.php | 2 +- .../Magento/TestModule5/Service/V1/OverrideService.php | 2 +- .../TestModule5/Service/V1/OverrideServiceInterface.php | 2 +- .../Magento/TestModule5/Service/V2/AllSoapAndRest.php | 2 +- .../TestModule5/Service/V2/AllSoapAndRestInterface.php | 2 +- .../TestModule5/Service/V2/Entity/AllSoapAndRest.php | 2 +- .../api-functional/_files/Magento/TestModule5/etc/acl.xml | 2 +- .../api-functional/_files/Magento/TestModule5/etc/di.xml | 2 +- .../_files/Magento/TestModule5/etc/module.xml | 2 +- .../_files/Magento/TestModule5/etc/webapi.xml | 2 +- .../_files/Magento/TestModule5/registration.php | 2 +- .../Api/CustomerPersistenceInterface.php | 2 +- .../Api/Data/ExtensionAttributeInterface.php | 2 +- .../TestModuleDefaultHydrator/Model/Address/Mapper.php | 2 +- .../TestModuleDefaultHydrator/Model/CustomerPersistence.php | 2 +- .../Model/Data/ExtensionAttribute.php | 2 +- .../Model/ResourceModel/Address/ReadHandler.php | 2 +- .../Model/ResourceModel/Address/SaveHandler.php | 2 +- .../Model/ResourceModel/ReadHandler.php | 2 +- .../Model/ResourceModel/SaveHandler.php | 2 +- .../TestModuleDefaultHydrator/Setup/InstallSchema.php | 2 +- .../_files/Magento/TestModuleDefaultHydrator/etc/di.xml | 2 +- .../TestModuleDefaultHydrator/etc/extension_attributes.xml | 2 +- .../_files/Magento/TestModuleDefaultHydrator/etc/webapi.xml | 4 ++-- .../Magento/TestModuleDefaultHydrator/registration.php | 2 +- .../TestModuleIntegrationFromConfig/etc/integration.xml | 2 +- .../Magento/TestModuleIntegrationFromConfig/etc/module.xml | 2 +- .../TestModuleIntegrationFromConfig/registration.php | 2 +- .../Api/TestRepositoryInterface.php | 2 +- .../TestModuleJoinDirectives/Model/TestRepository.php | 2 +- .../_files/Magento/TestModuleJoinDirectives/etc/acl.xml | 2 +- .../_files/Magento/TestModuleJoinDirectives/etc/di.xml | 2 +- .../TestModuleJoinDirectives/etc/extension_attributes.xml | 2 +- .../_files/Magento/TestModuleJoinDirectives/etc/module.xml | 2 +- .../_files/Magento/TestModuleJoinDirectives/etc/webapi.xml | 2 +- .../Magento/TestModuleJoinDirectives/registration.php | 2 +- .../Magento/TestModuleMSC/Api/AllSoapAndRestInterface.php | 2 +- .../Api/Data/CustomAttributeDataObjectInterface.php | 2 +- .../Api/Data/CustomAttributeNestedDataObjectInterface.php | 2 +- .../_files/Magento/TestModuleMSC/Api/Data/ItemInterface.php | 2 +- .../_files/Magento/TestModuleMSC/Model/AllSoapAndRest.php | 2 +- .../TestModuleMSC/Model/Data/CustomAttributeDataObject.php | 2 +- .../Model/Data/CustomAttributeNestedDataObject.php | 2 +- .../TestModuleMSC/Model/Data/Eav/AttributeMetadata.php | 2 +- .../_files/Magento/TestModuleMSC/Model/Data/Item.php | 2 +- .../Magento/TestModuleMSC/Model/ResourceModel/Item.php | 2 +- .../api-functional/_files/Magento/TestModuleMSC/etc/acl.xml | 2 +- .../api-functional/_files/Magento/TestModuleMSC/etc/di.xml | 2 +- .../Magento/TestModuleMSC/etc/extension_attributes.xml | 2 +- .../_files/Magento/TestModuleMSC/etc/module.xml | 2 +- .../_files/Magento/TestModuleMSC/etc/webapi.xml | 2 +- .../_files/Magento/TestModuleMSC/registration.php | 2 +- dev/tests/api-functional/config/config-global.php.dist | 4 ++-- .../api-functional/config/install-config-mysql.php.dist | 2 +- .../Magento/TestFramework/Annotation/ApiDataFixture.php | 2 +- .../Magento/TestFramework/Authentication/OauthHelper.php | 2 +- .../TestFramework/Authentication/Rest/CurlClient.php | 2 +- .../TestFramework/Authentication/Rest/OauthClient.php | 2 +- .../Authentication/Rest/OauthClient/Signature.php | 2 +- .../Magento/TestFramework/Bootstrap/WebapiDocBlock.php | 2 +- .../framework/Magento/TestFramework/Helper/Customer.php | 2 +- .../Magento/TestFramework/TestCase/Webapi/Adapter/Rest.php | 2 +- .../TestCase/Webapi/Adapter/Rest/CurlClient.php | 2 +- .../TestCase/Webapi/Adapter/Rest/DocumentationGenerator.php | 2 +- .../Magento/TestFramework/TestCase/Webapi/Adapter/Soap.php | 2 +- .../TestFramework/TestCase/Webapi/AdapterInterface.php | 2 +- .../Magento/TestFramework/TestCase/Webapi/Curl.php | 2 +- .../Magento/TestFramework/TestCase/WebapiAbstract.php | 2 +- .../framework/Magento/TestFramework/WebApiApplication.php | 2 +- dev/tests/api-functional/framework/autoload.php | 2 +- dev/tests/api-functional/framework/bootstrap.php | 2 +- dev/tests/api-functional/phpunit.xml.dist | 2 +- .../testsuite/Magento/Bundle/Api/CartItemRepositoryTest.php | 2 +- .../Magento/Bundle/Api/OrderItemRepositoryTest.php | 2 +- .../Magento/Bundle/Api/ProductLinkManagementTest.php | 2 +- .../Magento/Bundle/Api/ProductOptionRepositoryTest.php | 2 +- .../Magento/Bundle/Api/ProductOptionTypeListTest.php | 2 +- .../testsuite/Magento/Bundle/Api/ProductServiceTest.php | 2 +- .../Magento/Catalog/Api/AttributeSetManagementTest.php | 2 +- .../Magento/Catalog/Api/AttributeSetRepositoryTest.php | 2 +- .../testsuite/Magento/Catalog/Api/BasePriceStorageTest.php | 2 +- .../Magento/Catalog/Api/CartItemRepositoryTest.php | 2 +- .../Api/CategoryAttributeOptionManagementInterfaceTest.php | 2 +- .../Magento/Catalog/Api/CategoryAttributeRepositoryTest.php | 2 +- .../Magento/Catalog/Api/CategoryLinkManagementTest.php | 2 +- .../Magento/Catalog/Api/CategoryLinkRepositoryTest.php | 2 +- .../testsuite/Magento/Catalog/Api/CategoryListTest.php | 2 +- .../Magento/Catalog/Api/CategoryManagementTest.php | 2 +- .../Magento/Catalog/Api/CategoryRepositoryTest.php | 2 +- .../testsuite/Magento/Catalog/Api/CostStorageTest.php | 2 +- .../Magento/Catalog/Api/OrderItemRepositoryTest.php | 2 +- .../Catalog/Api/ProductAttributeGroupRepositoryTest.php | 2 +- .../Magento/Catalog/Api/ProductAttributeManagementTest.php | 2 +- .../ProductAttributeMediaGalleryManagementInterfaceTest.php | 2 +- .../Api/ProductAttributeOptionManagementInterfaceTest.php | 2 +- .../Magento/Catalog/Api/ProductAttributeRepositoryTest.php | 2 +- .../Magento/Catalog/Api/ProductAttributeTypesListTest.php | 2 +- .../Catalog/Api/ProductCustomAttributeWrongTypeTest.php | 2 +- .../Catalog/Api/ProductCustomOptionRepositoryTest.php | 2 +- .../Magento/Catalog/Api/ProductCustomOptionTypeListTest.php | 2 +- .../Catalog/Api/ProductLinkManagementInterfaceTest.php | 2 +- .../Catalog/Api/ProductLinkRepositoryInterfaceTest.php | 2 +- .../Magento/Catalog/Api/ProductLinkTypeListTest.php | 2 +- .../Catalog/Api/ProductMediaAttributeManagementTest.php | 2 +- .../Magento/Catalog/Api/ProductRepositoryInterfaceTest.php | 2 +- .../Magento/Catalog/Api/ProductRepositoryMultiStoreTest.php | 2 +- .../Magento/Catalog/Api/ProductTierPriceManagementTest.php | 2 +- .../testsuite/Magento/Catalog/Api/ProductTypeListTest.php | 2 +- .../testsuite/Magento/Catalog/Api/TierPriceStorageTest.php | 2 +- .../Magento/Catalog/Api/_files/product_options.php | 2 +- .../Magento/Catalog/Api/_files/product_options_negative.php | 2 +- .../Catalog/Api/_files/product_options_update_negative.php | 2 +- .../Magento/CatalogInventory/Api/LowStockItemsTest.php | 2 +- .../CatalogInventory/Api/ProductRepositoryInterfaceTest.php | 2 +- .../Magento/CatalogInventory/Api/StockItemTest.php | 2 +- .../Magento/CatalogInventory/Api/StockStatusTest.php | 2 +- .../Api/CheckoutAgreementsRepositoryTest.php | 2 +- .../testsuite/Magento/Cms/Api/BlockRepositoryTest.php | 2 +- .../testsuite/Magento/Cms/Api/PageRepositoryTest.php | 2 +- .../ConfigurableProduct/Api/CartItemRepositoryTest.php | 2 +- .../Api/ConfigurableProductManagementTest.php | 2 +- .../Magento/ConfigurableProduct/Api/LinkManagementTest.php | 2 +- .../ConfigurableProduct/Api/OptionRepositoryTest.php | 2 +- .../ConfigurableProduct/Api/OrderItemRepositoryTest.php | 2 +- .../ConfigurableProduct/Api/ProductRepositoryTest.php | 2 +- .../Customer/Api/AccountManagementCustomAttributesTest.php | 2 +- .../Magento/Customer/Api/AccountManagementMeTest.php | 2 +- .../Magento/Customer/Api/AccountManagementTest.php | 2 +- .../testsuite/Magento/Customer/Api/AddressMetadataTest.php | 2 +- .../Magento/Customer/Api/AddressRepositoryTest.php | 2 +- .../testsuite/Magento/Customer/Api/CustomerMetadataTest.php | 2 +- .../Magento/Customer/Api/CustomerRepositoryTest.php | 2 +- .../testsuite/Magento/Customer/Api/GroupManagementTest.php | 2 +- .../testsuite/Magento/Customer/Api/GroupRepositoryTest.php | 2 +- .../Directory/Api/CountryInformationAcquirerTest.php | 2 +- .../Directory/Api/CurrencyInformationAcquirerTest.php | 2 +- .../Magento/Downloadable/Api/CartItemRepositoryTest.php | 2 +- .../Magento/Downloadable/Api/LinkRepositoryTest.php | 2 +- .../Magento/Downloadable/Api/OrderItemRepositoryTest.php | 2 +- .../Magento/Downloadable/Api/ProductRepositoryTest.php | 2 +- .../Magento/Downloadable/Api/SampleRepositoryTest.php | 2 +- .../Magento/Eav/Api/AttributeSetManagementTest.php | 2 +- .../Magento/Eav/Api/AttributeSetRepositoryTest.php | 2 +- .../testsuite/Magento/Framework/Api/Search/SearchTest.php | 2 +- .../Magento/Framework/Model/Entity/HydratorTest.php | 2 +- .../Magento/Framework/Stdlib/CookieManagerTest.php | 2 +- .../Magento/GiftMessage/Api/CartRepositoryTest.php | 2 +- .../Magento/GiftMessage/Api/GuestCartRepositoryTest.php | 2 +- .../Magento/GiftMessage/Api/GuestItemRepositoryTest.php | 2 +- .../Magento/GiftMessage/Api/ItemRepositoryTest.php | 2 +- .../GroupedProduct/Api/ProductLinkManagementTest.php | 2 +- .../GroupedProduct/Api/ProductLinkRepositoryTest.php | 2 +- .../Magento/GroupedProduct/Api/ProductLinkTypeListTest.php | 2 +- .../GroupedProduct/Api/ProductRepositoryInterfaceTest.php | 2 +- .../Magento/Integration/Model/AdminTokenServiceTest.php | 2 +- .../Magento/Integration/Model/CustomerTokenServiceTest.php | 2 +- .../testsuite/Magento/Integration/Model/IntegrationTest.php | 2 +- .../Magento/Quote/Api/BillingAddressManagementTest.php | 2 +- .../testsuite/Magento/Quote/Api/CartItemRepositoryTest.php | 2 +- .../testsuite/Magento/Quote/Api/CartManagementTest.php | 2 +- .../testsuite/Magento/Quote/Api/CartRepositoryTest.php | 2 +- .../testsuite/Magento/Quote/Api/CartTotalRepositoryTest.php | 2 +- .../testsuite/Magento/Quote/Api/CouponManagementTest.php | 2 +- .../Magento/Quote/Api/GuestBillingAddressManagementTest.php | 2 +- .../Magento/Quote/Api/GuestCartItemRepositoryTest.php | 2 +- .../testsuite/Magento/Quote/Api/GuestCartManagementTest.php | 2 +- .../testsuite/Magento/Quote/Api/GuestCartRepositoryTest.php | 2 +- .../Magento/Quote/Api/GuestCartTotalRepositoryTest.php | 2 +- .../Magento/Quote/Api/GuestCouponManagementTest.php | 2 +- .../Magento/Quote/Api/GuestPaymentMethodManagementTest.php | 2 +- .../Magento/Quote/Api/GuestShipmentEstimationTest.php | 2 +- .../Magento/Quote/Api/GuestShippingMethodManagementTest.php | 2 +- .../Magento/Quote/Api/PaymentMethodManagementTest.php | 2 +- .../Magento/Quote/Api/ShippingMethodManagementTest.php | 2 +- .../Magento/Sales/Service/V1/CreditMemoCreateRefundTest.php | 2 +- .../Magento/Sales/Service/V1/CreditmemoAddCommentTest.php | 2 +- .../Magento/Sales/Service/V1/CreditmemoCancelTest.php | 2 +- .../Magento/Sales/Service/V1/CreditmemoCommentsListTest.php | 2 +- .../Magento/Sales/Service/V1/CreditmemoCreateTest.php | 2 +- .../Magento/Sales/Service/V1/CreditmemoEmailTest.php | 2 +- .../Magento/Sales/Service/V1/CreditmemoGetTest.php | 2 +- .../Magento/Sales/Service/V1/CreditmemoListTest.php | 2 +- .../Magento/Sales/Service/V1/InvoiceAddCommentTest.php | 2 +- .../Magento/Sales/Service/V1/InvoiceCaptureTest.php | 2 +- .../Magento/Sales/Service/V1/InvoiceCommentsListTest.php | 2 +- .../Magento/Sales/Service/V1/InvoiceCreateTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/InvoiceEmailTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/InvoiceGetTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/InvoiceListTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/InvoiceVoidTest.php | 2 +- .../Magento/Sales/Service/V1/OrderAddressUpdateTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/OrderCancelTest.php | 2 +- .../Magento/Sales/Service/V1/OrderCommentsListTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/OrderCreateTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/OrderEmailTest.php | 2 +- .../Magento/Sales/Service/V1/OrderGetStatusTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/OrderGetTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/OrderHoldTest.php | 2 +- .../Magento/Sales/Service/V1/OrderInvoiceCreateTest.php | 2 +- .../Magento/Sales/Service/V1/OrderItemGetListTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/OrderItemGetTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/OrderListTest.php | 2 +- .../Magento/Sales/Service/V1/OrderStatusHistoryAddTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/OrderUnHoldTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/RefundOrderTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/ShipOrderTest.php | 2 +- .../Magento/Sales/Service/V1/ShipmentAddCommentTest.php | 2 +- .../Magento/Sales/Service/V1/ShipmentAddTrackTest.php | 2 +- .../Magento/Sales/Service/V1/ShipmentCommentsListTest.php | 2 +- .../Magento/Sales/Service/V1/ShipmentCreateTest.php | 2 +- .../Magento/Sales/Service/V1/ShipmentEmailTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/ShipmentGetTest.php | 2 +- .../Magento/Sales/Service/V1/ShipmentLabelGetTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/ShipmentListTest.php | 2 +- .../Magento/Sales/Service/V1/ShipmentRemoveTrackTest.php | 2 +- .../testsuite/Magento/Sales/Service/V1/TransactionTest.php | 2 +- .../Api/Service/V1/ReturnItemsAfterRefundOrderTest.php | 2 +- .../Magento/SalesRule/Api/CouponManagementTest.php | 2 +- .../Magento/SalesRule/Api/CouponRepositoryTest.php | 2 +- .../testsuite/Magento/SalesRule/Api/RuleRepositoryTest.php | 2 +- .../testsuite/Magento/Store/Api/GroupRepositoryTest.php | 2 +- .../testsuite/Magento/Store/Api/StoreConfigManagerTest.php | 2 +- .../testsuite/Magento/Store/Api/StoreRepositoryTest.php | 2 +- .../testsuite/Magento/Store/Api/WebsiteRepositoryTest.php | 2 +- .../testsuite/Magento/Tax/Api/TaxClassRepositoryTest.php | 2 +- .../testsuite/Magento/Tax/Api/TaxRateRepositoryTest.php | 2 +- .../Magento/Tax/Api/TaxRuleRepositoryInterfaceTest.php | 2 +- .../testsuite/Magento/Webapi/Authentication/RestTest.php | 2 +- .../Webapi/CustomAttributeTypeWsdlGenerationTest.php | 2 +- .../DataObjectSerialization/ServiceSerializationTest.php | 2 +- .../testsuite/Magento/Webapi/DeserializationTest.php | 2 +- .../testsuite/Magento/Webapi/JoinDirectivesTest.php | 2 +- .../Magento/Webapi/JsonGenerationFromDataObjectTest.php | 2 +- .../testsuite/Magento/Webapi/PartialResponseTest.php | 2 +- .../testsuite/Magento/Webapi/Routing/BaseService.php | 2 +- .../testsuite/Magento/Webapi/Routing/CoreRoutingTest.php | 2 +- .../testsuite/Magento/Webapi/Routing/GettersTest.php | 2 +- .../testsuite/Magento/Webapi/Routing/NoWebApiXmlTest.php | 2 +- .../Magento/Webapi/Routing/RequestIdOverrideTest.php | 2 +- .../Magento/Webapi/Routing/RestErrorHandlingTest.php | 2 +- .../Magento/Webapi/Routing/ServiceVersionV1Test.php | 2 +- .../Magento/Webapi/Routing/ServiceVersionV2Test.php | 2 +- .../Magento/Webapi/Routing/SoapErrorHandlingTest.php | 2 +- .../testsuite/Magento/Webapi/Routing/SubsetTest.php | 2 +- .../Magento/Webapi/WsdlGenerationFromDataObjectTest.php | 2 +- dev/tests/functional/bootstrap.php | 2 +- dev/tests/functional/credentials.xml.dist | 2 +- dev/tests/functional/etc/config.xml.dist | 2 +- dev/tests/functional/etc/config.xsd | 2 +- dev/tests/functional/etc/di.xml | 2 +- dev/tests/functional/etc/events.xml | 2 +- dev/tests/functional/etc/events.xsd | 4 ++-- dev/tests/functional/etc/repository_replacer.xml | 2 +- dev/tests/functional/isolation.php | 2 +- .../functional/lib/Magento/Mtf/App/State/AbstractState.php | 2 +- dev/tests/functional/lib/Magento/Mtf/App/State/State1.php | 2 +- .../lib/Magento/Mtf/Client/Element/ConditionsElement.php | 2 +- .../lib/Magento/Mtf/Client/Element/DatepickerElement.php | 2 +- .../Mtf/Client/Element/DropdownmultiselectElement.php | 2 +- .../lib/Magento/Mtf/Client/Element/GlobalsearchElement.php | 2 +- .../lib/Magento/Mtf/Client/Element/JquerytreeElement.php | 2 +- .../lib/Magento/Mtf/Client/Element/LiselectstoreElement.php | 2 +- .../Mtf/Client/Element/MultiselectgrouplistElement.php | 2 +- .../Magento/Mtf/Client/Element/MultiselectlistElement.php | 2 +- .../lib/Magento/Mtf/Client/Element/MultisuggestElement.php | 2 +- .../Magento/Mtf/Client/Element/OptgroupselectElement.php | 2 +- .../lib/Magento/Mtf/Client/Element/RadiobuttonElement.php | 2 +- .../lib/Magento/Mtf/Client/Element/SelectstoreElement.php | 2 +- .../Magento/Mtf/Client/Element/SimplifiedselectElement.php | 2 +- .../lib/Magento/Mtf/Client/Element/SuggestElement.php | 2 +- .../lib/Magento/Mtf/Client/Element/SwitcherElement.php | 2 +- .../functional/lib/Magento/Mtf/Client/Element/Tree.php | 2 +- .../lib/Magento/Mtf/Client/Element/TreeElement.php | 2 +- .../lib/Magento/Mtf/Constraint/AbstractAssertForm.php | 2 +- .../functional/lib/Magento/Mtf/EntryPoint/EntryPoint.php | 2 +- dev/tests/functional/lib/Magento/Mtf/Handler/Webapi.php | 2 +- dev/tests/functional/lib/Magento/Mtf/Page/BackendPage.php | 2 +- .../lib/Magento/Mtf/System/Observer/WebapiResponse.php | 2 +- dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli.php | 2 +- .../functional/lib/Magento/Mtf/Util/Command/Cli/Cache.php | 2 +- .../functional/lib/Magento/Mtf/Util/Command/Cli/Cron.php | 2 +- .../functional/lib/Magento/Mtf/Util/Command/Cli/Indexer.php | 2 +- .../functional/lib/Magento/Mtf/Util/Command/Cli/Queue.php | 2 +- .../functional/lib/Magento/Mtf/Util/Command/Cli/Setup.php | 2 +- .../functional/lib/Magento/Mtf/Util/Command/File/Export.php | 2 +- .../lib/Magento/Mtf/Util/Command/File/Export/Data.php | 2 +- .../lib/Magento/Mtf/Util/Command/File/Export/Reader.php | 2 +- .../Mtf/Util/Command/File/Export/ReaderInterface.php | 2 +- .../lib/Magento/Mtf/Util/Command/File/ExportInterface.php | 2 +- .../functional/lib/Magento/Mtf/Util/Command/Website.php | 2 +- .../functional/lib/Magento/Mtf/Util/Generate/Factory.php | 2 +- .../Magento/Mtf/Util/Generate/Factory/AbstractFactory.php | 2 +- .../lib/Magento/Mtf/Util/Generate/Factory/Block.php | 2 +- .../lib/Magento/Mtf/Util/Generate/Factory/Fixture.php | 2 +- .../lib/Magento/Mtf/Util/Generate/Factory/Handler.php | 2 +- .../lib/Magento/Mtf/Util/Generate/Factory/Page.php | 2 +- .../lib/Magento/Mtf/Util/Generate/Factory/Repository.php | 2 +- .../Magento/Mtf/Util/Generate/Fixture/FieldsProvider.php | 2 +- .../lib/Magento/Mtf/Util/Generate/Fixture/SchemaXml.php | 2 +- .../lib/Magento/Mtf/Util/Generate/Fixture/template.xml | 2 +- .../Mtf/Util/Generate/Repository/RepositoryResource.php | 2 +- .../Mtf/Util/Generate/Repository/TableCollection.php | 2 +- .../lib/Magento/Mtf/Util/ModuleResolver/SequenceSorter.php | 2 +- .../Mtf/Util/Protocol/CurlTransport/BackendDecorator.php | 2 +- .../Mtf/Util/Protocol/CurlTransport/FrontendDecorator.php | 2 +- .../Mtf/Util/Protocol/CurlTransport/WebapiDecorator.php | 2 +- dev/tests/functional/phpunit.xml.dist | 2 +- .../AdminNotification/Test/Block/System/Messages.php | 2 +- .../AdminNotification/Test/Block/System/Messages/System.php | 2 +- .../AdminNotification/Test/TestCase/NavigateMenuTest.xml | 2 +- .../app/Magento/Authorizenet/Test/Repository/ConfigData.xml | 2 +- .../Authorizenet/Test/TestCase/OnePageCheckoutTest.xml | 2 +- .../tests/app/Magento/Backend/Test/Block/Admin/Login.php | 2 +- .../tests/app/Magento/Backend/Test/Block/Admin/Login.xml | 2 +- .../app/Magento/Backend/Test/Block/Dashboard/StoreStats.php | 2 +- .../app/Magento/Backend/Test/Block/Dashboard/StoreStats.xml | 2 +- .../Magento/Backend/Test/Block/Dashboard/Tab/Products.php | 2 +- .../Backend/Test/Block/Dashboard/Tab/Products/Ordered.php | 2 +- .../tests/app/Magento/Backend/Test/Block/Denied.php | 2 +- .../app/Magento/Backend/Test/Block/FormPageActions.php | 2 +- .../app/Magento/Backend/Test/Block/GridPageActions.php | 2 +- .../tests/app/Magento/Backend/Test/Block/Menu.php | 2 +- .../tests/app/Magento/Backend/Test/Block/Messages.php | 2 +- .../tests/app/Magento/Backend/Test/Block/Page/Error.php | 2 +- .../tests/app/Magento/Backend/Test/Block/Page/Header.php | 2 +- .../tests/app/Magento/Backend/Test/Block/Page/Main.php | 2 +- .../tests/app/Magento/Backend/Test/Block/PageActions.php | 2 +- .../app/Magento/Backend/Test/Block/System/Config/Form.php | 2 +- .../Magento/Backend/Test/Block/System/Config/Form/Group.php | 2 +- .../Backend/Test/Block/System/Config/PageActions.php | 2 +- .../Magento/Backend/Test/Block/System/Config/Payments.php | 2 +- .../Magento/Backend/Test/Block/System/Store/Delete/Form.php | 2 +- .../Magento/Backend/Test/Block/System/Store/Delete/Form.xml | 2 +- .../Backend/Test/Block/System/Store/Edit/Form/GroupForm.php | 2 +- .../Backend/Test/Block/System/Store/Edit/Form/GroupForm.xml | 2 +- .../Backend/Test/Block/System/Store/Edit/Form/StoreForm.php | 2 +- .../Backend/Test/Block/System/Store/Edit/Form/StoreForm.xml | 2 +- .../Test/Block/System/Store/Edit/Form/WebsiteForm.php | 2 +- .../Test/Block/System/Store/Edit/Form/WebsiteForm.xml | 2 +- .../Backend/Test/Block/System/Store/FormPageActions.php | 2 +- .../Backend/Test/Block/System/Store/GridPageActions.php | 2 +- .../Magento/Backend/Test/Block/System/Store/StoreGrid.php | 2 +- .../tests/app/Magento/Backend/Test/Block/Template.php | 2 +- .../tests/app/Magento/Backend/Test/Block/Version.php | 2 +- .../app/Magento/Backend/Test/Block/Widget/FormTabs.php | 2 +- .../tests/app/Magento/Backend/Test/Block/Widget/Grid.php | 2 +- .../tests/app/Magento/Backend/Test/Block/Widget/Tab.php | 2 +- .../Test/Constraint/AssertAdminLoginPageIsAvailable.php | 2 +- .../Test/Constraint/AssertBackendPageIsAvailable.php | 2 +- .../Test/Constraint/AssertBestsellersOnDashboard.php | 2 +- .../Test/Constraint/AssertGlobalSearchCustomerName.php | 2 +- .../Test/Constraint/AssertGlobalSearchNoRecordsFound.php | 2 +- .../Backend/Test/Constraint/AssertGlobalSearchOrderId.php | 2 +- .../Backend/Test/Constraint/AssertGlobalSearchPreview.php | 2 +- .../Test/Constraint/AssertGlobalSearchProductName.php | 2 +- .../Test/Constraint/AssertHttpsHeaderOptionsAvailable.php | 2 +- .../Constraint/AssertHttpsHeaderOptionsNotAvailable.php | 2 +- .../Backend/Test/Constraint/AssertMenuItemNotVisible.php | 2 +- .../Backend/Test/Constraint/AssertStoreCanBeLocalized.php | 2 +- .../app/Magento/Backend/Test/Fixture/Admin/SuperAdmin.php | 2 +- .../tests/app/Magento/Backend/Test/Fixture/GlobalSearch.xml | 2 +- .../app/Magento/Backend/Test/Fixture/GlobalSearch/Query.php | 2 +- .../tests/app/Magento/Backend/Test/Fixture/Source/Date.php | 2 +- .../tests/app/Magento/Backend/Test/Handler/Conditions.php | 2 +- .../tests/app/Magento/Backend/Test/Handler/Extractor.php | 2 +- .../tests/app/Magento/Backend/Test/Handler/Ui/LoginUser.php | 2 +- .../app/Magento/Backend/Test/Handler/Ui/LogoutUser.php | 2 +- .../tests/app/Magento/Backend/Test/Page/AdminAuthLogin.php | 2 +- .../app/Magento/Backend/Test/Page/Adminhtml/Dashboard.xml | 2 +- .../app/Magento/Backend/Test/Page/Adminhtml/DeleteGroup.xml | 2 +- .../Magento/Backend/Test/Page/Adminhtml/DeleteWebsite.xml | 2 +- .../app/Magento/Backend/Test/Page/Adminhtml/EditGroup.xml | 2 +- .../app/Magento/Backend/Test/Page/Adminhtml/EditStore.xml | 2 +- .../app/Magento/Backend/Test/Page/Adminhtml/EditWebsite.xml | 2 +- .../Magento/Backend/Test/Page/Adminhtml/NewGroupIndex.xml | 2 +- .../Magento/Backend/Test/Page/Adminhtml/NewWebsiteIndex.xml | 2 +- .../app/Magento/Backend/Test/Page/Adminhtml/StoreDelete.xml | 2 +- .../app/Magento/Backend/Test/Page/Adminhtml/StoreIndex.xml | 2 +- .../app/Magento/Backend/Test/Page/Adminhtml/StoreNew.xml | 2 +- .../Magento/Backend/Test/Page/Adminhtml/SystemConfig.xml | 2 +- .../Backend/Test/Page/Adminhtml/SystemConfigEdit.xml | 2 +- .../Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml | 2 +- .../app/Magento/Backend/Test/Repository/ConfigData.xml | 2 +- .../Backend/Test/TestCase/ExpireAdminSessionTest.php | 2 +- .../Backend/Test/TestCase/ExpireAdminSessionTest.xml | 2 +- .../Backend/Test/TestCase/GlobalSearchEntityTest.php | 2 +- .../Backend/Test/TestCase/GlobalSearchEntityTest.xml | 2 +- .../Backend/Test/TestCase/HttpsHeadersDisableTest.php | 2 +- .../Backend/Test/TestCase/HttpsHeadersDisableTest.xml | 2 +- .../Backend/Test/TestCase/HttpsHeadersEnableTest.php | 2 +- .../Backend/Test/TestCase/HttpsHeadersEnableTest.xml | 2 +- .../app/Magento/Backend/Test/TestCase/NavigateMenuTest.php | 2 +- .../app/Magento/Backend/Test/TestCase/NavigateMenuTest.xml | 2 +- .../functional/tests/app/Magento/Backend/Test/etc/di.xml | 2 +- .../app/Magento/Backup/Test/Block/Adminhtml/BackupGrid.php | 2 +- .../Magento/Backup/Test/Constraint/AssertBackupInGrid.php | 2 +- .../app/Magento/Backup/Test/Page/Adminhtml/BackupIndex.xml | 2 +- .../app/Magento/Backup/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Magento/Braintree/Test/Block/Adminhtml/Report/Grid.php | 2 +- .../app/Magento/Braintree/Test/Block/Form/BraintreeCc.php | 2 +- .../app/Magento/Braintree/Test/Block/Form/BraintreeCc.xml | 4 ++-- .../app/Magento/Braintree/Test/Block/Form/Secure3d.php | 2 +- .../app/Magento/Braintree/Test/Block/Form/Secure3d.xml | 4 ++-- .../app/Magento/Braintree/Test/Block/Paypal/PopupWindow.php | 2 +- .../Braintree/Test/Block/System/Config/Braintree.php | 2 +- .../Test/Constraint/Assert3dSecureInfoIsPresent.php | 2 +- .../AssertTransactionIsPresentInSettlementReport.php | 2 +- .../Magento/Braintree/Test/Fixture/Secure3dBraintree.xml | 2 +- .../Test/Page/Adminhtml/BraintreeSettlementReport.xml | 2 +- .../Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml | 2 +- .../app/Magento/Braintree/Test/Page/CatalogProductView.xml | 2 +- .../tests/app/Magento/Braintree/Test/Page/CheckoutCart.xml | 2 +- .../app/Magento/Braintree/Test/Page/CheckoutOnepage.xml | 2 +- .../app/Magento/Braintree/Test/Repository/ConfigData.xml | 2 +- .../app/Magento/Braintree/Test/Repository/CreditCard.xml | 2 +- .../app/Magento/Braintree/Test/Repository/Secure3d.xml | 2 +- .../Test/TestCase/BraintreeSettlementReportTest.php | 2 +- .../Test/TestCase/BraintreeSettlementReportTest.xml | 4 ++-- .../Test/TestCase/CheckoutWithBraintreePaypalCartTest.php | 2 +- .../Test/TestCase/CheckoutWithBraintreePaypalCartTest.xml | 2 +- .../TestCase/CheckoutWithBraintreePaypalMinicartTest.php | 2 +- .../TestCase/CheckoutWithBraintreePaypalMinicartTest.xml | 2 +- .../TestCase/CreateOnlineCreditMemoBraintreePaypalTest.php | 2 +- .../TestCase/CreateOnlineCreditMemoBraintreePaypalTest.xml | 2 +- .../Test/TestCase/CreateOnlineInvoiceEntityTest.xml | 2 +- .../Braintree/Test/TestCase/CreateOrderBackendTest.xml | 2 +- .../CreateOrderWithPayPalBraintreeVaultBackendTest.php | 2 +- .../CreateOrderWithPayPalBraintreeVaultBackendTest.xml | 2 +- .../Braintree/Test/TestCase/CreateVaultOrderBackendTest.xml | 2 +- .../Braintree/Test/TestCase/InvoicePayPalBraintreeTest.php | 2 +- .../Braintree/Test/TestCase/InvoicePaypalBraintreeTest.xml | 2 +- .../Test/TestCase/OnePageCheckoutAcceptPaymentTest.php | 2 +- .../Test/TestCase/OnePageCheckoutAcceptPaymentTest.xml | 2 +- .../Braintree/Test/TestCase/OnePageCheckoutDeclinedTest.xml | 2 +- .../Test/TestCase/OnePageCheckoutDenyPaymentTest.php | 2 +- .../Test/TestCase/OnePageCheckoutDenyPaymentTest.xml | 2 +- .../Magento/Braintree/Test/TestCase/OnePageCheckoutTest.xml | 2 +- .../Test/TestCase/OnePageCheckoutWith3dSecureFailedTest.php | 2 +- .../Test/TestCase/OnePageCheckoutWith3dSecureFailedTest.xml | 2 +- .../Test/TestCase/OnePageCheckoutWith3dSecureTest.php | 2 +- .../Test/TestCase/OnePageCheckoutWith3dSecureTest.xml | 2 +- .../TestCase/OnePageCheckoutWithBraintreePaypalTest.php | 2 +- .../TestCase/OnePageCheckoutWithBraintreePaypalTest.xml | 2 +- .../Test/TestCase/OnePageCheckoutWithDiscountTest.xml | 2 +- .../Braintree/Test/TestCase/ReorderUsingVaultTest.xml | 2 +- .../TestCase/SaveUseDeleteVaultForPaypalBraintreeTest.php | 2 +- .../TestCase/SaveUseDeleteVaultForPaypalBraintreeTest.xml | 2 +- .../Braintree/Test/TestCase/UseVaultOnCheckoutTest.xml | 2 +- .../Test/TestCase/UseVaultWith3dSecureOnCheckoutTest.php | 2 +- .../Test/TestCase/UseVaultWith3dSecureOnCheckoutTest.xml | 2 +- .../Magento/Braintree/Test/TestStep/AcceptPaymentStep.php | 2 +- .../Test/TestStep/ChangeOrderStatusToPaymentReviewStep.php | 2 +- .../Braintree/Test/TestStep/CheckBraintreeConfigStep.php | 2 +- .../Test/TestStep/CheckoutWithPaypalFromCartStep.php | 2 +- .../Test/TestStep/CheckoutWithPaypalFromMinicartStep.php | 2 +- .../Braintree/Test/TestStep/ContinueToPaypalStep.php | 2 +- .../app/Magento/Braintree/Test/TestStep/DenyPaymentStep.php | 2 +- .../Test/TestStep/PlaceOrderWith3dSecureFailedStep.php | 2 +- .../Braintree/Test/TestStep/PlaceOrderWith3dSecureStep.php | 2 +- .../Braintree/Test/TestStep/PlaceOrderWithPaypalStep.php | 2 +- .../functional/tests/app/Magento/Braintree/Test/etc/di.xml | 2 +- .../tests/app/Magento/Braintree/Test/etc/testcase.xml | 2 +- .../Block/Adminhtml/Catalog/Product/Edit/Section/Bundle.php | 2 +- .../Catalog/Product/Edit/Section/Bundle/Option.php | 2 +- .../Catalog/Product/Edit/Section/Bundle/Option.xml | 2 +- .../Product/Edit/Section/Bundle/Option/Search/Grid.php | 2 +- .../Product/Edit/Section/Bundle/Option/Selection.php | 2 +- .../Product/Edit/Section/Bundle/Option/Selection.xml | 2 +- .../Test/Block/Adminhtml/Product/Composite/Configure.php | 2 +- .../Test/Block/Adminhtml/Product/Composite/Configure.xml | 2 +- .../Bundle/Test/Block/Adminhtml/Product/ProductForm.xml | 2 +- .../app/Magento/Bundle/Test/Block/Catalog/Product/View.php | 2 +- .../Bundle/Test/Block/Catalog/Product/View/Summary.php | 2 +- .../Block/Catalog/Product/View/Summary/ConfiguredPrice.php | 2 +- .../Bundle/Test/Block/Catalog/Product/View/Type/Bundle.php | 2 +- .../Bundle/Test/Block/Catalog/Product/View/Type/Option.php | 2 +- .../Block/Catalog/Product/View/Type/Option/Checkbox.php | 2 +- .../Block/Catalog/Product/View/Type/Option/Checkbox.xml | 2 +- .../Block/Catalog/Product/View/Type/Option/Dropdown.php | 2 +- .../Block/Catalog/Product/View/Type/Option/Dropdown.xml | 2 +- .../Block/Catalog/Product/View/Type/Option/Element/Qty.php | 2 +- .../Test/Block/Catalog/Product/View/Type/Option/Hidden.php | 2 +- .../Test/Block/Catalog/Product/View/Type/Option/Hidden.xml | 2 +- .../Block/Catalog/Product/View/Type/Option/Multiple.php | 2 +- .../Block/Catalog/Product/View/Type/Option/Multiple.xml | 2 +- .../Block/Catalog/Product/View/Type/Option/Radiobuttons.php | 2 +- .../Block/Catalog/Product/View/Type/Option/Radiobuttons.xml | 2 +- .../Bundle/Test/Constraint/AssertBundleInCategory.php | 2 +- .../Test/Constraint/AssertBundleItemsOnProductPage.php | 2 +- .../Constraint/AssertBundleItemsSummaryOnProductPage.php | 2 +- .../Test/Constraint/AssertBundleOptionTitleOnStorefront.php | 2 +- .../Bundle/Test/Constraint/AssertBundleOptionsDeleted.php | 2 +- .../Constraint/AssertBundlePriceCalculatedOnProductPage.php | 2 +- .../Bundle/Test/Constraint/AssertBundlePriceType.php | 2 +- .../Bundle/Test/Constraint/AssertBundlePriceView.php | 2 +- .../Bundle/Test/Constraint/AssertBundleProductForm.php | 2 +- .../Bundle/Test/Constraint/AssertBundleProductInCart.php | 2 +- .../AssertBundleProductInCustomerWishlistOnBackendGrid.php | 2 +- .../Bundle/Test/Constraint/AssertBundleProductPage.php | 2 +- .../AssertProductCustomOptionsOnBundleProductPage.php | 2 +- .../Test/Constraint/AssertTierPriceOnBundleProductPage.php | 2 +- .../tests/app/Magento/Bundle/Test/Fixture/BundleProduct.xml | 2 +- .../Bundle/Test/Fixture/BundleProduct/BundleSelections.php | 2 +- .../tests/app/Magento/Bundle/Test/Fixture/Cart/Item.php | 2 +- .../Test/Handler/BundleProduct/BundleProductInterface.php | 2 +- .../app/Magento/Bundle/Test/Handler/BundleProduct/Curl.php | 2 +- .../Magento/Bundle/Test/Handler/BundleProduct/Webapi.php | 2 +- .../Bundle/Test/Page/Adminhtml/CustomerIndexEdit.xml | 2 +- .../Magento/Bundle/Test/Page/Adminhtml/OrderCreateIndex.xml | 2 +- .../Magento/Bundle/Test/Page/Product/CatalogProductView.xml | 2 +- .../app/Magento/Bundle/Test/Repository/BundleProduct.xml | 2 +- .../Test/Repository/BundleProduct/BundleSelections.xml | 2 +- .../Bundle/Test/Repository/BundleProduct/CheckoutData.xml | 2 +- .../Magento/Bundle/Test/Repository/BundleProduct/Price.xml | 2 +- .../Bundle/Test/TestCase/BundleOptionsSummaryTest.php | 2 +- .../Bundle/Test/TestCase/BundleOptionsSummaryTest.xml | 2 +- .../Bundle/Test/TestCase/CreateBundleProductEntityTest.php | 2 +- .../Bundle/Test/TestCase/CreateBundleProductEntityTest.xml | 2 +- .../Bundle/Test/TestCase/DeleteProductEntityTest.xml | 2 +- .../Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml | 2 +- .../MoveRecentlyComparedProductsOnOrderPageTest.xml | 2 +- .../Bundle/Test/TestCase/UpdateBundleOptionsTest.php | 2 +- .../Bundle/Test/TestCase/UpdateBundleOptionsTest.xml | 4 ++-- .../Bundle/Test/TestCase/UpdateBundleProductEntityTest.php | 2 +- .../Bundle/Test/TestCase/UpdateBundleProductEntityTest.xml | 2 +- .../Bundle/Test/TestCase/ValidateOrderOfProductTypeTest.xml | 2 +- .../tests/app/Magento/Bundle/Test/etc/curl/di.xml | 2 +- .../functional/tests/app/Magento/Bundle/Test/etc/di.xml | 2 +- .../tests/app/Magento/Bundle/Test/etc/webapi/di.xml | 2 +- .../Magento/Catalog/Test/Block/AbstractConfigureBlock.php | 2 +- .../app/Magento/Catalog/Test/Block/AbstractPriceBlock.php | 2 +- .../Test/Block/Adminhtml/Category/Edit/CategoryForm.php | 2 +- .../Test/Block/Adminhtml/Category/Edit/CategoryForm.xml | 2 +- .../Test/Block/Adminhtml/Category/Edit/PageActions.php | 2 +- .../Block/Adminhtml/Category/Edit/Section/ProductGrid.php | 2 +- .../Test/Block/Adminhtml/Category/Edit/Section/Products.php | 2 +- .../Magento/Catalog/Test/Block/Adminhtml/Category/Tree.php | 2 +- .../Test/Block/Adminhtml/Category/Widget/Chooser.php | 2 +- .../Block/Adminhtml/Product/Attribute/AttributeForm.php | 2 +- .../Block/Adminhtml/Product/Attribute/AttributeForm.xml | 2 +- .../Block/Adminhtml/Product/Attribute/CustomAttribute.php | 2 +- .../Adminhtml/Product/Attribute/Edit/AttributeForm.php | 2 +- .../Adminhtml/Product/Attribute/Edit/AttributeForm.xml | 2 +- .../Test/Block/Adminhtml/Product/Attribute/Edit/Options.php | 2 +- .../Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php | 2 +- .../Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php | 2 +- .../Adminhtml/Product/Attribute/Edit/Tab/Options/Option.php | 2 +- .../Adminhtml/Product/Attribute/Edit/Tab/Options/Option.xml | 2 +- .../Catalog/Test/Block/Adminhtml/Product/Attribute/Grid.php | 2 +- .../Adminhtml/Product/Attribute/Set/FormPageActions.php | 2 +- .../Test/Block/Adminhtml/Product/Attribute/Set/Grid.php | 2 +- .../Adminhtml/Product/Attribute/Set/GridPageActions.php | 2 +- .../Test/Block/Adminhtml/Product/Attribute/Set/Main.php | 2 +- .../Product/Attribute/Set/Main/AttributeSetForm.php | 2 +- .../Product/Attribute/Set/Main/AttributeSetForm.xml | 2 +- .../Block/Adminhtml/Product/Attribute/Set/Main/EditForm.php | 2 +- .../Block/Adminhtml/Product/Attribute/Set/Main/EditForm.xml | 2 +- .../Test/Block/Adminhtml/Product/Composite/Configure.php | 2 +- .../Test/Block/Adminhtml/Product/Composite/Configure.xml | 2 +- .../Block/Adminhtml/Product/Edit/Action/FormPageActions.php | 2 +- .../Product/Edit/Action/Tab/UpdateAttributeTab.php | 2 +- .../Adminhtml/Product/Edit/Action/UpdateAttributeForm.php | 2 +- .../Adminhtml/Product/Edit/Action/UpdateAttributeForm.xml | 2 +- .../Adminhtml/Product/Edit/Section/AdvancedInventory.php | 2 +- .../Adminhtml/Product/Edit/Section/AdvancedPricing.php | 2 +- .../Product/Edit/Section/AdvancedPricing/OptionTier.php | 2 +- .../Product/Edit/Section/AdvancedPricing/OptionTier.xml | 2 +- .../Block/Adminhtml/Product/Edit/Section/Attributes.php | 2 +- .../Adminhtml/Product/Edit/Section/Attributes/Grid.php | 2 +- .../Adminhtml/Product/Edit/Section/Attributes/Search.php | 2 +- .../Block/Adminhtml/Product/Edit/Section/BlockGallery.php | 2 +- .../Test/Block/Adminhtml/Product/Edit/Section/Options.php | 2 +- .../Product/Edit/Section/Options/AbstractOptions.php | 2 +- .../Block/Adminhtml/Product/Edit/Section/Options/Row.php | 2 +- .../Adminhtml/Product/Edit/Section/Options/Search/Grid.php | 2 +- .../Block/Adminhtml/Product/Edit/Section/Options/Type.php | 2 +- .../Adminhtml/Product/Edit/Section/Options/Type/Area.php | 2 +- .../Adminhtml/Product/Edit/Section/Options/Type/Area.xml | 2 +- .../Product/Edit/Section/Options/Type/Checkbox.php | 2 +- .../Product/Edit/Section/Options/Type/Checkbox.xml | 2 +- .../Adminhtml/Product/Edit/Section/Options/Type/Date.php | 2 +- .../Adminhtml/Product/Edit/Section/Options/Type/Date.xml | 2 +- .../Product/Edit/Section/Options/Type/DateTime.php | 2 +- .../Product/Edit/Section/Options/Type/DateTime.xml | 2 +- .../Product/Edit/Section/Options/Type/DropDown.php | 2 +- .../Product/Edit/Section/Options/Type/DropDown.xml | 2 +- .../Adminhtml/Product/Edit/Section/Options/Type/Field.php | 2 +- .../Adminhtml/Product/Edit/Section/Options/Type/Field.xml | 2 +- .../Adminhtml/Product/Edit/Section/Options/Type/File.php | 2 +- .../Adminhtml/Product/Edit/Section/Options/Type/File.xml | 2 +- .../Product/Edit/Section/Options/Type/MultipleSelect.php | 2 +- .../Product/Edit/Section/Options/Type/MultipleSelect.xml | 2 +- .../Product/Edit/Section/Options/Type/RadioButtons.php | 2 +- .../Product/Edit/Section/Options/Type/RadioButtons.xml | 2 +- .../Adminhtml/Product/Edit/Section/Options/Type/Time.php | 2 +- .../Adminhtml/Product/Edit/Section/Options/Type/Time.xml | 2 +- .../Block/Adminhtml/Product/Edit/Section/ProductDetails.php | 2 +- .../Product/Edit/Section/ProductDetails/AttributeSet.php | 2 +- .../Product/Edit/Section/ProductDetails/CategoryIds.php | 2 +- .../Product/Edit/Section/ProductDetails/NewCategoryIds.php | 2 +- .../Product/Edit/Section/ProductDetails/NewCategoryIds.xml | 2 +- .../Test/Block/Adminhtml/Product/Edit/Section/Related.php | 2 +- .../Block/Adminhtml/Product/Edit/Section/Related/Grid.php | 2 +- .../Adminhtml/Product/Edit/Section/Websites/StoreTree.php | 2 +- .../Test/Block/Adminhtml/Product/FormPageActions.php | 2 +- .../Magento/Catalog/Test/Block/Adminhtml/Product/Grid.php | 2 +- .../Catalog/Test/Block/Adminhtml/Product/GridPageAction.php | 2 +- .../Test/Block/Adminhtml/Product/Modal/AddAttribute.php | 2 +- .../Test/Block/Adminhtml/Product/Modal/NewAttribute.php | 2 +- .../Catalog/Test/Block/Adminhtml/Product/ProductForm.php | 2 +- .../Catalog/Test/Block/Adminhtml/Product/ProductForm.xml | 2 +- .../Catalog/Test/Block/Adminhtml/Product/Widget/Chooser.php | 2 +- .../Catalog/Test/Block/Category/ProductPagination.php | 2 +- .../tests/app/Magento/Catalog/Test/Block/Category/View.php | 2 +- .../app/Magento/Catalog/Test/Block/Links/CompareLink.php | 2 +- .../app/Magento/Catalog/Test/Block/Product/Additional.php | 2 +- .../Catalog/Test/Block/Product/Compare/ListCompare.php | 2 +- .../Magento/Catalog/Test/Block/Product/Compare/Sidebar.php | 2 +- .../Test/Block/Product/Grouped/AssociatedProducts.php | 2 +- .../Grouped/AssociatedProducts/ListAssociatedProducts.php | 2 +- .../AssociatedProducts/ListAssociatedProducts/Product.php | 2 +- .../Product/Grouped/AssociatedProducts/Search/Grid.php | 2 +- .../app/Magento/Catalog/Test/Block/Product/ListProduct.php | 2 +- .../tests/app/Magento/Catalog/Test/Block/Product/Price.php | 2 +- .../Test/Block/Product/ProductList/BottomToolbar.php | 2 +- .../Catalog/Test/Block/Product/ProductList/Crosssell.php | 2 +- .../Catalog/Test/Block/Product/ProductList/ProductItem.php | 2 +- .../Test/Block/Product/ProductList/PromotedSection.php | 2 +- .../Catalog/Test/Block/Product/ProductList/Related.php | 2 +- .../Test/Block/Product/ProductList/Related/ProductItem.php | 2 +- .../Catalog/Test/Block/Product/ProductList/TopToolbar.php | 2 +- .../Catalog/Test/Block/Product/ProductList/Upsell.php | 2 +- .../tests/app/Magento/Catalog/Test/Block/Product/View.php | 2 +- .../Catalog/Test/Block/Product/View/CustomOptions.php | 2 +- .../Catalog/Test/Block/Product/View/CustomOptions.xml | 2 +- .../tests/app/Magento/Catalog/Test/Block/Search.php | 2 +- .../Test/Constraint/AssertAbsenceDeleteAttributeButton.php | 2 +- .../Catalog/Test/Constraint/AssertAddToCartButtonAbsent.php | 2 +- .../Test/Constraint/AssertAddToCartButtonPresent.php | 2 +- .../Constraint/AssertAddedProductAttributeOnProductForm.php | 2 +- .../Magento/Catalog/Test/Constraint/AssertAttributeForm.php | 2 +- .../Test/Constraint/AssertAttributeOptionsOnProductForm.php | 2 +- .../Catalog/Test/Constraint/AssertAttributeSetForm.php | 2 +- .../Constraint/AssertAttributeSetGroupOnProductForm.php | 2 +- .../Catalog/Test/Constraint/AssertAttributeSetInGrid.php | 2 +- .../Catalog/Test/Constraint/AssertAttributeSetNotInGrid.php | 2 +- .../Test/Constraint/AssertAttributeSetOnProductForm.php | 2 +- .../Constraint/AssertAttributeSetSuccessDeleteMessage.php | 2 +- .../Constraint/AssertAttributeSetSuccessSaveMessage.php | 2 +- .../Catalog/Test/Constraint/AssertCanSaveProduct.php | 2 +- .../Test/Constraint/AssertCategoryAbsenceOnBackend.php | 2 +- .../Test/Constraint/AssertCategoryAbsenceOnFrontend.php | 2 +- .../Catalog/Test/Constraint/AssertCategoryBreadcrumbs.php | 2 +- .../Test/Constraint/AssertCategoryCannotBeDeleted.php | 2 +- .../Test/Constraint/AssertCategoryForAssignedProducts.php | 2 +- .../Magento/Catalog/Test/Constraint/AssertCategoryForm.php | 2 +- .../Catalog/Test/Constraint/AssertCategoryIsNotActive.php | 2 +- .../Catalog/Test/Constraint/AssertCategoryMovedMessage.php | 2 +- .../Test/Constraint/AssertCategoryOnCustomWebsite.php | 2 +- .../Magento/Catalog/Test/Constraint/AssertCategoryPage.php | 2 +- .../Catalog/Test/Constraint/AssertCategoryRedirect.php | 2 +- .../Catalog/Test/Constraint/AssertCategorySaveMessage.php | 2 +- .../Test/Constraint/AssertCategorySuccessDeleteMessage.php | 2 +- .../Constraint/AssertCategoryWithCustomStoreOnFrontend.php | 2 +- .../Test/Constraint/AssertImagesAreVisibleOnProductPage.php | 2 +- .../Constraint/AssertMassProductUpdateSuccessMessage.php | 2 +- .../Test/Constraint/AssertPriceOnProductPageInterface.php | 2 +- .../Test/Constraint/AssertProductAbsentCrossSells.php | 2 +- .../Test/Constraint/AssertProductAbsentRelatedProducts.php | 2 +- .../Catalog/Test/Constraint/AssertProductAbsentUpSells.php | 2 +- .../Test/Constraint/AssertProductAttributeAbsenceInGrid.php | 2 +- .../AssertProductAttributeAbsenceInSearchOnProductForm.php | 2 +- .../AssertProductAttributeAbsenceInTemplateGroups.php | 2 +- .../AssertProductAttributeAbsenceInUnassignedAttributes.php | 2 +- .../AssertProductAttributeDisplayingOnFrontend.php | 2 +- .../AssertProductAttributeDisplayingOnSearchForm.php | 2 +- .../Test/Constraint/AssertProductAttributeInGrid.php | 2 +- .../Test/Constraint/AssertProductAttributeIsComparable.php | 2 +- .../Test/Constraint/AssertProductAttributeIsFilterable.php | 2 +- .../AssertProductAttributeIsFilterableInSearch.php | 2 +- .../Test/Constraint/AssertProductAttributeIsGlobal.php | 2 +- .../Test/Constraint/AssertProductAttributeIsHtmlAllowed.php | 2 +- .../Test/Constraint/AssertProductAttributeIsRequired.php | 2 +- .../Test/Constraint/AssertProductAttributeIsUnique.php | 2 +- .../AssertProductAttributeIsUsedInSortOnFrontend.php | 2 +- .../Test/Constraint/AssertProductAttributeSaveMessage.php | 2 +- .../AssertProductAttributeSuccessDeleteMessage.php | 2 +- .../AssertProductAutoincrementedSkuNoticeMessage.php | 2 +- .../Test/Constraint/AssertProductCompareBlockOnCmsPage.php | 2 +- .../Test/Constraint/AssertProductCompareItemsLink.php | 2 +- .../Constraint/AssertProductCompareItemsLinkIsAbsent.php | 2 +- .../Catalog/Test/Constraint/AssertProductComparePage.php | 2 +- .../AssertProductCompareRemoveLastProductMessage.php | 2 +- .../Constraint/AssertProductCompareSuccessAddMessage.php | 2 +- .../AssertProductCompareSuccessRemoveAllProductsMessage.php | 2 +- .../Constraint/AssertProductCompareSuccessRemoveMessage.php | 2 +- .../Catalog/Test/Constraint/AssertProductCrossSells.php | 2 +- .../Constraint/AssertProductCustomOptionsOnProductPage.php | 2 +- .../Catalog/Test/Constraint/AssertProductDuplicateForm.php | 2 +- .../AssertProductDuplicateIsNotDisplayingOnFrontend.php | 2 +- .../Test/Constraint/AssertProductDuplicateMessage.php | 2 +- .../Test/Constraint/AssertProductDuplicatedInGrid.php | 2 +- .../Magento/Catalog/Test/Constraint/AssertProductForm.php | 2 +- .../Catalog/Test/Constraint/AssertProductHasImageInGrid.php | 2 +- .../Magento/Catalog/Test/Constraint/AssertProductInCart.php | 2 +- .../Catalog/Test/Constraint/AssertProductInCategory.php | 2 +- .../Magento/Catalog/Test/Constraint/AssertProductInGrid.php | 2 +- .../Catalog/Test/Constraint/AssertProductInStock.php | 2 +- .../Constraint/AssertProductIsNotDisplayingOnFrontend.php | 2 +- .../Constraint/AssertProductIsNotVisibleInCompareBlock.php | 2 +- .../Constraint/AssertProductIsNotVisibleInComparePage.php | 2 +- .../Constraint/AssertProductNameOnDifferentStoreViews.php | 2 +- .../Catalog/Test/Constraint/AssertProductNoImageInGrid.php | 2 +- .../Catalog/Test/Constraint/AssertProductNotInGrid.php | 2 +- .../Test/Constraint/AssertProductNotSearchableBySku.php | 2 +- .../Test/Constraint/AssertProductNotVisibleInCategory.php | 2 +- .../Test/Constraint/AssertProductOnCustomWebsite.php | 2 +- .../Catalog/Test/Constraint/AssertProductOutOfStock.php | 2 +- .../Magento/Catalog/Test/Constraint/AssertProductPage.php | 2 +- .../Test/Constraint/AssertProductRelatedProducts.php | 2 +- .../Catalog/Test/Constraint/AssertProductSaveMessage.php | 2 +- .../Test/Constraint/AssertProductSearchableBySku.php | 2 +- .../Test/Constraint/AssertProductSimpleDuplicateForm.php | 2 +- .../Test/Constraint/AssertProductSkuAutoGenerated.php | 2 +- .../Constraint/AssertProductSpecialPriceOnProductPage.php | 2 +- .../Test/Constraint/AssertProductSuccessDeleteMessage.php | 2 +- .../Test/Constraint/AssertProductTierPriceInCart.php | 2 +- .../Test/Constraint/AssertProductTierPriceOnProductPage.php | 2 +- .../AssertProductTierPriceOnProductPageWithCustomer.php | 2 +- .../Test/Constraint/AssertProductTypeOrderOnCreate.php | 2 +- .../Catalog/Test/Constraint/AssertProductUpSells.php | 2 +- .../Magento/Catalog/Test/Constraint/AssertProductView.php | 2 +- .../Test/Constraint/AssertProductVisibleInCategory.php | 2 +- .../Catalog/Test/Constraint/AssertProductsInStock.php | 2 +- .../Catalog/Test/Constraint/AssertProductsOutOfStock.php | 2 +- .../AssertUsedSuperAttributeImpossibleDeleteMessages.php | 2 +- .../tests/app/Magento/Catalog/Test/Fixture/Cart/Item.php | 2 +- .../Magento/Catalog/Test/Fixture/CatalogAttributeSet.xml | 2 +- .../Test/Fixture/CatalogAttributeSet/AssignedAttributes.php | 2 +- .../Test/Fixture/CatalogAttributeSet/SkeletonSet.php | 2 +- .../Catalog/Test/Fixture/CatalogProductAttribute.xml | 2 +- .../Magento/Catalog/Test/Fixture/CatalogProductSimple.xml | 2 +- .../Test/Fixture/CatalogProductSimple/CustomAttribute.php | 2 +- .../Magento/Catalog/Test/Fixture/CatalogProductVirtual.xml | 2 +- .../tests/app/Magento/Catalog/Test/Fixture/Category.xml | 2 +- .../Catalog/Test/Fixture/Category/CategoryProducts.php | 2 +- .../Magento/Catalog/Test/Fixture/Category/LandingPage.php | 2 +- .../app/Magento/Catalog/Test/Fixture/Category/ParentId.php | 2 +- .../app/Magento/Catalog/Test/Fixture/Category/StoreId.php | 2 +- .../Magento/Catalog/Test/Fixture/Product/AttributeSetId.php | 2 +- .../Magento/Catalog/Test/Fixture/Product/CategoryIds.php | 2 +- .../Magento/Catalog/Test/Fixture/Product/CustomOptions.php | 2 +- .../app/Magento/Catalog/Test/Fixture/Product/Image.php | 2 +- .../app/Magento/Catalog/Test/Fixture/Product/Price.php | 2 +- .../Catalog/Test/Fixture/Product/RelatedProducts.php | 2 +- .../app/Magento/Catalog/Test/Fixture/Product/TaxClass.php | 2 +- .../app/Magento/Catalog/Test/Fixture/Product/TierPrice.php | 2 +- .../app/Magento/Catalog/Test/Fixture/Product/WebsiteIds.php | 2 +- .../CatalogAttributeSet/CatalogAttributeSetInterface.php | 2 +- .../Catalog/Test/Handler/CatalogAttributeSet/Curl.php | 2 +- .../CatalogProductAttributeInterface.php | 2 +- .../Catalog/Test/Handler/CatalogProductAttribute/Curl.php | 2 +- .../CatalogProductSimple/CatalogProductSimpleInterface.php | 2 +- .../Catalog/Test/Handler/CatalogProductSimple/Curl.php | 2 +- .../Catalog/Test/Handler/CatalogProductSimple/Ui.php | 2 +- .../Catalog/Test/Handler/CatalogProductSimple/Webapi.php | 2 +- .../CatalogProductVirtualInterface.php | 2 +- .../Catalog/Test/Handler/CatalogProductVirtual/Curl.php | 2 +- .../Catalog/Test/Handler/CatalogProductVirtual/Webapi.php | 2 +- .../Catalog/Test/Handler/Category/CategoryInterface.php | 2 +- .../app/Magento/Catalog/Test/Handler/Category/Curl.php | 2 +- .../app/Magento/Catalog/Test/Handler/Category/Webapi.php | 2 +- .../Catalog/Test/Page/Adminhtml/CatalogCategoryEdit.xml | 2 +- .../Catalog/Test/Page/Adminhtml/CatalogCategoryIndex.xml | 2 +- .../Page/Adminhtml/CatalogProductActionAttributeEdit.xml | 2 +- .../Test/Page/Adminhtml/CatalogProductAttributeIndex.xml | 2 +- .../Test/Page/Adminhtml/CatalogProductAttributeNew.xml | 2 +- .../Catalog/Test/Page/Adminhtml/CatalogProductEdit.xml | 2 +- .../Catalog/Test/Page/Adminhtml/CatalogProductIndex.xml | 2 +- .../Catalog/Test/Page/Adminhtml/CatalogProductNew.xml | 2 +- .../Catalog/Test/Page/Adminhtml/CatalogProductSetAdd.xml | 2 +- .../Catalog/Test/Page/Adminhtml/CatalogProductSetEdit.xml | 2 +- .../Catalog/Test/Page/Adminhtml/CatalogProductSetIndex.xml | 2 +- .../Magento/Catalog/Test/Page/Category/CatalogCategory.php | 2 +- .../Catalog/Test/Page/Category/CatalogCategoryEdit.php | 2 +- .../Catalog/Test/Page/Category/CatalogCategoryView.xml | 2 +- .../tests/app/Magento/Catalog/Test/Page/CmsIndex.xml | 2 +- .../Catalog/Test/Page/Product/CatalogProductCompare.xml | 2 +- .../Catalog/Test/Page/Product/CatalogProductView.xml | 2 +- .../Magento/Catalog/Test/Repository/CatalogAttributeSet.xml | 2 +- .../Catalog/Test/Repository/CatalogProductAttribute.xml | 2 +- .../Test/Repository/CatalogProductAttribute/Options.xml | 2 +- .../Catalog/Test/Repository/CatalogProductSimple.xml | 2 +- .../Test/Repository/CatalogProductSimple/CheckoutData.xml | 2 +- .../Catalog/Test/Repository/CatalogProductSimple/Price.xml | 2 +- .../Catalog/Test/Repository/CatalogProductVirtual.xml | 2 +- .../Test/Repository/CatalogProductVirtual/CheckoutData.xml | 2 +- .../tests/app/Magento/Catalog/Test/Repository/Category.xml | 2 +- .../app/Magento/Catalog/Test/Repository/ConfigData.xml | 2 +- .../Catalog/Test/Repository/Product/CustomOptions.xml | 2 +- .../app/Magento/Catalog/Test/Repository/Product/Fpt.xml | 2 +- .../Magento/Catalog/Test/Repository/Product/TierPrice.xml | 2 +- .../Test/TestCase/Category/CreateCategoryEntityTest.php | 2 +- .../Test/TestCase/Category/CreateCategoryEntityTest.xml | 2 +- .../Test/TestCase/Category/DeleteCategoryEntityTest.php | 2 +- .../Test/TestCase/Category/DeleteCategoryEntityTest.xml | 2 +- .../Test/TestCase/Category/MoveCategoryEntityTest.php | 2 +- .../Test/TestCase/Category/MoveCategoryEntityTest.xml | 2 +- .../Test/TestCase/Category/UpdateCategoryEntityTest.php | 2 +- .../Test/TestCase/Category/UpdateCategoryEntityTest.xml | 2 +- .../app/Magento/Catalog/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Test/TestCase/Product/AbstractCompareProductsTest.php | 2 +- .../Product/AbstractProductPromotedProductsTest.php | 2 +- .../Test/TestCase/Product/AddCompareProductsTest.php | 2 +- .../Test/TestCase/Product/AddCompareProductsTest.xml | 2 +- .../Test/TestCase/Product/AddToCartCrossSellTest.php | 2 +- .../Test/TestCase/Product/AddToCartCrossSellTest.xml | 2 +- .../Test/TestCase/Product/ClearAllCompareProductsTest.php | 2 +- .../Test/TestCase/Product/ClearAllCompareProductsTest.xml | 2 +- .../CreateSimpleProductEntityByAttributeMaskSkuTest.php | 2 +- .../CreateSimpleProductEntityByAttributeMaskSkuTest.xml | 2 +- .../Test/TestCase/Product/CreateSimpleProductEntityTest.php | 2 +- .../Test/TestCase/Product/CreateSimpleProductEntityTest.xml | 2 +- .../TestCase/Product/CreateVirtualProductEntityTest.php | 2 +- .../TestCase/Product/CreateVirtualProductEntityTest.xml | 2 +- .../Test/TestCase/Product/DeleteCompareProductsTest.php | 2 +- .../Test/TestCase/Product/DeleteCompareProductsTest.xml | 2 +- .../Test/TestCase/Product/DeleteProductEntityTest.php | 2 +- .../Test/TestCase/Product/DeleteProductEntityTest.xml | 2 +- .../Test/TestCase/Product/DuplicateProductEntityTest.php | 2 +- .../Test/TestCase/Product/DuplicateProductEntityTest.xml | 2 +- .../Test/TestCase/Product/ManageProductsStockTest.php | 2 +- .../Test/TestCase/Product/ManageProductsStockTest.xml | 2 +- .../Catalog/Test/TestCase/Product/MassProductUpdateTest.php | 2 +- .../Catalog/Test/TestCase/Product/MassProductUpdateTest.xml | 2 +- .../Test/TestCase/Product/NavigateRelatedProductsTest.php | 2 +- .../Test/TestCase/Product/NavigateRelatedProductsTest.xml | 2 +- .../Test/TestCase/Product/NavigateUpSellProductsTest.php | 2 +- .../Test/TestCase/Product/NavigateUpSellProductsTest.xml | 2 +- .../TestCase/Product/ProductTypeSwitchingOnCreationTest.php | 2 +- .../TestCase/Product/ProductTypeSwitchingOnCreationTest.xml | 2 +- .../TestCase/Product/ProductTypeSwitchingOnUpdateTest.php | 2 +- .../TestCase/Product/ProductTypeSwitchingOnUpdateTest.xml | 2 +- .../Test/TestCase/Product/UpdateSimpleProductEntityTest.php | 2 +- .../Test/TestCase/Product/UpdateSimpleProductEntityTest.xml | 2 +- .../TestCase/Product/UpdateVirtualProductEntityTest.php | 2 +- .../TestCase/Product/UpdateVirtualProductEntityTest.xml | 2 +- .../TestCase/Product/ValidateOrderOfProductTypeTest.php | 2 +- .../TestCase/Product/ValidateOrderOfProductTypeTest.xml | 2 +- .../ProductAttribute/CreateAttributeSetEntityTest.php | 2 +- .../ProductAttribute/CreateAttributeSetEntityTest.xml | 2 +- .../CreateProductAttributeEntityFromProductPageTest.php | 2 +- .../CreateProductAttributeEntityFromProductPageTest.xml | 2 +- .../ProductAttribute/CreateProductAttributeEntityTest.php | 2 +- .../ProductAttribute/CreateProductAttributeEntityTest.xml | 2 +- .../DeleteAssignedToTemplateProductAttributeTest.php | 2 +- .../DeleteAssignedToTemplateProductAttributeTest.xml | 2 +- .../TestCase/ProductAttribute/DeleteAttributeSetTest.php | 2 +- .../TestCase/ProductAttribute/DeleteAttributeSetTest.xml | 2 +- .../ProductAttribute/DeleteProductAttributeEntityTest.php | 2 +- .../ProductAttribute/DeleteProductAttributeEntityTest.xml | 2 +- .../ProductAttribute/DeleteSystemProductAttributeTest.php | 2 +- .../ProductAttribute/DeleteSystemProductAttributeTest.xml | 2 +- .../DeleteUsedInConfigurableProductAttributeTest.php | 2 +- .../DeleteUsedInConfigurableProductAttributeTest.xml | 2 +- .../TestCase/ProductAttribute/UpdateAttributeSetTest.php | 2 +- .../TestCase/ProductAttribute/UpdateAttributeSetTest.xml | 2 +- .../ProductAttribute/UpdateProductAttributeEntityTest.php | 2 +- .../ProductAttribute/UpdateProductAttributeEntityTest.xml | 2 +- .../Test/TestStep/AddAttributeToAttributeSetStep.php | 2 +- .../Test/TestStep/AddNewAttributeFromProductPageStep.php | 2 +- .../Magento/Catalog/Test/TestStep/AddNewAttributeStep.php | 2 +- .../Test/TestStep/ConfigureProductOnProductPageStep.php | 2 +- .../Catalog/Test/TestStep/CreateAttributeSetStep.php | 2 +- .../app/Magento/Catalog/Test/TestStep/CreateProductStep.php | 2 +- .../Test/TestStep/CreateProductWithAttributeSetStep.php | 2 +- .../Magento/Catalog/Test/TestStep/CreateProductsStep.php | 2 +- .../Magento/Catalog/Test/TestStep/DeleteAttributeStep.php | 2 +- .../Test/TestStep/FillAttributeFormOnProductPageStep.php | 2 +- .../Magento/Catalog/Test/TestStep/FillAttributeFormStep.php | 2 +- .../Catalog/Test/TestStep/OpenProductAttributesPageStep.php | 2 +- .../Catalog/Test/TestStep/OpenProductOnBackendStep.php | 2 +- .../Catalog/Test/TestStep/OpenProductsOnFrontendStep.php | 2 +- .../Test/TestStep/SaveAttributeOnProductPageStep.php | 2 +- .../Magento/Catalog/Test/TestStep/SaveAttributeSetStep.php | 2 +- .../app/Magento/Catalog/Test/TestStep/SaveAttributeStep.php | 2 +- .../app/Magento/Catalog/Test/TestStep/SaveProductStep.php | 2 +- .../Catalog/Test/TestStep/SetDefaultAttributeValueStep.php | 2 +- .../tests/app/Magento/Catalog/Test/etc/curl/di.xml | 2 +- .../functional/tests/app/Magento/Catalog/Test/etc/di.xml | 2 +- .../tests/app/Magento/Catalog/Test/etc/testcase.xml | 2 +- .../functional/tests/app/Magento/Catalog/Test/etc/ui/di.xml | 2 +- .../tests/app/Magento/Catalog/Test/etc/webapi/di.xml | 2 +- .../Magento/CatalogInventory/Test/Repository/ConfigData.xml | 2 +- .../CatalogRule/Test/Block/Adminhtml/FormPageActions.php | 2 +- .../CatalogRule/Test/Block/Adminhtml/Promo/Catalog.php | 2 +- .../Test/Block/Adminhtml/Promo/Catalog/Edit/PromoForm.php | 2 +- .../Test/Block/Adminhtml/Promo/Catalog/Edit/PromoForm.xml | 2 +- .../Adminhtml/Promo/Catalog/Edit/Section/Conditions.php | 2 +- .../Promo/Catalog/Edit/Section/RuleInformation.php | 2 +- .../Test/Block/Adminhtml/Promo/GridPageActions.php | 2 +- .../tests/app/Magento/CatalogRule/Test/Block/Conditions.php | 2 +- .../Constraint/AssertCatalogPriceRuleAppliedCatalogPage.php | 2 +- .../Constraint/AssertCatalogPriceRuleAppliedProductPage.php | 2 +- .../AssertCatalogPriceRuleAppliedShoppingCart.php | 2 +- .../Test/Constraint/AssertCatalogPriceRuleForm.php | 2 +- .../Test/Constraint/AssertCatalogPriceRuleInGrid.php | 2 +- .../AssertCatalogPriceRuleNotAppliedCatalogPage.php | 2 +- .../AssertCatalogPriceRuleNotAppliedProductPage.php | 2 +- .../AssertCatalogPriceRuleNotAppliedShoppingCart.php | 2 +- .../Test/Constraint/AssertCatalogPriceRuleNotInGrid.php | 2 +- .../Test/Constraint/AssertCatalogPriceRuleNoticeMessage.php | 2 +- .../Constraint/AssertCatalogPriceRuleOnOnepageCheckout.php | 2 +- .../AssertCatalogPriceRuleSuccessDeleteMessage.php | 2 +- .../Constraint/AssertCatalogPriceRuleSuccessSaveMessage.php | 2 +- .../Constraint/AssertProductAttributeIsUsedPromoRules.php | 2 +- .../app/Magento/CatalogRule/Test/Fixture/CatalogRule.xml | 2 +- .../Test/Handler/CatalogRule/CatalogRuleInterface.php | 2 +- .../Magento/CatalogRule/Test/Handler/CatalogRule/Curl.php | 2 +- .../CatalogRule/Test/Page/Adminhtml/CatalogRuleEdit.xml | 2 +- .../CatalogRule/Test/Page/Adminhtml/CatalogRuleIndex.xml | 2 +- .../CatalogRule/Test/Page/Adminhtml/CatalogRuleNew.xml | 2 +- .../app/Magento/CatalogRule/Test/Repository/CatalogRule.xml | 2 +- .../Test/TestCase/AbstractCatalogRuleEntityTest.php | 2 +- .../Test/TestCase/ApplyCatalogPriceRulesTest.php | 2 +- .../Test/TestCase/ApplyCatalogPriceRulesTest.xml | 2 +- .../Test/TestCase/CreateCatalogPriceRuleEntityTest.php | 2 +- .../Test/TestCase/CreateCatalogPriceRuleEntityTest.xml | 2 +- .../Test/TestCase/DeleteCatalogPriceRuleEntityTest.php | 2 +- .../Test/TestCase/DeleteCatalogPriceRuleEntityTest.xml | 2 +- .../Magento/CatalogRule/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Test/TestCase/UpdateCatalogPriceRuleEntityTest.php | 2 +- .../Test/TestCase/UpdateCatalogPriceRuleEntityTest.xml | 2 +- .../CatalogRule/Test/TestStep/CreateCatalogRuleStep.php | 2 +- .../CatalogRule/Test/TestStep/DeleteAllCatalogRulesStep.php | 2 +- .../tests/app/Magento/CatalogRule/Test/etc/curl/di.xml | 2 +- .../tests/app/Magento/CatalogRule/Test/etc/di.xml | 2 +- .../tests/app/Magento/CatalogRule/Test/etc/ui/di.xml | 2 +- .../ApplyConfigurableProductCatalogPriceRulesTest.php | 2 +- .../ApplyConfigurableProductCatalogPriceRulesTest.xml | 2 +- .../Test/TestCase/DeleteCatalogPriceRuleEntityTest.xml | 2 +- .../Test/Block/Adminhtml/Edit/SearchTermForm.php | 2 +- .../Test/Block/Adminhtml/Edit/SearchTermForm.xml | 2 +- .../app/Magento/CatalogSearch/Test/Block/Adminhtml/Grid.php | 2 +- .../Test/Block/Advanced/CustomAttribute/Date.php | 2 +- .../Test/Block/Advanced/CustomAttribute/Select.php | 2 +- .../Test/Block/Advanced/CustomAttribute/Text.php | 2 +- .../app/Magento/CatalogSearch/Test/Block/Advanced/Form.php | 2 +- .../app/Magento/CatalogSearch/Test/Block/Advanced/Form.xml | 2 +- .../Magento/CatalogSearch/Test/Block/Advanced/Result.php | 2 +- .../Test/Block/Advanced/SearchResultsTitle.php | 2 +- .../Test/Constraint/AssertAdvancedSearchNoResult.php | 2 +- .../Constraint/AssertAdvancedSearchProductByAttribute.php | 2 +- .../Test/Constraint/AssertAdvancedSearchProductResult.php | 2 +- .../Test/Constraint/AssertAdvancedSearchProductsResult.php | 2 +- .../Test/Constraint/AssertAttributeSearchableByLabel.php | 2 +- .../Test/Constraint/AssertCatalogSearchNoResult.php | 2 +- .../Test/Constraint/AssertCatalogSearchNoResultMessage.php | 2 +- .../Test/Constraint/AssertCatalogSearchQueryLength.php | 2 +- .../Test/Constraint/AssertCatalogSearchResult.php | 2 +- .../Constraint/AssertProductCanBeOpenedFromSearchResult.php | 2 +- .../Test/Constraint/AssertSearchAttributeTest.php | 2 +- .../CatalogSearch/Test/Constraint/AssertSearchTermForm.php | 2 +- .../Test/Constraint/AssertSearchTermInGrid.php | 2 +- .../Constraint/AssertSearchTermMassActionNotOnFrontend.php | 2 +- .../Constraint/AssertSearchTermMassActionsNotInGrid.php | 2 +- .../Test/Constraint/AssertSearchTermNotInGrid.php | 2 +- .../Test/Constraint/AssertSearchTermNotOnFrontend.php | 2 +- .../Test/Constraint/AssertSearchTermOnFrontend.php | 2 +- .../Constraint/AssertSearchTermSuccessDeleteMessage.php | 2 +- .../Constraint/AssertSearchTermSuccessMassDeleteMessage.php | 2 +- .../Test/Constraint/AssertSearchTermSuccessSaveMessage.php | 2 +- .../Test/Constraint/AssertSuggestSearchingResult.php | 2 +- .../CatalogSearch/Test/Fixture/CatalogSearchQuery.xml | 2 +- .../Test/Fixture/CatalogSearchQuery/QueryText.php | 2 +- .../CatalogSearchQuery/CatalogSearchQueryInterface.php | 2 +- .../CatalogSearch/Test/Handler/CatalogSearchQuery/Curl.php | 2 +- .../CatalogSearch/Test/Page/Adminhtml/CatalogSearchEdit.xml | 2 +- .../Test/Page/Adminhtml/CatalogSearchIndex.xml | 2 +- .../app/Magento/CatalogSearch/Test/Page/AdvancedResult.xml | 2 +- .../app/Magento/CatalogSearch/Test/Page/AdvancedSearch.xml | 2 +- .../Magento/CatalogSearch/Test/Page/CatalogsearchResult.xml | 2 +- .../CatalogSearch/Test/Repository/CatalogSearchQuery.xml | 2 +- .../Test/TestCase/AdvancedSearchEntityTest.php | 2 +- .../Test/TestCase/AdvancedSearchEntityTest.xml | 2 +- .../Test/TestCase/CreateSearchTermEntityTest.php | 2 +- .../Test/TestCase/CreateSearchTermEntityTest.xml | 2 +- .../Test/TestCase/DeleteSearchTermEntityTest.php | 2 +- .../Test/TestCase/DeleteSearchTermEntityTest.xml | 2 +- .../Test/TestCase/MassDeleteSearchTermEntityTest.php | 2 +- .../Test/TestCase/MassDeleteSearchTermEntityTest.xml | 2 +- .../CatalogSearch/Test/TestCase/NavigateMenuTest.xml | 2 +- .../CatalogSearch/Test/TestCase/SearchEntityResultsTest.php | 2 +- .../CatalogSearch/Test/TestCase/SearchEntityResultsTest.xml | 2 +- .../Test/TestCase/SuggestSearchingResultEntityTest.php | 2 +- .../Test/TestCase/SuggestSearchingResultEntityTest.xml | 2 +- .../Test/TestCase/UpdateSearchTermEntityTest.php | 2 +- .../Test/TestCase/UpdateSearchTermEntityTest.xml | 2 +- .../tests/app/Magento/CatalogSearch/Test/etc/curl/di.xml | 2 +- .../tests/app/Magento/CatalogSearch/Test/etc/di.xml | 2 +- .../tests/app/Magento/Checkout/Test/Block/Cart.php | 2 +- .../Magento/Checkout/Test/Block/Cart/AbstractCartItem.php | 2 +- .../app/Magento/Checkout/Test/Block/Cart/CartEmpty.php | 2 +- .../tests/app/Magento/Checkout/Test/Block/Cart/CartItem.php | 2 +- .../app/Magento/Checkout/Test/Block/Cart/DiscountCodes.php | 2 +- .../tests/app/Magento/Checkout/Test/Block/Cart/Shipping.php | 2 +- .../tests/app/Magento/Checkout/Test/Block/Cart/Shipping.xml | 2 +- .../tests/app/Magento/Checkout/Test/Block/Cart/Sidebar.php | 2 +- .../app/Magento/Checkout/Test/Block/Cart/Sidebar/Item.php | 2 +- .../tests/app/Magento/Checkout/Test/Block/Cart/Totals.php | 2 +- .../Magento/Checkout/Test/Block/Onepage/AbstractReview.php | 2 +- .../Magento/Checkout/Test/Block/Onepage/CustomAddress.php | 2 +- .../tests/app/Magento/Checkout/Test/Block/Onepage/Link.php | 2 +- .../tests/app/Magento/Checkout/Test/Block/Onepage/Login.php | 2 +- .../tests/app/Magento/Checkout/Test/Block/Onepage/Login.xml | 2 +- .../app/Magento/Checkout/Test/Block/Onepage/Payment.php | 2 +- .../Checkout/Test/Block/Onepage/Payment/DiscountCodes.php | 2 +- .../Magento/Checkout/Test/Block/Onepage/Payment/Method.php | 2 +- .../Checkout/Test/Block/Onepage/Payment/Method/Billing.php | 2 +- .../Checkout/Test/Block/Onepage/Payment/Method/Billing.xml | 2 +- .../Magento/Checkout/Test/Block/Onepage/Registration.php | 2 +- .../app/Magento/Checkout/Test/Block/Onepage/Review.php | 2 +- .../app/Magento/Checkout/Test/Block/Onepage/Shipping.php | 2 +- .../app/Magento/Checkout/Test/Block/Onepage/Shipping.xml | 2 +- .../Checkout/Test/Block/Onepage/Shipping/AddressModal.php | 2 +- .../Checkout/Test/Block/Onepage/Shipping/AddressModal.xml | 2 +- .../Magento/Checkout/Test/Block/Onepage/Shipping/Method.php | 2 +- .../Magento/Checkout/Test/Block/Onepage/ShippingPopup.php | 2 +- .../Magento/Checkout/Test/Block/Onepage/ShippingPopup.xml | 2 +- .../app/Magento/Checkout/Test/Block/Onepage/Success.php | 2 +- .../AssertAddToCartButtonAbsentOnCategoryPage.php | 2 +- .../Constraint/AssertAddToCartButtonAbsentOnProductPage.php | 2 +- .../AssertAddToCartButtonPresentOnCategoryPage.php | 2 +- .../AssertAddToCartButtonPresentOnProductPage.php | 2 +- .../Constraint/AssertAddedProductToCartSuccessMessage.php | 2 +- .../Test/Constraint/AssertBillingAddressAbsentInPayment.php | 2 +- .../AssertBillingAddressSameAsShippingCheckbox.php | 2 +- .../Constraint/AssertCancelSuccessMessageInShoppingCart.php | 2 +- .../Magento/Checkout/Test/Constraint/AssertCartIsEmpty.php | 2 +- .../Checkout/Test/Constraint/AssertCartItemsOptions.php | 2 +- .../Checkout/Test/Constraint/AssertCheckoutErrorMessage.php | 2 +- .../AssertCustomerIsRedirectedToCheckoutFromCart.php | 2 +- .../Test/Constraint/AssertDiscountInShoppingCart.php | 2 +- .../Test/Constraint/AssertEmailErrorValidationMessage.php | 2 +- .../Checkout/Test/Constraint/AssertEmailToolTips.php | 2 +- .../Test/Constraint/AssertEstimateShippingAndTax.php | 2 +- .../Test/Constraint/AssertGrandTotalInShoppingCart.php | 2 +- .../Test/Constraint/AssertGrandTotalOrderReview.php | 2 +- .../Checkout/Test/Constraint/AssertMinicartEmpty.php | 2 +- .../Test/Constraint/AssertOrderSuccessPlacedMessage.php | 2 +- .../Checkout/Test/Constraint/AssertPriceInShoppingCart.php | 2 +- .../Constraint/AssertProductAbsentInMiniShoppingCart.php | 2 +- .../Test/Constraint/AssertProductDataInMiniShoppingCart.php | 2 +- .../Checkout/Test/Constraint/AssertProductIsNotEditable.php | 2 +- .../Constraint/AssertProductOptionsAbsentInShoppingCart.php | 2 +- .../Constraint/AssertProductPresentInMiniShoppingCart.php | 2 +- .../Test/Constraint/AssertProductPresentInShoppingCart.php | 2 +- .../Test/Constraint/AssertProductQtyInShoppingCart.php | 2 +- .../Test/Constraint/AssertProductsAbsentInShoppingCart.php | 2 +- .../AssertShippingAddressJsValidationMessagesIsAbsent.php | 2 +- .../Test/Constraint/AssertShippingInShoppingCart.php | 2 +- .../Test/Constraint/AssertShippingTotalOrderReview.php | 2 +- .../Checkout/Test/Constraint/AssertSubTotalOrderReview.php | 2 +- .../Test/Constraint/AssertSubtotalInMiniShoppingCart.php | 2 +- .../Test/Constraint/AssertSubtotalInShoppingCart.php | 2 +- .../Checkout/Test/Constraint/AssertTaxInShoppingCart.php | 2 +- .../Checkout/Test/Constraint/AssertTaxTotalOrderReview.php | 2 +- .../Test/Constraint/AssertTopDestinationsInSelect.php | 2 +- .../tests/app/Magento/Checkout/Test/Fixture/Cart.xml | 2 +- .../tests/app/Magento/Checkout/Test/Fixture/Cart/Items.php | 2 +- .../tests/app/Magento/Checkout/Test/Page/CheckoutCart.xml | 2 +- .../app/Magento/Checkout/Test/Page/CheckoutOnepage.xml | 2 +- .../Magento/Checkout/Test/Page/CheckoutOnepageSuccess.xml | 2 +- .../tests/app/Magento/Checkout/Test/Page/CmsIndex.xml | 2 +- .../app/Magento/Checkout/Test/Repository/ConfigData.xml | 2 +- .../Test/TestCase/AddProductsToShoppingCartEntityTest.php | 2 +- .../Test/TestCase/AddProductsToShoppingCartEntityTest.xml | 2 +- .../Test/TestCase/DeleteProductFromMiniShoppingCartTest.php | 2 +- .../Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml | 2 +- .../Test/TestCase/DeleteProductsFromShoppingCartTest.php | 2 +- .../Test/TestCase/DeleteProductsFromShoppingCartTest.xml | 2 +- .../Checkout/Test/TestCase/OnePageCheckoutDeclinedTest.php | 2 +- .../Test/TestCase/OnePageCheckoutJsValidationTest.php | 2 +- .../Test/TestCase/OnePageCheckoutJsValidationTest.xml | 2 +- .../Magento/Checkout/Test/TestCase/OnePageCheckoutTest.php | 2 +- .../Magento/Checkout/Test/TestCase/OnePageCheckoutTest.xml | 2 +- .../UpdateProductFromMiniShoppingCartEntityTest.php | 2 +- .../UpdateProductFromMiniShoppingCartEntityTest.xml | 2 +- .../Checkout/Test/TestCase/UpdateShoppingCartTest.php | 2 +- .../Checkout/Test/TestCase/UpdateShoppingCartTest.xml | 2 +- .../Checkout/Test/TestCase/ValidateEmailOnCheckoutTest.php | 2 +- .../Checkout/Test/TestCase/ValidateEmailOnCheckoutTest.xml | 2 +- .../Checkout/Test/TestStep/AddNewShippingAddressStep.php | 2 +- .../Checkout/Test/TestStep/AddProductsToTheCartStep.php | 2 +- .../Checkout/Test/TestStep/ClickPlaceOrderButtonStep.php | 2 +- .../Checkout/Test/TestStep/ClickProceedToCheckoutStep.php | 2 +- .../Checkout/Test/TestStep/CreateCustomerAccountStep.php | 2 +- .../Checkout/Test/TestStep/EstimateShippingAndTaxStep.php | 2 +- .../Checkout/Test/TestStep/FillBillingInformationStep.php | 2 +- .../Checkout/Test/TestStep/FillShippingAddressStep.php | 2 +- .../Checkout/Test/TestStep/FillShippingMethodStep.php | 2 +- .../Magento/Checkout/Test/TestStep/GetPlacedOrderIdStep.php | 2 +- .../app/Magento/Checkout/Test/TestStep/PlaceOrderStep.php | 2 +- .../Checkout/Test/TestStep/ProceedToCheckoutStep.php | 2 +- .../Checkout/Test/TestStep/SelectCheckoutMethodStep.php | 2 +- .../Checkout/Test/TestStep/SelectPaymentMethodStep.php | 2 +- .../functional/tests/app/Magento/Checkout/Test/etc/di.xml | 2 +- .../tests/app/Magento/Checkout/Test/etc/testcase.xml | 2 +- .../Test/Block/Adminhtml/AgreementGrid.php | 2 +- .../Block/Adminhtml/Block/Agreement/Edit/AgreementsForm.php | 2 +- .../Block/Adminhtml/Block/Agreement/Edit/AgreementsForm.xml | 2 +- .../Block/Multishipping/MultishippingAgreementReview.php | 2 +- .../Test/Block/Onepage/AgreementReview.php | 2 +- .../Test/Constraint/AssertTermAbsentInGrid.php | 2 +- .../Test/Constraint/AssertTermAbsentOnCheckout.php | 2 +- .../CheckoutAgreements/Test/Constraint/AssertTermInGrid.php | 2 +- .../Test/Constraint/AssertTermOnCheckout.php | 2 +- .../AssertTermRequireMessageOnMultishippingCheckout.php | 2 +- .../Test/Constraint/AssertTermSuccessDeleteMessage.php | 2 +- .../Test/Constraint/AssertTermSuccessSaveMessage.php | 2 +- .../CheckoutAgreements/Test/Fixture/CheckoutAgreement.xml | 2 +- .../Test/Fixture/CheckoutAgreement/Stores.php | 2 +- .../CheckoutAgreement/CheckoutAgreementInterface.php | 2 +- .../Test/Handler/CheckoutAgreement/Curl.php | 2 +- .../Test/Page/Adminhtml/CheckoutAgreementIndex.xml | 4 ++-- .../Test/Page/Adminhtml/CheckoutAgreementNew.xml | 4 ++-- .../CheckoutAgreements/Test/Page/CheckoutOnepage.xml | 2 +- .../Test/Page/MultishippingCheckoutOverview.xml | 2 +- .../Test/Repository/CheckoutAgreement.xml | 2 +- .../CheckoutAgreements/Test/Repository/ConfigData.xml | 2 +- .../Test/TestCase/CreateTermEntityTest.php | 2 +- .../Test/TestCase/CreateTermEntityTest.xml | 2 +- .../Test/TestCase/DeleteTermEntityTest.php | 2 +- .../Test/TestCase/DeleteTermEntityTest.xml | 2 +- .../CheckoutAgreements/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Test/TestCase/UpdateTermEntityTest.php | 2 +- .../Test/TestCase/UpdateTermEntityTest.xml | 2 +- .../Test/TestStep/CheckTermOnMultishippingStep.php | 2 +- .../Test/TestStep/CreateTermEntityStep.php | 2 +- .../Test/TestStep/DeleteAllTermsEntityStep.php | 2 +- .../Test/TestStep/DeleteTermEntityStep.php | 2 +- .../Test/TestStep/SetupTermEntityStep.php | 2 +- .../Test/TestStep/UpdateTermEntityStep.php | 2 +- .../app/Magento/CheckoutAgreements/Test/etc/curl/di.xml | 2 +- .../tests/app/Magento/CheckoutAgreements/Test/etc/di.xml | 2 +- .../app/Magento/CheckoutAgreements/Test/etc/testcase.xml | 2 +- .../app/Magento/Cms/Test/Block/Adminhtml/Block/CmsGrid.php | 2 +- .../Cms/Test/Block/Adminhtml/Block/Edit/BlockForm.php | 2 +- .../Magento/Cms/Test/Block/Adminhtml/Block/Edit/CmsForm.php | 2 +- .../Magento/Cms/Test/Block/Adminhtml/Block/Edit/CmsForm.xml | 2 +- .../Magento/Cms/Test/Block/Adminhtml/Page/Edit/PageForm.php | 2 +- .../Magento/Cms/Test/Block/Adminhtml/Page/Edit/PageForm.xml | 2 +- .../Cms/Test/Block/Adminhtml/Page/Edit/Tab/Content.php | 2 +- .../app/Magento/Cms/Test/Block/Adminhtml/Page/Grid.php | 2 +- .../Cms/Test/Block/Adminhtml/Page/Widget/Chooser.php | 2 +- .../app/Magento/Cms/Test/Block/Adminhtml/Wysiwyg/Config.php | 2 +- .../tests/app/Magento/Cms/Test/Block/Messages.php | 2 +- .../functional/tests/app/Magento/Cms/Test/Block/Page.php | 2 +- .../Cms/Test/Constraint/AssertCmsBlockDeleteMessage.php | 2 +- .../Magento/Cms/Test/Constraint/AssertCmsBlockInGrid.php | 2 +- .../Magento/Cms/Test/Constraint/AssertCmsBlockNotInGrid.php | 2 +- .../Cms/Test/Constraint/AssertCmsBlockNotOnCategoryPage.php | 2 +- .../Cms/Test/Constraint/AssertCmsBlockOnCategoryPage.php | 2 +- .../Test/Constraint/AssertCmsBlockSuccessSaveMessage.php | 2 +- .../Cms/Test/Constraint/AssertCmsPageDeleteMessage.php | 2 +- .../Cms/Test/Constraint/AssertCmsPageDisabledOnFrontend.php | 2 +- .../Test/Constraint/AssertCmsPageDuplicateErrorMessage.php | 2 +- .../app/Magento/Cms/Test/Constraint/AssertCmsPageForm.php | 2 +- .../Test/Constraint/AssertCmsPageFormSingleStoreMode.php | 2 +- .../app/Magento/Cms/Test/Constraint/AssertCmsPageInGrid.php | 2 +- .../Magento/Cms/Test/Constraint/AssertCmsPageNotInGrid.php | 2 +- .../Magento/Cms/Test/Constraint/AssertCmsPageOnFrontend.php | 2 +- .../Magento/Cms/Test/Constraint/AssertCmsPagePreview.php | 2 +- .../Cms/Test/Constraint/AssertCmsPageSuccessSaveMessage.php | 2 +- .../Cms/Test/Constraint/AssertUrlRewriteCmsPageRedirect.php | 2 +- .../tests/app/Magento/Cms/Test/Fixture/CmsBlock.xml | 2 +- .../tests/app/Magento/Cms/Test/Fixture/CmsBlock/Stores.php | 2 +- .../tests/app/Magento/Cms/Test/Fixture/CmsPage.xml | 2 +- .../tests/app/Magento/Cms/Test/Fixture/CmsPage/Content.php | 2 +- .../Magento/Cms/Test/Handler/CmsBlock/CmsBlockInterface.php | 2 +- .../tests/app/Magento/Cms/Test/Handler/CmsBlock/Curl.php | 2 +- .../Magento/Cms/Test/Handler/CmsPage/CmsPageInterface.php | 2 +- .../tests/app/Magento/Cms/Test/Handler/CmsPage/Curl.php | 2 +- .../app/Magento/Cms/Test/Page/Adminhtml/CmsBlockEdit.xml | 2 +- .../app/Magento/Cms/Test/Page/Adminhtml/CmsBlockIndex.xml | 2 +- .../app/Magento/Cms/Test/Page/Adminhtml/CmsBlockNew.xml | 2 +- .../app/Magento/Cms/Test/Page/Adminhtml/CmsPageIndex.xml | 2 +- .../app/Magento/Cms/Test/Page/Adminhtml/CmsPageNew.xml | 2 +- .../functional/tests/app/Magento/Cms/Test/Page/CmsIndex.xml | 2 +- .../functional/tests/app/Magento/Cms/Test/Page/CmsPage.xml | 2 +- .../tests/app/Magento/Cms/Test/Repository/CmsBlock.xml | 2 +- .../tests/app/Magento/Cms/Test/Repository/CmsPage.xml | 2 +- .../app/Magento/Cms/Test/Repository/CmsPage/Content.xml | 2 +- .../tests/app/Magento/Cms/Test/Repository/ConfigData.xml | 2 +- .../tests/app/Magento/Cms/Test/Repository/UrlRewrite.xml | 2 +- .../Cms/Test/TestCase/AbstractCmsBlockEntityTest.php | 2 +- .../Magento/Cms/Test/TestCase/CreateCmsBlockEntityTest.php | 2 +- .../Magento/Cms/Test/TestCase/CreateCmsBlockEntityTest.xml | 2 +- .../Magento/Cms/Test/TestCase/CreateCmsPageEntityTest.php | 2 +- .../Magento/Cms/Test/TestCase/CreateCmsPageEntityTest.xml | 2 +- .../Cms/Test/TestCase/CreateCmsPageRewriteEntityTest.php | 2 +- .../Cms/Test/TestCase/CreateCmsPageRewriteEntityTest.xml | 2 +- .../Cms/Test/TestCase/CreateCustomUrlRewriteEntityTest.xml | 2 +- .../Magento/Cms/Test/TestCase/DeleteCmsBlockEntityTest.php | 2 +- .../Magento/Cms/Test/TestCase/DeleteCmsBlockEntityTest.xml | 2 +- .../Magento/Cms/Test/TestCase/DeleteCmsPageEntityTest.php | 2 +- .../Magento/Cms/Test/TestCase/DeleteCmsPageEntityTest.xml | 2 +- .../Cms/Test/TestCase/DeleteCmsPageUrlRewriteEntityTest.php | 2 +- .../Cms/Test/TestCase/DeleteCmsPageUrlRewriteEntityTest.xml | 2 +- .../app/Magento/Cms/Test/TestCase/GridFilteringTest.xml | 2 +- .../Magento/Cms/Test/TestCase/GridFullTextSearchTest.xml | 2 +- .../tests/app/Magento/Cms/Test/TestCase/GridSortingTest.xml | 2 +- .../app/Magento/Cms/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Magento/Cms/Test/TestCase/UpdateCmsBlockEntityTest.php | 2 +- .../Magento/Cms/Test/TestCase/UpdateCmsBlockEntityTest.xml | 2 +- .../Magento/Cms/Test/TestCase/UpdateCmsPageEntityTest.php | 2 +- .../Magento/Cms/Test/TestCase/UpdateCmsPageEntityTest.xml | 2 +- .../Cms/Test/TestCase/UpdateCmsPageRewriteEntityTest.php | 2 +- .../Cms/Test/TestCase/UpdateCmsPageRewriteEntityTest.xml | 2 +- .../functional/tests/app/Magento/Cms/Test/etc/curl/di.xml | 2 +- dev/tests/functional/tests/app/Magento/Cms/Test/etc/di.xml | 2 +- .../Magento/Config/Test/Block/System/Config/AdminForm.php | 2 +- .../Config/Test/Constraint/AssertAdminAccountSharing.php | 2 +- .../tests/app/Magento/Config/Test/Fixture/ConfigData.xml | 2 +- .../app/Magento/Config/Test/Fixture/ConfigData/Section.php | 2 +- .../Config/Test/Handler/ConfigData/ConfigDataInterface.php | 2 +- .../app/Magento/Config/Test/Handler/ConfigData/Curl.php | 2 +- .../Test/TestCase/VerifyAdminAccountSharingEntityTest.php | 2 +- .../Test/TestCase/VerifyAdminAccountSharingEntityTest.xml | 2 +- .../Magento/Config/Test/TestStep/SetupConfigurationStep.php | 2 +- .../tests/app/Magento/Config/Test/etc/curl/di.xml | 2 +- .../Test/Block/Adminhtml/Product/AffectedAttributeSet.php | 2 +- .../Test/Block/Adminhtml/Product/AffectedAttributeSet.xml | 2 +- .../Test/Block/Adminhtml/Product/AssociatedProductGrid.php | 2 +- .../Test/Block/Adminhtml/Product/AttributesGrid.php | 2 +- .../Test/Block/Adminhtml/Product/Composite/Configure.php | 2 +- .../Test/Block/Adminhtml/Product/Composite/Configure.xml | 2 +- .../Adminhtml/Product/Edit/NewConfigurableAttributeForm.php | 2 +- .../Adminhtml/Product/Edit/NewConfigurableAttributeForm.xml | 2 +- .../Adminhtml/Product/Edit/Section/Variations/Config.php | 2 +- .../Product/Edit/Section/Variations/Config/Attribute.php | 2 +- .../Product/Edit/Section/Variations/Config/Attribute.xml | 2 +- .../Variations/Config/Attribute/AttributeSelector.php | 2 +- .../Section/Variations/Config/Attribute/ToggleDropdown.php | 2 +- .../Product/Edit/Section/Variations/Config/Matrix.php | 2 +- .../Product/Edit/Section/Variations/Config/Matrix.xml | 2 +- .../Test/Block/Adminhtml/Product/FormPageActions.php | 2 +- .../Test/Block/Adminhtml/Product/Grid.php | 2 +- .../Test/Block/Adminhtml/Product/ProductForm.php | 2 +- .../Test/Block/Adminhtml/Product/ProductForm.xml | 2 +- .../Magento/ConfigurableProduct/Test/Block/Product/View.php | 2 +- .../Test/Block/Product/View/ConfigurableOptions.php | 2 +- .../AssertChildProductIsNotDisplayedSeparately.php | 2 +- .../Test/Constraint/AssertChildProductsGeneratedSku.php | 2 +- .../Test/Constraint/AssertChildProductsInGrid.php | 2 +- .../AssertConfigurableAttributesAbsentOnProductPage.php | 2 +- ...sertConfigurableAttributesBlockIsAbsentOnProductPage.php | 2 +- .../Constraint/AssertConfigurableProductDuplicateForm.php | 2 +- .../Test/Constraint/AssertConfigurableProductForm.php | 2 +- .../Test/Constraint/AssertConfigurableProductInCart.php | 2 +- .../Test/Constraint/AssertConfigurableProductInCategory.php | 2 +- ...rtConfigurableProductInCustomerWishlistOnBackendGrid.php | 2 +- .../Test/Constraint/AssertConfigurableProductPage.php | 2 +- .../AssertConfigurableProductsQtyAfterReorder.php | 2 +- .../Constraint/AssertCurrencyRateAppliedOnProductPage.php | 2 +- .../AssertProductAttributeAbsenceInVariationsSearch.php | 2 +- .../Constraint/AssertProductAttributeIsConfigurable.php | 2 +- .../Constraint/AssertProductQtyDecreasedAfterCreditmemo.php | 2 +- .../Test/Constraint/AssertProductTierPriceOnProductPage.php | 2 +- .../Magento/ConfigurableProduct/Test/Fixture/Cart/Item.php | 2 +- .../Test/Fixture/ConfigurableProduct.xml | 2 +- .../ConfigurableProduct/ConfigurableAttributesData.php | 2 +- .../ConfigurableProduct/ConfigurableProductInterface.php | 2 +- .../Test/Handler/ConfigurableProduct/Curl.php | 2 +- .../Test/Handler/ConfigurableProduct/Webapi.php | 2 +- .../Test/Page/Adminhtml/CatalogProductEdit.xml | 2 +- .../Test/Page/Adminhtml/CatalogProductNew.xml | 2 +- .../Test/Page/Adminhtml/CustomerIndexEdit.xml | 2 +- .../Test/Page/Adminhtml/OrderCreateIndex.xml | 2 +- .../Test/Page/Product/CatalogProductView.xml | 2 +- .../Test/Repository/ConfigurableProduct.xml | 2 +- .../Test/Repository/ConfigurableProduct/CheckoutData.xml | 2 +- .../ConfigurableProduct/ConfigurableAttributesData.xml | 2 +- .../Test/Repository/ConfigurableProduct/Price.xml | 2 +- .../Test/TestCase/CreateConfigurableProductEntityTest.php | 2 +- .../Test/TestCase/CreateConfigurableProductEntityTest.xml | 2 +- .../Test/TestCase/CreateCreditMemoEntityTest.xml | 2 +- .../Test/TestCase/CreateCurrencyRateTest.xml | 2 +- .../Test/TestCase/DeleteProductEntityTest.xml | 2 +- .../Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml | 2 +- .../Test/TestCase/DuplicateProductEntityTest.xml | 2 +- .../Test/TestCase/MassProductUpdateTest.xml | 2 +- .../MoveRecentlyComparedProductsOnOrderPageTest.xml | 2 +- .../Test/TestCase/TaxCalculationTest.xml | 2 +- .../Test/TestCase/UpdateConfigurableProductEntityTest.php | 2 +- .../Test/TestCase/UpdateConfigurableProductEntityTest.xml | 2 +- .../Test/TestCase/ValidateOrderOfProductTypeTest.xml | 2 +- .../Test/TestStep/UpdateConfigurableProductStep.php | 2 +- .../app/Magento/ConfigurableProduct/Test/etc/curl/di.xml | 2 +- .../tests/app/Magento/ConfigurableProduct/Test/etc/di.xml | 2 +- .../app/Magento/ConfigurableProduct/Test/etc/testcase.xml | 2 +- .../app/Magento/ConfigurableProduct/Test/etc/webapi/di.xml | 2 +- .../Adminhtml/System/Currency/Rate/CurrencyRateForm.php | 2 +- .../Adminhtml/System/Currency/Rate/CurrencyRateForm.xml | 2 +- .../Adminhtml/System/Currency/Rate/FormPageActions.php | 2 +- .../Test/Block/Adminhtml/System/CurrencySymbolForm.php | 2 +- .../Test/Block/Adminhtml/System/CurrencySymbolForm.xml | 2 +- .../Test/Block/Adminhtml/System/FormPageActions.php | 2 +- .../Test/Constraint/AssertCurrencySymbolOnCatalogPage.php | 2 +- .../Test/Constraint/AssertCurrencySymbolOnProductPage.php | 2 +- .../Constraint/AssertCurrencySymbolSuccessSaveMessage.php | 2 +- .../CurrencySymbol/Test/Fixture/CurrencySymbolEntity.xml | 2 +- .../Test/Handler/CurrencySymbolEntity/Curl.php | 2 +- .../CurrencySymbolEntity/CurrencySymbolEntityInterface.php | 2 +- .../Test/Page/Adminhtml/ConfigCurrencySetUp.xml | 2 +- .../Test/Page/Adminhtml/SystemCurrencyIndex.xml | 2 +- .../Test/Page/Adminhtml/SystemCurrencySymbolIndex.xml | 4 ++-- .../Magento/CurrencySymbol/Test/Repository/ConfigData.xml | 2 +- .../CurrencySymbol/Test/Repository/CurrencySymbolEntity.xml | 2 +- .../Test/TestCase/AbstractCurrencySymbolEntityTest.php | 2 +- .../Test/TestCase/EditCurrencySymbolEntityTest.php | 2 +- .../Test/TestCase/EditCurrencySymbolEntityTest.xml | 2 +- .../CurrencySymbol/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Test/TestCase/ResetCurrencySymbolEntityTest.php | 2 +- .../Test/TestCase/ResetCurrencySymbolEntityTest.xml | 2 +- .../tests/app/Magento/CurrencySymbol/Test/etc/curl/di.xml | 2 +- .../Customer/Test/Block/Account/AddressesAdditional.php | 2 +- .../Customer/Test/Block/Account/AddressesDefault.php | 2 +- .../Customer/Test/Block/Account/AuthenticationPopup.php | 2 +- .../Customer/Test/Block/Account/AuthenticationPopup.xml | 2 +- .../Customer/Test/Block/Account/AuthenticationWrapper.php | 2 +- .../Customer/Test/Block/Account/AuthenticationWrapper.xml | 2 +- .../Customer/Test/Block/Account/Dashboard/Address.php | 2 +- .../Magento/Customer/Test/Block/Account/Dashboard/Info.php | 2 +- .../tests/app/Magento/Customer/Test/Block/Account/Links.php | 2 +- .../tests/app/Magento/Customer/Test/Block/Address/Edit.php | 2 +- .../tests/app/Magento/Customer/Test/Block/Address/Edit.xml | 2 +- .../app/Magento/Customer/Test/Block/Address/Renderer.php | 2 +- .../Magento/Customer/Test/Block/Adminhtml/CustomerGrid.php | 2 +- .../Customer/Test/Block/Adminhtml/Edit/CustomerForm.php | 2 +- .../Customer/Test/Block/Adminhtml/Edit/CustomerForm.xml | 2 +- .../Customer/Test/Block/Adminhtml/Edit/FormPageActions.php | 2 +- .../Customer/Test/Block/Adminhtml/Edit/Tab/Addresses.php | 2 +- .../Customer/Test/Block/Adminhtml/Edit/Tab/Addresses.xml | 2 +- .../Test/Block/Adminhtml/Group/CustomerGroupGrid.php | 2 +- .../Customer/Test/Block/Adminhtml/Group/Edit/Form.php | 2 +- .../Customer/Test/Block/Adminhtml/Group/Edit/Form.xml | 2 +- .../app/Magento/Customer/Test/Block/Form/CustomerForm.php | 2 +- .../app/Magento/Customer/Test/Block/Form/CustomerForm.xml | 2 +- .../app/Magento/Customer/Test/Block/Form/ForgotPassword.php | 2 +- .../app/Magento/Customer/Test/Block/Form/ForgotPassword.xml | 4 ++-- .../tests/app/Magento/Customer/Test/Block/Form/Login.php | 2 +- .../tests/app/Magento/Customer/Test/Block/Form/Login.xml | 2 +- .../tests/app/Magento/Customer/Test/Block/Form/Register.php | 2 +- .../tests/app/Magento/Customer/Test/Block/Form/Register.xml | 2 +- .../Constraint/AssertAdditionalAddressDeletedFrontend.php | 2 +- .../Test/Constraint/AssertAddressDeletedBackend.php | 2 +- .../Test/Constraint/AssertAddressDeletedFrontend.php | 2 +- .../Test/Constraint/AssertChangePasswordFailMessage.php | 2 +- .../Constraint/AssertChangingWebsiteChangeCountries.php | 2 +- .../Constraint/AssertCustomerAddressSuccessSaveMessage.php | 2 +- .../Test/Constraint/AssertCustomerBackendBackButton.php | 2 +- .../AssertCustomerBackendDuplicateErrorMessage.php | 2 +- .../Test/Constraint/AssertCustomerBackendFormTitle.php | 2 +- .../Test/Constraint/AssertCustomerBackendRequiredFields.php | 2 +- .../AssertCustomerDefaultAddressFrontendAddressBook.php | 2 +- .../Test/Constraint/AssertCustomerDefaultAddresses.php | 2 +- .../Test/Constraint/AssertCustomerFailRegisterMessage.php | 2 +- .../AssertCustomerForgotPasswordSuccessMessage.php | 2 +- .../Magento/Customer/Test/Constraint/AssertCustomerForm.php | 2 +- .../Test/Constraint/AssertCustomerGroupAlreadyExists.php | 2 +- .../AssertCustomerGroupChangedToDefaultOnCustomerForm.php | 2 +- .../Test/Constraint/AssertCustomerGroupFieldsDisabled.php | 2 +- .../Customer/Test/Constraint/AssertCustomerGroupForm.php | 2 +- .../Customer/Test/Constraint/AssertCustomerGroupInGrid.php | 2 +- .../Test/Constraint/AssertCustomerGroupNotInGrid.php | 2 +- .../AssertCustomerGroupNotOnCartPriceRuleForm.php | 2 +- .../AssertCustomerGroupNotOnCatalogPriceRuleForm.php | 2 +- .../Test/Constraint/AssertCustomerGroupNotOnProductForm.php | 2 +- .../Constraint/AssertCustomerGroupOnCartPriceRuleForm.php | 2 +- .../AssertCustomerGroupOnCatalogPriceRuleForm.php | 2 +- .../Test/Constraint/AssertCustomerGroupOnCustomerForm.php | 2 +- .../Test/Constraint/AssertCustomerGroupOnProductForm.php | 2 +- .../Constraint/AssertCustomerGroupSuccessDeleteMessage.php | 2 +- .../Constraint/AssertCustomerGroupSuccessSaveMessage.php | 2 +- .../Customer/Test/Constraint/AssertCustomerInGrid.php | 2 +- .../Constraint/AssertCustomerInfoSuccessSavedMessage.php | 2 +- .../Customer/Test/Constraint/AssertCustomerInvalidEmail.php | 2 +- .../Customer/Test/Constraint/AssertCustomerLogin.php | 2 +- .../Test/Constraint/AssertCustomerLoginErrorMessage.php | 2 +- .../Customer/Test/Constraint/AssertCustomerLogout.php | 2 +- .../Test/Constraint/AssertCustomerMassDeleteInGrid.php | 2 +- .../Test/Constraint/AssertCustomerMassDeleteNotInGrid.php | 2 +- .../Constraint/AssertCustomerMassDeleteSuccessMessage.php | 2 +- .../Customer/Test/Constraint/AssertCustomerNameFrontend.php | 2 +- .../Customer/Test/Constraint/AssertCustomerNotInGrid.php | 2 +- ...sertCustomerPasswordAutocompleteOnAuthorizationPopup.php | 2 +- .../AssertCustomerPasswordAutocompleteOnSignIn.php | 2 +- .../Test/Constraint/AssertCustomerPasswordChanged.php | 2 +- .../Test/Constraint/AssertCustomerRedirectToDashboard.php | 2 +- .../Test/Constraint/AssertCustomerSuccessDeleteMessage.php | 2 +- .../Constraint/AssertCustomerSuccessRegisterMessage.php | 2 +- .../Test/Constraint/AssertCustomerSuccessSaveMessage.php | 2 +- .../Constraint/AssertMassActionSuccessUpdateMessage.php | 2 +- .../Constraint/AssertNoDeleteForSystemCustomerGroup.php | 2 +- .../Test/Constraint/AssertWrongPassConfirmationMessage.php | 2 +- .../tests/app/Magento/Customer/Test/Fixture/Address.xml | 2 +- .../tests/app/Magento/Customer/Test/Fixture/Customer.xml | 2 +- .../app/Magento/Customer/Test/Fixture/Customer/Address.php | 2 +- .../app/Magento/Customer/Test/Fixture/Customer/GroupId.php | 2 +- .../Magento/Customer/Test/Fixture/Customer/WebsiteId.php | 2 +- .../app/Magento/Customer/Test/Fixture/CustomerGroup.xml | 2 +- .../Customer/Test/Fixture/CustomerGroup/TaxClassIds.php | 2 +- .../app/Magento/Customer/Test/Handler/Customer/Curl.php | 2 +- .../Customer/Test/Handler/Customer/CustomerInterface.php | 2 +- .../app/Magento/Customer/Test/Handler/Customer/Webapi.php | 2 +- .../Magento/Customer/Test/Handler/CustomerGroup/Curl.php | 2 +- .../Test/Handler/CustomerGroup/CustomerGroupInterface.php | 2 +- .../Magento/Customer/Test/Page/Address/DefaultAddress.php | 2 +- .../Customer/Test/Page/Adminhtml/CustomerGroupEdit.xml | 2 +- .../Customer/Test/Page/Adminhtml/CustomerGroupIndex.xml | 2 +- .../Customer/Test/Page/Adminhtml/CustomerGroupNew.xml | 2 +- .../Magento/Customer/Test/Page/Adminhtml/CustomerIndex.xml | 2 +- .../Customer/Test/Page/Adminhtml/CustomerIndexEdit.xml | 2 +- .../Customer/Test/Page/Adminhtml/CustomerIndexNew.xml | 2 +- .../Magento/Customer/Test/Page/CustomerAccountAddress.xml | 4 ++-- .../Magento/Customer/Test/Page/CustomerAccountCreate.xml | 2 +- .../app/Magento/Customer/Test/Page/CustomerAccountEdit.xml | 2 +- .../Customer/Test/Page/CustomerAccountForgotPassword.xml | 2 +- .../app/Magento/Customer/Test/Page/CustomerAccountIndex.xml | 2 +- .../app/Magento/Customer/Test/Page/CustomerAccountLogin.xml | 2 +- .../Magento/Customer/Test/Page/CustomerAccountLogout.php | 2 +- .../app/Magento/Customer/Test/Page/CustomerAddressEdit.xml | 2 +- .../tests/app/Magento/Customer/Test/Repository/Address.php | 2 +- .../tests/app/Magento/Customer/Test/Repository/Address.xml | 2 +- .../app/Magento/Customer/Test/Repository/ConfigData.xml | 2 +- .../tests/app/Magento/Customer/Test/Repository/Customer.xml | 2 +- .../app/Magento/Customer/Test/Repository/CustomerGroup.xml | 2 +- .../Customer/Test/TestCase/AbstractApplyVatIdTest.php | 2 +- .../app/Magento/Customer/Test/TestCase/ApplyVatIdTest.php | 2 +- .../app/Magento/Customer/Test/TestCase/ApplyVatIdTest.xml | 2 +- .../Customer/Test/TestCase/ChangeCustomerPasswordTest.php | 2 +- .../Customer/Test/TestCase/ChangeCustomerPasswordTest.xml | 2 +- .../Test/TestCase/CreateCustomerBackendEntityTest.php | 2 +- .../Test/TestCase/CreateCustomerBackendEntityTest.xml | 2 +- .../Test/TestCase/CreateCustomerGroupEntityTest.php | 2 +- .../Test/TestCase/CreateCustomerGroupEntityTest.xml | 2 +- .../Test/TestCase/CreateExistingCustomerBackendEntity.php | 2 +- .../Test/TestCase/CreateExistingCustomerBackendEntity.xml | 2 +- .../Test/TestCase/CreateExistingCustomerFrontendEntity.php | 2 +- .../Test/TestCase/CreateExistingCustomerFrontendEntity.xml | 2 +- .../Customer/Test/TestCase/DeleteCustomerAddressTest.php | 2 +- .../Customer/Test/TestCase/DeleteCustomerAddressTest.xml | 2 +- .../Test/TestCase/DeleteCustomerBackendEntityTest.php | 2 +- .../Test/TestCase/DeleteCustomerBackendEntityTest.xml | 2 +- .../Test/TestCase/DeleteCustomerGroupEntityTest.php | 2 +- .../Test/TestCase/DeleteCustomerGroupEntityTest.xml | 2 +- .../Test/TestCase/DeleteSystemCustomerGroupTest.php | 2 +- .../Test/TestCase/DeleteSystemCustomerGroupTest.xml | 2 +- .../Customer/Test/TestCase/ForgotPasswordOnFrontendTest.php | 2 +- .../Customer/Test/TestCase/ForgotPasswordOnFrontendTest.xml | 2 +- .../Magento/Customer/Test/TestCase/GridFilteringTest.xml | 2 +- .../Customer/Test/TestCase/GridFullTextSearchTest.xml | 2 +- .../app/Magento/Customer/Test/TestCase/GridSortingTest.xml | 2 +- .../Customer/Test/TestCase/LoginOnFrontendFailTest.php | 2 +- .../Customer/Test/TestCase/LoginOnFrontendFailTest.xml | 2 +- .../Customer/Test/TestCase/MassAssignCustomerGroupTest.php | 2 +- .../Customer/Test/TestCase/MassAssignCustomerGroupTest.xml | 2 +- .../Test/TestCase/MassDeleteCustomerBackendEntityTest.php | 2 +- .../Test/TestCase/MassDeleteCustomerBackendEntityTest.xml | 2 +- .../app/Magento/Customer/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Customer/Test/TestCase/PasswordAutocompleteOffTest.php | 2 +- .../Customer/Test/TestCase/PasswordAutocompleteOffTest.xml | 2 +- .../Test/TestCase/RegisterCustomerFrontendEntityTest.php | 2 +- .../Test/TestCase/RegisterCustomerFrontendEntityTest.xml | 2 +- .../Test/TestCase/UpdateCustomerBackendEntityTest.php | 2 +- .../Test/TestCase/UpdateCustomerBackendEntityTest.xml | 2 +- .../Test/TestCase/UpdateCustomerFrontendEntityTest.php | 2 +- .../Test/TestCase/UpdateCustomerFrontendEntityTest.xml | 2 +- .../Test/TestCase/UpdateCustomerGroupEntityTest.php | 2 +- .../Test/TestCase/UpdateCustomerGroupEntityTest.xml | 2 +- .../Test/TestCase/VerifyDisabledCustomerGroupFieldTest.php | 2 +- .../Test/TestCase/VerifyDisabledCustomerGroupFieldTest.xml | 2 +- .../Magento/Customer/Test/TestStep/CreateCustomerStep.php | 2 +- .../Test/TestStep/CreateOrderFromCustomerAccountStep.php | 2 +- .../Customer/Test/TestStep/LoginCustomerOnFrontendStep.php | 2 +- .../Customer/Test/TestStep/LogoutCustomerOnFrontendStep.php | 2 +- .../Customer/Test/TestStep/OpenCustomerOnBackendStep.php | 2 +- .../tests/app/Magento/Customer/Test/etc/curl/di.xml | 2 +- .../functional/tests/app/Magento/Customer/Test/etc/di.xml | 2 +- .../tests/app/Magento/Customer/Test/etc/testcase.xml | 2 +- .../tests/app/Magento/Customer/Test/etc/webapi/di.xml | 2 +- .../tests/app/Magento/Dhl/Test/Repository/ConfigData.xml | 2 +- .../Magento/Dhl/Test/TestCase/CityBasedShippingRateTest.xml | 2 +- .../app/Magento/Dhl/Test/TestCase/OnePageCheckoutTest.xml | 2 +- .../app/Magento/Directory/Test/Block/Currency/Switcher.php | 2 +- .../Constraint/AssertCurrencyRateAppliedOnCatalogPage.php | 2 +- .../Constraint/AssertCurrencyRateAppliedOnProductPage.php | 2 +- .../Constraint/AssertCurrencyRateSuccessSaveMessage.php | 2 +- .../Constraint/AssertShippingPriceWithCustomCurrency.php | 2 +- .../app/Magento/Directory/Test/Fixture/CurrencyRate.xml | 2 +- .../Magento/Directory/Test/Handler/CurrencyRate/Curl.php | 2 +- .../Test/Handler/CurrencyRate/CurrencyRateInterface.php | 2 +- .../app/Magento/Directory/Test/Repository/ConfigData.xml | 2 +- .../app/Magento/Directory/Test/Repository/CurrencyRate.xml | 2 +- .../Directory/Test/TestCase/CreateCurrencyRateTest.php | 2 +- .../Directory/Test/TestCase/CreateCurrencyRateTest.xml | 2 +- .../tests/app/Magento/Directory/Test/etc/curl/di.xml | 2 +- .../functional/tests/app/Magento/Directory/Test/etc/di.xml | 2 +- .../Adminhtml/Catalog/Product/Edit/Section/Downloadable.php | 2 +- .../Catalog/Product/Edit/Section/Downloadable/LinkRow.php | 2 +- .../Catalog/Product/Edit/Section/Downloadable/LinkRow.xml | 2 +- .../Catalog/Product/Edit/Section/Downloadable/Links.php | 2 +- .../Catalog/Product/Edit/Section/Downloadable/Links.xml | 2 +- .../Catalog/Product/Edit/Section/Downloadable/SampleRow.php | 2 +- .../Catalog/Product/Edit/Section/Downloadable/SampleRow.xml | 2 +- .../Catalog/Product/Edit/Section/Downloadable/Samples.php | 2 +- .../Catalog/Product/Edit/Section/Downloadable/Samples.xml | 2 +- .../Test/Block/Adminhtml/Product/Composite/Configure.php | 2 +- .../Test/Block/Adminhtml/Product/Composite/Configure.xml | 2 +- .../Test/Block/Adminhtml/Product/ProductForm.xml | 2 +- .../Downloadable/Test/Block/Catalog/Product/View.php | 2 +- .../Downloadable/Test/Block/Catalog/Product/View/Links.php | 2 +- .../Test/Block/Catalog/Product/View/Samples.php | 2 +- .../Test/Block/Customer/Products/ListProducts.php | 2 +- ...bstractAssertTaxCalculationAfterCheckoutDownloadable.php | 2 +- ...bstractAssertTaxRuleIsAppliedToAllPricesDownloadable.php | 2 +- .../Test/Constraint/AssertDownloadableDuplicateForm.php | 2 +- .../Test/Constraint/AssertDownloadableLinksData.php | 2 +- .../Test/Constraint/AssertDownloadableProductForm.php | 2 +- ...rtDownloadableProductInCustomerWishlistOnBackendGrid.php | 2 +- .../Test/Constraint/AssertDownloadableSamplesData.php | 2 +- ...lationAfterCheckoutDownloadableExcludingIncludingTax.php | 2 +- ...tTaxCalculationAfterCheckoutDownloadableExcludingTax.php | 2 +- ...tTaxCalculationAfterCheckoutDownloadableIncludingTax.php | 2 +- ...sAppliedToAllPricesDownloadableExcludingIncludingTax.php | 2 +- ...tTaxRuleIsAppliedToAllPricesDownloadableExcludingTax.php | 2 +- ...tTaxRuleIsAppliedToAllPricesDownloadableIncludingTax.php | 2 +- .../app/Magento/Downloadable/Test/Fixture/Cart/Item.php | 2 +- .../Downloadable/Test/Fixture/DownloadableProduct.xml | 2 +- .../Downloadable/Test/Handler/DownloadableProduct/Curl.php | 2 +- .../DownloadableProduct/DownloadableProductInterface.php | 2 +- .../Test/Handler/DownloadableProduct/Webapi.php | 2 +- .../Downloadable/Test/Page/Adminhtml/CustomerIndexEdit.xml | 2 +- .../Downloadable/Test/Page/Adminhtml/OrderCreateIndex.xml | 2 +- .../Downloadable/Test/Page/DownloadableCustomerProducts.xml | 2 +- .../Downloadable/Test/Page/Product/CatalogProductView.xml | 2 +- .../Downloadable/Test/Repository/DownloadableProduct.xml | 2 +- .../Test/Repository/DownloadableProduct/CheckoutData.xml | 2 +- .../Test/Repository/DownloadableProduct/Links.xml | 2 +- .../Test/Repository/DownloadableProduct/Samples.xml | 2 +- .../Test/TestCase/CreateDownloadableProductEntityTest.php | 2 +- .../Test/TestCase/CreateDownloadableProductEntityTest.xml | 2 +- .../Downloadable/Test/TestCase/DeleteProductEntityTest.xml | 2 +- .../Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml | 2 +- .../Test/TestCase/DuplicateProductEntityTest.xml | 2 +- .../Downloadable/Test/TestCase/TaxCalculationTest.xml | 2 +- .../Test/TestCase/UpdateDownloadableProductEntityTest.php | 2 +- .../Test/TestCase/UpdateDownloadableProductEntityTest.xml | 2 +- .../Test/TestCase/ValidateOrderOfProductTypeTest.xml | 2 +- .../tests/app/Magento/Downloadable/Test/etc/curl/di.xml | 2 +- .../tests/app/Magento/Downloadable/Test/etc/di.xml | 2 +- .../tests/app/Magento/Downloadable/Test/etc/webapi/di.xml | 2 +- .../Test/Block/Adminhtml/Template/Edit/TemplateForm.php | 2 +- .../Test/Block/Adminhtml/Template/Edit/TemplateForm.xml | 4 ++-- .../Constraint/AssertEmailTemplateSuccessSaveMessage.php | 2 +- .../tests/app/Magento/Email/Test/Fixture/EmailTemplate.xml | 2 +- .../Email/Test/Page/Adminhtml/EmailTemplateIndex.xml | 2 +- .../Magento/Email/Test/Page/Adminhtml/EmailTemplateNew.xml | 4 ++-- .../Email/Test/TestCase/CreateEmailTemplateEntityTest.php | 2 +- .../Email/Test/TestCase/CreateEmailTemplateEntityTest.xml | 4 ++-- .../app/Magento/Email/Test/TestCase/NavigateMenuTest.xml | 2 +- .../tests/app/Magento/Fedex/Test/Repository/ConfigData.xml | 2 +- .../Fedex/Test/TestCase/CityBasedShippingRateTest.xml | 2 +- .../app/Magento/Fedex/Test/TestCase/OnePageCheckoutTest.xml | 2 +- .../GiftMessage/Test/Block/Adminhtml/Order/Create.php | 2 +- .../GiftMessage/Test/Block/Adminhtml/Order/Create/Form.php | 2 +- .../GiftMessage/Test/Block/Adminhtml/Order/Create/Form.xml | 2 +- .../Test/Block/Adminhtml/Order/Create/GiftOptions.php | 2 +- .../Test/Block/Adminhtml/Order/Create/GiftOptions.xml | 2 +- .../GiftMessage/Test/Block/Adminhtml/Order/Create/Items.php | 2 +- .../Test/Block/Adminhtml/Order/Create/Items/ItemProduct.php | 2 +- .../GiftMessage/Test/Block/Adminhtml/Order/View/Form.php | 2 +- .../GiftMessage/Test/Block/Adminhtml/Order/View/Form.xml | 2 +- .../Test/Block/Adminhtml/Order/View/GiftOptions.php | 2 +- .../Test/Block/Adminhtml/Order/View/GiftOptions.xml | 2 +- .../GiftMessage/Test/Block/Adminhtml/Order/View/Items.php | 2 +- .../Test/Block/Adminhtml/Order/View/Items/ItemProduct.php | 2 +- .../app/Magento/GiftMessage/Test/Block/Cart/GiftOptions.php | 2 +- .../Test/Block/Cart/GiftOptions/GiftMessageForm.php | 2 +- .../Test/Block/Cart/GiftOptions/GiftMessageForm.xml | 2 +- .../GiftMessage/Test/Block/Cart/Item/GiftOptions.php | 2 +- .../GiftMessage/Test/Block/Cart/Item/GiftOptions.xml | 2 +- .../GiftMessage/Test/Block/Message/Order/Items/View.php | 2 +- .../Magento/GiftMessage/Test/Block/Message/Order/View.php | 2 +- .../Test/Constraint/AssertGiftMessageInBackendOrder.php | 2 +- .../Test/Constraint/AssertGiftMessageInFrontendOrder.php | 2 +- .../Constraint/AssertGiftMessageInFrontendOrderItems.php | 2 +- .../app/Magento/GiftMessage/Test/Fixture/GiftMessage.xml | 2 +- .../Magento/GiftMessage/Test/Fixture/GiftMessage/Items.php | 2 +- .../GiftMessage/Test/Page/Adminhtml/OrderCreateIndex.xml | 2 +- .../Magento/GiftMessage/Test/Page/Adminhtml/OrderView.xml | 2 +- .../app/Magento/GiftMessage/Test/Page/CheckoutCart.xml | 2 +- .../app/Magento/GiftMessage/Test/Page/CustomerOrderView.xml | 2 +- .../app/Magento/GiftMessage/Test/Repository/ConfigData.xml | 2 +- .../app/Magento/GiftMessage/Test/Repository/GiftMessage.xml | 2 +- .../Test/TestCase/CheckoutWithGiftMessagesTest.php | 2 +- .../Test/TestCase/CheckoutWithGiftMessagesTest.xml | 2 +- .../Test/TestCase/CreateGiftMessageOnBackendTest.php | 2 +- .../Test/TestCase/CreateGiftMessageOnBackendTest.xml | 2 +- .../GiftMessage/Test/TestStep/AddGiftMessageBackendStep.php | 2 +- .../GiftMessage/Test/TestStep/AddGiftMessageStep.php | 2 +- .../tests/app/Magento/GiftMessage/Test/etc/di.xml | 2 +- .../tests/app/Magento/GiftMessage/Test/etc/testcase.xml | 2 +- .../Test/Block/Adminhtml/Product/Composite/Configure.php | 2 +- .../Test/Block/Adminhtml/Product/Composite/Configure.xml | 2 +- .../Block/Adminhtml/Product/Grouped/AssociatedProducts.php | 2 +- .../Grouped/AssociatedProducts/ListAssociatedProducts.php | 2 +- .../AssociatedProducts/ListAssociatedProducts/Product.php | 2 +- .../AssociatedProducts/ListAssociatedProducts/Product.xml | 2 +- .../Product/Grouped/AssociatedProducts/Search/Grid.php | 2 +- .../Test/Block/Adminhtml/Product/ProductForm.xml | 2 +- .../app/Magento/GroupedProduct/Test/Block/Cart/Sidebar.php | 2 +- .../Magento/GroupedProduct/Test/Block/Cart/Sidebar/Item.php | 2 +- .../GroupedProduct/Test/Block/Catalog/Product/View.php | 2 +- .../Test/Block/Catalog/Product/View/Type/Grouped.php | 2 +- .../app/Magento/GroupedProduct/Test/Block/Checkout/Cart.php | 2 +- .../GroupedProduct/Test/Block/Checkout/Cart/CartItem.php | 2 +- .../Constraint/AbstractAssertPriceOnGroupedProductPage.php | 2 +- ...ssertTaxRuleIsAppliedToAllPricesOnGroupedProductPage.php | 2 +- .../Test/Constraint/AssertGroupedProductForm.php | 2 +- .../AssertGroupedProductInCustomerWishlistOnBackendGrid.php | 2 +- .../Constraint/AssertGroupedProductInItemsOrderedGrid.php | 2 +- .../Test/Constraint/AssertGroupedProductsDefaultQty.php | 2 +- .../Test/Constraint/AssertProductInItemsOrderedGrid.php | 2 +- .../Constraint/AssertSpecialPriceOnGroupedProductPage.php | 2 +- ...RuleIsAppliedToAllPricesGroupedExcludingIncludingTax.php | 2 +- .../Test/Constraint/AssertTierPriceOnGroupedProductPage.php | 2 +- .../app/Magento/GroupedProduct/Test/Fixture/Cart/Item.php | 2 +- .../Magento/GroupedProduct/Test/Fixture/GroupedProduct.xml | 2 +- .../Test/Fixture/GroupedProduct/Associated.php | 2 +- .../GroupedProduct/Test/Handler/GroupedProduct/Curl.php | 2 +- .../Test/Handler/GroupedProduct/GroupedProductInterface.php | 2 +- .../GroupedProduct/Test/Handler/GroupedProduct/Webapi.php | 2 +- .../Test/Page/Adminhtml/CustomerIndexEdit.xml | 2 +- .../GroupedProduct/Test/Page/Adminhtml/OrderCreateIndex.xml | 2 +- .../app/Magento/GroupedProduct/Test/Page/CheckoutCart.xml | 2 +- .../tests/app/Magento/GroupedProduct/Test/Page/CmsIndex.xml | 2 +- .../GroupedProduct/Test/Page/Product/CatalogProductView.xml | 2 +- .../GroupedProduct/Test/Repository/GroupedProduct.xml | 2 +- .../Test/Repository/GroupedProduct/Associated.xml | 2 +- .../Test/Repository/GroupedProduct/CheckoutData.xml | 2 +- .../GroupedProduct/Test/Repository/GroupedProduct/Price.xml | 2 +- .../Test/TestCase/CreateGroupedProductEntityTest.php | 2 +- .../Test/TestCase/CreateGroupedProductEntityTest.xml | 2 +- .../Test/TestCase/DeleteProductEntityTest.xml | 2 +- .../Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml | 2 +- .../MoveRecentlyComparedProductsOnOrderPageTest.xml | 2 +- .../GroupedProduct/Test/TestCase/TaxCalculationTest.xml | 2 +- .../Test/TestCase/UpdateGroupedProductEntityTest.php | 2 +- .../Test/TestCase/UpdateGroupedProductEntityTest.xml | 2 +- .../Test/TestCase/ValidateOrderOfProductTypeTest.xml | 2 +- .../tests/app/Magento/GroupedProduct/Test/etc/curl/di.xml | 2 +- .../tests/app/Magento/GroupedProduct/Test/etc/di.xml | 2 +- .../tests/app/Magento/GroupedProduct/Test/etc/webapi/di.xml | 2 +- .../ImportExport/Test/Block/Adminhtml/Export/Edit/Form.php | 2 +- .../ImportExport/Test/Block/Adminhtml/Export/Edit/Form.xml | 2 +- .../ImportExport/Test/Block/Adminhtml/Export/Filter.php | 2 +- .../Constraint/AssertProductAttributeAbsenceForExport.php | 2 +- .../app/Magento/ImportExport/Test/Fixture/ImportExport.xml | 2 +- .../ImportExport/Test/Page/Adminhtml/AdminExportIndex.xml | 2 +- .../Magento/ImportExport/Test/Repository/ImportExport.xml | 2 +- .../Magento/ImportExport/Test/TestCase/NavigateMenuTest.xml | 2 +- .../tests/app/Magento/ImportExport/Test/etc/di.xml | 2 +- .../Indexer/Test/Block/Adminhtml/IndexManagement/Grid.php | 2 +- .../Magento/Indexer/Test/Constraint/AssertIndexerStatus.php | 2 +- .../Constraint/AssertUpdateByScheduleSuccessSaveMessage.php | 2 +- .../Magento/Indexer/Test/Page/Adminhtml/IndexManagement.xml | 2 +- .../app/Magento/Indexer/Test/TestCase/NavigateMenuTest.xml | 2 +- .../tests/app/Magento/Install/Test/Block/CreateAdmin.php | 2 +- .../tests/app/Magento/Install/Test/Block/CreateAdmin.xml | 2 +- .../tests/app/Magento/Install/Test/Block/CustomizeStore.php | 2 +- .../tests/app/Magento/Install/Test/Block/CustomizeStore.xml | 2 +- .../tests/app/Magento/Install/Test/Block/Database.php | 2 +- .../tests/app/Magento/Install/Test/Block/Database.xml | 2 +- .../tests/app/Magento/Install/Test/Block/Devdocs.php | 2 +- .../tests/app/Magento/Install/Test/Block/Install.php | 2 +- .../tests/app/Magento/Install/Test/Block/Landing.php | 2 +- .../tests/app/Magento/Install/Test/Block/License.php | 2 +- .../tests/app/Magento/Install/Test/Block/Readiness.php | 2 +- .../app/Magento/Install/Test/Block/WebConfiguration.php | 2 +- .../app/Magento/Install/Test/Block/WebConfiguration.xml | 2 +- .../Install/Test/Constraint/AssertAdminUriAutogenerated.php | 2 +- .../Install/Test/Constraint/AssertAgreementTextPresent.php | 2 +- .../Install/Test/Constraint/AssertCurrencySelected.php | 2 +- .../Magento/Install/Test/Constraint/AssertDevdocsLink.php | 2 +- .../Magento/Install/Test/Constraint/AssertKeyCreated.php | 2 +- .../Install/Test/Constraint/AssertLanguageSelected.php | 2 +- .../Install/Test/Constraint/AssertRewritesEnabled.php | 2 +- .../Install/Test/Constraint/AssertSecureUrlEnabled.php | 2 +- .../Install/Test/Constraint/AssertSuccessInstall.php | 2 +- .../Test/Constraint/AssertSuccessfulReadinessCheck.php | 2 +- .../tests/app/Magento/Install/Test/Fixture/Install.xml | 2 +- .../tests/app/Magento/Install/Test/Page/DevdocsInstall.xml | 2 +- .../tests/app/Magento/Install/Test/Page/Install.xml | 2 +- .../tests/app/Magento/Install/Test/TestCase/InstallTest.php | 2 +- .../tests/app/Magento/Install/Test/TestCase/InstallTest.xml | 2 +- .../Block/Adminhtml/Integration/Edit/IntegrationForm.php | 2 +- .../Block/Adminhtml/Integration/Edit/IntegrationForm.xml | 2 +- .../Integration/Edit/IntegrationFormPageActions.php | 2 +- .../Test/Block/Adminhtml/Integration/Edit/Tab/Api.php | 2 +- .../Test/Block/Adminhtml/Integration/IntegrationGrid.php | 2 +- .../Adminhtml/Integration/IntegrationGrid/DeleteDialog.php | 2 +- .../Integration/IntegrationGrid/ResourcesPopup.php | 2 +- .../Integration/IntegrationGrid/ResourcesPopup.xml | 2 +- .../Adminhtml/Integration/IntegrationGrid/TokensPopup.php | 2 +- .../Adminhtml/Integration/IntegrationGrid/TokensPopup.xml | 2 +- .../Test/Constraint/AssertEmailValidationErrorGenerated.php | 2 +- .../Test/Constraint/AssertIncorrectUserPassword.php | 2 +- .../Integration/Test/Constraint/AssertIntegrationForm.php | 2 +- .../Integration/Test/Constraint/AssertIntegrationInGrid.php | 2 +- .../AssertIntegrationNameDuplicationErrorMessage.php | 2 +- .../Test/Constraint/AssertIntegrationNotInGrid.php | 2 +- .../Test/Constraint/AssertIntegrationResourcesPopup.php | 2 +- .../AssertIntegrationSuccessActivationMessage.php | 2 +- .../Constraint/AssertIntegrationSuccessDeleteMessage.php | 2 +- .../AssertIntegrationSuccessReauthorizeMessage.php | 2 +- .../Test/Constraint/AssertIntegrationSuccessSaveMessage.php | 2 +- .../AssertIntegrationSuccessSaveMessageNotPresent.php | 2 +- .../Constraint/AssertIntegrationTokensAfterReauthorize.php | 2 +- .../Test/Constraint/AssertIntegrationTokensPopup.php | 2 +- .../Integration/Test/Constraint/AssertNoAlertPopup.php | 2 +- .../app/Magento/Integration/Test/Fixture/Integration.xml | 2 +- .../Magento/Integration/Test/Handler/Integration/Curl.php | 2 +- .../Test/Handler/Integration/IntegrationInterface.php | 2 +- .../Integration/Test/Page/Adminhtml/IntegrationIndex.xml | 2 +- .../Integration/Test/Page/Adminhtml/IntegrationNew.xml | 2 +- .../app/Magento/Integration/Test/Repository/Integration.xml | 2 +- .../Test/TestCase/ActivateIntegrationEntityTest.php | 2 +- .../Test/TestCase/ActivateIntegrationEntityTest.xml | 2 +- .../Test/TestCase/CreateIntegrationEntityTest.php | 2 +- .../Test/TestCase/CreateIntegrationEntityTest.xml | 2 +- .../TestCase/CreateIntegrationWithDuplicatedNameTest.php | 2 +- .../TestCase/CreateIntegrationWithDuplicatedNameTest.xml | 2 +- .../Test/TestCase/DeleteIntegrationEntityTest.php | 2 +- .../Test/TestCase/DeleteIntegrationEntityTest.xml | 2 +- .../Magento/Integration/Test/TestCase/NavigateMenuTest.xml | 2 +- .../TestCase/ReAuthorizeTokensIntegrationEntityTest.php | 2 +- .../TestCase/ReAuthorizeTokensIntegrationEntityTest.xml | 2 +- .../Test/TestCase/UpdateIntegrationEntityTest.php | 2 +- .../Test/TestCase/UpdateIntegrationEntityTest.xml | 2 +- .../tests/app/Magento/Integration/Test/etc/curl/di.xml | 2 +- .../tests/app/Magento/Integration/Test/etc/di.xml | 2 +- .../app/Magento/LayeredNavigation/Test/Block/Navigation.php | 2 +- .../Test/Constraint/AssertFilterProductList.php | 2 +- .../Test/Page/Category/CatalogCategoryView.xml | 2 +- .../LayeredNavigation/Test/Repository/ConfigData.xml | 2 +- .../Test/TestCase/FilterProductListTest.php | 2 +- .../Test/TestCase/FilterProductListTest.xml | 2 +- .../app/Magento/Msrp/Test/Block/Product/ListProduct.php | 2 +- .../tests/app/Magento/Msrp/Test/Block/Product/Map.php | 2 +- .../Msrp/Test/Block/Product/ProductList/ProductItem.php | 2 +- .../tests/app/Magento/Msrp/Test/Block/Product/View.php | 2 +- .../Msrp/Test/Constraint/AssertMsrpInShoppingCart.php | 2 +- .../Msrp/Test/Constraint/AssertMsrpOnCategoryPage.php | 2 +- .../Msrp/Test/Constraint/AssertMsrpOnProductView.php | 2 +- .../Magento/Msrp/Test/Page/Category/CatalogCategoryView.xml | 2 +- .../Magento/Msrp/Test/Page/Product/CatalogProductView.xml | 2 +- .../Magento/Msrp/Test/Repository/CatalogProductSimple.xml | 2 +- .../tests/app/Magento/Msrp/Test/Repository/ConfigData.xml | 2 +- .../Magento/Msrp/Test/Repository/ConfigurableProduct.xml | 2 +- .../tests/app/Magento/Msrp/Test/TestCase/ApplyMapTest.php | 2 +- .../tests/app/Magento/Msrp/Test/TestCase/ApplyMapTest.xml | 2 +- .../Magento/Multishipping/Test/Block/Checkout/Addresses.php | 2 +- .../Magento/Multishipping/Test/Block/Checkout/Billing.php | 2 +- .../app/Magento/Multishipping/Test/Block/Checkout/Link.php | 2 +- .../Magento/Multishipping/Test/Block/Checkout/Overview.php | 2 +- .../Magento/Multishipping/Test/Block/Checkout/Shipping.php | 2 +- .../Magento/Multishipping/Test/Block/Checkout/Success.php | 2 +- .../AssertMultishippingOrderSuccessPlacedMessage.php | 2 +- .../app/Magento/Multishipping/Test/Page/CheckoutCart.xml | 4 ++-- .../Test/Page/MultishippingCheckoutAddressNewShipping.php | 2 +- .../Test/Page/MultishippingCheckoutAddresses.xml | 4 ++-- .../Test/Page/MultishippingCheckoutBilling.xml | 4 ++-- .../Multishipping/Test/Page/MultishippingCheckoutCart.php | 2 +- .../Multishipping/Test/Page/MultishippingCheckoutLogin.php | 2 +- .../Test/Page/MultishippingCheckoutOverview.xml | 4 ++-- .../Test/Page/MultishippingCheckoutRegister.php | 2 +- .../Test/Page/MultishippingCheckoutShipping.xml | 4 ++-- .../Test/Page/MultishippingCheckoutSuccess.xml | 4 ++-- .../Test/TestStep/FillCustomerAddressesStep.php | 2 +- .../Test/TestStep/FillShippingInformationStep.php | 2 +- .../Magento/Multishipping/Test/TestStep/PlaceOrderStep.php | 2 +- .../Test/TestStep/ProceedToMultipleAddressCheckoutStep.php | 2 +- .../Multishipping/Test/TestStep/SelectPaymentMethodStep.php | 2 +- .../tests/app/Magento/Multishipping/Test/etc/di.xml | 2 +- .../Test/Block/Adminhtml/Queue/Edit/QueueForm.php | 2 +- .../Newsletter/Test/Block/Adminhtml/Subscriber/Grid.php | 2 +- .../Test/Block/Adminhtml/Template/FormPageActions.php | 2 +- .../Newsletter/Test/Block/Adminhtml/Template/Grid.php | 2 +- .../Test/Block/Adminhtml/Template/GridPageActions.php | 2 +- .../Newsletter/Test/Block/Adminhtml/Template/Preview.php | 2 +- .../Constraint/AssertCustomerIsSubscribedToNewsletter.php | 2 +- .../Newsletter/Test/Constraint/AssertNewsletterForm.php | 2 +- .../Newsletter/Test/Constraint/AssertNewsletterInGrid.php | 2 +- .../Newsletter/Test/Constraint/AssertNewsletterPreview.php | 2 +- .../Newsletter/Test/Constraint/AssertNewsletterQueue.php | 2 +- .../Constraint/AssertNewsletterSuccessCreateMessage.php | 2 +- .../tests/app/Magento/Newsletter/Test/Fixture/Template.xml | 2 +- .../app/Magento/Newsletter/Test/Handler/Template/Curl.php | 2 +- .../Newsletter/Test/Handler/Template/TemplateInterface.php | 2 +- .../Newsletter/Test/Page/Adminhtml/SubscriberIndex.xml | 2 +- .../Magento/Newsletter/Test/Page/Adminhtml/TemplateEdit.xml | 2 +- .../Newsletter/Test/Page/Adminhtml/TemplateIndex.xml | 2 +- .../Newsletter/Test/Page/Adminhtml/TemplateNewIndex.xml | 2 +- .../Newsletter/Test/Page/Adminhtml/TemplatePreview.xml | 2 +- .../Newsletter/Test/Page/Adminhtml/TemplateQueue.xml | 2 +- .../app/Magento/Newsletter/Test/Repository/Template.xml | 2 +- .../Test/TestCase/ActionNewsletterTemplateEntityTest.php | 2 +- .../Test/TestCase/ActionNewsletterTemplateEntityTest.xml | 2 +- .../Test/TestCase/CreateNewsletterTemplateEntityTest.php | 2 +- .../Test/TestCase/CreateNewsletterTemplateEntityTest.xml | 2 +- .../Magento/Newsletter/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Test/TestCase/PreviewNewsletterTemplateEntityTest.php | 2 +- .../Test/TestCase/PreviewNewsletterTemplateEntityTest.xml | 2 +- .../Test/TestCase/UpdateNewsletterTemplateTest.php | 2 +- .../Test/TestCase/UpdateNewsletterTemplateTest.xml | 2 +- .../tests/app/Magento/Newsletter/Test/etc/curl/di.xml | 2 +- .../Magento/OfflinePayments/Test/Repository/ConfigData.xml | 2 +- .../Magento/OfflineShipping/Test/Repository/ConfigData.xml | 2 +- .../tests/app/Magento/PageCache/Test/Block/Cache.php | 2 +- .../app/Magento/PageCache/Test/Block/Cache/Additional.php | 2 +- .../tests/app/Magento/PageCache/Test/Block/Cache/Grid.php | 2 +- .../Test/Constraint/AssertCacheFlushSuccessMessage.php | 2 +- .../Test/Constraint/AssertCacheInvalidateNotice.php | 2 +- .../Test/Constraint/AssertCacheInvalidatePopUp.php | 2 +- .../Constraint/AssertCacheIsRefreshableAndInvalidated.php | 2 +- .../Magento/PageCache/Test/Constraint/AssertCacheStatus.php | 2 +- .../PageCache/Test/Constraint/AssertCategoryCaching.php | 2 +- .../AssertFlushStaticFilesCacheButtonVisibility.php | 2 +- .../Magento/PageCache/Test/Page/Adminhtml/AdminCache.xml | 2 +- .../Test/TestCase/CacheStatusOnScheduledIndexingTest.php | 2 +- .../Test/TestCase/CacheStatusOnScheduledIndexingTest.xml | 2 +- .../PageCache/Test/TestCase/FlushAdditionalCachesTest.php | 2 +- .../PageCache/Test/TestCase/FlushAdditionalCachesTest.xml | 2 +- .../TestCase/FlushStaticFilesCacheButtonVisibilityTest.php | 2 +- .../TestCase/FlushStaticFilesCacheButtonVisibilityTest.xml | 2 +- .../functional/tests/app/Magento/PageCache/Test/etc/di.xml | 2 +- .../tests/app/Magento/Payment/Test/Block/Form/PaymentCc.php | 2 +- .../tests/app/Magento/Payment/Test/Block/Form/PaymentCc.xml | 2 +- .../Payment/Test/Constraint/AssertCardRequiredFields.php | 2 +- .../Payment/Test/Constraint/AssertFieldsAreActive.php | 2 +- .../Payment/Test/Constraint/AssertFieldsAreDisabled.php | 2 +- .../Payment/Test/Constraint/AssertFieldsAreEnabled.php | 2 +- .../Payment/Test/Constraint/AssertFieldsArePresent.php | 2 +- .../tests/app/Magento/Payment/Test/Fixture/CreditCard.xml | 2 +- .../app/Magento/Payment/Test/Repository/CreditCard.xml | 2 +- .../Payment/Test/TestCase/ConflictResolutionTest.php | 2 +- .../Payment/Test/TestCase/ConflictResolutionTest.xml | 2 +- .../functional/tests/app/Magento/Payment/Test/etc/di.xml | 2 +- .../tests/app/Magento/Payment/Test/etc/fixture.xml | 2 +- .../tests/app/Magento/Paypal/Test/Block/Express/Review.php | 2 +- .../Test/Block/Express/Review/ShippingoptgroupElement.php | 2 +- .../app/Magento/Paypal/Test/Block/Form/HostedPro/Cc.php | 2 +- .../app/Magento/Paypal/Test/Block/Form/HostedPro/Cc.xml | 2 +- .../app/Magento/Paypal/Test/Block/Form/PayflowLink/Cc.php | 2 +- .../app/Magento/Paypal/Test/Block/Form/PayflowLink/Cc.xml | 2 +- .../Magento/Paypal/Test/Block/Form/PaymentsAdvanced/Cc.php | 2 +- .../Magento/Paypal/Test/Block/Form/PaymentsAdvanced/Cc.xml | 2 +- .../Magento/Paypal/Test/Block/Onepage/Payment/HostedPro.php | 2 +- .../Paypal/Test/Block/Onepage/Payment/PayflowLink.php | 2 +- .../Paypal/Test/Block/Onepage/Payment/PaymentsAdvanced.php | 2 +- .../Paypal/Test/Block/Onepage/Payment/PaypalIframe.php | 2 +- .../app/Magento/Paypal/Test/Block/Sandbox/ExpressLogin.php | 2 +- .../app/Magento/Paypal/Test/Block/Sandbox/ExpressLogin.xml | 2 +- .../Magento/Paypal/Test/Block/Sandbox/ExpressMainLogin.php | 2 +- .../Magento/Paypal/Test/Block/Sandbox/ExpressMainReview.php | 2 +- .../Magento/Paypal/Test/Block/Sandbox/ExpressOldLogin.php | 2 +- .../Magento/Paypal/Test/Block/Sandbox/ExpressOldLogin.xml | 2 +- .../Magento/Paypal/Test/Block/Sandbox/ExpressOldReview.php | 2 +- .../app/Magento/Paypal/Test/Block/Sandbox/ExpressReview.php | 2 +- .../app/Magento/Paypal/Test/Block/Sandbox/SignupAddCard.php | 2 +- .../app/Magento/Paypal/Test/Block/Sandbox/SignupAddCard.xml | 2 +- .../app/Magento/Paypal/Test/Block/Sandbox/SignupCreate.php | 2 +- .../app/Magento/Paypal/Test/Block/Sandbox/SignupCreate.xml | 2 +- .../Paypal/Test/Block/Sandbox/SignupPersonalAccount.php | 2 +- .../Paypal/Test/Block/Sandbox/SignupPersonalAccount.xml | 2 +- .../Paypal/Test/Block/System/Config/ExpressCheckout.php | 2 +- .../Magento/Paypal/Test/Block/System/Config/PayflowLink.php | 2 +- .../Magento/Paypal/Test/Block/System/Config/PayflowPro.php | 2 +- .../Paypal/Test/Block/System/Config/PaymentsAdvanced.php | 2 +- .../Magento/Paypal/Test/Block/System/Config/PaymentsPro.php | 2 +- .../Test/Constraint/AssertExpressCancelledMessage.php | 2 +- .../Test/Constraint/Sandbox/AssertTotalPaypalReview.php | 2 +- .../app/Magento/Paypal/Test/Fixture/SandboxCustomer.xml | 2 +- .../Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml | 2 +- .../tests/app/Magento/Paypal/Test/Page/CheckoutOnepage.xml | 2 +- .../app/Magento/Paypal/Test/Page/OrderReviewExpress.xml | 2 +- .../app/Magento/Paypal/Test/Page/Sandbox/AccountSignup.xml | 2 +- .../app/Magento/Paypal/Test/Page/Sandbox/ExpressReview.xml | 2 +- .../app/Magento/Paypal/Test/Page/Sandbox/SignupAddCard.xml | 2 +- .../app/Magento/Paypal/Test/Page/Sandbox/SignupCreate.xml | 2 +- .../tests/app/Magento/Paypal/Test/Repository/ConfigData.xml | 2 +- .../tests/app/Magento/Paypal/Test/Repository/CreditCard.xml | 2 +- .../app/Magento/Paypal/Test/Repository/SandboxCustomer.xml | 2 +- .../app/Magento/Paypal/Test/TestCase/CloseOrderTest.xml | 4 ++-- .../Paypal/Test/TestCase/CloseSalesWithHostedProTest.php | 2 +- .../Paypal/Test/TestCase/CloseSalesWithHostedProTest.xml | 2 +- .../Paypal/Test/TestCase/CreateOnlineCreditMemoTest.xml | 2 +- .../Test/TestCase/CreatePayFlowOrderBackendNegativeTest.php | 2 +- .../Test/TestCase/CreatePayFlowOrderBackendNegativeTest.xml | 2 +- .../Paypal/Test/TestCase/CreateVaultOrderBackendTest.xml | 2 +- .../Test/TestCase/ExpressCheckoutFromProductPageTest.php | 2 +- .../Test/TestCase/ExpressCheckoutFromProductPageTest.xml | 2 +- .../Test/TestCase/ExpressCheckoutFromShoppingCartTest.php | 2 +- .../Test/TestCase/ExpressCheckoutFromShoppingCartTest.xml | 2 +- .../Paypal/Test/TestCase/ExpressCheckoutOnePageTest.php | 2 +- .../Paypal/Test/TestCase/ExpressCheckoutOnePageTest.xml | 2 +- .../InContextExpressCheckoutFromShoppingCartTest.php | 2 +- .../InContextExpressCheckoutFromShoppingCartTest.xml | 2 +- .../Test/TestCase/InContextExpressOnePageCheckoutTest.php | 2 +- .../Test/TestCase/InContextExpressOnePageCheckoutTest.xml | 2 +- .../app/Magento/Paypal/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Paypal/Test/TestCase/OnePageCheckoutDeclinedTest.xml | 2 +- .../Paypal/Test/TestCase/OnePageCheckoutHostedProTest.php | 2 +- .../Paypal/Test/TestCase/OnePageCheckoutHostedProTest.xml | 2 +- .../Paypal/Test/TestCase/OnePageCheckoutPayflowLinkTest.php | 2 +- .../Paypal/Test/TestCase/OnePageCheckoutPayflowLinkTest.xml | 2 +- .../Test/TestCase/OnePageCheckoutPaymentsAdvancedTest.php | 2 +- .../Test/TestCase/OnePageCheckoutPaymentsAdvancedTest.xml | 4 ++-- .../Magento/Paypal/Test/TestCase/OnePageCheckoutTest.xml | 2 +- .../Magento/Paypal/Test/TestCase/ReorderUsingVaultTest.xml | 2 +- .../Magento/Paypal/Test/TestCase/UseVaultOnCheckoutTest.xml | 2 +- .../Magento/Paypal/Test/TestStep/CheckExpressConfigStep.php | 2 +- .../Paypal/Test/TestStep/CheckPayflowLinkConfigStep.php | 2 +- .../Paypal/Test/TestStep/CheckPayflowProConfigStep.php | 2 +- .../Test/TestStep/CheckPaymentsAdvancedConfigStep.php | 2 +- .../Paypal/Test/TestStep/CheckPaymentsProConfigStep.php | 2 +- .../Test/TestStep/CheckoutWithPaypalFromProductPageStep.php | 2 +- .../TestStep/CheckoutWithPaypalFromShoppingCartStep.php | 2 +- .../Paypal/Test/TestStep/ContinuePaypalCheckoutStep.php | 2 +- .../Paypal/Test/TestStep/ContinueToPaypalInContextStep.php | 2 +- .../Magento/Paypal/Test/TestStep/ContinueToPaypalStep.php | 2 +- .../Paypal/Test/TestStep/CreateSandboxCustomerStep.php | 2 +- .../Paypal/Test/TestStep/ExpressCheckoutOrderPlaceStep.php | 2 +- .../InContextCheckoutWithPaypalFromShoppingCartStep.php | 2 +- .../Paypal/Test/TestStep/PlaceOrderWithHostedProStep.php | 2 +- .../Paypal/Test/TestStep/PlaceOrderWithPayflowLinkStep.php | 2 +- .../Test/TestStep/PlaceOrderWithPaymentsAdvancedStep.php | 2 +- .../functional/tests/app/Magento/Paypal/Test/etc/di.xml | 2 +- .../tests/app/Magento/Paypal/Test/etc/testcase.xml | 2 +- .../Constraint/AssertCustomerIsRedirectedToCheckout.php | 2 +- .../app/Magento/Persistent/Test/Repository/ConfigData.xml | 2 +- .../TestCase/CheckoutWithPersistentShoppingCartTest.php | 2 +- .../TestCase/CheckoutWithPersistentShoppingCartTest.xml | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Images/VideoDialog.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Images/VideoDialog.xml | 2 +- .../Block/Adminhtml/Product/Edit/Tab/ImagesAndVideos.php | 2 +- .../Test/Block/Adminhtml/Product/ProductForm.xml | 2 +- .../Test/Constraint/AssertGetVideoInfoDataIsCorrect.php | 2 +- .../Test/Constraint/AssertNoVideoCategoryView.php | 2 +- .../Test/Constraint/AssertNoVideoProductView.php | 2 +- .../Test/Constraint/AssertVideoCategoryView.php | 2 +- .../ProductVideo/Test/Constraint/AssertVideoProductView.php | 2 +- .../ProductVideo/Test/Fixture/CatalogProductSimple.xml | 2 +- .../ProductVideo/Test/Fixture/Product/MediaGallery.php | 2 +- .../ProductVideo/Test/Repository/CatalogProductSimple.xml | 2 +- .../app/Magento/ProductVideo/Test/Repository/ConfigData.xml | 2 +- .../ProductVideo/Test/TestCase/AddProductVideoTest.php | 2 +- .../ProductVideo/Test/TestCase/AddProductVideoTest.xml | 2 +- .../ProductVideo/Test/TestCase/DeleteProductVideoTest.php | 2 +- .../ProductVideo/Test/TestCase/DeleteProductVideoTest.xml | 2 +- .../ProductVideo/Test/TestCase/UpdateProductVideoTest.php | 2 +- .../ProductVideo/Test/TestCase/UpdateProductVideoTest.xml | 2 +- .../Magento/Reports/Test/Block/Adminhtml/AbstractFilter.php | 2 +- .../Reports/Test/Block/Adminhtml/Customer/AccountsGrid.php | 2 +- .../Reports/Test/Block/Adminhtml/Customer/Counts/Filter.php | 2 +- .../Reports/Test/Block/Adminhtml/Customer/Counts/Filter.xml | 2 +- .../Reports/Test/Block/Adminhtml/Customer/Counts/Grid.php | 2 +- .../Reports/Test/Block/Adminhtml/Customer/Totals/Filter.php | 2 +- .../Reports/Test/Block/Adminhtml/Customer/Totals/Filter.xml | 2 +- .../Reports/Test/Block/Adminhtml/Customer/Totals/Grid.php | 2 +- .../Reports/Test/Block/Adminhtml/Product/Downloads/Grid.php | 2 +- .../Reports/Test/Block/Adminhtml/Product/Lowstock/Grid.php | 2 +- .../Reports/Test/Block/Adminhtml/Product/Sold/Grid.php | 2 +- .../Reports/Test/Block/Adminhtml/Product/Viewed/Filter.php | 2 +- .../Reports/Test/Block/Adminhtml/Product/Viewed/Filter.xml | 2 +- .../Test/Block/Adminhtml/Product/Viewed/ProductGrid.php | 2 +- .../Test/Block/Adminhtml/Refresh/Statistics/Grid.php | 2 +- .../Reports/Test/Block/Adminhtml/Review/Customer/Grid.php | 2 +- .../Reports/Test/Block/Adminhtml/Review/Products/Grid.php | 2 +- .../Test/Block/Adminhtml/Review/Products/Viewed/Filter.php | 2 +- .../Test/Block/Adminhtml/Review/Products/Viewed/Filter.xml | 2 +- .../Block/Adminhtml/Review/Products/Viewed/ProductGrid.php | 2 +- .../Reports/Test/Block/Adminhtml/Sales/Coupons/Action.php | 2 +- .../Reports/Test/Block/Adminhtml/Sales/Coupons/Filter.php | 2 +- .../Reports/Test/Block/Adminhtml/Sales/Coupons/Filter.xml | 2 +- .../Reports/Test/Block/Adminhtml/Sales/Coupons/Grid.php | 2 +- .../Reports/Test/Block/Adminhtml/Sales/Invoiced/Grid.php | 2 +- .../Test/Block/Adminhtml/Sales/Orders/Viewed/FilterGrid.php | 2 +- .../Test/Block/Adminhtml/Sales/Refunded/FilterGrid.php | 2 +- .../Reports/Test/Block/Adminhtml/Sales/TaxRule/Action.php | 2 +- .../Reports/Test/Block/Adminhtml/Sales/TaxRule/Filter.php | 2 +- .../Reports/Test/Block/Adminhtml/Sales/TaxRule/Filter.xml | 2 +- .../Reports/Test/Block/Adminhtml/Sales/TaxRule/Grid.php | 2 +- .../Reports/Test/Block/Adminhtml/SearchTermsGrid.php | 2 +- .../Test/Block/Adminhtml/Shopcart/Abandoned/Grid.php | 2 +- .../Reports/Test/Block/Adminhtml/Shopcart/Product/Grid.php | 2 +- .../Magento/Reports/Test/Block/Adminhtml/Viewed/Action.php | 2 +- .../Constraint/AbstractAssertCustomerOrderReportResult.php | 2 +- .../Test/Constraint/AbstractAssertInvoiceReportResult.php | 2 +- .../Test/Constraint/AbstractAssertSalesReportResult.php | 2 +- .../Constraint/AssertAbandonedCartCustomerInfoResult.php | 2 +- .../Test/Constraint/AssertBestsellerReportResult.php | 2 +- .../Reports/Test/Constraint/AssertCouponReportResult.php | 2 +- .../Constraint/AssertCustomerOrderCountReportResult.php | 2 +- .../Constraint/AssertCustomerOrderTotalReportResult.php | 2 +- .../Reports/Test/Constraint/AssertDownloadsReportResult.php | 2 +- .../Test/Constraint/AssertInvoiceReportIntervalResult.php | 2 +- .../Test/Constraint/AssertInvoiceReportTotalResult.php | 2 +- .../Reports/Test/Constraint/AssertLowStockProductInGrid.php | 2 +- .../Test/Constraint/AssertNewAccountsReportTotalResult.php | 2 +- .../Reports/Test/Constraint/AssertOrderedProductResult.php | 2 +- .../Reports/Test/Constraint/AssertProductInCartResult.php | 2 +- .../Test/Constraint/AssertProductReportByCustomerInGrid.php | 2 +- .../Constraint/AssertProductReportByCustomerNotInGrid.php | 2 +- .../Constraint/AssertProductReviewIsAvailableForProduct.php | 2 +- .../Constraint/AssertProductReviewReportIsVisibleInGrid.php | 2 +- .../Test/Constraint/AssertProductReviewsQtyByCustomer.php | 2 +- .../Test/Constraint/AssertProductViewsReportTotalResult.php | 2 +- .../Test/Constraint/AssertRefundReportIntervalResult.php | 2 +- .../Test/Constraint/AssertSalesReportIntervalResult.php | 2 +- .../Test/Constraint/AssertSalesReportTotalResult.php | 2 +- .../Reports/Test/Constraint/AssertSearchTermReportForm.php | 2 +- .../Reports/Test/Constraint/AssertSearchTermsInGrid.php | 2 +- .../Reports/Test/Constraint/AssertTaxReportInGrid.php | 2 +- .../Reports/Test/Constraint/AssertTaxReportNotInGrid.php | 2 +- .../Magento/Reports/Test/Page/Adminhtml/AbandonedCarts.xml | 2 +- .../app/Magento/Reports/Test/Page/Adminhtml/Bestsellers.xml | 2 +- .../Reports/Test/Page/Adminhtml/CustomerAccounts.xml | 2 +- .../Reports/Test/Page/Adminhtml/CustomerOrdersReport.xml | 2 +- .../Reports/Test/Page/Adminhtml/CustomerReportReview.xml | 2 +- .../Reports/Test/Page/Adminhtml/CustomerTotalsReport.xml | 2 +- .../Magento/Reports/Test/Page/Adminhtml/DownloadsReport.xml | 2 +- .../Reports/Test/Page/Adminhtml/OrderedProductsReport.xml | 2 +- .../Magento/Reports/Test/Page/Adminhtml/ProductLowStock.xml | 2 +- .../Reports/Test/Page/Adminhtml/ProductReportReview.xml | 2 +- .../Reports/Test/Page/Adminhtml/ProductReportView.xml | 2 +- .../Magento/Reports/Test/Page/Adminhtml/RefundsReport.xml | 2 +- .../Reports/Test/Page/Adminhtml/SalesCouponReportView.xml | 2 +- .../Reports/Test/Page/Adminhtml/SalesInvoiceReport.xml | 2 +- .../app/Magento/Reports/Test/Page/Adminhtml/SalesReport.xml | 2 +- .../Magento/Reports/Test/Page/Adminhtml/SalesTaxReport.xml | 2 +- .../app/Magento/Reports/Test/Page/Adminhtml/SearchIndex.xml | 2 +- .../Reports/Test/Page/Adminhtml/ShopCartProductReport.xml | 2 +- .../app/Magento/Reports/Test/Page/Adminhtml/Statistics.xml | 2 +- .../app/Magento/Reports/Test/Repository/ConfigData.xml | 2 +- .../Test/TestCase/AbandonedCartsReportEntityTest.php | 2 +- .../Test/TestCase/AbandonedCartsReportEntityTest.xml | 2 +- .../Test/TestCase/BestsellerProductsReportEntityTest.php | 2 +- .../Test/TestCase/BestsellerProductsReportEntityTest.xml | 2 +- .../Test/TestCase/CustomersOrderCountReportEntityTest.php | 2 +- .../Test/TestCase/CustomersOrderCountReportEntityTest.xml | 2 +- .../Test/TestCase/CustomersOrderTotalReportEntityTest.php | 2 +- .../Test/TestCase/CustomersOrderTotalReportEntityTest.xml | 2 +- .../Test/TestCase/DownloadProductsReportEntityTest.php | 2 +- .../Test/TestCase/DownloadProductsReportEntityTest.xml | 2 +- .../Test/TestCase/LowStockProductsReportEntityTest.php | 2 +- .../Test/TestCase/LowStockProductsReportEntityTest.xml | 2 +- .../app/Magento/Reports/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Reports/Test/TestCase/NewAccountsReportEntityTest.php | 2 +- .../Reports/Test/TestCase/NewAccountsReportEntityTest.xml | 2 +- .../Test/TestCase/OrderedProductsReportEntityTest.php | 2 +- .../Test/TestCase/OrderedProductsReportEntityTest.xml | 2 +- .../Test/TestCase/ProductsInCartReportEntityTest.php | 2 +- .../Test/TestCase/ProductsInCartReportEntityTest.xml | 2 +- .../Reports/Test/TestCase/ReviewReportEntityTest.php | 2 +- .../Reports/Test/TestCase/ReviewReportEntityTest.xml | 2 +- .../Reports/Test/TestCase/SalesCouponReportEntityTest.php | 2 +- .../Reports/Test/TestCase/SalesCouponReportEntityTest.xml | 2 +- .../Reports/Test/TestCase/SalesInvoiceReportEntityTest.php | 2 +- .../Reports/Test/TestCase/SalesInvoiceReportEntityTest.xml | 2 +- .../Reports/Test/TestCase/SalesOrderReportEntityTest.php | 2 +- .../Reports/Test/TestCase/SalesOrderReportEntityTest.xml | 2 +- .../Reports/Test/TestCase/SalesRefundsReportEntityTest.php | 2 +- .../Reports/Test/TestCase/SalesRefundsReportEntityTest.xml | 2 +- .../Reports/Test/TestCase/SalesTaxReportEntityTest.php | 2 +- .../Reports/Test/TestCase/SalesTaxReportEntityTest.xml | 2 +- .../Reports/Test/TestCase/SearchTermsReportEntityTest.php | 2 +- .../Reports/Test/TestCase/SearchTermsReportEntityTest.xml | 2 +- .../Test/TestCase/ViewedProductsReportEntityTest.php | 2 +- .../Test/TestCase/ViewedProductsReportEntityTest.xml | 2 +- .../Test/Block/Adminhtml/Customer/Edit/Tab/Reviews.php | 2 +- .../Review/Test/Block/Adminhtml/Edit/CustomerForm.xml | 2 +- .../Review/Test/Block/Adminhtml/Edit/Product/Grid.php | 2 +- .../Review/Test/Block/Adminhtml/Edit/RatingElement.php | 2 +- .../Magento/Review/Test/Block/Adminhtml/FormPageActions.php | 2 +- .../tests/app/Magento/Review/Test/Block/Adminhtml/Grid.php | 2 +- .../Test/Block/Adminhtml/Product/Edit/Section/Reviews.php | 2 +- .../Magento/Review/Test/Block/Adminhtml/Product/Grid.php | 2 +- .../Review/Test/Block/Adminhtml/Product/ProductForm.xml | 2 +- .../Review/Test/Block/Adminhtml/Rating/Edit/RatingForm.php | 2 +- .../Review/Test/Block/Adminhtml/Rating/Edit/RatingForm.xml | 2 +- .../app/Magento/Review/Test/Block/Adminhtml/Rating/Grid.php | 2 +- .../app/Magento/Review/Test/Block/Adminhtml/ReviewForm.php | 2 +- .../app/Magento/Review/Test/Block/Adminhtml/ReviewForm.xml | 2 +- .../tests/app/Magento/Review/Test/Block/Product/View.php | 2 +- .../app/Magento/Review/Test/Block/Product/View/Summary.php | 2 +- .../tests/app/Magento/Review/Test/Block/ReviewForm.php | 2 +- .../tests/app/Magento/Review/Test/Block/ReviewForm.xml | 2 +- .../Review/Test/Constraint/AssertProductRatingInGrid.php | 2 +- .../Test/Constraint/AssertProductRatingInProductPage.php | 2 +- .../Review/Test/Constraint/AssertProductRatingNotInGrid.php | 2 +- .../Test/Constraint/AssertProductRatingNotInProductPage.php | 2 +- .../Test/Constraint/AssertProductRatingOnReviewPage.php | 2 +- .../Constraint/AssertProductRatingSuccessDeleteMessage.php | 2 +- .../Constraint/AssertProductRatingSuccessSaveMessage.php | 2 +- .../AssertProductReviewBackendSuccessSaveMessage.php | 2 +- .../Review/Test/Constraint/AssertProductReviewForm.php | 2 +- .../Review/Test/Constraint/AssertProductReviewInGrid.php | 2 +- .../Constraint/AssertProductReviewInGridOnCustomerPage.php | 2 +- .../Constraint/AssertProductReviewIsAbsentOnProductPage.php | 2 +- .../AssertProductReviewMassActionSuccessDeleteMessage.php | 2 +- .../AssertProductReviewMassActionSuccessMessage.php | 2 +- .../Review/Test/Constraint/AssertProductReviewNotInGrid.php | 2 +- .../Test/Constraint/AssertProductReviewNotOnProductPage.php | 2 +- .../Test/Constraint/AssertProductReviewOnProductPage.php | 2 +- .../Test/Constraint/AssertReviewCreationSuccessMessage.php | 2 +- .../Constraint/AssertReviewLinksIsPresentOnProductPage.php | 2 +- .../Test/Constraint/AssertReviewSuccessSaveMessage.php | 2 +- .../Test/Constraint/AssertSetApprovedProductReview.php | 2 +- .../tests/app/Magento/Review/Test/Fixture/Rating.xml | 2 +- .../tests/app/Magento/Review/Test/Fixture/Review.xml | 2 +- .../app/Magento/Review/Test/Fixture/Review/EntityId.php | 2 +- .../app/Magento/Review/Test/Fixture/Review/Ratings.php | 2 +- .../tests/app/Magento/Review/Test/Handler/Rating/Curl.php | 2 +- .../Magento/Review/Test/Handler/Rating/RatingInterface.php | 2 +- .../tests/app/Magento/Review/Test/Handler/Review/Curl.php | 2 +- .../Magento/Review/Test/Handler/Review/ReviewInterface.php | 2 +- .../app/Magento/Review/Test/Page/Adminhtml/RatingEdit.xml | 2 +- .../app/Magento/Review/Test/Page/Adminhtml/RatingIndex.xml | 2 +- .../app/Magento/Review/Test/Page/Adminhtml/RatingNew.xml | 2 +- .../app/Magento/Review/Test/Page/Adminhtml/ReviewEdit.xml | 2 +- .../app/Magento/Review/Test/Page/Adminhtml/ReviewIndex.xml | 2 +- .../Magento/Review/Test/Page/Product/CatalogProductView.xml | 2 +- .../tests/app/Magento/Review/Test/Repository/Rating.xml | 2 +- .../tests/app/Magento/Review/Test/Repository/Review.xml | 2 +- .../Review/Test/TestCase/CreateProductRatingEntityTest.php | 2 +- .../Review/Test/TestCase/CreateProductRatingEntityTest.xml | 2 +- .../Test/TestCase/CreateProductReviewBackendEntityTest.php | 2 +- .../Test/TestCase/CreateProductReviewBackendEntityTest.xml | 2 +- .../Test/TestCase/CreateProductReviewFrontendEntityTest.php | 2 +- .../Test/TestCase/CreateProductReviewFrontendEntityTest.xml | 2 +- .../Review/Test/TestCase/DeleteProductRatingEntityTest.php | 2 +- .../Review/Test/TestCase/DeleteProductRatingEntityTest.xml | 2 +- .../TestCase/ManageProductReviewFromCustomerPageTest.php | 2 +- .../TestCase/ManageProductReviewFromCustomerPageTest.xml | 2 +- .../Test/TestCase/MassActionsProductReviewEntityTest.php | 2 +- .../Test/TestCase/MassActionsProductReviewEntityTest.xml | 2 +- .../Test/TestCase/ModerateProductReviewEntityTest.php | 2 +- .../Test/TestCase/ModerateProductReviewEntityTest.xml | 2 +- .../app/Magento/Review/Test/TestCase/NavigateMenuTest.xml | 2 +- .../TestCase/UpdateProductReviewEntityOnProductPageTest.php | 2 +- .../TestCase/UpdateProductReviewEntityOnProductPageTest.xml | 2 +- .../Review/Test/TestCase/UpdateProductReviewEntityTest.php | 2 +- .../Review/Test/TestCase/UpdateProductReviewEntityTest.xml | 2 +- .../tests/app/Magento/Review/Test/etc/curl/di.xml | 2 +- .../functional/tests/app/Magento/Review/Test/etc/di.xml | 2 +- .../Magento/Sales/Test/Block/Adminhtml/CreditMemo/Grid.php | 2 +- .../app/Magento/Sales/Test/Block/Adminhtml/Invoice/Grid.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/AbstractForm.php | 2 +- .../Test/Block/Adminhtml/Order/AbstractForm/Product.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/AbstractItems.php | 2 +- .../Test/Block/Adminhtml/Order/AbstractItemsNewBlock.php | 2 +- .../Magento/Sales/Test/Block/Adminhtml/Order/Actions.php | 2 +- .../app/Magento/Sales/Test/Block/Adminhtml/Order/Create.php | 2 +- .../Test/Block/Adminhtml/Order/Create/Billing/Address.php | 2 +- .../Test/Block/Adminhtml/Order/Create/Billing/Address.xml | 2 +- .../Test/Block/Adminhtml/Order/Create/Billing/Method.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Create/Coupons.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Create/Customer.php | 2 +- .../Block/Adminhtml/Order/Create/CustomerActivities.php | 2 +- .../Adminhtml/Order/Create/CustomerActivities/Sidebar.php | 2 +- .../Create/CustomerActivities/Sidebar/LastOrderedItems.php | 2 +- .../CustomerActivities/Sidebar/ProductsInComparison.php | 2 +- .../CustomerActivities/Sidebar/RecentlyComparedProducts.php | 2 +- .../CustomerActivities/Sidebar/RecentlyViewedItems.php | 2 +- .../CustomerActivities/Sidebar/RecentlyViewedProducts.php | 2 +- .../Create/CustomerActivities/Sidebar/ShoppingCartItems.php | 2 +- .../Test/Block/Adminhtml/Order/Create/Form/Account.php | 2 +- .../Test/Block/Adminhtml/Order/Create/Form/Account.xml | 2 +- .../Sales/Test/Block/Adminhtml/Order/Create/Items.php | 2 +- .../Test/Block/Adminhtml/Order/Create/Items/ItemProduct.php | 2 +- .../Test/Block/Adminhtml/Order/Create/Items/ItemProduct.xml | 2 +- .../Sales/Test/Block/Adminhtml/Order/Create/Search/Grid.php | 2 +- .../Test/Block/Adminhtml/Order/Create/Shipping/Address.php | 2 +- .../Test/Block/Adminhtml/Order/Create/Shipping/Address.xml | 2 +- .../Test/Block/Adminhtml/Order/Create/Shipping/Method.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Create/Store.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Create/Totals.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Creditmemo/Form.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Creditmemo/Form.xml | 2 +- .../Test/Block/Adminhtml/Order/Creditmemo/Form/Items.php | 2 +- .../Block/Adminhtml/Order/Creditmemo/Form/Items/Product.php | 2 +- .../Block/Adminhtml/Order/Creditmemo/Form/Items/Product.xml | 2 +- .../Sales/Test/Block/Adminhtml/Order/Creditmemo/Grid.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Creditmemo/Totals.php | 2 +- .../Test/Block/Adminhtml/Order/Creditmemo/View/Items.php | 2 +- .../app/Magento/Sales/Test/Block/Adminhtml/Order/Grid.php | 2 +- .../Magento/Sales/Test/Block/Adminhtml/Order/History.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Invoice/Form.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Invoice/Form.xml | 2 +- .../Sales/Test/Block/Adminhtml/Order/Invoice/Form/Items.php | 2 +- .../Block/Adminhtml/Order/Invoice/Form/Items/Product.php | 2 +- .../Block/Adminhtml/Order/Invoice/Form/Items/Product.xml | 2 +- .../Sales/Test/Block/Adminhtml/Order/Invoice/Grid.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Invoice/Totals.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Invoice/View/Items.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Shipment/Totals.php | 2 +- .../Test/Block/Adminhtml/Order/Shipment/View/Items.php | 2 +- .../Test/Block/Adminhtml/Order/Status/Assign/AssignForm.php | 2 +- .../Test/Block/Adminhtml/Order/Status/Assign/AssignForm.xml | 2 +- .../Test/Block/Adminhtml/Order/Status/GridPageActions.php | 2 +- .../Magento/Sales/Test/Block/Adminhtml/Order/StatusGrid.php | 2 +- .../app/Magento/Sales/Test/Block/Adminhtml/Order/Totals.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/Transactions/Grid.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/View/Addresses.php | 2 +- .../Magento/Sales/Test/Block/Adminhtml/Order/View/Info.php | 2 +- .../Magento/Sales/Test/Block/Adminhtml/Order/View/Items.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/View/OrderForm.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/View/OrderForm.xml | 2 +- .../Test/Block/Adminhtml/Order/View/Tab/CreditMemos.php | 2 +- .../Block/Adminhtml/Order/View/Tab/CreditMemos/Grid.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/View/Tab/Info.php | 2 +- .../Adminhtml/Order/View/Tab/Info/PaymentInfoBlock.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/View/Tab/Invoices.php | 2 +- .../Test/Block/Adminhtml/Order/View/Tab/Invoices/Grid.php | 2 +- .../Sales/Test/Block/Adminhtml/Order/View/Tab/Shipments.php | 2 +- .../Test/Block/Adminhtml/Order/View/Tab/Shipments/Grid.php | 2 +- .../Test/Block/Adminhtml/Order/View/Tab/Transactions.php | 2 +- .../Block/Adminhtml/Order/View/Tab/Transactions/Grid.php | 2 +- .../Sales/Test/Block/Adminhtml/Report/Filter/Form.php | 2 +- .../Sales/Test/Block/Adminhtml/Report/Filter/Form.xml | 2 +- .../tests/app/Magento/Sales/Test/Block/Order/History.php | 2 +- .../tests/app/Magento/Sales/Test/Block/Order/Info.php | 2 +- .../tests/app/Magento/Sales/Test/Block/Order/Items.php | 2 +- .../tests/app/Magento/Sales/Test/Block/Order/View.php | 2 +- .../Magento/Sales/Test/Block/Order/View/ActionsToolbar.php | 2 +- .../app/Magento/Sales/Test/Block/Widget/Guest/Form.php | 2 +- .../app/Magento/Sales/Test/Block/Widget/Guest/Form.xml | 2 +- .../Magento/Sales/Test/Constraint/AbstractAssertItems.php | 2 +- .../Sales/Test/Constraint/AbstractAssertOrderOnFrontend.php | 2 +- .../AssertAcceptPaymentMessageInCommentsHistory.php | 2 +- .../Constraint/AssertAcceptPaymentSuccessMessagePresent.php | 2 +- .../Constraint/AssertAuthorizationInCommentsHistory.php | 2 +- .../Test/Constraint/AssertCaptureInCommentsHistory.php | 2 +- .../Sales/Test/Constraint/AssertCreditMemoButton.php | 2 +- .../Magento/Sales/Test/Constraint/AssertCreditMemoItems.php | 2 +- .../AssertDenyPaymentMessageInCommentsHistory.php | 2 +- .../Constraint/AssertDenyPaymentSuccessMessagePresent.php | 2 +- .../Sales/Test/Constraint/AssertInvoiceInInvoicesGrid.php | 2 +- .../Sales/Test/Constraint/AssertInvoiceInInvoicesTab.php | 2 +- .../Magento/Sales/Test/Constraint/AssertInvoiceItems.php | 2 +- .../Test/Constraint/AssertInvoiceNotInInvoicesGrid.php | 2 +- .../Test/Constraint/AssertInvoiceStatusInOrdersGrid.php | 2 +- .../Test/Constraint/AssertInvoiceSuccessCreateMessage.php | 2 +- .../Constraint/AssertInvoiceWithShipmentSuccessMessage.php | 2 +- .../Test/Constraint/AssertInvoicedAmountOnFrontend.php | 2 +- .../Sales/Test/Constraint/AssertNoCreditMemoButton.php | 2 +- .../Magento/Sales/Test/Constraint/AssertNoInvoiceButton.php | 2 +- .../Test/Constraint/AssertOnlineInvoiceCannotBeCreated.php | 2 +- .../Magento/Sales/Test/Constraint/AssertOrderAddresses.php | 2 +- .../Sales/Test/Constraint/AssertOrderButtonsAvailable.php | 2 +- .../Sales/Test/Constraint/AssertOrderButtonsUnavailable.php | 2 +- .../Constraint/AssertOrderCancelMassActionFailMessage.php | 2 +- .../AssertOrderCancelMassActionSuccessMessage.php | 2 +- .../Test/Constraint/AssertOrderCancelSuccessMessage.php | 2 +- .../Constraint/AssertOrderCommentsHistoryNotifyStatus.php | 2 +- .../Magento/Sales/Test/Constraint/AssertOrderGrandTotal.php | 2 +- .../Sales/Test/Constraint/AssertOrderInOrdersGrid.php | 2 +- .../Test/Constraint/AssertOrderInOrdersGridOnFrontend.php | 2 +- .../Test/Constraint/AssertOrderMassOnHoldSuccessMessage.php | 2 +- .../Sales/Test/Constraint/AssertOrderNotInOrdersGrid.php | 2 +- .../Test/Constraint/AssertOrderNotVisibleOnMyAccount.php | 2 +- .../Sales/Test/Constraint/AssertOrderOnHoldFailMessage.php | 2 +- .../Test/Constraint/AssertOrderOnHoldSuccessMessage.php | 2 +- .../Sales/Test/Constraint/AssertOrderPaymentInformation.php | 2 +- .../Sales/Test/Constraint/AssertOrderReleaseFailMessage.php | 2 +- .../Test/Constraint/AssertOrderReleaseSuccessMessage.php | 2 +- .../Test/Constraint/AssertOrderStatusDuplicateStatus.php | 2 +- .../Sales/Test/Constraint/AssertOrderStatusInGrid.php | 2 +- .../Sales/Test/Constraint/AssertOrderStatusIsCanceled.php | 2 +- .../Sales/Test/Constraint/AssertOrderStatusIsCorrect.php | 2 +- .../Sales/Test/Constraint/AssertOrderStatusNotAssigned.php | 2 +- .../Constraint/AssertOrderStatusSuccessAssignMessage.php | 2 +- .../Constraint/AssertOrderStatusSuccessCreateMessage.php | 2 +- .../Constraint/AssertOrderStatusSuccessUnassignMessage.php | 2 +- .../Test/Constraint/AssertOrderSuccessCreateMessage.php | 2 +- .../Test/Constraint/AssertOrderSuccessVoidedMessage.php | 2 +- .../Sales/Test/Constraint/AssertOrdersInOrdersGrid.php | 2 +- .../Test/Constraint/AssertProductInItemsOrderedGrid.php | 2 +- .../Sales/Test/Constraint/AssertProductQtyDecreased.php | 2 +- .../Constraint/AssertProductQtyDecreasedAfterCreditmemo.php | 2 +- .../Test/Constraint/AssertProductsQtyAfterOrderCancel.php | 2 +- .../Sales/Test/Constraint/AssertRefundInCommentsHistory.php | 2 +- .../Sales/Test/Constraint/AssertRefundInCreditMemoTab.php | 2 +- .../Sales/Test/Constraint/AssertRefundInRefundsGrid.php | 2 +- .../Sales/Test/Constraint/AssertRefundNotInRefundsGrid.php | 2 +- .../Constraint/AssertRefundOrderStatusInCommentsHistory.php | 2 +- .../Test/Constraint/AssertRefundSuccessCreateMessage.php | 2 +- .../Test/Constraint/AssertRefundedGrandTotalOnFrontend.php | 2 +- .../Sales/Test/Constraint/AssertReorderStatusIsCorrect.php | 2 +- .../Test/Constraint/AssertSalesPrintOrderBillingAddress.php | 2 +- .../Test/Constraint/AssertSalesPrintOrderGrandTotal.php | 2 +- .../Test/Constraint/AssertSalesPrintOrderPaymentMethod.php | 2 +- .../Sales/Test/Constraint/AssertSalesPrintOrderProducts.php | 2 +- .../Sales/Test/Constraint/AssertTransactionStatus.php | 2 +- .../Magento/Sales/Test/Constraint/AssertUnholdButton.php | 2 +- .../Sales/Test/Constraint/AssertVoidInCommentsHistory.php | 2 +- .../app/Magento/Sales/Test/Fixture/OrderInjectable.xml | 2 +- .../Sales/Test/Fixture/OrderInjectable/BillingAddressId.php | 2 +- .../Sales/Test/Fixture/OrderInjectable/CouponCode.php | 2 +- .../Sales/Test/Fixture/OrderInjectable/CustomerId.php | 2 +- .../Magento/Sales/Test/Fixture/OrderInjectable/EntityId.php | 2 +- .../Magento/Sales/Test/Fixture/OrderInjectable/StoreId.php | 2 +- .../tests/app/Magento/Sales/Test/Fixture/OrderStatus.xml | 2 +- .../app/Magento/Sales/Test/Handler/OrderInjectable/Curl.php | 2 +- .../Handler/OrderInjectable/OrderInjectableInterface.php | 2 +- .../Magento/Sales/Test/Handler/OrderInjectable/Webapi.php | 2 +- .../app/Magento/Sales/Test/Handler/OrderStatus/Curl.php | 2 +- .../Sales/Test/Handler/OrderStatus/OrderStatusInterface.php | 2 +- .../Magento/Sales/Test/Page/Adminhtml/CreditMemoIndex.xml | 2 +- .../app/Magento/Sales/Test/Page/Adminhtml/InvoiceIndex.xml | 2 +- .../Magento/Sales/Test/Page/Adminhtml/OrderCreateIndex.xml | 2 +- .../Sales/Test/Page/Adminhtml/OrderCreditMemoNew.xml | 2 +- .../app/Magento/Sales/Test/Page/Adminhtml/OrderIndex.xml | 2 +- .../Magento/Sales/Test/Page/Adminhtml/OrderInvoiceNew.xml | 2 +- .../Magento/Sales/Test/Page/Adminhtml/OrderInvoiceView.xml | 2 +- .../Magento/Sales/Test/Page/Adminhtml/OrderStatusAssign.xml | 2 +- .../Magento/Sales/Test/Page/Adminhtml/OrderStatusEdit.xml | 2 +- .../Magento/Sales/Test/Page/Adminhtml/OrderStatusIndex.xml | 2 +- .../Magento/Sales/Test/Page/Adminhtml/OrderStatusNew.xml | 2 +- .../Sales/Test/Page/Adminhtml/SalesCreditMemoView.xml | 2 +- .../Magento/Sales/Test/Page/Adminhtml/SalesInvoiceView.xml | 2 +- .../Magento/Sales/Test/Page/Adminhtml/SalesOrderView.xml | 2 +- .../tests/app/Magento/Sales/Test/Page/CreditMemoView.xml | 2 +- .../tests/app/Magento/Sales/Test/Page/CustomerOrderView.xml | 2 +- .../tests/app/Magento/Sales/Test/Page/InvoiceView.xml | 2 +- .../tests/app/Magento/Sales/Test/Page/OrderHistory.xml | 2 +- .../tests/app/Magento/Sales/Test/Page/SalesGuestForm.xml | 2 +- .../tests/app/Magento/Sales/Test/Page/SalesGuestPrint.xml | 2 +- .../tests/app/Magento/Sales/Test/Page/SalesGuestView.xml | 2 +- .../app/Magento/Sales/Test/Page/SalesOrderShipmentNew.php | 2 +- .../tests/app/Magento/Sales/Test/Repository/ConfigData.xml | 2 +- .../app/Magento/Sales/Test/Repository/OrderInjectable.xml | 2 +- .../Magento/Sales/Test/Repository/OrderInjectable/Price.xml | 2 +- .../tests/app/Magento/Sales/Test/Repository/OrderStatus.xml | 2 +- .../Sales/Test/TestCase/AssignCustomOrderStatusTest.php | 2 +- .../Sales/Test/TestCase/AssignCustomOrderStatusTest.xml | 2 +- .../Magento/Sales/Test/TestCase/CancelCreatedOrderTest.php | 2 +- .../Magento/Sales/Test/TestCase/CancelCreatedOrderTest.xml | 2 +- .../app/Magento/Sales/Test/TestCase/CloseOrderTest.php | 2 +- .../Sales/Test/TestCase/CreateCreditMemoEntityTest.php | 2 +- .../Sales/Test/TestCase/CreateCreditMemoEntityTest.xml | 2 +- .../Test/TestCase/CreateCustomOrderStatusEntityTest.php | 2 +- .../Test/TestCase/CreateCustomOrderStatusEntityTest.xml | 2 +- .../Magento/Sales/Test/TestCase/CreateInvoiceEntityTest.php | 2 +- .../Magento/Sales/Test/TestCase/CreateInvoiceEntityTest.xml | 2 +- .../Sales/Test/TestCase/CreateOnlineCreditMemoTest.php | 2 +- .../Sales/Test/TestCase/CreateOnlineInvoiceEntityTest.php | 2 +- .../Magento/Sales/Test/TestCase/CreateOrderBackendTest.php | 2 +- .../Magento/Sales/Test/TestCase/CreateOrderBackendTest.xml | 2 +- .../app/Magento/Sales/Test/TestCase/GridFilteringTest.xml | 2 +- .../Magento/Sales/Test/TestCase/GridFullTextSearchTest.xml | 2 +- .../app/Magento/Sales/Test/TestCase/GridSortingTest.xml | 2 +- .../Magento/Sales/Test/TestCase/HoldCreatedOrderTest.php | 2 +- .../Magento/Sales/Test/TestCase/HoldCreatedOrderTest.xml | 2 +- .../Magento/Sales/Test/TestCase/MassOrdersUpdateTest.php | 2 +- .../Magento/Sales/Test/TestCase/MassOrdersUpdateTest.xml | 2 +- .../TestCase/MoveLastOrderedProductsOnOrderPageTest.php | 2 +- .../TestCase/MoveLastOrderedProductsOnOrderPageTest.xml | 2 +- .../Test/TestCase/MoveProductsInComparedOnOrderPageTest.php | 2 +- .../Test/TestCase/MoveProductsInComparedOnOrderPageTest.xml | 2 +- .../MoveRecentlyComparedProductsOnOrderPageTest.php | 2 +- .../MoveRecentlyComparedProductsOnOrderPageTest.xml | 2 +- .../TestCase/MoveRecentlyViewedProductsOnOrderPageTest.php | 2 +- .../TestCase/MoveRecentlyViewedProductsOnOrderPageTest.xml | 2 +- .../TestCase/MoveShoppingCartProductsOnOrderPageTest.php | 2 +- .../TestCase/MoveShoppingCartProductsOnOrderPageTest.xml | 2 +- .../app/Magento/Sales/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Sales/Test/TestCase/PrintOrderFrontendGuestTest.php | 2 +- .../Sales/Test/TestCase/PrintOrderFrontendGuestTest.xml | 2 +- .../Magento/Sales/Test/TestCase/ReorderOrderEntityTest.php | 2 +- .../Magento/Sales/Test/TestCase/ReorderOrderEntityTest.xml | 2 +- .../Sales/Test/TestCase/UnassignCustomOrderStatusTest.php | 2 +- .../Sales/Test/TestCase/UnassignCustomOrderStatusTest.xml | 2 +- .../Sales/Test/TestCase/UpdateCustomOrderStatusTest.php | 2 +- .../Sales/Test/TestCase/UpdateCustomOrderStatusTest.xml | 2 +- .../Magento/Sales/Test/TestCase/VoidAuthorizationTest.php | 2 +- .../app/Magento/Sales/Test/TestStep/AddProductsStep.php | 2 +- .../Test/TestStep/AddRecentlyViewedProductsToCartStep.php | 2 +- .../Magento/Sales/Test/TestStep/ConfigureProductsStep.php | 2 +- .../Magento/Sales/Test/TestStep/CreateCreditMemoStep.php | 2 +- .../app/Magento/Sales/Test/TestStep/CreateInvoiceStep.php | 2 +- .../app/Magento/Sales/Test/TestStep/CreateNewOrderStep.php | 2 +- .../Sales/Test/TestStep/CreateOnlineCreditMemoStep.php | 2 +- .../app/Magento/Sales/Test/TestStep/CreateOrderStep.php | 2 +- .../app/Magento/Sales/Test/TestStep/CreateShipmentStep.php | 2 +- .../Sales/Test/TestStep/FillAccountInformationStep.php | 2 +- .../Magento/Sales/Test/TestStep/FillBillingAddressStep.php | 2 +- .../Magento/Sales/Test/TestStep/FillShippingAddressStep.php | 2 +- .../tests/app/Magento/Sales/Test/TestStep/OnHoldStep.php | 2 +- .../tests/app/Magento/Sales/Test/TestStep/OpenOrderStep.php | 2 +- .../Test/TestStep/OpenSalesOrderOnFrontendForGuestStep.php | 2 +- .../app/Magento/Sales/Test/TestStep/OpenSalesOrdersStep.php | 2 +- .../Sales/Test/TestStep/PrintOrderOnFrontendStep.php | 2 +- .../tests/app/Magento/Sales/Test/TestStep/ReorderStep.php | 2 +- .../Magento/Sales/Test/TestStep/SelectCustomerOrderStep.php | 2 +- .../Sales/Test/TestStep/SelectPaymentMethodForOrderStep.php | 2 +- .../Test/TestStep/SelectShippingMethodForOrderStep.php | 2 +- .../app/Magento/Sales/Test/TestStep/SelectStoreStep.php | 2 +- .../Magento/Sales/Test/TestStep/SubmitOrderNegativeStep.php | 2 +- .../app/Magento/Sales/Test/TestStep/SubmitOrderStep.php | 2 +- .../Magento/Sales/Test/TestStep/UpdateProductsDataStep.php | 2 +- .../Magento/Sales/Test/TestStep/VoidAuthorizationStep.php | 2 +- .../functional/tests/app/Magento/Sales/Test/etc/curl/di.xml | 2 +- .../functional/tests/app/Magento/Sales/Test/etc/di.xml | 2 +- .../tests/app/Magento/Sales/Test/etc/testcase.xml | 2 +- .../tests/app/Magento/Sales/Test/etc/webapi/di.xml | 2 +- .../Magento/SalesRule/Test/Block/Adminhtml/Promo/Grid.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/PromoQuoteForm.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/PromoQuoteForm.xml | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/Section/Conditions.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/Section/Labels.php | 2 +- .../Adminhtml/Promo/Quote/Edit/Section/RuleInformation.php | 2 +- .../tests/app/Magento/SalesRule/Test/Block/Order/Items.php | 2 +- .../tests/app/Magento/SalesRule/Test/Block/Order/View.php | 2 +- .../Test/Constraint/AssertCartPriceRuleApplying.php | 2 +- .../Constraint/AssertCartPriceRuleConditionIsApplied.php | 2 +- .../Constraint/AssertCartPriceRuleConditionIsNotApplied.php | 2 +- .../SalesRule/Test/Constraint/AssertCartPriceRuleForm.php | 2 +- .../Constraint/AssertCartPriceRuleFreeShippingIsApplied.php | 2 +- .../Constraint/AssertCartPriceRuleIsNotPresentedInGrid.php | 2 +- .../Constraint/AssertCartPriceRuleSuccessDeleteMessage.php | 2 +- .../Constraint/AssertCartPriceRuleSuccessSaveMessage.php | 2 +- .../Test/Constraint/AssertSalesRuleOnPrintOrder.php | 2 +- .../tests/app/Magento/SalesRule/Test/Fixture/SalesRule.xml | 2 +- .../Test/Fixture/SalesRule/ConditionsSerialized.php | 2 +- .../app/Magento/SalesRule/Test/Handler/SalesRule/Curl.php | 2 +- .../SalesRule/Test/Handler/SalesRule/SalesRuleInterface.php | 2 +- .../app/Magento/SalesRule/Test/Handler/SalesRule/Webapi.php | 2 +- .../SalesRule/Test/Page/Adminhtml/PromoQuoteEdit.xml | 2 +- .../SalesRule/Test/Page/Adminhtml/PromoQuoteIndex.xml | 2 +- .../Magento/SalesRule/Test/Page/Adminhtml/PromoQuoteNew.xml | 2 +- .../app/Magento/SalesRule/Test/Page/SalesGuestPrint.xml | 2 +- .../app/Magento/SalesRule/Test/Repository/SalesRule.xml | 2 +- .../Test/TestCase/ApplySeveralSalesRuleEntityTest.php | 2 +- .../Test/TestCase/ApplySeveralSalesRuleEntityTest.xml | 2 +- .../SalesRule/Test/TestCase/CreateSalesRuleEntityTest.php | 2 +- .../SalesRule/Test/TestCase/CreateSalesRuleEntityTest.xml | 2 +- .../SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.php | 2 +- .../SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.xml | 2 +- .../Magento/SalesRule/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Test/TestCase/OnePageCheckoutWithDiscountTest.php | 2 +- .../Test/TestCase/ShoppingCartWithFreeShippingTest.php | 2 +- .../Test/TestCase/ShoppingCartWithFreeShippingTest.xml | 2 +- .../SalesRule/Test/TestCase/UpdateSalesRuleEntityTest.php | 2 +- .../SalesRule/Test/TestCase/UpdateSalesRuleEntityTest.xml | 2 +- .../SalesRule/Test/TestStep/ApplySalesRuleOnBackendStep.php | 2 +- .../Test/TestStep/ApplySalesRuleOnCheckoutStep.php | 2 +- .../Test/TestStep/ApplySalesRuleOnFrontendStep.php | 2 +- .../Magento/SalesRule/Test/TestStep/CreateSalesRuleStep.php | 2 +- .../SalesRule/Test/TestStep/DeleteAllSalesRuleStep.php | 2 +- .../tests/app/Magento/SalesRule/Test/etc/curl/di.xml | 2 +- .../tests/app/Magento/SalesRule/Test/etc/testcase.xml | 2 +- .../tests/app/Magento/SalesRule/Test/etc/webapi/di.xml | 2 +- .../Test/Block/Adminhtml/Block/Edit/SynonymGroupForm.php | 2 +- .../Test/Block/Adminhtml/Block/Edit/SynonymGroupForm.xml | 2 +- .../Search/Test/Block/Adminhtml/Block/SynonymGroupGrid.php | 2 +- .../Test/Constraint/AssertSynonymGroupDeleteMessage.php | 2 +- .../Search/Test/Constraint/AssertSynonymGroupInGrid.php | 2 +- .../Constraint/AssertSynonymGroupSuccessSaveMessage.php | 2 +- .../Test/Constraint/AssertSynonymMergeErrorMessage.php | 2 +- .../Test/Constraint/AssertSynonymRestrictedAccess.php | 2 +- .../tests/app/Magento/Search/Test/Fixture/SynonymGroup.xml | 2 +- .../Magento/Search/Test/Fixture/SynonymGroup/ScopeId.php | 2 +- .../app/Magento/Search/Test/Handler/SynonymGroup/Curl.php | 2 +- .../Test/Handler/SynonymGroup/SynonymGroupInterface.php | 2 +- .../Search/Test/Page/Adminhtml/SynonymGroupIndex.xml | 2 +- .../Magento/Search/Test/Page/Adminhtml/SynonymGroupNew.xml | 2 +- .../app/Magento/Search/Test/Repository/SynonymGroup.xml | 2 +- .../Test/TestCase/AdvancedSearchWithAttributeTest.php | 2 +- .../Test/TestCase/AdvancedSearchWithAttributeTest.xml | 2 +- .../Search/Test/TestCase/CreateSynonymGroupEntityTest.php | 2 +- .../Search/Test/TestCase/CreateSynonymGroupEntityTest.xml | 2 +- .../Search/Test/TestCase/CustomAclPermissionTest.xml | 2 +- .../Search/Test/TestCase/DeleteSynonymGroupEntityTest.php | 2 +- .../Search/Test/TestCase/DeleteSynonymGroupEntityTest.xml | 2 +- .../Search/Test/TestCase/MergeSynonymGroupEntityTest.php | 2 +- .../Search/Test/TestCase/MergeSynonymGroupEntityTest.xml | 2 +- .../Search/Test/TestCase/UpdateSynonymGroupEntityTest.php | 2 +- .../Search/Test/TestCase/UpdateSynonymGroupEntityTest.xml | 2 +- .../tests/app/Magento/Search/Test/etc/curl/di.xml | 2 +- .../functional/tests/app/Magento/Search/Test/etc/di.xml | 2 +- .../app/Magento/Security/Test/Block/Form/ForgotPassword.php | 2 +- .../app/Magento/Security/Test/Block/Form/ForgotPassword.xml | 4 ++-- .../Security/Test/Constraint/AssertCustomerEmailChanged.php | 2 +- .../Security/Test/Constraint/AssertCustomerIsLocked.php | 2 +- .../Constraint/AssertCustomerPasswordRequiredClasses.php | 2 +- .../Test/Constraint/AssertCustomerResetPasswordFailed.php | 2 +- .../Test/Constraint/AssertDefaultAccountInformation.php | 2 +- .../Constraint/AssertPasswordIsNotSecureEnoughMessage.php | 2 +- .../Test/Constraint/AssertPasswordLengthErrorMessage.php | 2 +- .../Magento/Security/Test/Constraint/AssertUserIsLocked.php | 2 +- .../Test/Constraint/AssertUserPasswordResetFailed.php | 2 +- .../Security/Test/Page/UserAccountForgotPassword.php | 2 +- .../app/Magento/Security/Test/Repository/ConfigData.xml | 2 +- .../LockAdminUserWhenCreatingNewIntegrationTest.php | 2 +- .../LockAdminUserWhenCreatingNewIntegrationTest.xml | 2 +- .../Test/TestCase/LockAdminUserWhenCreatingNewRoleTest.php | 2 +- .../Test/TestCase/LockAdminUserWhenCreatingNewRoleTest.xml | 2 +- .../Test/TestCase/LockAdminUserWhenCreatingNewUserTest.php | 2 +- .../Test/TestCase/LockAdminUserWhenCreatingNewUserTest.xml | 2 +- .../TestCase/LockAdminUserWhenEditingIntegrationTest.php | 2 +- .../TestCase/LockAdminUserWhenEditingIntegrationTest.xml | 4 ++-- .../Test/TestCase/LockAdminUserWhenEditingRoleTest.php | 2 +- .../Test/TestCase/LockAdminUserWhenEditingRoleTest.xml | 2 +- .../Test/TestCase/LockAdminUserWhenEditingUserTest.php | 2 +- .../Test/TestCase/LockAdminUserWhenEditingUserTest.xml | 4 ++-- .../Security/Test/TestCase/LockCustomerOnEditPageTest.php | 2 +- .../Security/Test/TestCase/LockCustomerOnEditPageTest.xml | 2 +- .../Security/Test/TestCase/LockCustomerOnLoginPageTest.php | 2 +- .../Security/Test/TestCase/LockCustomerOnLoginPageTest.xml | 2 +- .../Test/TestCase/NewCustomerPasswordComplexityTest.php | 2 +- .../Test/TestCase/NewCustomerPasswordComplexityTest.xml | 2 +- ...gisterCustomerEntityWithDifferentPasswordClassesTest.php | 2 +- ...gisterCustomerEntityWithDifferentPasswordClassesTest.xml | 2 +- .../Test/TestCase/ResetCustomerPasswordFailedTest.php | 2 +- .../Test/TestCase/ResetCustomerPasswordFailedTest.xml | 2 +- .../Security/Test/TestCase/ResetUserPasswordFailedTest.php | 2 +- .../Security/Test/TestCase/ResetUserPasswordFailedTest.xml | 2 +- .../Test/TestCase/SecureChangingCustomerEmailTest.php | 2 +- .../Test/TestCase/SecureChangingCustomerEmailTest.xml | 2 +- .../Test/TestCase/SecureChangingCustomerPasswordTest.php | 2 +- .../Test/TestCase/SecureChangingCustomerPasswordTest.xml | 2 +- .../functional/tests/app/Magento/Security/Test/etc/di.xml | 2 +- .../tests/app/Magento/Setup/Test/Block/Authentication.php | 2 +- .../tests/app/Magento/Setup/Test/Block/Authentication.xml | 2 +- .../tests/app/Magento/Setup/Test/Block/CreateBackup.php | 2 +- .../tests/app/Magento/Setup/Test/Block/CreateBackup.xml | 2 +- .../app/Magento/Setup/Test/Block/Extension/AbstractGrid.php | 2 +- .../app/Magento/Setup/Test/Block/Extension/DataOption.php | 2 +- .../tests/app/Magento/Setup/Test/Block/Extension/Grid.php | 2 +- .../app/Magento/Setup/Test/Block/Extension/InstallGrid.php | 2 +- .../app/Magento/Setup/Test/Block/Extension/UpdateGrid.php | 2 +- .../app/Magento/Setup/Test/Block/Extension/Updater.php | 2 +- .../functional/tests/app/Magento/Setup/Test/Block/Home.php | 2 +- .../tests/app/Magento/Setup/Test/Block/Module/Grid.php | 2 +- .../tests/app/Magento/Setup/Test/Block/Module/Status.php | 2 +- .../tests/app/Magento/Setup/Test/Block/Readiness.php | 2 +- .../tests/app/Magento/Setup/Test/Block/SelectVersion.php | 2 +- .../tests/app/Magento/Setup/Test/Block/SelectVersion.xml | 2 +- .../tests/app/Magento/Setup/Test/Block/SuccessMessage.php | 2 +- .../tests/app/Magento/Setup/Test/Block/SystemConfig.php | 2 +- .../tests/app/Magento/Setup/Test/Block/SystemUpgrade.php | 2 +- .../Setup/Test/Constraint/AssertApplicationVersion.php | 2 +- .../Magento/Setup/Test/Constraint/AssertSuccessMessage.php | 2 +- .../Test/Constraint/AssertSuccessfulReadinessCheck.php | 2 +- .../Setup/Test/Constraint/AssertVersionAndEditionCheck.php | 2 +- .../Constraint/Extension/AssertExtensionAndVersionCheck.php | 2 +- .../Test/Constraint/Extension/AssertFindExtensionOnGrid.php | 2 +- .../Extension/AssertMultipleExtensionAndVersionCheck.php | 2 +- .../Constraint/Extension/AssertMultipleSuccessMessage.php | 2 +- .../Constraint/Extension/AssertSelectSeveralExtensions.php | 2 +- .../Test/Constraint/Extension/AssertSuccessMessage.php | 2 +- .../Setup/Test/Constraint/Extension/AssertVersionOnGrid.php | 2 +- .../Setup/Test/Constraint/Module/AssertModuleInGrid.php | 2 +- .../Setup/Test/Constraint/Module/AssertSuccessMessage.php | 2 +- .../tests/app/Magento/Setup/Test/Fixture/BackupOptions.xml | 2 +- .../tests/app/Magento/Setup/Test/Fixture/Extension.xml | 2 +- .../tests/app/Magento/Setup/Test/Fixture/Module.xml | 2 +- .../app/Magento/Setup/Test/Fixture/RepoCredentials.xml | 2 +- .../tests/app/Magento/Setup/Test/Fixture/Upgrade.xml | 2 +- .../app/Magento/Setup/Test/Page/Adminhtml/SetupWizard.xml | 2 +- .../app/Magento/Setup/Test/Repository/BackupOptions.xml | 2 +- .../tests/app/Magento/Setup/Test/Repository/Extension.xml | 2 +- .../app/Magento/Setup/Test/Repository/RepoCredentials.xml | 2 +- .../Magento/Setup/Test/TestCase/AbstractExtensionTest.php | 2 +- .../Magento/Setup/Test/TestCase/EnableDisableModuleTest.php | 2 +- .../Magento/Setup/Test/TestCase/EnableDisableModuleTest.xml | 2 +- .../Magento/Setup/Test/TestCase/ExtensionMultipleTest.php | 2 +- .../Magento/Setup/Test/TestCase/ExtensionMultipleTest.xml | 2 +- .../Setup/Test/TestCase/ExtensionMultipleUpdateTest.php | 2 +- .../Setup/Test/TestCase/ExtensionMultipleUpdateTest.xml | 2 +- .../tests/app/Magento/Setup/Test/TestCase/ExtensionTest.php | 2 +- .../tests/app/Magento/Setup/Test/TestCase/ExtensionTest.xml | 2 +- .../app/Magento/Setup/Test/TestCase/UpgradeSystemTest.php | 2 +- .../app/Magento/Setup/Test/TestCase/UpgradeSystemTest.xml | 2 +- .../app/Magento/Shipping/Test/Block/Adminhtml/Form.php | 2 +- .../app/Magento/Shipping/Test/Block/Adminhtml/Form.xml | 2 +- .../Magento/Shipping/Test/Block/Adminhtml/Form/Items.php | 2 +- .../Shipping/Test/Block/Adminhtml/Form/Items/Product.php | 2 +- .../Shipping/Test/Block/Adminhtml/Form/Items/Product.xml | 2 +- .../Shipping/Test/Block/Adminhtml/Order/Tracking.php | 2 +- .../Shipping/Test/Block/Adminhtml/Order/Tracking/Item.php | 2 +- .../Shipping/Test/Block/Adminhtml/Order/Tracking/Item.xml | 2 +- .../Magento/Shipping/Test/Block/Adminhtml/Shipment/Grid.php | 2 +- .../Magento/Shipping/Test/Block/Adminhtml/View/Items.php | 2 +- .../tests/app/Magento/Shipping/Test/Block/Order/Info.php | 2 +- .../app/Magento/Shipping/Test/Block/Order/Shipment.php | 2 +- .../Magento/Shipping/Test/Block/Order/Shipment/Items.php | 2 +- .../Test/Constraint/AssertCityBasedShippingRateChanged.php | 2 +- .../Magento/Shipping/Test/Constraint/AssertNoShipButton.php | 2 +- .../Shipping/Test/Constraint/AssertShipTotalQuantity.php | 2 +- .../Test/Constraint/AssertShipmentInShipmentsGrid.php | 2 +- .../Test/Constraint/AssertShipmentInShipmentsTab.php | 2 +- .../Shipping/Test/Constraint/AssertShipmentItems.php | 2 +- .../Test/Constraint/AssertShipmentNotInShipmentsGrid.php | 2 +- .../Test/Constraint/AssertShipmentSuccessCreateMessage.php | 2 +- .../Test/Constraint/AssertShippingMethodOnPrintOrder.php | 2 +- .../tests/app/Magento/Shipping/Test/Fixture/Method.php | 2 +- .../Shipping/Test/Page/Adminhtml/OrderShipmentNew.xml | 2 +- .../Shipping/Test/Page/Adminhtml/OrderShipmentView.xml | 2 +- .../Shipping/Test/Page/Adminhtml/SalesShipmentView.xml | 2 +- .../Magento/Shipping/Test/Page/Adminhtml/ShipmentIndex.xml | 2 +- .../app/Magento/Shipping/Test/Page/SalesGuestPrint.xml | 2 +- .../tests/app/Magento/Shipping/Test/Page/ShipmentView.xml | 2 +- .../app/Magento/Shipping/Test/Repository/ConfigData.xml | 2 +- .../tests/app/Magento/Shipping/Test/Repository/Method.php | 2 +- .../Shipping/Test/TestCase/CityBasedShippingRateTest.php | 2 +- .../Shipping/Test/TestCase/CreateShipmentEntityTest.php | 2 +- .../Shipping/Test/TestCase/CreateShipmentEntityTest.xml | 2 +- .../Shipping/Test/TestStep/FillShippingAddressesStep.php | 2 +- .../functional/tests/app/Magento/Shipping/Test/etc/di.xml | 2 +- .../tests/app/Magento/Shipping/Test/etc/testcase.xml | 2 +- .../Magento/Sitemap/Test/Block/Adminhtml/SitemapGrid.php | 2 +- .../Sitemap/Test/Block/Adminhtml/SitemapPageActions.php | 2 +- .../Sitemap/Test/Constraint/AssertSitemapContent.php | 2 +- .../Test/Constraint/AssertSitemapFailFolderSaveMessage.php | 2 +- .../Test/Constraint/AssertSitemapFailPathSaveMessage.php | 2 +- .../Magento/Sitemap/Test/Constraint/AssertSitemapInGrid.php | 2 +- .../Sitemap/Test/Constraint/AssertSitemapNotInGrid.php | 2 +- .../Test/Constraint/AssertSitemapSuccessDeleteMessage.php | 2 +- .../Test/Constraint/AssertSitemapSuccessGenerateMessage.php | 2 +- .../AssertSitemapSuccessSaveAndGenerateMessages.php | 2 +- .../Test/Constraint/AssertSitemapSuccessSaveMessage.php | 2 +- .../tests/app/Magento/Sitemap/Test/Fixture/Sitemap.xml | 2 +- .../tests/app/Magento/Sitemap/Test/Handler/Sitemap/Curl.php | 2 +- .../Sitemap/Test/Handler/Sitemap/SitemapInterface.php | 2 +- .../app/Magento/Sitemap/Test/Page/Adminhtml/SitemapEdit.xml | 2 +- .../Magento/Sitemap/Test/Page/Adminhtml/SitemapIndex.xml | 2 +- .../app/Magento/Sitemap/Test/Page/Adminhtml/SitemapNew.xml | 2 +- .../tests/app/Magento/Sitemap/Test/Repository/Sitemap.xml | 2 +- .../Sitemap/Test/TestCase/CreateSitemapEntityTest.php | 2 +- .../Sitemap/Test/TestCase/CreateSitemapEntityTest.xml | 2 +- .../Sitemap/Test/TestCase/DeleteSitemapEntityTest.php | 2 +- .../Sitemap/Test/TestCase/DeleteSitemapEntityTest.xml | 2 +- .../app/Magento/Sitemap/Test/TestCase/NavigateMenuTest.xml | 2 +- .../tests/app/Magento/Sitemap/Test/etc/curl/di.xml | 4 ++-- .../functional/tests/app/Magento/Sitemap/Test/etc/di.xml | 2 +- .../tests/app/Magento/Store/Test/Block/Switcher.php | 2 +- .../Magento/Store/Test/Constraint/AssertStoreBackend.php | 2 +- .../Magento/Store/Test/Constraint/AssertStoreCodeInUrl.php | 2 +- .../Test/Constraint/AssertStoreDisabledErrorSaveMessage.php | 2 +- .../app/Magento/Store/Test/Constraint/AssertStoreForm.php | 2 +- .../Magento/Store/Test/Constraint/AssertStoreFrontend.php | 2 +- .../Magento/Store/Test/Constraint/AssertStoreGroupForm.php | 2 +- .../Store/Test/Constraint/AssertStoreGroupInGrid.php | 2 +- .../Test/Constraint/AssertStoreGroupNoDeleteButton.php | 2 +- .../Store/Test/Constraint/AssertStoreGroupNotInGrid.php | 2 +- .../Test/Constraint/AssertStoreGroupOnStoreViewForm.php | 2 +- .../AssertStoreGroupSuccessDeleteAndBackupMessages.php | 2 +- .../Constraint/AssertStoreGroupSuccessDeleteMessage.php | 2 +- .../Test/Constraint/AssertStoreGroupSuccessSaveMessage.php | 2 +- .../app/Magento/Store/Test/Constraint/AssertStoreInGrid.php | 2 +- .../Store/Test/Constraint/AssertStoreNoDeleteButton.php | 2 +- .../Magento/Store/Test/Constraint/AssertStoreNotInGrid.php | 2 +- .../Store/Test/Constraint/AssertStoreNotOnFrontend.php | 2 +- .../AssertStoreSuccessDeleteAndBackupMessages.php | 2 +- .../Test/Constraint/AssertStoreSuccessDeleteMessage.php | 2 +- .../Store/Test/Constraint/AssertStoreSuccessSaveMessage.php | 2 +- .../app/Magento/Store/Test/Constraint/AssertWebsiteForm.php | 2 +- .../Magento/Store/Test/Constraint/AssertWebsiteInGrid.php | 2 +- .../Store/Test/Constraint/AssertWebsiteNotInGrid.php | 2 +- .../Store/Test/Constraint/AssertWebsiteOnStoreForm.php | 2 +- .../AssertWebsiteSuccessDeleteAndBackupMessages.php | 2 +- .../Test/Constraint/AssertWebsiteSuccessDeleteMessage.php | 2 +- .../Test/Constraint/AssertWebsiteSuccessSaveMessage.php | 2 +- .../tests/app/Magento/Store/Test/Fixture/Store.xml | 2 +- .../tests/app/Magento/Store/Test/Fixture/Store/GroupId.php | 2 +- .../tests/app/Magento/Store/Test/Fixture/StoreGroup.xml | 2 +- .../Magento/Store/Test/Fixture/StoreGroup/CategoryId.php | 2 +- .../app/Magento/Store/Test/Fixture/StoreGroup/WebsiteId.php | 2 +- .../tests/app/Magento/Store/Test/Fixture/Website.xml | 2 +- .../tests/app/Magento/Store/Test/Handler/Store/Curl.php | 2 +- .../app/Magento/Store/Test/Handler/Store/StoreInterface.php | 2 +- .../app/Magento/Store/Test/Handler/StoreGroup/Curl.php | 2 +- .../Store/Test/Handler/StoreGroup/StoreGroupInterface.php | 2 +- .../tests/app/Magento/Store/Test/Handler/Website/Curl.php | 2 +- .../Magento/Store/Test/Handler/Website/WebsiteInterface.php | 2 +- .../tests/app/Magento/Store/Test/Repository/ConfigData.xml | 2 +- .../tests/app/Magento/Store/Test/Repository/Store.xml | 2 +- .../tests/app/Magento/Store/Test/Repository/StoreGroup.xml | 2 +- .../tests/app/Magento/Store/Test/Repository/Website.xml | 2 +- .../Test/TestCase/AccessAdminWithStoreCodeInUrlTest.php | 2 +- .../Test/TestCase/AccessAdminWithStoreCodeInUrlTest.xml | 2 +- .../Magento/Store/Test/TestCase/CreateStoreEntityTest.php | 2 +- .../Magento/Store/Test/TestCase/CreateStoreEntityTest.xml | 2 +- .../Store/Test/TestCase/CreateStoreGroupEntityTest.php | 2 +- .../Store/Test/TestCase/CreateStoreGroupEntityTest.xml | 2 +- .../Magento/Store/Test/TestCase/CreateWebsiteEntityTest.php | 2 +- .../Magento/Store/Test/TestCase/CreateWebsiteEntityTest.xml | 2 +- .../Magento/Store/Test/TestCase/DeleteStoreEntityTest.php | 2 +- .../Magento/Store/Test/TestCase/DeleteStoreEntityTest.xml | 2 +- .../Store/Test/TestCase/DeleteStoreGroupEntityTest.php | 2 +- .../Store/Test/TestCase/DeleteStoreGroupEntityTest.xml | 2 +- .../Magento/Store/Test/TestCase/DeleteWebsiteEntityTest.php | 2 +- .../Magento/Store/Test/TestCase/DeleteWebsiteEntityTest.xml | 2 +- .../Test/TestCase/MoveStoreToOtherGroupSameWebsiteTest.php | 2 +- .../Test/TestCase/MoveStoreToOtherGroupSameWebsiteTest.xml | 2 +- .../Magento/Store/Test/TestCase/UpdateStoreEntityTest.php | 2 +- .../Magento/Store/Test/TestCase/UpdateStoreEntityTest.xml | 2 +- .../Store/Test/TestCase/UpdateStoreGroupEntityTest.php | 2 +- .../Store/Test/TestCase/UpdateStoreGroupEntityTest.xml | 2 +- .../Magento/Store/Test/TestCase/UpdateWebsiteEntityTest.php | 2 +- .../Magento/Store/Test/TestCase/UpdateWebsiteEntityTest.xml | 2 +- .../functional/tests/app/Magento/Store/Test/etc/curl/di.xml | 2 +- .../functional/tests/app/Magento/Store/Test/etc/di.xml | 2 +- .../Swagger/Test/Constraint/AssertApiInfoTitleOnPage.php | 2 +- .../Test/Constraint/AssertEndpointContentDisplay.php | 2 +- .../Swagger/Test/Constraint/AssertServiceContentDisplay.php | 2 +- .../Test/Constraint/AssertSwaggerSectionLoadOnPage.php | 2 +- .../tests/app/Magento/Swagger/Test/Page/SwaggerUiPage.php | 2 +- .../Swagger/Test/TestCase/SwaggerUiForRestApiTest.php | 2 +- .../Swagger/Test/TestCase/SwaggerUiForRestApiTest.xml | 2 +- .../app/Magento/Swatches/Test/Block/Product/ListProduct.php | 2 +- .../Swatches/Test/Block/Product/ProductList/ProductItem.php | 2 +- .../Swatches/Test/Block/Product/ViewWithSwatches.php | 2 +- .../Test/Constraint/AssertSwatchConfigurableProductPage.php | 2 +- .../tests/app/Magento/Swatches/Test/Fixture/Cart/Item.php | 2 +- .../Magento/Swatches/Test/Fixture/ConfigurableProduct.xml | 2 +- .../Swatches/Test/Fixture/SwatchProductAttribute.xml | 2 +- .../Swatches/Test/Handler/SwatchProductAttribute/Curl.php | 2 +- .../SwatchProductAttributeInterface.php | 2 +- .../Swatches/Test/Page/Category/CatalogCategoryView.xml | 2 +- .../Swatches/Test/Page/Product/CatalogProductView.xml | 2 +- .../Swatches/Test/Repository/ConfigurableProduct.xml | 2 +- .../Test/Repository/ConfigurableProduct/CheckoutData.xml | 2 +- .../ConfigurableProduct/ConfigurableAttributesData.xml | 2 +- .../Swatches/Test/Repository/SwatchProductAttribute.xml | 2 +- .../AddConfigurableProductWithSwatchToShoppingCartTest.php | 2 +- .../AddConfigurableProductWithSwatchToShoppingCartTest.xml | 2 +- .../AddProductToCartFromCatalogCategoryPageStep.php | 2 +- .../tests/app/Magento/Swatches/Test/etc/curl/di.xml | 2 +- .../app/Magento/Tax/Test/Block/Adminhtml/Rate/Edit/Form.php | 2 +- .../app/Magento/Tax/Test/Block/Adminhtml/Rate/Edit/Form.xml | 2 +- .../Tax/Test/Block/Adminhtml/Rate/Edit/FormPageActions.php | 2 +- .../app/Magento/Tax/Test/Block/Adminhtml/Rate/Grid.php | 2 +- .../Tax/Test/Block/Adminhtml/Rate/GridPageActions.php | 2 +- .../app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/Form.php | 2 +- .../app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/Form.xml | 2 +- .../Magento/Tax/Test/Block/Adminhtml/Rule/Edit/TaxRate.php | 2 +- .../Magento/Tax/Test/Block/Adminhtml/Rule/Edit/TaxRate.xml | 2 +- .../app/Magento/Tax/Test/Block/Adminhtml/Rule/Grid.php | 2 +- .../Tax/Test/Constraint/AbstractAssertOrderTaxOnBackend.php | 2 +- .../AbstractAssertTaxCalculationAfterCheckout.php | 2 +- .../AbstractAssertTaxRuleIsAppliedToAllPrices.php | 2 +- .../Constraint/AbstractAssertTaxWithCrossBorderApplying.php | 2 +- .../AssertOrderTaxOnBackendExcludingIncludingTax.php | 2 +- .../Test/Constraint/AssertOrderTaxOnBackendExcludingTax.php | 2 +- .../Test/Constraint/AssertOrderTaxOnBackendIncludingTax.php | 2 +- ...sertTaxCalculationAfterCheckoutExcludingIncludingTax.php | 2 +- .../AssertTaxCalculationAfterCheckoutExcludingTax.php | 2 +- .../AssertTaxCalculationAfterCheckoutIncludingTax.php | 2 +- .../app/Magento/Tax/Test/Constraint/AssertTaxRateForm.php | 2 +- .../app/Magento/Tax/Test/Constraint/AssertTaxRateInGrid.php | 2 +- .../Magento/Tax/Test/Constraint/AssertTaxRateInTaxRule.php | 2 +- .../Magento/Tax/Test/Constraint/AssertTaxRateNotInGrid.php | 2 +- .../Tax/Test/Constraint/AssertTaxRateNotInTaxRule.php | 2 +- .../Test/Constraint/AssertTaxRateSuccessDeleteMessage.php | 2 +- .../Tax/Test/Constraint/AssertTaxRateSuccessSaveMessage.php | 2 +- .../Magento/Tax/Test/Constraint/AssertTaxRuleApplying.php | 2 +- .../app/Magento/Tax/Test/Constraint/AssertTaxRuleForm.php | 2 +- .../app/Magento/Tax/Test/Constraint/AssertTaxRuleInGrid.php | 2 +- .../Magento/Tax/Test/Constraint/AssertTaxRuleIsApplied.php | 2 +- ...sertTaxRuleIsAppliedToAllPricesExcludingIncludingTax.php | 2 +- .../AssertTaxRuleIsAppliedToAllPricesExcludingTax.php | 2 +- .../AssertTaxRuleIsAppliedToAllPricesIncludingTax.php | 2 +- .../Tax/Test/Constraint/AssertTaxRuleIsNotApplied.php | 2 +- .../Magento/Tax/Test/Constraint/AssertTaxRuleNotInGrid.php | 2 +- .../Test/Constraint/AssertTaxRuleSuccessDeleteMessage.php | 2 +- .../Tax/Test/Constraint/AssertTaxRuleSuccessSaveMessage.php | 2 +- .../Tax/Test/Constraint/AssertTaxWithCrossBorderApplied.php | 2 +- .../Test/Constraint/AssertTaxWithCrossBorderNotApplied.php | 2 +- .../tests/app/Magento/Tax/Test/Fixture/TaxClass.xml | 2 +- .../tests/app/Magento/Tax/Test/Fixture/TaxRate.xml | 2 +- .../tests/app/Magento/Tax/Test/Fixture/TaxRule.xml | 2 +- .../tests/app/Magento/Tax/Test/Fixture/TaxRule/TaxClass.php | 2 +- .../tests/app/Magento/Tax/Test/Fixture/TaxRule/TaxRate.php | 2 +- .../app/Magento/Tax/Test/Handler/Curl/RemoveTaxRule.php | 2 +- .../tests/app/Magento/Tax/Test/Handler/TaxClass/Curl.php | 2 +- .../Magento/Tax/Test/Handler/TaxClass/TaxClassInterface.php | 2 +- .../tests/app/Magento/Tax/Test/Handler/TaxClass/Webapi.php | 2 +- .../tests/app/Magento/Tax/Test/Handler/TaxRate/Curl.php | 2 +- .../Magento/Tax/Test/Handler/TaxRate/TaxRateInterface.php | 2 +- .../tests/app/Magento/Tax/Test/Handler/TaxRate/Webapi.php | 2 +- .../tests/app/Magento/Tax/Test/Handler/TaxRule/Curl.php | 2 +- .../Magento/Tax/Test/Handler/TaxRule/TaxRuleInterface.php | 2 +- .../tests/app/Magento/Tax/Test/Handler/TaxRule/Webapi.php | 2 +- .../app/Magento/Tax/Test/Page/Adminhtml/TaxRateIndex.xml | 2 +- .../app/Magento/Tax/Test/Page/Adminhtml/TaxRateNew.xml | 2 +- .../app/Magento/Tax/Test/Page/Adminhtml/TaxRuleIndex.xml | 2 +- .../app/Magento/Tax/Test/Page/Adminhtml/TaxRuleNew.xml | 2 +- .../tests/app/Magento/Tax/Test/Repository/ConfigData.xml | 2 +- .../tests/app/Magento/Tax/Test/Repository/TaxClass.xml | 2 +- .../tests/app/Magento/Tax/Test/Repository/TaxRate.xml | 2 +- .../tests/app/Magento/Tax/Test/Repository/TaxRule.xml | 2 +- .../Magento/Tax/Test/TestCase/ApplyTaxBasedOnVatIdTest.php | 2 +- .../Magento/Tax/Test/TestCase/ApplyTaxBasedOnVatIdTest.xml | 2 +- .../Magento/Tax/Test/TestCase/CreateTaxRateEntityTest.php | 2 +- .../Magento/Tax/Test/TestCase/CreateTaxRateEntityTest.xml | 2 +- .../Magento/Tax/Test/TestCase/CreateTaxRuleEntityTest.php | 2 +- .../Magento/Tax/Test/TestCase/CreateTaxRuleEntityTest.xml | 2 +- .../Magento/Tax/Test/TestCase/DeleteTaxRateEntityTest.php | 2 +- .../Magento/Tax/Test/TestCase/DeleteTaxRateEntityTest.xml | 2 +- .../Magento/Tax/Test/TestCase/DeleteTaxRuleEntityTest.php | 2 +- .../Magento/Tax/Test/TestCase/DeleteTaxRuleEntityTest.xml | 2 +- .../app/Magento/Tax/Test/TestCase/NavigateMenuTest.xml | 2 +- .../app/Magento/Tax/Test/TestCase/TaxCalculationTest.php | 2 +- .../app/Magento/Tax/Test/TestCase/TaxCalculationTest.xml | 2 +- .../Magento/Tax/Test/TestCase/TaxWithCrossBorderTest.php | 2 +- .../Magento/Tax/Test/TestCase/TaxWithCrossBorderTest.xml | 2 +- .../Magento/Tax/Test/TestCase/UpdateTaxRateEntityTest.php | 2 +- .../Magento/Tax/Test/TestCase/UpdateTaxRateEntityTest.xml | 2 +- .../Magento/Tax/Test/TestCase/UpdateTaxRuleEntityTest.php | 2 +- .../Magento/Tax/Test/TestCase/UpdateTaxRuleEntityTest.xml | 2 +- .../app/Magento/Tax/Test/TestStep/CreateTaxRuleStep.php | 2 +- .../app/Magento/Tax/Test/TestStep/DeleteAllTaxRulesStep.php | 2 +- .../functional/tests/app/Magento/Tax/Test/etc/curl/di.xml | 2 +- dev/tests/functional/tests/app/Magento/Tax/Test/etc/di.xml | 2 +- .../functional/tests/app/Magento/Tax/Test/etc/testcase.xml | 2 +- .../functional/tests/app/Magento/Tax/Test/etc/webapi/di.xml | 2 +- .../tests/app/Magento/Theme/Test/Block/Html/Breadcrumbs.php | 2 +- .../tests/app/Magento/Theme/Test/Block/Html/Footer.php | 2 +- .../tests/app/Magento/Theme/Test/Block/Html/Logo.php | 2 +- .../tests/app/Magento/Theme/Test/Block/Html/Title.php | 2 +- .../tests/app/Magento/Theme/Test/Block/Html/Topmenu.php | 2 +- .../functional/tests/app/Magento/Theme/Test/Block/Links.php | 2 +- .../app/Magento/Theme/Test/Page/CheckoutOnepageSuccess.xml | 2 +- .../app/Magento/Theme/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Magento/Ui/Test/Block/Adminhtml/AbstractContainer.php | 2 +- .../Ui/Test/Block/Adminhtml/AbstractFormContainers.php | 2 +- .../tests/app/Magento/Ui/Test/Block/Adminhtml/DataGrid.php | 2 +- .../app/Magento/Ui/Test/Block/Adminhtml/FormSections.php | 2 +- .../tests/app/Magento/Ui/Test/Block/Adminhtml/Modal.php | 2 +- .../tests/app/Magento/Ui/Test/Block/Adminhtml/Section.php | 2 +- .../functional/tests/app/Magento/Ui/Test/Block/Messages.php | 2 +- .../app/Magento/Ui/Test/Constraint/AssertGridFiltering.php | 2 +- .../Magento/Ui/Test/Constraint/AssertGridFullTextSearch.php | 2 +- .../app/Magento/Ui/Test/Constraint/AssertGridSorting.php | 2 +- .../app/Magento/Ui/Test/TestCase/GridFilteringTest.php | 2 +- .../app/Magento/Ui/Test/TestCase/GridFullTextSearchTest.php | 2 +- .../tests/app/Magento/Ui/Test/TestCase/GridSortingTest.php | 2 +- dev/tests/functional/tests/app/Magento/Ui/Test/etc/di.xml | 2 +- .../tests/app/Magento/Ups/Test/Repository/ConfigData.xml | 2 +- .../app/Magento/Ups/Test/TestCase/OnePageCheckoutTest.xml | 2 +- .../Test/Block/Adminhtml/Catalog/Category/Grid.php | 2 +- .../Test/Block/Adminhtml/Catalog/Category/Tree.php | 2 +- .../Test/Block/Adminhtml/Catalog/Edit/UrlRewriteForm.php | 2 +- .../Test/Block/Adminhtml/Catalog/Edit/UrlRewriteForm.xml | 2 +- .../Test/Block/Adminhtml/Catalog/Product/Grid.php | 2 +- .../UrlRewrite/Test/Block/Adminhtml/Cms/Page/Grid.php | 2 +- .../Magento/UrlRewrite/Test/Block/Adminhtml/Selector.php | 2 +- .../Constraint/AssertCategoryUrlWithCustomStoreView.php | 2 +- .../Test/Constraint/AssertPageByUrlRewriteIsNotFound.php | 2 +- .../Constraint/AssertUrlRewriteAfterDeletingCategory.php | 2 +- .../Test/Constraint/AssertUrlRewriteCategoryInGrid.php | 2 +- .../Test/Constraint/AssertUrlRewriteCategoryNotInGrid.php | 2 +- .../Test/Constraint/AssertUrlRewriteCategoryRedirect.php | 2 +- .../Test/Constraint/AssertUrlRewriteCustomRedirect.php | 2 +- .../Constraint/AssertUrlRewriteCustomSearchRedirect.php | 2 +- .../Test/Constraint/AssertUrlRewriteDeletedMessage.php | 2 +- .../UrlRewrite/Test/Constraint/AssertUrlRewriteInGrid.php | 2 +- .../Test/Constraint/AssertUrlRewriteNotInGrid.php | 2 +- .../Test/Constraint/AssertUrlRewriteProductInGrid.php | 2 +- .../Test/Constraint/AssertUrlRewriteProductNotInGrid.php | 2 +- .../Test/Constraint/AssertUrlRewriteProductRedirect.php | 2 +- .../Test/Constraint/AssertUrlRewriteSaveMessage.php | 2 +- .../Constraint/AssertUrlRewriteSuccessOutsideRedirect.php | 2 +- .../Constraint/AssertUrlRewriteUpdatedProductInGrid.php | 2 +- .../app/Magento/UrlRewrite/Test/Fixture/UrlRewrite.xml | 2 +- .../Magento/UrlRewrite/Test/Fixture/UrlRewrite/StoreId.php | 2 +- .../UrlRewrite/Test/Fixture/UrlRewrite/TargetPath.php | 2 +- .../app/Magento/UrlRewrite/Test/Handler/UrlRewrite/Curl.php | 2 +- .../Test/Handler/UrlRewrite/UrlRewriteInterface.php | 2 +- .../UrlRewrite/Test/Page/Adminhtml/UrlRewriteEdit.xml | 2 +- .../UrlRewrite/Test/Page/Adminhtml/UrlRewriteIndex.xml | 2 +- .../app/Magento/UrlRewrite/Test/Repository/UrlRewrite.xml | 2 +- .../UrlRewrite/Test/TestCase/CategoryUrlRewriteTest.php | 2 +- .../UrlRewrite/Test/TestCase/CategoryUrlRewriteTest.xml | 2 +- .../Test/TestCase/CreateCategoryRewriteEntityTest.php | 2 +- .../Test/TestCase/CreateCategoryRewriteEntityTest.xml | 2 +- .../Test/TestCase/CreateCustomUrlRewriteEntityTest.php | 2 +- .../Test/TestCase/CreateCustomUrlRewriteEntityTest.xml | 2 +- .../Test/TestCase/CreateProductUrlRewriteEntityTest.php | 2 +- .../Test/TestCase/CreateProductUrlRewriteEntityTest.xml | 2 +- .../CreateProductWithSeveralWebsitesUrlRewriteTest.php | 2 +- .../CreateProductWithSeveralWebsitesUrlRewriteTest.xml | 2 +- .../Test/TestCase/DeleteCategoryUrlRewriteEntityTest.php | 2 +- .../Test/TestCase/DeleteCategoryUrlRewriteEntityTest.xml | 2 +- .../Test/TestCase/DeleteCustomUrlRewriteEntityTest.php | 2 +- .../Test/TestCase/DeleteCustomUrlRewriteEntityTest.xml | 2 +- .../Test/TestCase/DeleteProductUrlRewriteEntityTest.php | 2 +- .../Test/TestCase/DeleteProductUrlRewriteEntityTest.xml | 2 +- .../Magento/UrlRewrite/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Test/TestCase/UpdateCategoryUrlRewriteEntityTest.php | 2 +- .../Test/TestCase/UpdateCategoryUrlRewriteEntityTest.xml | 2 +- .../Test/TestCase/UpdateCustomUrlRewriteEntityTest.php | 2 +- .../Test/TestCase/UpdateCustomUrlRewriteEntityTest.xml | 2 +- .../Test/TestCase/UpdateProductUrlRewriteEntityTest.php | 2 +- .../Test/TestCase/UpdateProductUrlRewriteEntityTest.xml | 2 +- .../tests/app/Magento/UrlRewrite/Test/etc/curl/di.xml | 2 +- .../Magento/User/Test/Block/Adminhtml/Role/PageActions.php | 2 +- .../app/Magento/User/Test/Block/Adminhtml/Role/RoleForm.php | 2 +- .../app/Magento/User/Test/Block/Adminhtml/Role/RoleForm.xml | 2 +- .../app/Magento/User/Test/Block/Adminhtml/Role/Tab/Role.php | 2 +- .../User/Test/Block/Adminhtml/Role/Tab/User/Grid.php | 2 +- .../app/Magento/User/Test/Block/Adminhtml/RoleGrid.php | 2 +- .../Magento/User/Test/Block/Adminhtml/User/Edit/Form.php | 2 +- .../User/Test/Block/Adminhtml/User/Edit/PageActions.php | 2 +- .../User/Test/Block/Adminhtml/User/Edit/Tab/Roles.php | 2 +- .../app/Magento/User/Test/Block/Adminhtml/User/Tab/Role.php | 2 +- .../User/Test/Block/Adminhtml/User/Tab/Role/Grid.php | 2 +- .../app/Magento/User/Test/Block/Adminhtml/User/UserForm.php | 2 +- .../app/Magento/User/Test/Block/Adminhtml/User/UserForm.xml | 2 +- .../app/Magento/User/Test/Block/Adminhtml/UserGrid.php | 2 +- .../Constraint/AssertAccessTokensErrorRevokeMessage.php | 2 +- .../Constraint/AssertImpossibleDeleteYourOwnAccount.php | 2 +- .../Test/Constraint/AssertImpossibleDeleteYourOwnRole.php | 2 +- .../User/Test/Constraint/AssertIncorrectUserPassword.php | 2 +- .../app/Magento/User/Test/Constraint/AssertRoleInGrid.php | 2 +- .../Magento/User/Test/Constraint/AssertRoleNotInGrid.php | 2 +- .../User/Test/Constraint/AssertRoleSuccessDeleteMessage.php | 2 +- .../User/Test/Constraint/AssertRoleSuccessSaveMessage.php | 2 +- .../User/Test/Constraint/AssertUserDuplicateMessage.php | 2 +- .../Constraint/AssertUserFailedLoginByPermissionMessage.php | 2 +- .../User/Test/Constraint/AssertUserFailedLoginMessage.php | 2 +- .../app/Magento/User/Test/Constraint/AssertUserInGrid.php | 2 +- .../Constraint/AssertUserInvalidEmailHostnameMessage.php | 2 +- .../User/Test/Constraint/AssertUserInvalidEmailMessage.php | 2 +- .../Magento/User/Test/Constraint/AssertUserNotInGrid.php | 2 +- .../Constraint/AssertUserPasswordChangedSuccessfully.php | 2 +- .../User/Test/Constraint/AssertUserRoleRestrictedAccess.php | 2 +- .../User/Test/Constraint/AssertUserSuccessDeleteMessage.php | 2 +- .../User/Test/Constraint/AssertUserSuccessLogOut.php | 2 +- .../Magento/User/Test/Constraint/AssertUserSuccessLogin.php | 2 +- .../User/Test/Constraint/AssertUserSuccessSaveMessage.php | 2 +- .../functional/tests/app/Magento/User/Test/Fixture/Role.xml | 2 +- .../app/Magento/User/Test/Fixture/Role/InRoleUsers.php | 2 +- .../functional/tests/app/Magento/User/Test/Fixture/User.xml | 2 +- .../app/Magento/User/Test/Fixture/User/CurrentPassword.php | 2 +- .../tests/app/Magento/User/Test/Fixture/User/RoleId.php | 2 +- .../tests/app/Magento/User/Test/Handler/Role/Curl.php | 2 +- .../app/Magento/User/Test/Handler/Role/RoleInterface.php | 2 +- .../tests/app/Magento/User/Test/Handler/User/Curl.php | 2 +- .../app/Magento/User/Test/Handler/User/UserInterface.php | 2 +- .../tests/app/Magento/User/Test/Page/Adminhtml/UserEdit.xml | 2 +- .../app/Magento/User/Test/Page/Adminhtml/UserIndex.xml | 2 +- .../Magento/User/Test/Page/Adminhtml/UserRoleEditRole.xml | 2 +- .../app/Magento/User/Test/Page/Adminhtml/UserRoleIndex.xml | 2 +- .../tests/app/Magento/User/Test/Repository/ConfigData.xml | 2 +- .../tests/app/Magento/User/Test/Repository/Role.xml | 2 +- .../tests/app/Magento/User/Test/Repository/User.xml | 2 +- .../User/Test/TestCase/CreateAdminUserEntityTest.php | 2 +- .../User/Test/TestCase/CreateAdminUserEntityTest.xml | 2 +- .../User/Test/TestCase/CreateAdminUserRoleEntityTest.php | 2 +- .../User/Test/TestCase/CreateAdminUserRoleEntityTest.xml | 2 +- .../Magento/User/Test/TestCase/CustomAclPermissionTest.php | 2 +- .../User/Test/TestCase/DeleteAdminUserEntityTest.php | 2 +- .../User/Test/TestCase/DeleteAdminUserEntityTest.xml | 2 +- .../Magento/User/Test/TestCase/DeleteUserRoleEntityTest.php | 2 +- .../Magento/User/Test/TestCase/DeleteUserRoleEntityTest.xml | 2 +- .../Magento/User/Test/TestCase/LockAdminUserEntityTest.php | 2 +- .../Magento/User/Test/TestCase/LockAdminUserEntityTest.xml | 2 +- .../app/Magento/User/Test/TestCase/NavigateMenuTest.xml | 2 +- .../RevokeAllAccessTokensForAdminWithoutTokensTest.php | 2 +- .../RevokeAllAccessTokensForAdminWithoutTokensTest.xml | 2 +- .../User/Test/TestCase/UpdateAdminUserEntityTest.php | 2 +- .../User/Test/TestCase/UpdateAdminUserEntityTest.xml | 2 +- .../User/Test/TestCase/UpdateAdminUserRoleEntityTest.php | 2 +- .../User/Test/TestCase/UpdateAdminUserRoleEntityTest.xml | 2 +- .../UpdatePasswordUserEntityPciRequirementsTest.php | 2 +- .../UpdatePasswordUserEntityPciRequirementsTest.xml | 2 +- .../Test/TestCase/UserLoginAfterChangingPermissionsTest.php | 2 +- .../Test/TestCase/UserLoginAfterChangingPermissionsTest.xml | 2 +- .../Magento/User/Test/TestStep/LoginUserOnBackendStep.php | 2 +- .../Magento/User/Test/TestStep/LogoutUserOnBackendStep.php | 2 +- .../functional/tests/app/Magento/User/Test/etc/curl/di.xml | 4 ++-- .../tests/app/Magento/Usps/Test/Repository/ConfigData.xml | 2 +- .../app/Magento/Usps/Test/TestCase/OnePageCheckoutTest.xml | 2 +- .../Block/Adminhtml/System/Variable/Edit/VariableForm.php | 2 +- .../Block/Adminhtml/System/Variable/Edit/VariableForm.xml | 2 +- .../Block/Adminhtml/System/Variable/FormPageActions.php | 2 +- .../Variable/Test/Block/Adminhtml/System/Variable/Grid.php | 2 +- .../Variable/Test/Constraint/AssertCustomVariableForm.php | 2 +- .../Variable/Test/Constraint/AssertCustomVariableInGrid.php | 2 +- .../Variable/Test/Constraint/AssertCustomVariableInPage.php | 2 +- .../Constraint/AssertCustomVariableNotInCmsPageForm.php | 2 +- .../Test/Constraint/AssertCustomVariableNotInGrid.php | 2 +- .../Constraint/AssertCustomVariableRestrictedAccess.php | 2 +- .../Constraint/AssertCustomVariableSuccessDeleteMessage.php | 2 +- .../Constraint/AssertCustomVariableSuccessSaveMessage.php | 2 +- .../app/Magento/Variable/Test/Fixture/SystemVariable.xml | 2 +- .../Magento/Variable/Test/Handler/SystemVariable/Curl.php | 2 +- .../Test/Handler/SystemVariable/SystemVariableInterface.php | 2 +- .../Variable/Test/Page/Adminhtml/SystemVariableIndex.xml | 2 +- .../Variable/Test/Page/Adminhtml/SystemVariableNew.xml | 2 +- .../app/Magento/Variable/Test/Repository/SystemVariable.xml | 2 +- .../Test/TestCase/CreateCustomVariableEntityTest.php | 2 +- .../Test/TestCase/CreateCustomVariableEntityTest.xml | 2 +- .../Variable/Test/TestCase/CustomAclPermissionTest.xml | 2 +- .../Test/TestCase/DeleteCustomVariableEntityTest.php | 2 +- .../Test/TestCase/DeleteCustomVariableEntityTest.xml | 2 +- .../app/Magento/Variable/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Test/TestCase/UpdateCustomVariableEntityTest.php | 2 +- .../Test/TestCase/UpdateCustomVariableEntityTest.xml | 2 +- .../tests/app/Magento/Variable/Test/etc/curl/di.xml | 2 +- .../Vault/Test/Block/Onepage/Payment/Method/Vault.php | 2 +- .../tests/app/Magento/Vault/Test/Block/StoredPayments.php | 2 +- .../Constraint/AssertCreditCardNotPresentOnCheckout.php | 2 +- .../Constraint/AssertSaveCreditCardOptionNotPresent.php | 2 +- .../Test/Constraint/AssertStoredPaymentDeletedMessage.php | 2 +- .../tests/app/Magento/Vault/Test/Page/CheckoutOnepage.xml | 2 +- .../app/Magento/Vault/Test/Page/StoredPaymentMethods.xml | 2 +- .../Vault/Test/TestCase/CreateVaultOrderBackendTest.php | 2 +- .../Vault/Test/TestCase/DeleteSavedCreditCardTest.php | 2 +- .../Vault/Test/TestCase/DeleteSavedCreditCardTest.xml | 2 +- .../Magento/Vault/Test/TestCase/ReorderUsingVaultTest.php | 2 +- .../Magento/Vault/Test/TestCase/UseVaultOnCheckoutTest.php | 2 +- .../Vault/Test/TestStep/CheckSaveCreditCardOptionStep.php | 2 +- .../Test/TestStep/DeleteCreditCardFromMyAccountStep.php | 2 +- .../Magento/Vault/Test/TestStep/DeleteStoredPaymentStep.php | 2 +- .../Vault/Test/TestStep/SaveCreditCardOnBackendStep.php | 2 +- .../app/Magento/Vault/Test/TestStep/SaveCreditCardStep.php | 2 +- .../Vault/Test/TestStep/UseSavedPaymentMethodStep.php | 2 +- .../Vault/Test/TestStep/UseVaultPaymentTokenStep.php | 2 +- .../functional/tests/app/Magento/Vault/Test/etc/di.xml | 2 +- .../tests/app/Magento/Vault/Test/etc/testcase.xml | 2 +- .../Adminhtml/Product/Edit/Section/ProductDetails/Fpt.php | 2 +- .../functional/tests/app/Magento/Weee/Test/Block/Cart.php | 2 +- .../tests/app/Magento/Weee/Test/Block/Cart/CartItem.php | 2 +- .../tests/app/Magento/Weee/Test/Block/Cart/CartItem/Fpt.php | 2 +- .../tests/app/Magento/Weee/Test/Block/Cart/Totals.php | 2 +- .../tests/app/Magento/Weee/Test/Block/Cart/Totals/Fpt.php | 2 +- .../app/Magento/Weee/Test/Block/Product/ListProduct.php | 2 +- .../tests/app/Magento/Weee/Test/Block/Product/Price.php | 2 +- .../Weee/Test/Block/Product/ProductList/ProductItem.php | 2 +- .../tests/app/Magento/Weee/Test/Block/Product/View.php | 2 +- .../app/Magento/Weee/Test/Constraint/AssertFptApplied.php | 2 +- .../Magento/Weee/Test/Page/Category/CatalogCategoryView.xml | 2 +- .../tests/app/Magento/Weee/Test/Page/CheckoutCart.xml | 2 +- .../Magento/Weee/Test/Page/Product/CatalogProductView.xml | 4 ++-- .../tests/app/Magento/Weee/Test/Repository/ConfigData.xml | 2 +- .../app/Magento/Weee/Test/TestCase/CreateTaxWithFptTest.php | 2 +- .../app/Magento/Weee/Test/TestCase/CreateTaxWithFptTest.xml | 2 +- dev/tests/functional/tests/app/Magento/Weee/Test/etc/di.xml | 2 +- .../Widget/Test/Block/Adminhtml/Widget/ChosenOption.php | 2 +- .../Block/Adminhtml/Widget/Instance/Edit/Tab/Parameters.php | 2 +- .../Edit/Tab/ParametersType/CatalogCategoryLink.php | 2 +- .../Edit/Tab/ParametersType/CatalogCategoryLink.xml | 2 +- .../Edit/Tab/ParametersType/CatalogCategoryLink/Form.php | 2 +- .../Edit/Tab/ParametersType/CatalogCategoryLink/Form.xml | 2 +- .../Edit/Tab/ParametersType/CatalogNewProductsList.php | 2 +- .../Edit/Tab/ParametersType/CatalogNewProductsList.xml | 2 +- .../Instance/Edit/Tab/ParametersType/CatalogProductLink.php | 2 +- .../Instance/Edit/Tab/ParametersType/CatalogProductLink.xml | 2 +- .../Edit/Tab/ParametersType/CatalogProductLink/Grid.php | 2 +- .../Widget/Instance/Edit/Tab/ParametersType/CmsPageLink.php | 2 +- .../Widget/Instance/Edit/Tab/ParametersType/CmsPageLink.xml | 2 +- .../Instance/Edit/Tab/ParametersType/CmsPageLink/Grid.php | 2 +- .../Instance/Edit/Tab/ParametersType/CmsStaticBlock.php | 2 +- .../Instance/Edit/Tab/ParametersType/CmsStaticBlock.xml | 2 +- .../Edit/Tab/ParametersType/CmsStaticBlock/Grid.php | 2 +- .../Instance/Edit/Tab/ParametersType/ParametersForm.php | 2 +- .../Edit/Tab/ParametersType/RecentlyComparedProducts.php | 2 +- .../Edit/Tab/ParametersType/RecentlyComparedProducts.xml | 2 +- .../Edit/Tab/ParametersType/RecentlyViewedProducts.php | 2 +- .../Edit/Tab/ParametersType/RecentlyViewedProducts.xml | 2 +- .../Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php | 2 +- .../Adminhtml/Widget/Instance/Edit/Tab/WidgetInstance.php | 2 +- .../Instance/Edit/Tab/WidgetInstanceType/Categories.php | 2 +- .../Instance/Edit/Tab/WidgetInstanceType/Categories.xml | 2 +- .../Instance/Edit/Tab/WidgetInstanceType/GenericPages.php | 2 +- .../Instance/Edit/Tab/WidgetInstanceType/GenericPages.xml | 2 +- .../Instance/Edit/Tab/WidgetInstanceType/Product/Grid.php | 2 +- .../Instance/Edit/Tab/WidgetInstanceType/Products.php | 2 +- .../Instance/Edit/Tab/WidgetInstanceType/Products.xml | 2 +- .../Edit/Tab/WidgetInstanceType/WidgetInstanceForm.php | 2 +- .../Block/Adminhtml/Widget/Instance/Edit/WidgetForm.php | 2 +- .../Block/Adminhtml/Widget/Instance/Edit/WidgetForm.xml | 2 +- .../Widget/Test/Block/Adminhtml/Widget/WidgetGrid.php | 2 +- .../app/Magento/Widget/Test/Block/Adminhtml/WidgetForm.php | 2 +- .../app/Magento/Widget/Test/Block/Adminhtml/WidgetForm.xml | 2 +- .../tests/app/Magento/Widget/Test/Block/WidgetView.php | 2 +- .../Test/Constraint/AssertThemeFilterValuesOnWidgetGrid.php | 2 +- .../Test/Constraint/AssertWidgetAbsentOnFrontendHome.php | 2 +- .../Test/Constraint/AssertWidgetCatalogCategoryLink.php | 2 +- .../Test/Constraint/AssertWidgetCatalogNewProductsList.php | 2 +- .../Widget/Test/Constraint/AssertWidgetCmsPageLink.php | 2 +- .../Magento/Widget/Test/Constraint/AssertWidgetInGrid.php | 2 +- .../Test/Constraint/AssertWidgetOnFrontendInCatalog.php | 2 +- .../Widget/Test/Constraint/AssertWidgetOnProductPage.php | 2 +- .../Widget/Test/Constraint/AssertWidgetProductLink.php | 2 +- .../Constraint/AssertWidgetRecentlyComparedProducts.php | 2 +- .../Test/Constraint/AssertWidgetRecentlyViewedProducts.php | 2 +- .../Test/Constraint/AssertWidgetSuccessDeleteMessage.php | 2 +- .../Test/Constraint/AssertWidgetSuccessSaveMessage.php | 2 +- .../Magento/Widget/Test/Constraint/AssertWidgetsInGrid.php | 2 +- .../tests/app/Magento/Widget/Test/Fixture/Widget.xml | 2 +- .../app/Magento/Widget/Test/Fixture/Widget/Parameters.php | 2 +- .../app/Magento/Widget/Test/Fixture/Widget/StoreIds.php | 2 +- .../Magento/Widget/Test/Fixture/Widget/WidgetInstance.php | 2 +- .../tests/app/Magento/Widget/Test/Handler/Widget/Curl.php | 2 +- .../Magento/Widget/Test/Handler/Widget/WidgetInterface.php | 2 +- .../Widget/Test/Page/Adminhtml/WidgetInstanceEdit.xml | 2 +- .../Widget/Test/Page/Adminhtml/WidgetInstanceIndex.xml | 2 +- .../Widget/Test/Page/Adminhtml/WidgetInstanceNew.xml | 2 +- .../tests/app/Magento/Widget/Test/Repository/Widget.xml | 2 +- .../Magento/Widget/Test/Repository/Widget/Parameters.xml | 2 +- .../Widget/Test/Repository/Widget/WidgetInstance.xml | 2 +- .../Widget/Test/TestCase/AbstractCreateWidgetEntityTest.php | 2 +- .../Magento/Widget/Test/TestCase/CreateWidgetEntityTest.php | 2 +- .../Magento/Widget/Test/TestCase/CreateWidgetEntityTest.xml | 2 +- .../Widget/Test/TestCase/CreateWidgetsEntityTest.php | 2 +- .../Widget/Test/TestCase/CreateWidgetsEntityTest.xml | 2 +- .../Magento/Widget/Test/TestCase/DeleteWidgetEntityTest.php | 2 +- .../Magento/Widget/Test/TestCase/DeleteWidgetEntityTest.xml | 2 +- .../app/Magento/Widget/Test/TestCase/NavigateMenuTest.xml | 2 +- .../Magento/Widget/Test/TestStep/DeleteAllWidgetsStep.php | 2 +- .../tests/app/Magento/Widget/Test/etc/curl/di.xml | 2 +- .../functional/tests/app/Magento/Widget/Test/etc/di.xml | 2 +- .../Test/Block/Adminhtml/Customer/Edit/Tab/Wishlist.php | 2 +- .../Block/Adminhtml/Customer/Edit/Tab/Wishlist/Grid.php | 2 +- .../Wishlist/Test/Block/Adminhtml/Edit/CustomerForm.xml | 2 +- .../app/Magento/Wishlist/Test/Block/Customer/Sharing.php | 2 +- .../app/Magento/Wishlist/Test/Block/Customer/Sharing.xml | 2 +- .../app/Magento/Wishlist/Test/Block/Customer/Wishlist.php | 2 +- .../Magento/Wishlist/Test/Block/Customer/Wishlist/Items.php | 2 +- .../Wishlist/Test/Block/Customer/Wishlist/Items/Product.php | 2 +- .../Wishlist/Test/Block/Customer/Wishlist/Items/Product.xml | 2 +- .../Constraint/AbstractAssertWishlistProductDetails.php | 2 +- .../Constraint/AssertAddProductToWishlistSuccessMessage.php | 2 +- .../AssertMoveProductToWishlistSuccessMessage.php | 2 +- .../Test/Constraint/AssertProductDetailsInWishlist.php | 2 +- .../AssertProductInCustomerWishlistOnBackendGrid.php | 2 +- .../AssertProductIsPresentInCustomerBackendWishlist.php | 2 +- .../Test/Constraint/AssertProductIsPresentInWishlist.php | 2 +- .../Test/Constraint/AssertProductPriceIsNotZero.php | 2 +- .../Test/Constraint/AssertProductsIsAbsentInWishlist.php | 2 +- .../Wishlist/Test/Constraint/AssertWishlistIsEmpty.php | 2 +- .../Wishlist/Test/Constraint/AssertWishlistShareMessage.php | 2 +- .../tests/app/Magento/Wishlist/Test/Page/WishlistIndex.xml | 2 +- .../tests/app/Magento/Wishlist/Test/Page/WishlistShare.xml | 2 +- .../Magento/Wishlist/Test/TestCase/AbstractWishlistTest.php | 2 +- .../Test/TestCase/AddProductToWishlistEntityTest.php | 2 +- .../Test/TestCase/AddProductToWishlistEntityTest.xml | 2 +- .../AddProductsToCartFromCustomerWishlistOnFrontendTest.php | 2 +- .../AddProductsToCartFromCustomerWishlistOnFrontendTest.xml | 2 +- .../ConfigureProductInCustomerWishlistOnBackendTest.php | 2 +- .../ConfigureProductInCustomerWishlistOnBackendTest.xml | 2 +- .../ConfigureProductInCustomerWishlistOnFrontendTest.php | 2 +- .../ConfigureProductInCustomerWishlistOnFrontendTest.xml | 2 +- .../DeleteProductFromCustomerWishlistOnBackendTest.php | 2 +- .../DeleteProductFromCustomerWishlistOnBackendTest.xml | 2 +- .../TestCase/DeleteProductsFromWishlistOnFrontendTest.php | 2 +- .../TestCase/DeleteProductsFromWishlistOnFrontendTest.xml | 2 +- .../TestCase/MoveProductFromShoppingCartToWishlistTest.php | 2 +- .../TestCase/MoveProductFromShoppingCartToWishlistTest.xml | 2 +- .../Wishlist/Test/TestCase/ShareWishlistEntityTest.php | 2 +- .../Wishlist/Test/TestCase/ShareWishlistEntityTest.xml | 2 +- .../TestCase/ViewProductInCustomerWishlistOnBackendTest.php | 2 +- .../TestCase/ViewProductInCustomerWishlistOnBackendTest.xml | 2 +- .../Wishlist/Test/TestStep/AddProductsToWishlistStep.php | 2 +- .../testsuites/Magento/Mtf/TestSuite/InjectableTests.php | 2 +- .../Magento/Mtf/TestSuite/InjectableTests/3rd_party.xml | 2 +- .../Magento/Mtf/TestSuite/InjectableTests/acceptance.xml | 2 +- .../Mtf/TestSuite/InjectableTests/acceptance_unstable.xml | 2 +- .../Magento/Mtf/TestSuite/InjectableTests/basic.xml | 2 +- .../Magento/Mtf/TestSuite/InjectableTests/basic_green.xml | 2 +- .../Magento/Mtf/TestSuite/InjectableTests/category.xml | 2 +- .../Mtf/TestSuite/InjectableTests/extended_acceptance.xml | 2 +- .../Magento/Mtf/TestSuite/InjectableTests/installation.xml | 2 +- .../Magento/Mtf/TestSuite/InjectableTests/mvp.xml | 2 +- .../Magento/Mtf/TestSuite/InjectableTests/setup.xml | 2 +- .../Magento/Mtf/TestSuite/InjectableTests/upgrade.xml | 4 ++-- dev/tests/functional/utils/bootstrap.php | 2 +- dev/tests/functional/utils/command.php | 2 +- dev/tests/functional/utils/export.php | 2 +- dev/tests/functional/utils/generate.php | 2 +- dev/tests/functional/utils/generate/factory.php | 2 +- dev/tests/functional/utils/generate/fixture.php | 2 +- dev/tests/functional/utils/generate/handler.php | 2 +- dev/tests/functional/utils/generate/page.php | 2 +- dev/tests/functional/utils/generate/repository.php | 2 +- dev/tests/functional/utils/generateFixtureXml.php | 2 +- dev/tests/functional/utils/website.php | 2 +- .../Magento/TestModuleDirectoryZipCodes/etc/module.xml | 2 +- .../Magento/TestModuleDirectoryZipCodes/etc/zip_codes.xml | 2 +- .../Magento/TestModuleDirectoryZipCodes/registration.php | 2 +- .../_files/Magento/TestModuleSample/etc/module.xml | 2 +- .../_files/Magento/TestModuleSample/registration.php | 2 +- dev/tests/integration/etc/config-global.php.dist | 2 +- dev/tests/integration/etc/di/preferences/ce.php | 2 +- dev/tests/integration/etc/install-config-mysql.php.dist | 2 +- .../integration/etc/install-config-mysql.travis.php.dist | 2 +- .../Magento/TestFramework/Annotation/AdminConfigFixture.php | 2 +- .../framework/Magento/TestFramework/Annotation/AppArea.php | 2 +- .../Magento/TestFramework/Annotation/AppIsolation.php | 2 +- .../framework/Magento/TestFramework/Annotation/Cache.php | 2 +- .../TestFramework/Annotation/ComponentRegistrarFixture.php | 2 +- .../Magento/TestFramework/Annotation/ConfigFixture.php | 2 +- .../Magento/TestFramework/Annotation/DataFixture.php | 2 +- .../Annotation/DataFixtureBeforeTransaction.php | 2 +- .../Magento/TestFramework/Annotation/DbIsolation.php | 2 +- .../TestFramework/Api/Config/Reader/FileResolver.php | 2 +- .../framework/Magento/TestFramework/App/Config.php | 2 +- .../Magento/TestFramework/App/EnvironmentFactory.php | 2 +- .../framework/Magento/TestFramework/App/Filesystem.php | 2 +- .../Magento/TestFramework/App/MutableScopeConfig.php | 2 +- .../App/ObjectManager/Environment/Developer.php | 2 +- .../Magento/TestFramework/App/ReinitableConfig.php | 2 +- .../framework/Magento/TestFramework/App/State.php | 2 +- .../framework/Magento/TestFramework/Application.php | 2 +- .../framework/Magento/TestFramework/Backend/App/Config.php | 2 +- .../framework/Magento/TestFramework/Bootstrap.php | 2 +- .../framework/Magento/TestFramework/Bootstrap/DocBlock.php | 2 +- .../Magento/TestFramework/Bootstrap/Environment.php | 2 +- .../framework/Magento/TestFramework/Bootstrap/Memory.php | 2 +- .../Magento/TestFramework/Bootstrap/MemoryFactory.php | 2 +- .../framework/Magento/TestFramework/Bootstrap/Profiler.php | 2 +- .../framework/Magento/TestFramework/Bootstrap/Settings.php | 2 +- .../integration/framework/Magento/TestFramework/Config.php | 2 +- .../framework/Magento/TestFramework/CookieManager.php | 2 +- .../framework/Magento/TestFramework/Db/AbstractDb.php | 2 +- .../framework/Magento/TestFramework/Db/Adapter/Mysql.php | 2 +- .../TestFramework/Db/Adapter/TransactionInterface.php | 2 +- .../Magento/TestFramework/Db/ConnectionAdapter.php | 2 +- .../framework/Magento/TestFramework/Db/Mysql.php | 2 +- .../framework/Magento/TestFramework/Db/Sequence.php | 2 +- .../framework/Magento/TestFramework/Db/Sequence/Builder.php | 2 +- .../integration/framework/Magento/TestFramework/Entity.php | 2 +- .../framework/Magento/TestFramework/ErrorLog/Listener.php | 2 +- .../framework/Magento/TestFramework/ErrorLog/Logger.php | 2 +- .../framework/Magento/TestFramework/Event/Magento.php | 2 +- .../Magento/TestFramework/Event/Param/Transaction.php | 2 +- .../framework/Magento/TestFramework/Event/PhpUnit.php | 2 +- .../framework/Magento/TestFramework/Event/Transaction.php | 2 +- .../framework/Magento/TestFramework/EventManager.php | 2 +- .../framework/Magento/TestFramework/Helper/Api.php | 2 +- .../framework/Magento/TestFramework/Helper/Bootstrap.php | 2 +- .../framework/Magento/TestFramework/Helper/CacheCleaner.php | 2 +- .../framework/Magento/TestFramework/Helper/Config.php | 2 +- .../framework/Magento/TestFramework/Helper/Eav.php | 2 +- .../framework/Magento/TestFramework/Helper/Factory.php | 2 +- .../framework/Magento/TestFramework/Helper/Memory.php | 2 +- .../framework/Magento/TestFramework/Indexer/TestCase.php | 2 +- .../Magento/TestFramework/Interception/PluginList.php | 2 +- .../framework/Magento/TestFramework/Isolation/AppConfig.php | 2 +- .../Magento/TestFramework/Isolation/DeploymentConfig.php | 2 +- .../Magento/TestFramework/Isolation/WorkingDirectory.php | 2 +- .../Magento/TestFramework/Listener/ExtededTestdox.php | 2 +- .../TestFramework/Mail/Template/TransportBuilderMock.php | 2 +- .../Magento/TestFramework/Mail/TransportInterfaceMock.php | 2 +- .../framework/Magento/TestFramework/MemoryLimit.php | 2 +- .../framework/Magento/TestFramework/ObjectManager.php | 2 +- .../Magento/TestFramework/ObjectManager/Config.php | 2 +- .../Magento/TestFramework/ObjectManager/Configurator.php | 2 +- .../Magento/TestFramework/ObjectManagerFactory.php | 2 +- .../Magento/TestFramework/Profiler/OutputBamboo.php | 2 +- .../integration/framework/Magento/TestFramework/Request.php | 2 +- .../framework/Magento/TestFramework/Response.php | 2 +- .../framework/Magento/TestFramework/Store/StoreManager.php | 2 +- .../TestFramework/TestCase/AbstractBackendController.php | 2 +- .../Magento/TestFramework/TestCase/AbstractConfigFiles.php | 2 +- .../Magento/TestFramework/TestCase/AbstractController.php | 2 +- .../Magento/TestFramework/TestCase/AbstractIntegrity.php | 2 +- .../framework/Magento/TestFramework/View/Layout.php | 2 +- .../TestFramework/Workaround/Cleanup/StaticProperties.php | 2 +- .../TestFramework/Workaround/Cleanup/TestCaseProperties.php | 2 +- .../framework/Magento/TestFramework/Workaround/Segfault.php | 2 +- dev/tests/integration/framework/autoload.php | 2 +- dev/tests/integration/framework/bootstrap.php | 2 +- dev/tests/integration/framework/deployTestModules.php | 2 +- .../framework/tests/unit/framework/bootstrap.php | 2 +- dev/tests/integration/framework/tests/unit/phpunit.xml.dist | 2 +- .../Magento/Test/Annotation/AdminConfigFixtureTest.php | 2 +- .../unit/testsuite/Magento/Test/Annotation/AppAreaTest.php | 2 +- .../testsuite/Magento/Test/Annotation/AppIsolationTest.php | 2 +- .../Test/Annotation/ComponentRegistrarFixtureTest.php | 2 +- .../testsuite/Magento/Test/Annotation/ConfigFixtureTest.php | 2 +- .../testsuite/Magento/Test/Annotation/DataFixtureTest.php | 2 +- .../testsuite/Magento/Test/Annotation/DbIsolationTest.php | 2 +- .../Annotation/_files/components/a/aa/aaa/registration.php | 2 +- .../Test/Annotation/_files/components/a/aa/registration.php | 2 +- .../Test/Annotation/_files/components/b/registration.php | 2 +- .../Test/Annotation/_files/components/registration.php | 2 +- .../Test/Annotation/_files/sample_fixture_two_rollback.php | 2 +- .../tests/unit/testsuite/Magento/Test/App/ConfigTest.php | 2 +- .../tests/unit/testsuite/Magento/Test/ApplicationTest.php | 2 +- .../unit/testsuite/Magento/Test/Bootstrap/DocBlockTest.php | 2 +- .../testsuite/Magento/Test/Bootstrap/EnvironmentTest.php | 2 +- .../unit/testsuite/Magento/Test/Bootstrap/MemoryTest.php | 2 +- .../unit/testsuite/Magento/Test/Bootstrap/ProfilerTest.php | 2 +- .../unit/testsuite/Magento/Test/Bootstrap/SettingsTest.php | 2 +- .../unit/testsuite/Magento/Test/Bootstrap/_files/1.xml | 2 +- .../unit/testsuite/Magento/Test/Bootstrap/_files/1.xml.dist | 2 +- .../unit/testsuite/Magento/Test/Bootstrap/_files/2.xml | 2 +- .../unit/testsuite/Magento/Test/Bootstrap/_files/3.xml.dist | 2 +- .../unit/testsuite/Magento/Test/Bootstrap/_files/4.php | 2 +- .../testsuite/Magento/Test/Bootstrap/_files/metrics.php | 2 +- .../tests/unit/testsuite/Magento/Test/BootstrapTest.php | 2 +- .../Magento/Test/Db/Adapter/TransactionInterfaceTest.php | 2 +- .../tests/unit/testsuite/Magento/Test/EntityTest.php | 2 +- .../tests/unit/testsuite/Magento/Test/Event/MagentoTest.php | 2 +- .../testsuite/Magento/Test/Event/Param/TransactionTest.php | 2 +- .../tests/unit/testsuite/Magento/Test/Event/PhpUnitTest.php | 2 +- .../unit/testsuite/Magento/Test/Event/TransactionTest.php | 2 +- .../tests/unit/testsuite/Magento/Test/EventManagerTest.php | 2 +- .../unit/testsuite/Magento/Test/Helper/BootstrapTest.php | 2 +- .../unit/testsuite/Magento/Test/Helper/FactoryTest.php | 2 +- .../tests/unit/testsuite/Magento/Test/Helper/MemoryTest.php | 2 +- .../unit/testsuite/Magento/Test/Isolation/AppConfigTest.php | 2 +- .../Magento/Test/Isolation/WorkingDirectoryTest.php | 2 +- .../tests/unit/testsuite/Magento/Test/MemoryLimitTest.php | 2 +- .../tests/unit/testsuite/Magento/Test/ObjectManagerTest.php | 2 +- .../testsuite/Magento/Test/Profiler/OutputBambooTest.php | 2 +- .../Magento/Test/Profiler/OutputBambooTestFilter.php | 2 +- .../tests/unit/testsuite/Magento/Test/RequestTest.php | 2 +- .../Magento/Test/TestCase/ControllerAbstractTest.php | 2 +- .../Test/Workaround/Cleanup/TestCasePropertiesTest.php | 2 +- .../Cleanup/TestCasePropertiesTest/DummyTestCase.php | 2 +- dev/tests/integration/phpunit.xml.dist | 2 +- .../Controller/Adminhtml/Notification/MarkAsReadTest.php | 2 +- .../Adminhtml/Notification/MassMarkAsReadTest.php | 2 +- .../Controller/Adminhtml/Notification/MassRemoveTest.php | 2 +- .../Controller/Adminhtml/Notification/RemoveTest.php | 2 +- .../Model/ResourceModel/Inbox/Collection/CriticalTest.php | 2 +- .../Magento/AdminNotification/_files/notifications.php | 2 +- .../Model/Export/AdvancedPricingTest.php | 2 +- .../Model/Import/AdvancedPricingTest.php | 2 +- .../AdvancedPricingImportExport/_files/create_products.php | 2 +- .../_files/product_with_second_website.php | 2 +- .../Model/ResourceModel/Role/CollectionTest.php | 2 +- .../Model/ResourceModel/Role/Grid/CollectionTest.php | 2 +- .../Magento/Authorization/Model/ResourceModel/RoleTest.php | 2 +- .../Model/ResourceModel/Rules/CollectionTest.php | 2 +- .../testsuite/Magento/Authorization/Model/RoleTest.php | 2 +- .../testsuite/Magento/Authorization/Model/RulesTest.php | 2 +- .../Adminhtml/Authorizenet/Directpost/Payment/PlaceTest.php | 2 +- .../Authorizenet/Directpost/Payment/PlaceTesting.php | 2 +- .../Authorizenet/Controller/Directpost/PaymentTest.php | 2 +- .../Magento/Authorizenet/Model/Directpost/RequestTest.php | 2 +- .../testsuite/Magento/Authorizenet/Model/DirectpostTest.php | 2 +- .../testsuite/Magento/Authorizenet/_files/order.php | 2 +- .../testsuite/Magento/Backend/App/AbstractActionTest.php | 2 +- .../testsuite/Magento/Backend/App/RouterTest.php | 2 +- .../testsuite/Magento/Backend/Block/Dashboard/GraphTest.php | 2 +- .../testsuite/Magento/Backend/Block/MenuTest.php | 2 +- .../testsuite/Magento/Backend/Block/Page/FooterTest.php | 2 +- .../testsuite/Magento/Backend/Block/Page/HeaderTest.php | 2 +- .../Magento/Backend/Block/System/Account/Edit/FormTest.php | 2 +- .../Backend/Block/System/Design/Edit/Tab/GeneralTest.php | 2 +- .../Magento/Backend/Block/System/Store/DeleteTest.php | 2 +- .../Backend/Block/System/Store/Edit/Form/GroupTest.php | 2 +- .../Backend/Block/System/Store/Edit/Form/StoreTest.php | 2 +- .../Backend/Block/System/Store/Edit/Form/WebsiteTest.php | 2 +- .../Magento/Backend/Block/System/Store/EditTest.php | 2 +- .../testsuite/Magento/Backend/Block/TemplateTest.php | 2 +- .../Magento/Backend/Block/Widget/ContainerTest.php | 2 +- .../Magento/Backend/Block/Widget/Form/ContainerTest.php | 2 +- .../testsuite/Magento/Backend/Block/Widget/FormTest.php | 2 +- .../Backend/Block/Widget/Grid/Column/Renderer/TextTest.php | 2 +- .../Magento/Backend/Block/Widget/Grid/ColumnSetTest.php | 2 +- .../Magento/Backend/Block/Widget/Grid/ContainerTest.php | 2 +- .../Magento/Backend/Block/Widget/Grid/ExtendedTest.php | 2 +- .../Magento/Backend/Block/Widget/Grid/ItemTest.php | 2 +- .../Backend/Block/Widget/Grid/Massaction/AdditionalTest.php | 2 +- .../Magento/Backend/Block/Widget/Grid/MassactionTest.php | 2 +- .../testsuite/Magento/Backend/Block/Widget/GridTest.php | 2 +- .../testsuite/Magento/Backend/Block/Widget/TabsTest.php | 2 +- .../testsuite/Magento/Backend/Block/WidgetTest.php | 2 +- .../Magento_Backend/layout/layout_test_grid_handle.xml | 2 +- .../design/adminhtml/Magento/test_default/registration.php | 2 +- .../_files/design/adminhtml/Magento/test_default/theme.xml | 2 +- .../Magento/Backend/Block/_files/form_key_disabled.php | 2 +- .../Backend/Block/_files/form_key_disabled_rollback.php | 2 +- .../_files/menu/Magento/Backend/etc/adminhtml/menu.xml | 2 +- .../Magento/Backend/Controller/Adminhtml/AuthTest.php | 2 +- .../Controller/Adminhtml/Cache/CleanStaticFilesTest.php | 2 +- .../Backend/Controller/Adminhtml/Cache/MassActionTest.php | 2 +- .../Magento/Backend/Controller/Adminhtml/CacheTest.php | 2 +- .../Controller/Adminhtml/Dashboard/ProductsViewedTest.php | 2 +- .../Magento/Backend/Controller/Adminhtml/DashboardTest.php | 2 +- .../Magento/Backend/Controller/Adminhtml/IndexTest.php | 2 +- .../Backend/Controller/Adminhtml/System/AccountTest.php | 2 +- .../Backend/Controller/Adminhtml/System/DesignTest.php | 2 +- .../Backend/Controller/Adminhtml/System/StoreTest.php | 2 +- .../Magento/Backend/Controller/Adminhtml/UrlRewriteTest.php | 2 +- .../testsuite/Magento/Backend/Helper/DataTest.php | 2 +- .../testsuite/Magento/Backend/Model/Auth/SessionTest.php | 2 +- .../testsuite/Magento/Backend/Model/AuthTest.php | 2 +- .../testsuite/Magento/Backend/Model/Locale/ResolverTest.php | 2 +- .../testsuite/Magento/Backend/Model/MenuTest.php | 2 +- .../testsuite/Magento/Backend/Model/Search/CustomerTest.php | 2 +- .../testsuite/Magento/Backend/Model/Search/OrderTest.php | 2 +- .../Magento/Backend/Model/Session/AdminConfigTest.php | 2 +- .../testsuite/Magento/Backend/Model/Session/QuoteTest.php | 2 +- .../testsuite/Magento/Backend/Model/SessionTest.php | 2 +- .../Magento/Backend/Model/Translate/InlineTest.php | 2 +- .../integration/testsuite/Magento/Backend/Model/UrlTest.php | 2 +- .../controllers/_files/cache/all_types_invalidated.php | 2 +- .../_files/cache/all_types_invalidated_rollback.php | 2 +- .../Backend/controllers/_files/cache/application_cache.php | 2 +- .../controllers/_files/cache/application_cache_rollback.php | 2 +- .../Backend/controllers/_files/cache/empty_storage.php | 2 +- .../controllers/_files/cache/non_application_cache.php | 2 +- .../_files/cache/non_application_cache_rollback.php | 2 +- .../Magento/Braintree/Block/Form/ContainerTest.php | 2 +- .../Magento/Braintree/Block/VaultTokenRendererTest.php | 2 +- .../Controller/Adminhtml/Order/PaymentReviewTest.php | 2 +- .../Magento/Braintree/Controller/Cards/DeleteActionTest.php | 2 +- .../Magento/Braintree/Model/PaymentMethodListTest.php | 2 +- .../Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php | 2 +- .../Magento/Braintree/Model/Ui/TokensConfigProviderTest.php | 2 +- .../testsuite/Magento/Braintree/_files/fraud_order.php | 2 +- .../testsuite/Magento/Braintree/_files/payments.php | 2 +- .../testsuite/Magento/Braintree/_files/paypal_quote.php | 2 +- .../Magento/Braintree/_files/paypal_vault_token.php | 4 ++-- .../Product/Edit/Tab/Bundle/Option/Search/GridTest.php | 2 +- .../Catalog/Product/Edit/Tab/Bundle/Option/SearchTest.php | 2 +- .../testsuite/Magento/Bundle/Controller/ProductTest.php | 2 +- .../Magento/Bundle/Model/Product/BundlePriceAbstract.php | 2 +- .../Model/Product/DynamicBundlePriceCalculatorTest.php | 2 +- .../DynamicBundleWithCatalogPriceRuleCalculatorTest.php | 2 +- .../Product/DynamicBundleWithSpecialPriceCalculatorTest.php | 2 +- .../Product/DynamicBundleWithTierPriceCalculatorTest.php | 2 +- .../Bundle/Model/Product/FixedBundlePriceCalculatorTest.php | 2 +- .../FixedBundleWithCatalogPriceRuleCalculatorTest.php | 2 +- .../Product/FixedBundleWithSpecialPriceCalculatorTest.php | 2 +- .../Product/FixedBundleWithTierPriceCalculatorTest.php | 2 +- .../Magento/Bundle/Model/Product/IsSaleableTest.php | 2 +- .../Magento/Bundle/Model/Product/OptionListTest.php | 2 +- .../testsuite/Magento/Bundle/Model/Product/PriceTest.php | 2 +- .../testsuite/Magento/Bundle/Model/Product/TypeTest.php | 2 +- .../testsuite/Magento/Bundle/Model/ProductTest.php | 2 +- .../_files/PriceCalculator/dynamic_bundle_product.php | 2 +- .../PriceCalculator/dynamic_bundle_product_rollback.php | 2 +- .../dynamic_bundle_product_with_catalog_rule.php | 2 +- .../dynamic_bundle_product_with_catalog_rule_rollback.php | 2 +- .../dynamic_bundle_product_with_special_price.php | 2 +- .../dynamic_bundle_product_with_special_price_rollback.php | 2 +- .../Bundle/_files/PriceCalculator/fixed_bundle_product.php | 2 +- .../PriceCalculator/fixed_bundle_product_rollback.php | 2 +- .../fixed_bundle_product_with_catalog_rule.php | 2 +- .../fixed_bundle_product_with_catalog_rule_rollback.php | 2 +- .../fixed_bundle_product_with_special_price.php | 2 +- .../fixed_bundle_product_with_special_price_rollback.php | 2 +- .../testsuite/Magento/Bundle/_files/issaleable_product.php | 2 +- .../Magento/Bundle/_files/issaleable_product_rollback.php | 2 +- .../testsuite/Magento/Bundle/_files/multiple_products.php | 2 +- .../Magento/Bundle/_files/multiple_products_rollback.php | 2 +- .../Bundle/_files/order_item_with_bundle_and_options.php | 2 +- .../_files/order_item_with_bundle_and_options_rollback.php | 2 +- .../integration/testsuite/Magento/Bundle/_files/product.php | 2 +- .../testsuite/Magento/Bundle/_files/product_rollback.php | 2 +- .../Magento/Bundle/_files/product_with_multiple_options.php | 2 +- .../_files/product_with_multiple_options_rollback.php | 2 +- .../Magento/Bundle/_files/product_with_tier_pricing.php | 2 +- .../Magento/BundleImportExport/Model/BundleTest.php | 2 +- .../BundleImportExport/Model/Export/RowCustomizerTest.php | 2 +- .../Model/Import/Product/Type/BundleTest.php | 2 +- .../Captcha/Block/Adminhtml/Captcha/DefaultCaptchaTest.php | 2 +- .../testsuite/Magento/Captcha/Block/Captcha/DefaultTest.php | 2 +- ...BackendLoginActionWithInvalidCaptchaReturnsErrorTest.php | 2 +- .../CaseCaptchaIsRequiredAfterFailedLoginAttemptsTest.php | 2 +- .../CaseCheckUnsuccessfulMessageWhenCaptchaFailedTest.php | 2 +- ...eCheckUserForgotPasswordBackendWhenCaptchaFailedTest.php | 2 +- .../testsuite/Magento/Captcha/_files/dummy_user.php | 2 +- .../Block/Adminhtml/Category/Checkboxes/TreeTest.php | 2 +- .../Magento/Catalog/Block/Adminhtml/Category/TreeTest.php | 2 +- .../Adminhtml/Product/Attribute/Edit/Tab/FrontTest.php | 2 +- .../Adminhtml/Product/Attribute/Set/Toolbar/AddTest.php | 2 +- .../Magento/Catalog/Block/Adminhtml/Product/Edit/JsTest.php | 2 +- .../Block/Adminhtml/Product/Edit/Tab/Options/OptionTest.php | 2 +- .../Adminhtml/Product/Edit/Tab/Options/Type/SelectTest.php | 2 +- .../Block/Adminhtml/Product/Helper/Form/CategoryTest.php | 2 +- .../Adminhtml/Product/Helper/Form/Gallery/ContentTest.php | 2 +- .../Block/Adminhtml/Product/Helper/Form/WeightTest.php | 2 +- .../Catalog/Block/Adminhtml/Product/Options/AjaxTest.php | 2 +- .../Magento/Catalog/Block/Product/AbstractTest.php | 2 +- .../testsuite/Magento/Catalog/Block/Product/ListTest.php | 2 +- .../testsuite/Magento/Catalog/Block/Product/NewTest.php | 2 +- .../Catalog/Block/Product/ProductList/CrosssellTest.php | 2 +- .../Catalog/Block/Product/ProductList/RelatedTest.php | 2 +- .../Catalog/Block/Product/ProductList/ToolbarTest.php | 2 +- .../Magento/Catalog/Block/Product/View/AdditionalTest.php | 2 +- .../Magento/Catalog/Block/Product/View/OptionsTest.php | 2 +- .../testsuite/Magento/Catalog/Block/Product/ViewTest.php | 2 +- .../Console/Command/ProductAttributesCleanUpTest.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/CategoryTest.php | 2 +- .../Controller/Adminhtml/Product/Action/AttributeTest.php | 2 +- .../Catalog/Controller/Adminhtml/Product/AttributeTest.php | 2 +- .../Catalog/Controller/Adminhtml/Product/ReviewTest.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Set/DeleteTest.php | 2 +- .../Catalog/Controller/Adminhtml/Product/Set/SaveTest.php | 2 +- .../Magento/Catalog/Controller/Adminhtml/ProductTest.php | 2 +- .../testsuite/Magento/Catalog/Controller/CategoryTest.php | 2 +- .../testsuite/Magento/Catalog/Controller/IndexTest.php | 2 +- .../Magento/Catalog/Controller/Product/CompareTest.php | 2 +- .../Magento/Catalog/Controller/Product/ViewTest.php | 2 +- .../testsuite/Magento/Catalog/Controller/ProductTest.php | 2 +- .../testsuite/Magento/Catalog/Helper/CategoryTest.php | 2 +- .../testsuite/Magento/Catalog/Helper/DataTest.php | 2 +- .../testsuite/Magento/Catalog/Helper/OutputTest.php | 2 +- .../Magento/Catalog/Helper/Product/CompareTest.php | 2 +- .../Magento/Catalog/Helper/Product/CompositeTest.php | 2 +- .../testsuite/Magento/Catalog/Helper/Product/FlatTest.php | 2 +- .../Catalog/Helper/Product/Stub/ProductControllerStub.php | 2 +- .../testsuite/Magento/Catalog/Helper/Product/ViewTest.php | 2 +- .../testsuite/Magento/Catalog/Helper/ProductTest.php | 2 +- .../testsuite/Magento/Catalog/Model/AbstractModel/Stub.php | 2 +- .../testsuite/Magento/Catalog/Model/AbstractTest.php | 2 +- .../Magento/Catalog/Model/Category/DataProviderTest.php | 2 +- .../Model/Category/_files/category_without_image.php | 2 +- .../Model/Category/_files/service_category_create.php | 2 +- .../Category/_files/service_category_create_rollback.php | 2 +- .../testsuite/Magento/Catalog/Model/CategoryTest.php | 2 +- .../testsuite/Magento/Catalog/Model/CategoryTreeTest.php | 2 +- .../testsuite/Magento/Catalog/Model/ConfigTest.php | 2 +- .../testsuite/Magento/Catalog/Model/DesignTest.php | 2 +- .../Magento/Catalog/Model/Indexer/Category/ProductTest.php | 2 +- .../testsuite/Magento/Catalog/Model/Indexer/FlatTest.php | 2 +- .../Catalog/Model/Indexer/Product/Eav/Action/FullTest.php | 2 +- .../Catalog/Model/Indexer/Product/Eav/Action/RowTest.php | 2 +- .../Catalog/Model/Indexer/Product/Eav/Action/RowsTest.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/Action/FullTest.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/Action/RowTest.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/Action/RowsTest.php | 2 +- .../Catalog/Model/Indexer/Product/Flat/ProcessorTest.php | 2 +- .../Catalog/Model/Indexer/Product/Price/Action/FullTest.php | 2 +- .../Catalog/Model/Indexer/Product/Price/Action/RowTest.php | 2 +- .../Catalog/Model/Indexer/Product/Price/Action/RowsTest.php | 2 +- .../testsuite/Magento/Catalog/Model/Layer/CategoryTest.php | 2 +- .../Magento/Catalog/Model/Layer/Filter/AttributeTest.php | 2 +- .../Magento/Catalog/Model/Layer/Filter/CategoryTest.php | 2 +- .../Catalog/Model/Layer/Filter/DataProvider/PriceTest.php | 2 +- .../Magento/Catalog/Model/Layer/Filter/DecimalTest.php | 2 +- .../Model/Layer/Filter/Price/AlgorithmAdvancedTest.php | 2 +- .../Catalog/Model/Layer/Filter/Price/AlgorithmBaseTest.php | 2 +- .../Layer/Filter/Price/_files/_algorithm_base_data.php | 2 +- .../Model/Layer/Filter/Price/_files/products_advanced.php | 2 +- .../Filter/Price/_files/products_advanced_rollback.php | 2 +- .../Model/Layer/Filter/Price/_files/products_base.php | 2 +- .../Layer/Filter/Price/_files/products_base_rollback.php | 2 +- .../Magento/Catalog/Model/Layer/Filter/PriceTest.php | 2 +- .../Layer/Filter/_files/attribute_weight_filterable.php | 2 +- .../Model/Layer/Filter/_files/attribute_with_option.php | 2 +- .../Layer/Filter/_files/attribute_with_option_rollback.php | 2 +- .../testsuite/Magento/Catalog/Model/Product/ActionTest.php | 2 +- .../Catalog/Model/Product/Attribute/Backend/PriceTest.php | 2 +- .../Catalog/Model/Product/Attribute/Backend/SkuTest.php | 2 +- .../Model/Product/Attribute/Backend/TierpriceTest.php | 2 +- .../Product/Attribute/Source/CountryofmanufactureTest.php | 2 +- .../Product/Attribute/_files/create_attribute_service.php | 2 +- .../Attribute/_files/create_attribute_service_rollback.php | 2 +- .../Model/Product/Attribute/_files/select_attribute.php | 2 +- .../Product/Attribute/_files/select_attribute_rollback.php | 2 +- .../Catalog/Model/Product/Compare/ListCompareTest.php | 2 +- .../Catalog/Model/Product/Gallery/CreateHandlerTest.php | 2 +- .../Magento/Catalog/Model/Product/Gallery/ProcessorTest.php | 2 +- .../Catalog/Model/Product/Gallery/ReadHandlerTest.php | 2 +- .../testsuite/Magento/Catalog/Model/Product/ImageTest.php | 2 +- .../Model/Product/Option/Type/File/ValidatorFileTest.php | 2 +- .../Model/Product/Option/Type/File/ValidatorInfoTest.php | 2 +- .../Magento/Catalog/Model/Product/Type/AbstractTypeTest.php | 2 +- .../Magento/Catalog/Model/Product/Type/PriceTest.php | 2 +- .../Magento/Catalog/Model/Product/Type/VirtualTest.php | 2 +- .../testsuite/Magento/Catalog/Model/Product/TypeTest.php | 2 +- .../testsuite/Magento/Catalog/Model/Product/UrlTest.php | 2 +- .../Catalog/Model/Product/_files/service_product_create.php | 2 +- .../Product/_files/service_product_create_rollback.php | 2 +- .../testsuite/Magento/Catalog/Model/ProductExternalTest.php | 2 +- .../testsuite/Magento/Catalog/Model/ProductGettersTest.php | 2 +- .../testsuite/Magento/Catalog/Model/ProductPriceTest.php | 2 +- .../testsuite/Magento/Catalog/Model/ProductTest.php | 2 +- .../Catalog/Model/ResourceModel/Eav/AttributeTest.php | 2 +- .../Catalog/Model/ResourceModel/Product/CollectionTest.php | 2 +- .../Model/ResourceModel/Product/Indexer/Eav/SourceTest.php | 2 +- .../ResourceModel/Product/Link/Product/CollectionTest.php | 2 +- .../Catalog/Model/ResourceModel/_files/product_simple.php | 2 +- .../Catalog/Model/ResourceModel/_files/url_rewrites.php | 2 +- .../Model/Webapi/Product/Option/Type/File/ProcessorTest.php | 2 +- .../DataProvider/Product/Form/Modifier/CategoriesTest.php | 2 +- .../Ui/DataProvider/Product/Form/Modifier/EavTest.php | 2 +- .../Form/Modifier/_files/eav_expected_data_output.php | 2 +- .../Form/Modifier/_files/eav_expected_meta_output.php | 2 +- .../Modifier/_files/eav_expected_meta_output_w_default.php | 2 +- .../Product/Form/Modifier/_files/expected_categories.php | 2 +- .../Form/Modifier/_files/input_meta_for_categories.php | 2 +- .../integration/testsuite/Magento/Catalog/WidgetTest.php | 2 +- .../Catalog/_files/attribute_set_with_image_attribute.php | 2 +- .../_files/attribute_set_with_image_attribute_rollback.php | 2 +- .../Catalog/_files/attribute_set_with_renamed_group.php | 2 +- .../testsuite/Magento/Catalog/_files/categories.php | 2 +- .../Magento/Catalog/_files/categories_no_products.php | 2 +- .../Catalog/_files/categories_no_products_rollback.php | 2 +- .../Magento/Catalog/_files/categories_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/category.php | 2 +- .../testsuite/Magento/Catalog/_files/category_attribute.php | 2 +- .../Magento/Catalog/_files/category_attribute_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/category_backend.php | 2 +- .../Magento/Catalog/_files/category_backend_rollback.php | 2 +- .../Magento/Catalog/_files/category_duplicates.php | 2 +- .../testsuite/Magento/Catalog/_files/category_product.php | 2 +- .../Magento/Catalog/_files/category_product_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/category_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/category_tree.php | 2 +- .../Magento/Catalog/_files/category_tree_rollback.php | 2 +- .../Magento/Catalog/_files/category_with_position.php | 2 +- .../Catalog/_files/category_with_position_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/dropdown_attribute.php | 2 +- .../Magento/Catalog/_files/empty_attribute_group.php | 2 +- .../Catalog/_files/empty_attribute_group_rollback.php | 2 +- .../Magento/Catalog/_files/enable_reindex_schedule.php | 2 +- .../Catalog/_files/enable_reindex_schedule_rollback.php | 2 +- .../Magento/Catalog/_files/etc/extension_attributes.xml | 2 +- .../Magento/Catalog/_files/filterable_attributes.php | 2 +- .../Magento/Catalog/_files/indexer_catalog_category.php | 2 +- .../Catalog/_files/indexer_catalog_category_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/multiple_products.php | 2 +- .../Magento/Catalog/_files/multiple_products_rollback.php | 2 +- .../Magento/Catalog/_files/multiselect_attribute.php | 2 +- .../Catalog/_files/multiselect_attribute_rollback.php | 2 +- .../_files/multiselect_attribute_with_incorrect_values.php | 2 +- .../_files/order_item_with_product_and_custom_options.php | 2 +- .../order_item_with_product_and_custom_options_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/price_row_fixture.php | 2 +- .../Magento/Catalog/_files/price_row_fixture_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/product_associated.php | 2 +- .../Magento/Catalog/_files/product_associated_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/product_attribute.php | 2 +- .../Magento/Catalog/_files/product_attribute_rollback.php | 2 +- .../_files/product_attribute_with_invalid_apply_to.php | 2 +- .../Catalog/_files/product_group_prices_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/product_image.php | 2 +- .../Magento/Catalog/_files/product_image_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/product_simple.php | 2 +- .../Magento/Catalog/_files/product_simple_duplicated.php | 2 +- .../Catalog/_files/product_simple_duplicated_rollback.php | 2 +- .../Magento/Catalog/_files/product_simple_multistore.php | 2 +- .../Catalog/_files/product_simple_multistore_rollback.php | 2 +- .../Magento/Catalog/_files/product_simple_rollback.php | 2 +- .../Catalog/_files/product_simple_with_admin_store.php | 2 +- .../Catalog/_files/product_simple_with_custom_options.php | 2 +- .../_files/product_simple_with_custom_options_rollback.php | 2 +- .../Magento/Catalog/_files/product_simple_with_url_key.php | 2 +- .../testsuite/Magento/Catalog/_files/product_simple_xss.php | 2 +- .../Magento/Catalog/_files/product_special_price.php | 2 +- .../Catalog/_files/product_special_price_rollback.php | 2 +- .../Magento/Catalog/_files/product_text_attribute.php | 2 +- .../testsuite/Magento/Catalog/_files/product_virtual.php | 2 +- .../Magento/Catalog/_files/product_virtual_in_stock.php | 2 +- .../Catalog/_files/product_virtual_in_stock_rollback.php | 2 +- .../Magento/Catalog/_files/product_virtual_rollback.php | 2 +- .../Magento/Catalog/_files/product_with_dropdown_option.php | 2 +- .../_files/product_with_dropdown_option_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/product_with_image.php | 2 +- .../Magento/Catalog/_files/product_with_image_rollback.php | 2 +- .../Magento/Catalog/_files/product_with_options.php | 2 +- .../Catalog/_files/product_with_options_rollback.php | 2 +- .../Magento/Catalog/_files/product_with_two_websites.php | 2 +- .../Catalog/_files/product_with_two_websites_rollback.php | 2 +- .../Magento/Catalog/_files/product_without_options.php | 2 +- .../Catalog/_files/product_without_options_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/products.php | 2 +- .../testsuite/Magento/Catalog/_files/products_crosssell.php | 2 +- .../Magento/Catalog/_files/products_crosssell_rollback.php | 2 +- .../Magento/Catalog/_files/products_for_search.php | 2 +- .../Magento/Catalog/_files/products_for_search_rollback.php | 2 +- .../Magento/Catalog/_files/products_in_category.php | 2 +- .../Catalog/_files/products_in_category_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/products_new.php | 2 +- .../Magento/Catalog/_files/products_new_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/products_related.php | 2 +- .../Magento/Catalog/_files/products_related_multiple.php | 2 +- .../Catalog/_files/products_related_multiple_rollback.php | 2 +- .../Magento/Catalog/_files/products_related_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/products_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/products_upsell.php | 2 +- .../Magento/Catalog/_files/products_upsell_rollback.php | 2 +- .../Catalog/_files/products_with_multiselect_attribute.php | 2 +- .../_files/products_with_multiselect_attribute_rollback.php | 2 +- .../Catalog/_files/products_with_unique_input_attribute.php | 2 +- .../_files/quote_with_product_and_custom_options.php | 2 +- .../quote_with_product_and_custom_options_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/row_fixture.php | 2 +- .../Magento/Catalog/_files/row_fixture_rollback.php | 2 +- .../Magento/Catalog/_files/second_product_simple.php | 2 +- .../Catalog/_files/second_product_simple_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/second_website.php | 2 +- .../Magento/Catalog/_files/second_website_rollback.php | 2 +- .../Magento/Catalog/_files/text_attribute_rollback.php | 2 +- .../Magento/Catalog/_files/unique_input_attribute.php | 2 +- .../testsuite/Magento/Catalog/_files/url_rewrites.php | 2 +- .../Magento/Catalog/_files/url_rewrites_invalid.php | 2 +- .../Magento/Catalog/_files/url_rewrites_rollback.php | 2 +- .../testsuite/Magento/Catalog/_files/validate_image.php | 2 +- .../Magento/Catalog/_files/validate_image_info.php | 2 +- .../Magento/Catalog/_files/validate_image_info_rollback.php | 2 +- .../Magento/Catalog/_files/validate_image_rollback.php | 2 +- .../Magento/Catalog/controllers/_files/attribute_system.php | 2 +- .../Catalog/controllers/_files/attribute_system_popup.php | 2 +- .../_files/attribute_system_with_applyto_data.php | 2 +- .../Catalog/controllers/_files/attribute_user_defined.php | 2 +- .../Magento/Catalog/controllers/_files/products.php | 2 +- .../Catalog/controllers/_files/products_rollback.php | 2 +- .../Model/AbstractProductExportImportTestCase.php | 2 +- .../CatalogImportExport/Model/Export/ProductTest.php | 2 +- .../Model/Import/Product/Type/AbstractTest.php | 2 +- .../CatalogImportExport/Model/Import/ProductTest.php | 2 +- .../Model/Import/_files/media_import_image.php | 2 +- .../Model/Import/_files/media_import_image_rollback.php | 2 +- .../Magento/CatalogImportExport/Model/ProductTest.php | 2 +- .../CatalogImportExport/_files/product_export_data.php | 2 +- .../_files/product_export_data_rollback.php | 2 +- .../_files/product_export_with_categories.php | 2 +- .../_files/product_export_with_product_links_data.php | 2 +- .../product_export_with_product_links_data_rollback.php | 2 +- .../Magento/CatalogInventory/Api/StockItemSaveTest.php | 2 +- .../Block/Adminhtml/Form/Field/CustomergroupTest.php | 2 +- .../Model/Indexer/Stock/Action/FullTest.php | 2 +- .../CatalogInventory/Model/Indexer/Stock/Action/RowTest.php | 2 +- .../Model/Indexer/Stock/Action/RowsTest.php | 2 +- .../Model/Quote/Item/QuantityValidatorTest.php | 2 +- .../Model/ResourceModel/Indexer/Stock/DefaultStockTest.php | 2 +- .../Magento/CatalogInventory/Model/Stock/ItemTest.php | 2 +- .../Magento/CatalogRule/Model/Indexer/BatchIndexTest.php | 2 +- .../CatalogRule/Model/Indexer/IndexerBuilderTest.php | 2 +- .../Magento/CatalogRule/Model/Indexer/ProductRuleTest.php | 2 +- .../Magento/CatalogRule/Model/Indexer/RuleProductTest.php | 2 +- .../testsuite/Magento/CatalogRule/Model/RuleTest.php | 2 +- .../testsuite/Magento/CatalogRule/_files/attribute.php | 2 +- .../CatalogRule/_files/catalog_rule_10_off_not_logged.php | 2 +- .../Magento/CatalogRule/_files/rule_by_attribute.php | 2 +- .../testsuite/Magento/CatalogRule/_files/two_rules.php | 2 +- .../Magento/CatalogSearch/Block/Advanced/ResultTest.php | 2 +- .../testsuite/Magento/CatalogSearch/Block/ResultTest.php | 2 +- .../testsuite/Magento/CatalogSearch/Block/TermTest.php | 2 +- .../testsuite/Magento/CatalogSearch/Controller/AjaxTest.php | 2 +- .../Magento/CatalogSearch/Controller/ResultTest.php | 2 +- .../testsuite/Magento/CatalogSearch/Helper/DataTest.php | 2 +- .../Magento/CatalogSearch/Model/Indexer/FulltextTest.php | 2 +- .../CatalogSearch/Model/Indexer/IndexSwitcherMock.php | 2 +- .../Model/Indexer/SwitcherUsedInFulltextTest.php | 2 +- .../CatalogSearch/Model/Layer/Filter/AttributeTest.php | 2 +- .../CatalogSearch/Model/Layer/Filter/CategoryTest.php | 2 +- .../CatalogSearch/Model/Layer/Filter/DecimalTest.php | 2 +- .../Magento/CatalogSearch/Model/Layer/Filter/PriceTest.php | 2 +- .../Model/ResourceModel/Advanced/CollectionTest.php | 2 +- .../Model/ResourceModel/Fulltext/CollectionTest.php | 2 +- .../CatalogSearch/Model/Search/RequestGeneratorTest.php | 2 +- .../testsuite/Magento/CatalogSearch/_files/full_reindex.php | 2 +- .../Magento/CatalogSearch/_files/indexer_fulltext.php | 2 +- .../CatalogSearch/_files/indexer_fulltext_rollback.php | 2 +- .../testsuite/Magento/CatalogSearch/_files/query.php | 2 +- .../Magento/CatalogSearch/_files/query_redirect.php | 2 +- .../Magento/CatalogSearch/_files/search_attributes.php | 2 +- .../CatalogSearch/_files/search_attributes_rollback.php | 2 +- .../Model/CategoryUrlRewriteGeneratorTest.php | 2 +- .../Catalog/Block/Adminhtml/Category/Tab/AttributesTest.php | 2 +- .../Magento/CatalogUrlRewrite/_files/categories.php | 2 +- .../CatalogUrlRewrite/_files/categories_rollback.php | 2 +- .../_files/categories_with_product_ids.php | 2 +- .../CatalogUrlRewrite/_files/categories_with_products.php | 2 +- .../_files/categories_with_products_rollback.php | 2 +- .../Magento/CatalogUrlRewrite/_files/product_simple.php | 2 +- .../CatalogWidget/Block/Product/Widget/ConditionsTest.php | 2 +- .../CatalogWidget/Model/Rule/Condition/ProductTest.php | 2 +- .../testsuite/Magento/Checkout/Block/CartTest.php | 2 +- .../Checkout/Controller/Cart/Index/CouponPostTest.php | 2 +- .../testsuite/Magento/Checkout/Controller/CartTest.php | 2 +- .../testsuite/Magento/Checkout/Model/CartTest.php | 2 +- .../testsuite/Magento/Checkout/Model/SessionTest.php | 2 +- .../testsuite/Magento/Checkout/_files/active_quote.php | 2 +- .../Magento/Checkout/_files/active_quote_rollback.php | 2 +- .../integration/testsuite/Magento/Checkout/_files/cart.php | 2 +- .../Magento/Checkout/_files/discount_10percent.php | 2 +- .../Checkout/_files/discount_10percent_generalusers.php | 2 +- .../_files/discount_10percent_generalusers_rollback.php | 2 +- .../Magento/Checkout/_files/discount_10percent_rollback.php | 2 +- .../testsuite/Magento/Checkout/_files/product_bundle.php | 2 +- .../Magento/Checkout/_files/product_with_custom_option.php | 2 +- .../integration/testsuite/Magento/Checkout/_files/quote.php | 2 +- .../Magento/Checkout/_files/quote_with_address.php | 2 +- .../Magento/Checkout/_files/quote_with_address_rollback.php | 2 +- .../Magento/Checkout/_files/quote_with_address_saved.php | 2 +- .../Checkout/_files/quote_with_address_saved_rollback.php | 2 +- .../Checkout/_files/quote_with_bundle_and_options.php | 2 +- .../_files/quote_with_bundle_and_options_rollback.php | 2 +- .../Magento/Checkout/_files/quote_with_bundle_product.php | 2 +- .../Magento/Checkout/_files/quote_with_check_payment.php | 2 +- .../Checkout/_files/quote_with_check_payment_rollback.php | 2 +- .../Magento/Checkout/_files/quote_with_coupon_saved.php | 2 +- .../Checkout/_files/quote_with_coupon_saved_rollback.php | 2 +- .../Checkout/_files/quote_with_downloadable_product.php | 2 +- .../Magento/Checkout/_files/quote_with_items_saved.php | 2 +- .../Checkout/_files/quote_with_items_saved_rollback.php | 2 +- .../Magento/Checkout/_files/quote_with_payment_saved.php | 2 +- .../Checkout/_files/quote_with_payment_saved_rollback.php | 2 +- .../Checkout/_files/quote_with_product_and_payment.php | 2 +- .../Magento/Checkout/_files/quote_with_shipping_method.php | 2 +- .../quote_with_shipping_method_and_items_categories.php | 2 +- .../Checkout/_files/quote_with_shipping_method_rollback.php | 2 +- .../Magento/Checkout/_files/quote_with_simple_product.php | 2 +- .../_files/quote_with_simple_product_and_custom_option.php | 2 +- .../Checkout/_files/quote_with_simple_product_and_image.php | 2 +- .../_files/quote_with_simple_product_and_image_rollback.php | 2 +- .../Checkout/_files/quote_with_simple_product_saved.php | 2 +- .../_files/quote_with_simple_product_saved_rollback.php | 2 +- .../_files/quote_with_virtual_product_and_address.php | 2 +- .../quote_with_virtual_product_and_address_rollback.php | 2 +- .../Checkout/_files/quote_with_virtual_product_saved.php | 2 +- .../_files/quote_with_virtual_product_saved_rollback.php | 2 +- .../Magento/Checkout/_files/set_product_min_in_cart.php | 2 +- .../testsuite/Magento/Checkout/_files/simple_product.php | 2 +- .../_files/agreement_active_with_html_content.php | 2 +- .../_files/agreement_active_with_html_content_rollback.php | 2 +- .../_files/agreement_inactive_with_text_content.php | 2 +- .../agreement_inactive_with_text_content_rollback.php | 2 +- .../integration/testsuite/Magento/Cms/Block/BlockTest.php | 2 +- .../integration/testsuite/Magento/Cms/Block/PageTest.php | 2 +- .../testsuite/Magento/Cms/Block/Widget/BlockTest.php | 2 +- .../Cms/Controller/Adminhtml/Wysiwyg/Images/IndexTest.php | 2 +- .../testsuite/Magento/Cms/Controller/Noroute/IndexTest.php | 2 +- .../testsuite/Magento/Cms/Controller/PageTest.php | 2 +- .../testsuite/Magento/Cms/Controller/RouterTest.php | 2 +- .../integration/testsuite/Magento/Cms/Helper/PageTest.php | 2 +- .../testsuite/Magento/Cms/Helper/Wysiwyg/ImagesTest.php | 2 +- .../integration/testsuite/Magento/Cms/Model/PageTest.php | 2 +- .../testsuite/Magento/Cms/Model/Wysiwyg/ConfigTest.php | 2 +- .../Magento/Cms/Model/Wysiwyg/Images/StorageTest.php | 2 +- .../integration/testsuite/Magento/Cms/_files/block.php | 2 +- .../integration/testsuite/Magento/Cms/_files/noroute.php | 2 +- .../integration/testsuite/Magento/Cms/_files/pages.php | 2 +- .../Magento/Config/Block/System/Config/FormStub.php | 2 +- .../Magento/Config/Block/System/Config/FormTest.php | 2 +- .../Block/System/Config/_files/test_section_config.xml | 2 +- .../Config/Controller/Adminhtml/System/ConfigTest.php | 2 +- .../Config/Model/Config/Backend/Admin/RobotsTest.php | 2 +- .../Magento/Config/Model/Config/Backend/BaseurlTest.php | 2 +- .../Magento/Config/Model/Config/Backend/EncryptedTest.php | 2 +- .../Config/Model/Config/Backend/Image/AdapterTest.php | 2 +- .../Model/Config/Processor/EnvironmentPlaceholderTest.php | 2 +- .../testsuite/Magento/Config/Model/ConfigTest.php | 2 +- .../Magento/Config/Model/ResourceModel/ConfigTest.php | 2 +- .../testsuite/Magento/Config/Model/_files/config_groups.php | 2 +- .../Magento/Config/Model/_files/config_section.php | 2 +- .../testsuite/Magento/Config/Model/_files/no_robots_txt.php | 2 +- .../testsuite/Magento/Config/Model/_files/robots_txt.php | 2 +- .../ConfigurableImportExport/Model/ConfigurableTest.php | 2 +- .../Model/Export/RowCustomizerTest.php | 2 +- .../Model/Import/Product/Type/ConfigurableTest.php | 2 +- .../Product/Edit/Tab/Variations/Config/MatrixTest.php | 2 +- .../Block/Product/View/Type/ConfigurableTest.php | 2 +- .../Controller/Adminhtml/ProductTest.php | 2 +- .../Magento/ConfigurableProduct/Controller/CartTest.php | 2 +- .../ConfigurableProduct/Model/OptionRepositoryTest.php | 2 +- .../Model/Product/Type/Configurable/AttributeTest.php | 2 +- .../Model/Product/Type/Configurable/PriceTest.php | 2 +- .../Model/Product/Type/ConfigurableTest.php | 2 +- .../Model/Product/VariationHandlerTest.php | 2 +- .../Product/Indexer/Price/ConfigurableTest.php | 2 +- .../Pricing/Price/LowestPriceOptionProviderTest.php | 2 +- .../Product/Form/Modifier/Data/AssociatedProductsTest.php | 2 +- .../ConfigurableProduct/_files/configurable_attribute.php | 2 +- .../_files/configurable_attribute_rollback.php | 2 +- .../ConfigurableProduct/_files/delete_association.php | 2 +- .../_files/order_item_with_configurable_and_options.php | 2 +- .../order_item_with_configurable_and_options_rollback.php | 2 +- .../ConfigurableProduct/_files/product_configurable.php | 2 +- .../_files/product_configurable_rollback.php | 2 +- .../ConfigurableProduct/_files/product_simple_77.php | 2 +- .../_files/quote_with_configurable_product.php | 2 +- .../_files/quote_with_configurable_product_rollback.php | 2 +- .../Magento/ConfigurableProduct/_files/tax_rule.php | 2 +- .../ConfigurableProduct/etc/extension_attributes.xml | 2 +- .../testsuite/Magento/Contact/Controller/IndexTest.php | 2 +- .../testsuite/Magento/Contact/Helper/DataTest.php | 2 +- .../Magento/Cookie/Model/Config/Backend/DomainTest.php | 2 +- .../Magento/Cookie/Model/Config/Backend/LifetimeTest.php | 2 +- .../Magento/Cookie/Model/Config/Backend/PathTest.php | 2 +- .../Magento/Cron/Observer/ProcessCronQueueObserverTest.php | 2 +- .../Controller/Adminhtml/System/Currency/FetchRatesTest.php | 2 +- .../Controller/Adminhtml/System/Currency/IndexTest.php | 2 +- .../Controller/Adminhtml/System/Currency/SaveRatesTest.php | 2 +- .../Adminhtml/System/Currencysymbol/IndexTest.php | 2 +- .../Controller/Adminhtml/System/Currencysymbol/SaveTest.php | 2 +- .../CurrencySymbol/Model/System/CurrencysymbolTest.php | 2 +- .../Magento/Customer/Api/AddressRepositoryTest.php | 2 +- .../Customer/Block/Account/Dashboard/AddressTest.php | 2 +- .../Magento/Customer/Block/Account/Dashboard/InfoTest.php | 2 +- .../Magento/Customer/Block/Account/DashboardTest.php | 2 +- .../testsuite/Magento/Customer/Block/Address/BookTest.php | 2 +- .../testsuite/Magento/Customer/Block/Address/EditTest.php | 2 +- .../Customer/Block/Address/Renderer/DefaultRendererTest.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/Tab/CartTest.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/Tab/CartsTest.php | 2 +- .../Customer/Block/Adminhtml/Edit/Tab/NewsletterTest.php | 2 +- .../Customer/Block/Adminhtml/Edit/Tab/OrdersTest.php | 2 +- .../Customer/Block/Adminhtml/Edit/Tab/View/CartTest.php | 2 +- .../Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php | 2 +- .../Customer/Block/Adminhtml/Edit/Tab/View/SalesTest.php | 2 +- .../Magento/Customer/Block/Adminhtml/Edit/Tab/ViewTest.php | 2 +- .../testsuite/Magento/Customer/Block/Adminhtml/EditTest.php | 2 +- .../Customer/Block/Adminhtml/Group/Edit/FormTest.php | 2 +- .../Magento/Customer/Block/Adminhtml/Group/EditTest.php | 2 +- .../testsuite/Magento/Customer/Block/Widget/DobTest.php | 2 +- .../testsuite/Magento/Customer/Block/Widget/GenderTest.php | 2 +- .../testsuite/Magento/Customer/Block/Widget/NameTest.php | 2 +- .../testsuite/Magento/Customer/Block/Widget/TaxvatTest.php | 2 +- .../testsuite/Magento/Customer/Controller/AccountTest.php | 2 +- .../testsuite/Magento/Customer/Controller/AddressTest.php | 2 +- .../Adminhtml/Cart/Product/Composite/CartTest.php | 2 +- .../Magento/Customer/Controller/Adminhtml/GroupTest.php | 2 +- .../Controller/Adminhtml/Index/MassAssignGroupTest.php | 2 +- .../Customer/Controller/Adminhtml/Index/MassDeleteTest.php | 2 +- .../Controller/Adminhtml/Index/MassSubscribeTest.php | 2 +- .../Controller/Adminhtml/Index/ResetPasswordTest.php | 2 +- .../Magento/Customer/Controller/Adminhtml/IndexTest.php | 2 +- .../testsuite/Magento/Customer/Controller/AjaxLoginTest.php | 2 +- .../Magento/Customer/Controller/Section/LoadTest.php | 2 +- .../testsuite/Magento/Customer/Helper/AddressTest.php | 2 +- .../testsuite/Magento/Customer/Helper/ViewTest.php | 2 +- .../Magento/Customer/Model/AccountManagementTest.php | 2 +- .../Magento/Customer/Model/AddressMetadataTest.php | 2 +- .../Magento/Customer/Model/AddressRegistryTest.php | 2 +- .../testsuite/Magento/Customer/Model/AddressTest.php | 2 +- .../testsuite/Magento/Customer/Model/Config/ShareTest.php | 2 +- .../Customer/Model/Config/Source/Group/MultiselectTest.php | 2 +- .../Magento/Customer/Model/Config/Source/GroupTest.php | 2 +- .../Magento/Customer/Model/CustomerMetadataTest.php | 2 +- .../Magento/Customer/Model/CustomerRegistryTest.php | 2 +- .../testsuite/Magento/Customer/Model/CustomerTest.php | 2 +- .../testsuite/Magento/Customer/Model/FileResolverStub.php | 2 +- .../testsuite/Magento/Customer/Model/FormTest.php | 2 +- .../Magento/Customer/Model/GroupManagementTest.php | 2 +- .../testsuite/Magento/Customer/Model/GroupRegistryTest.php | 2 +- .../testsuite/Magento/Customer/Model/GroupTest.php | 2 +- .../Magento/Customer/Model/Metadata/FormFactoryTest.php | 2 +- .../testsuite/Magento/Customer/Model/Metadata/FormTest.php | 2 +- .../Customer/Model/ResourceModel/Address/CollectionTest.php | 2 +- .../Customer/Model/ResourceModel/AddressRepositoryTest.php | 2 +- .../Model/ResourceModel/Customer/CollectionTest.php | 2 +- .../Customer/Model/ResourceModel/CustomerRepositoryTest.php | 2 +- .../ResourceModel/Group/Grid/ServiceCollectionTest.php | 2 +- .../Customer/Model/ResourceModel/GroupRepositoryTest.php | 2 +- .../testsuite/Magento/Customer/Model/SessionTest.php | 2 +- .../testsuite/Magento/Customer/Model/VisitorTest.php | 2 +- .../Customer/_files/attribute_user_defined_address.php | 2 +- .../attribute_user_defined_address_custom_attribute.php | 2 +- ...ibute_user_defined_address_custom_attribute_rollback.php | 2 +- .../_files/attribute_user_defined_address_rollback.php | 2 +- .../_files/attribute_user_defined_custom_attribute.php | 2 +- .../attribute_user_defined_custom_attribute_rollback.php | 2 +- .../Customer/_files/attribute_user_defined_customer.php | 2 +- .../_files/attribute_user_defined_customer_rollback.php | 2 +- .../Magento/Customer/_files/attribute_user_fullname.php | 2 +- .../testsuite/Magento/Customer/_files/customer.php | 2 +- .../testsuite/Magento/Customer/_files/customer_address.php | 2 +- .../Magento/Customer/_files/customer_address_rollback.php | 2 +- .../Magento/Customer/_files/customer_from_repository.php | 2 +- .../testsuite/Magento/Customer/_files/customer_group.php | 2 +- .../Magento/Customer/_files/customer_no_address.php | 2 +- .../Customer/_files/customer_non_default_website_id.php | 2 +- .../_files/customer_non_default_website_id_rollback.php | 2 +- .../Magento/Customer/_files/customer_primary_addresses.php | 2 +- .../testsuite/Magento/Customer/_files/customer_rollback.php | 2 +- .../testsuite/Magento/Customer/_files/customer_rp_token.php | 2 +- .../testsuite/Magento/Customer/_files/customer_sample.php | 2 +- .../Magento/Customer/_files/customer_two_addresses.php | 2 +- .../Magento/Customer/_files/etc/extension_attributes.xml | 2 +- .../Magento/Customer/_files/import_export/customer.php | 2 +- .../_files/import_export/customer_with_addresses.php | 2 +- .../Magento/Customer/_files/import_export/customers.php | 2 +- .../_files/import_export/customers_for_address_import.php | 2 +- .../testsuite/Magento/Customer/_files/inactive_customer.php | 2 +- .../integration/testsuite/Magento/Customer/_files/quote.php | 2 +- .../testsuite/Magento/Customer/_files/sales_order.php | 2 +- .../testsuite/Magento/Customer/_files/three_customers.php | 2 +- .../testsuite/Magento/Customer/_files/two_customers.php | 2 +- .../testsuite/Magento/Customer/etc/extension_attributes.xml | 2 +- .../CustomerImportExport/Model/Export/AddressTest.php | 2 +- .../CustomerImportExport/Model/Export/CustomerTest.php | 2 +- .../CustomerImportExport/Model/Import/AddressTest.php | 2 +- .../Model/Import/CustomerCompositeTest.php | 2 +- .../CustomerImportExport/Model/Import/CustomerTest.php | 2 +- .../Console/Command/App/ApplicationDumpCommandTest.php | 2 +- .../testsuite/Magento/Deploy/_files/config_data.php | 2 +- .../Console/Command/SourceThemeDeployCommandTest.php | 2 +- .../testsuite/Magento/Developer/Helper/DataTest.php | 2 +- .../Developer/Model/Config/Backend/AllowedIpsTest.php | 2 +- .../Magento/Dhl/Block/Adminhtml/UnitofmeasureTest.php | 2 +- .../testsuite/Magento/Directory/Block/DataTest.php | 2 +- .../testsuite/Magento/Directory/Helper/DataTest.php | 2 +- .../Directory/Model/Country/Postcode/Config/ReaderTest.php | 2 +- .../Directory/Model/Country/Postcode/ValidatorTest.php | 2 +- .../testsuite/Magento/Directory/Model/ObserverTest.php | 2 +- .../Catalog/Product/Edit/Tab/Downloadable/LinksTest.php | 2 +- .../Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php | 2 +- .../Controller/Adminhtml/Downloadable/FileTest.php | 2 +- .../Magento/Downloadable/Controller/ProductTest.php | 2 +- .../Magento/Downloadable/Model/Product/TypeTest.php | 2 +- .../_files/order_item_with_downloadable_and_options.php | 2 +- .../order_item_with_downloadable_and_options_rollback.php | 2 +- .../Downloadable/_files/order_with_downloadable_product.php | 2 +- .../Magento/Downloadable/_files/product_downloadable.php | 2 +- .../Downloadable/_files/product_downloadable_rollback.php | 2 +- .../Downloadable/_files/product_downloadable_with_files.php | 2 +- .../_files/product_downloadable_with_files_rollback.php | 2 +- .../Downloadable/_files/quote_with_downloadable_product.php | 2 +- .../_files/quote_with_downloadable_product_rollback.php | 2 +- .../Magento/Downloadable/etc/extension_attributes.xml | 2 +- .../DownloadableImportExport/Model/DownloadableTest.php | 2 +- .../Model/Import/Product/Type/DownloadableTest.php | 2 +- .../Adminhtml/Attribute/Edit/Main/AbstractMainTest.php | 2 +- .../Magento/Eav/Model/Attribute/GroupRepositoryTest.php | 2 +- .../testsuite/Magento/Eav/Model/AttributeManagementTest.php | 2 +- .../testsuite/Magento/Eav/Model/AttributeRepositoryTest.php | 2 +- .../integration/testsuite/Magento/Eav/Model/ConfigTest.php | 2 +- .../Model/ResourceModel/Entity/Attribute/CollectionTest.php | 2 +- .../Magento/Eav/Model/ResourceModel/UpdateHandlerTest.php | 2 +- .../Magento/Eav/Model/Validator/Attribute/BackendTest.php | 2 +- .../testsuite/Magento/Eav/_files/attribute_for_search.php | 2 +- .../Magento/Eav/_files/attribute_group_for_search.php | 2 +- .../Magento/Eav/_files/attribute_set_for_search.php | 2 +- .../Eav/_files/attribute_set_for_search_rollback.php | 2 +- .../testsuite/Magento/Eav/_files/empty_attribute_set.php | 2 +- .../Magento/Eav/_files/empty_attribute_set_rollback.php | 2 +- .../Email/Block/Adminhtml/Template/Edit/FormTest.php | 2 +- .../Email/Controller/Adminhtml/Email/TemplateTest.php | 2 +- .../testsuite/Magento/Email/Model/Template/FilterTest.php | 2 +- .../testsuite/Magento/Email/Model/TemplateTest.php | 2 +- .../Model/_files/code/Magento/Email/view/email/footer.html | 2 +- .../Model/_files/code/Magento/Email/view/email/header.html | 2 +- .../Magento_Email/layout/email_template_test_handle.xml | 2 +- .../Magento_Email/templates/sample_email_content.phtml | 2 +- .../default/Magento_ProductAlert/email/cron_error.html | 2 +- .../design/adminhtml/Magento/default/registration.php | 2 +- .../Model/_files/design/adminhtml/Magento/default/theme.xml | 2 +- .../design/adminhtml/Vendor/custom_theme/registration.php | 2 +- .../_files/design/adminhtml/Vendor/custom_theme/theme.xml | 2 +- .../_files/design/adminhtml/Vendor/default/registration.php | 2 +- .../Model/_files/design/adminhtml/Vendor/default/theme.xml | 2 +- .../Magento_Customer/email/account_new_confirmed.html | 2 +- .../Magento_Email/layout/email_template_test_handle.xml | 2 +- .../Magento_Email/templates/sample_email_content.phtml | 2 +- .../templates/sample_email_content_custom.phtml | 2 +- .../_files/design/frontend/Magento/default/registration.php | 2 +- .../Model/_files/design/frontend/Magento/default/theme.xml | 2 +- .../design/frontend/Magento/default/web/css/email-3.less | 2 +- .../frontend/Magento/default/web/css/email-inline-3.less | 2 +- .../frontend/Magento/default/web/css/file-with-error.less | 2 +- .../custom_theme/Magento_Customer/email/account_new.html | 2 +- .../design/frontend/Vendor/custom_theme/registration.php | 2 +- .../_files/design/frontend/Vendor/custom_theme/theme.xml | 2 +- .../frontend/Vendor/custom_theme/web/css/email-1.less | 2 +- .../Vendor/custom_theme/web/css/email-inline-1.less | 2 +- .../Magento_Customer/email/account_new_confirmation.html | 2 +- .../_files/design/frontend/Vendor/default/registration.php | 2 +- .../Model/_files/design/frontend/Vendor/default/theme.xml | 2 +- .../design/frontend/Vendor/default/web/css/email-2.less | 2 +- .../frontend/Vendor/default/web/css/email-inline-2.less | 2 +- .../testsuite/Magento/Email/Model/_files/email_template.php | 2 +- .../EncryptionKey/Block/Adminhtml/Crypt/Key/EditTest.php | 2 +- .../EncryptionKey/Block/Adminhtml/Crypt/Key/FormTest.php | 2 +- .../Controller/Adminhtml/Crypt/Key/IndexTest.php | 2 +- .../Controller/Adminhtml/Crypt/Key/SaveTest.php | 2 +- .../EncryptionKey/Model/ResourceModel/Key/ChangeTest.php | 2 +- .../testsuite/Magento/EncryptionKey/_files/payment_info.php | 2 +- .../testsuite/Magento/Fedex/Model/CarrierTest.php | 2 +- .../Magento/Fedex/Model/Source/UnitofmeasureTest.php | 2 +- .../Magento/Framework/Api/AbstractExtensibleObjectTest.php | 2 +- .../Framework/Api/ExtensionAttribute/Config/ReaderTest.php | 2 +- .../Api/ExtensionAttribute/Config/_files/config_one.xml | 2 +- .../Api/ExtensionAttribute/Config/_files/config_two.xml | 2 +- .../Framework/Api/ExtensionAttribute/JoinProcessorTest.php | 2 +- .../Framework/Api/ExtensionAttributesFactoryTest.php | 2 +- .../Magento/Wonderland/Api/Data/FakeAddressInterface.php | 2 +- .../Wonderland/Api/Data/FakeExtensibleOneInterface.php | 2 +- .../Wonderland/Api/Data/FakeExtensibleTwoInterface.php | 2 +- .../Magento/Wonderland/Api/Data/FakeRegionInterface.php | 2 +- .../_files/Magento/Wonderland/Model/Data/FakeAddress.php | 2 +- .../Magento/Wonderland/Model/Data/FakeExtensibleOne.php | 2 +- .../Magento/Wonderland/Model/Data/FakeExtensibleTwo.php | 2 +- .../Api/_files/Magento/Wonderland/Model/Data/FakeRegion.php | 2 +- .../Api/_files/Magento/Wonderland/Model/FakeAddress.php | 2 +- .../Api/_files/Magento/Wonderland/Model/FakeRegion.php | 2 +- .../Magento/Framework/Api/_files/extension_attributes.xml | 2 +- .../Magento/Framework/Api/etc/extension_attributes.xml | 2 +- .../testsuite/Magento/Framework/App/AreaTest.php | 2 +- .../testsuite/Magento/Framework/App/Config/BaseTest.php | 2 +- .../testsuite/Magento/Framework/App/Config/DataTest.php | 2 +- .../testsuite/Magento/Framework/App/Config/InitialTest.php | 2 +- .../testsuite/Magento/Framework/App/FrontControllerTest.php | 2 +- .../Magento/Framework/App/Language/DictionaryTest.php | 2 +- .../Framework/App/Language/_files/bar/en_gb/language.xml | 2 +- .../App/Language/_files/bar/en_gb/registration.php | 2 +- .../Framework/App/Language/_files/bar/en_us/language.xml | 2 +- .../App/Language/_files/bar/en_us/registration.php | 2 +- .../Framework/App/Language/_files/baz/en_gb/language.xml | 2 +- .../App/Language/_files/baz/en_gb/registration.php | 2 +- .../Framework/App/Language/_files/first/en_us/language.xml | 2 +- .../App/Language/_files/first/en_us/registration.php | 2 +- .../Framework/App/Language/_files/foo/en_au/language.xml | 2 +- .../App/Language/_files/foo/en_au/registration.php | 2 +- .../Framework/App/Language/_files/my/ru_ru/language.xml | 2 +- .../Framework/App/Language/_files/my/ru_ru/registration.php | 2 +- .../Framework/App/Language/_files/second/en_gb/language.xml | 2 +- .../App/Language/_files/second/en_gb/registration.php | 2 +- .../Framework/App/Language/_files/theirs/ru_ru/language.xml | 2 +- .../App/Language/_files/theirs/ru_ru/registration.php | 2 +- .../Framework/App/ObjectManager/ConfigLoaderTest.php | 2 +- .../App/ResourceConnection/ConnectionFactoryTest.php | 2 +- .../App/Response/HeaderProvider/AbstractHeaderTestCase.php | 2 +- .../Framework/App/Response/HeaderProvider/HstsTest.php | 2 +- .../App/Response/HeaderProvider/UpgradeInsecureTest.php | 2 +- .../App/Response/HeaderProvider/XFrameOptionsTest.php | 2 +- .../testsuite/Magento/Framework/App/Route/ConfigTest.php | 2 +- .../testsuite/Magento/Framework/App/Router/BaseTest.php | 2 +- .../testsuite/Magento/Framework/App/Utility/FilesTest.php | 2 +- .../App/Utility/_files/fixtures/language/registration.php | 2 +- .../App/Utility/_files/fixtures/library/registration.php | 2 +- .../App/Utility/_files/fixtures/module/registration.php | 2 +- .../App/Utility/_files/fixtures/theme/registration.php | 2 +- .../Magento/Framework/App/View/Deployment/VersionTest.php | 2 +- .../testsuite/Magento/Framework/Backup/FilesystemTest.php | 2 +- .../Magento/Framework/Cache/Backend/MongoDbTest.php | 2 +- .../testsuite/Magento/Framework/Cache/CoreTest.php | 2 +- .../testsuite/Magento/Framework/Code/GeneratorTest.php | 2 +- .../Code/GeneratorTest/ParentClassWithNamespace.php | 2 +- .../Code/GeneratorTest/SourceClassWithNamespace.php | 2 +- .../Framework/Code/Reader/SourceArgumentsReaderTest.php | 2 +- .../Code/Reader/_files/SourceArgumentsReaderTest.php.sample | 4 ++-- .../_expected/SourceClassWithNamespaceFactory.php.sample | 2 +- .../SourceClassWithNamespaceInterceptor.php.sample | 2 +- .../Code/_expected/SourceClassWithNamespaceProxy.php.sample | 2 +- .../testsuite/Magento/Framework/Code/_files/ClassToFind.php | 2 +- .../Magento/Framework/Communication/ConfigTest.php | 2 +- .../_files/communication_incorrect_request_schema_type.php | 2 +- .../_files/communication_invalid_topic_name.php | 2 +- .../_files/communication_is_synchronous_is_not_boolean.php | 2 +- .../Communication/_files/communication_missing_handler.xml | 2 +- .../Communication/_files/communication_missing_request.xml | 2 +- .../communication_multiple_handlers_synchronous_mode.php | 2 +- .../communication_multiple_handlers_synchronous_mode.xml | 2 +- .../Communication/_files/communication_no_attributes.xml | 2 +- .../_files/communication_not_existing_handler_method.php | 2 +- .../_files/communication_not_existing_handler_method.xml | 2 +- .../_files/communication_not_existing_service.xml | 2 +- .../_files/communication_not_existing_service_method.xml | 2 +- .../_files/communication_request_not_existing_service.php | 2 +- .../_files/communication_request_not_existing_service.xml | 2 +- .../_files/communication_response_not_existing_service.php | 2 +- .../_files/communication_response_not_existing_service.xml | 2 +- .../_files/communication_topic_with_excessive_keys.php | 2 +- .../_files/communication_topic_with_missed_keys.php | 2 +- .../_files/communication_topic_without_data.php | 2 +- .../_files/communication_with_disabled_handler.php | 2 +- .../_files/communication_with_non_matched_name.php | 2 +- .../Framework/Communication/_files/valid_communication.xml | 2 +- .../Communication/_files/valid_communication_expected.php | 2 +- .../Communication/_files/valid_communication_input.php | 2 +- .../Magento/Framework/Composer/ComposerInformationTest.php | 2 +- .../testsuite/Magento/Framework/Composer/RemoveTest.php | 2 +- .../Framework/Composer/_files/testFromClone/vendor/README | 2 +- .../Composer/_files/testFromCreateProject/vendor/README | 2 +- .../Framework/Composer/_files/testSkeleton/vendor/README | 2 +- .../Magento/Framework/Composer/_files/vendor_path.php | 2 +- .../Css/PreProcessor/File/Collector/AggregatedTest.php | 2 +- .../PreProcessor/_files/code/Magento/Other/registration.php | 2 +- .../_files/code/Magento/Other/view/frontend/web/3.less | 2 +- .../PreProcessor/_files/code/Magento/Third/registration.php | 2 +- .../_files/code/Magento/Third/view/frontend/web/3.less | 2 +- .../Test/default/MagentoFrameworkCssTest_Third/web/3.less | 2 +- .../_files/design/frontend/Test/default/registration.php | 2 +- .../_files/design/frontend/Test/default/theme.xml | 2 +- .../_files/design/frontend/Test/parent/registration.php | 2 +- .../_files/design/frontend/Test/parent/theme.xml | 2 +- .../Framework/Css/PreProcessor/_files/lib/web/3.less | 2 +- .../Magento/Framework/DB/Adapter/InterfaceTest.php | 2 +- .../Magento/Framework/DB/Adapter/Pdo/MysqlTest.php | 2 +- .../testsuite/Magento/Framework/DB/HelperTest.php | 2 +- .../testsuite/Magento/Framework/DB/TransactionTest.php | 2 +- .../Framework/Data/Argument/Interpreter/StringUtilsTest.php | 2 +- .../Magento/Framework/Data/Form/Element/DateTest.php | 2 +- .../Magento/Framework/Data/Form/Element/FieldsetTest.php | 2 +- .../Magento/Framework/Data/Form/Element/ImageTest.php | 2 +- .../Magento/Framework/DataObject/Copy/Config/ReaderTest.php | 2 +- .../DataObject/Copy/Config/_files/expectedArray.php | 2 +- .../Framework/DataObject/Copy/Config/_files/fieldset.xml | 2 +- .../DataObject/Copy/Config/_files/partialFieldsetFirst.xml | 2 +- .../DataObject/Copy/Config/_files/partialFieldsetSecond.xml | 2 +- .../testsuite/Magento/Framework/DataObject/CopyTest.php | 2 +- .../Wonderland/Api/Data/FakeAttributeMetadataInterface.php | 2 +- .../Magento/Wonderland/Api/Data/FakeCustomerInterface.php | 2 +- .../Magento/Wonderland/Model/Data/FakeAttributeMetadata.php | 2 +- .../_files/Magento/Wonderland/Model/Data/FakeCustomer.php | 2 +- .../Magento/Wonderland/Model/FakeAttributeMetadata.php | 2 +- .../_files/Magento/Wonderland/Model/FakeCustomer.php | 2 +- .../Magento/Framework/Encryption/EncryptorTest.php | 2 +- .../testsuite/Magento/Framework/Encryption/ModelTest.php | 2 +- .../Framework/Exception/NoSuchEntityExceptionTest.php | 2 +- .../testsuite/Magento/Framework/File/SizeTest.php | 2 +- .../Magento/Framework/Filesystem/Directory/ReadTest.php | 2 +- .../Magento/Framework/Filesystem/Directory/WriteTest.php | 2 +- .../Magento/Framework/Filesystem/Driver/FileTest.php | 2 +- .../Magento/Framework/Filesystem/File/ReadTest.php | 2 +- .../Magento/Framework/Filesystem/File/WriteTest.php | 2 +- .../Magento/Framework/Filesystem/FileResolverTest.php | 2 +- .../Magento/Framework/Filesystem/FilesystemTest.php | 2 +- .../Magento/Framework/Filesystem/_files/ClassToFind.php | 2 +- .../Framework/Filter/Template/Tokenizer/ParameterTest.php | 2 +- .../testsuite/Magento/Framework/HTTP/HeaderTest.php | 2 +- .../Framework/HTTP/PhpEnvironment/RemoteAddressTest.php | 2 +- .../Framework/HTTP/PhpEnvironment/ServerAddressTest.php | 2 +- .../Magento/Framework/Image/Adapter/ConfigTest.php | 2 +- .../Magento/Framework/Image/Adapter/InterfaceTest.php | 2 +- .../Magento/Framework/Interception/AbstractPlugin.php | 2 +- .../Magento/Framework/Interception/Fixture/Intercepted.php | 2 +- .../Interception/Fixture/Intercepted/FirstPlugin.php | 2 +- .../Interception/Fixture/Intercepted/InterfacePlugin.php | 2 +- .../Framework/Interception/Fixture/Intercepted/Plugin.php | 2 +- .../Framework/Interception/Fixture/InterceptedInterface.php | 2 +- .../Framework/Interception/Fixture/InterceptedParent.php | 2 +- .../Interception/Fixture/InterceptedParentInterface.php | 2 +- .../Magento/Framework/Interception/GeneralTest.php | 2 +- .../Magento/Framework/Interception/TwoPluginTest.php | 2 +- .../testsuite/Magento/Framework/Json/Helper/DataTest.php | 2 +- .../Magento/Framework/Message/CollectionFactoryTest.php | 2 +- .../testsuite/Magento/Framework/Message/FactoryTest.php | 2 +- .../testsuite/Magento/Framework/Message/ManagerTest.php | 2 +- .../Magento/Framework/Model/Entity/HydratorTest.php | 2 +- .../Framework/Model/ResourceModel/Db/AbstractTest.php | 2 +- .../Model/ResourceModel/Db/Collection/AbstractTest.php | 2 +- .../Framework/Model/ResourceModel/Db/ProfilerTest.php | 2 +- .../Framework/Model/ResourceModel/Entity/TableTest.php | 2 +- .../Magento/Framework/Model/ResourceModel/IteratorTest.php | 2 +- .../Model/ResourceModel/Type/Db/ConnectionFactoryTest.php | 2 +- .../Framework/Model/ResourceModel/Type/Db/Pdo/MysqlTest.php | 2 +- .../testsuite/Magento/Framework/Model/ResourceTest.php | 2 +- .../Framework/Module/Plugin/DbStatusValidatorTest.php | 2 +- .../Magento/Framework/Mview/View/ChangelogTest.php | 2 +- .../Framework/ObjectManager/Config/Reader/DomTest.php | 2 +- .../Magento/Framework/ObjectManager/ObjectManagerTest.php | 2 +- .../Magento/Framework/ObjectManager/TestAsset/Basic.php | 2 +- .../Framework/ObjectManager/TestAsset/BasicAlias.php | 2 +- .../Framework/ObjectManager/TestAsset/BasicInjection.php | 2 +- .../ObjectManager/TestAsset/ConstructorEightArguments.php | 2 +- .../ObjectManager/TestAsset/ConstructorFiveArguments.php | 2 +- .../ObjectManager/TestAsset/ConstructorFourArguments.php | 2 +- .../ObjectManager/TestAsset/ConstructorNineArguments.php | 2 +- .../ObjectManager/TestAsset/ConstructorNoArguments.php | 2 +- .../ObjectManager/TestAsset/ConstructorOneArgument.php | 2 +- .../ObjectManager/TestAsset/ConstructorSevenArguments.php | 2 +- .../ObjectManager/TestAsset/ConstructorSixArguments.php | 2 +- .../ObjectManager/TestAsset/ConstructorTenArguments.php | 2 +- .../ObjectManager/TestAsset/ConstructorThreeArguments.php | 2 +- .../ObjectManager/TestAsset/ConstructorTwoArguments.php | 2 +- .../ObjectManager/TestAsset/InterfaceImplementation.php | 2 +- .../ObjectManager/TestAsset/InterfaceInjection.php | 2 +- .../ObjectManager/TestAsset/TestAssetInterface.php | 2 +- .../Framework/ObjectManager/_files/config_merged.xml | 2 +- .../Magento/Framework/ObjectManager/_files/config_one.xml | 2 +- .../Magento/Framework/ObjectManager/_files/config_two.xml | 2 +- .../testsuite/Magento/Framework/Pricing/Helper/DataTest.php | 2 +- .../Profiler/Driver/Standard/Output/CsvfileTest.php | 2 +- .../Profiler/Driver/Standard/Output/FirebugTest.php | 2 +- .../Framework/Profiler/Driver/Standard/Output/HtmlTest.php | 2 +- .../Profiler/Driver/Standard/Output/_files/output.html | 2 +- .../Profiler/Driver/Standard/Output/_files/timers.php | 2 +- .../testsuite/Magento/Framework/ProfilerTest.php | 2 +- .../Magento/Framework/Reflection/MethodsMapTest.php | 2 +- .../Magento/Framework/Search/Adapter/Mysql/AdapterTest.php | 2 +- .../Search/Adapter/Mysql/Builder/Query/MatchTest.php | 2 +- .../Framework/Search/Request/Config/ConverterTest.php | 2 +- .../Framework/Search/Request/Config/FileResolverStub.php | 2 +- .../Search/Request/Config/FileSystemReaderTest.php | 2 +- .../Magento/Framework/Search/Request/MapperTest.php | 2 +- .../Framework/Search/_files/configurable_attribute.php | 2 +- .../Search/_files/configurable_attribute_rollback.php | 2 +- .../Magento/Framework/Search/_files/date_attribute.php | 2 +- .../Framework/Search/_files/date_attribute_rollback.php | 2 +- .../Framework/Search/_files/etc/search_request_1.xml | 2 +- .../Framework/Search/_files/etc/search_request_2.xml | 2 +- .../Framework/Search/_files/filterable_attribute.php | 2 +- .../Search/_files/filterable_attribute_rollback.php | 2 +- .../Framework/Search/_files/product_configurable.php | 2 +- .../Search/_files/product_configurable_rollback.php | 2 +- .../_files/product_configurable_with_disabled_child.php | 2 +- .../product_configurable_with_disabled_child_rollback.php | 2 +- .../testsuite/Magento/Framework/Search/_files/products.php | 2 +- .../Magento/Framework/Search/_files/products_rollback.php | 2 +- .../testsuite/Magento/Framework/Search/_files/requests.xml | 2 +- .../Magento/Framework/Search/_files/search_request.xml | 4 ++-- .../Framework/Search/_files/search_request_config.php | 2 +- .../Framework/Search/_files/search_request_merged.php | 2 +- .../Session/Config/Validator/CookieDomainValidatorTest.php | 2 +- .../Config/Validator/CookieLifetimeValidatorTest.php | 2 +- .../Session/Config/Validator/CookiePathValidatorTest.php | 2 +- .../testsuite/Magento/Framework/Session/ConfigTest.php | 2 +- .../Magento/Framework/Session/SaveHandler/DbTableTest.php | 2 +- .../testsuite/Magento/Framework/Session/SaveHandlerTest.php | 2 +- .../Magento/Framework/Session/SessionManagerTest.php | 2 +- .../testsuite/Magento/Framework/Session/SidResolverTest.php | 2 +- .../Magento/Framework/Stdlib/Cookie/CookieScopeTest.php | 2 +- .../Framework/Stdlib/Cookie/PhpCookieManagerTest.php | 2 +- .../Magento/Framework/Stdlib/Cookie/PhpCookieReaderTest.php | 2 +- .../testsuite/Magento/Framework/Translate/InlineTest.php | 2 +- .../Framework/Translate/_files/_inline_page_expected.html | 2 +- .../Framework/Translate/_files/_inline_page_original.html | 2 +- .../Framework/Translate/_files/_translation_data.php | 2 +- .../testsuite/Magento/Framework/TranslateCachingTest.php | 2 +- .../testsuite/Magento/Framework/TranslateTest.php | 2 +- .../testsuite/Magento/Framework/Url/Helper/DataTest.php | 2 +- .../integration/testsuite/Magento/Framework/UrlTest.php | 2 +- .../testsuite/Magento/Framework/Validator/FactoryTest.php | 2 +- .../testsuite/Magento/Framework/ValidatorFactoryTest.php | 2 +- .../testsuite/Magento/Framework/View/Asset/MinifierTest.php | 2 +- .../Magento/Framework/View/Design/Fallback/RulePoolTest.php | 2 +- .../Framework/View/Design/FileResolution/FallbackTest.php | 2 +- .../Magento/Framework/View/Design/Theme/LabelTest.php | 2 +- .../Magento/Framework/View/Design/Theme/ValidatorTest.php | 2 +- .../Magento/Framework/View/Element/AbstractBlockTest.php | 2 +- .../Magento/Framework/View/Element/TemplateTest.php | 2 +- .../Magento/Framework/View/Element/Text/ListTest.php | 2 +- .../testsuite/Magento/Framework/View/Element/TextTest.php | 2 +- .../Element/UiComponent/Config/Provider/TemplateTest.php | 2 +- .../Element/_files/frontend/Magento/plushe/css/wrong.css | 2 +- .../testsuite/Magento/Framework/View/FileSystemTest.php | 2 +- .../Magento/Framework/View/Fixture/Block/BrokenAction.php | 2 +- .../Framework/View/Fixture/Block/BrokenConstructor.php | 2 +- .../Magento/Framework/View/Fixture/Block/BrokenLayout.php | 2 +- .../testsuite/Magento/Framework/View/Layout/ElementTest.php | 2 +- .../testsuite/Magento/Framework/View/Layout/MergeTest.php | 2 +- .../Magento/Framework/View/Layout/Reader/BlockTest.php | 2 +- .../View/Layout/Reader/_files/_layout_update_block.xml | 2 +- .../View/Layout/Reader/_files/_layout_update_reference.xml | 2 +- .../Magento/Framework/View/Layout/_files/_layout_update.xml | 2 +- .../Layout/_mergeFiles/layout/catalog_category_default.xml | 2 +- .../Layout/_mergeFiles/layout/catalog_category_layered.xml | 2 +- .../View/Layout/_mergeFiles/layout/catalog_product_view.xml | 2 +- .../layout/catalog_product_view_type_configurable.xml | 2 +- .../_mergeFiles/layout/catalog_product_view_type_simple.xml | 2 +- .../View/Layout/_mergeFiles/layout/checkout_index_index.xml | 2 +- .../View/Layout/_mergeFiles/layout/customer_account.xml | 2 +- .../Framework/View/Layout/_mergeFiles/layout/default.xml | 2 +- .../Framework/View/Layout/_mergeFiles/layout/file_wrong.xml | 2 +- .../View/Layout/_mergeFiles/layout/fixture_handle_one.xml | 2 +- .../_mergeFiles/layout/fixture_handle_page_layout.xml | 2 +- .../View/Layout/_mergeFiles/layout/fixture_handle_two.xml | 2 +- .../_mergeFiles/layout/fixture_handle_with_page_layout.xml | 2 +- .../View/Layout/_mergeFiles/layout/not_a_page_type.xml | 2 +- .../Framework/View/Layout/_mergeFiles/layout/page_empty.xml | 2 +- .../Framework/View/Layout/_mergeFiles/layout/print.xml | 2 +- .../View/Layout/_mergeFiles/layout/sales_guest_print.xml | 2 +- .../View/Layout/_mergeFiles/layout/sales_order_print.xml | 2 +- .../Magento/Framework/View/Layout/_mergeFiles/merged.xml | 2 +- .../Magento/Framework/View/LayoutArgumentObjectUpdater.php | 2 +- .../Magento/Framework/View/LayoutArgumentSimpleUpdater.php | 2 +- .../Magento/Framework/View/LayoutDirectivesTest.php | 2 +- .../testsuite/Magento/Framework/View/LayoutTest.php | 2 +- .../Magento/Framework/View/LayoutTestWithExceptions.php | 2 +- .../Magento/Framework/View/Model/Layout/MergeTest.php | 2 +- .../View/Model/Layout/_files/layout/fixture_handle_one.xml | 2 +- .../View/Model/Layout/_files/layout/fixture_handle_two.xml | 2 +- .../Magento/Framework/View/Page/Config/Reader/HtmlTest.php | 2 +- .../View/Page/Config/Reader/_files/_layout_update.xml | 2 +- .../testsuite/Magento/Framework/View/Utility/Layout.php | 2 +- .../testsuite/Magento/Framework/View/Utility/LayoutTest.php | 2 +- .../Framework/View/Utility/_files/layout/handle_one.xml | 2 +- .../Framework/View/Utility/_files/layout/handle_three.xml | 2 +- .../Framework/View/Utility/_files/layout/handle_two.xml | 2 +- .../View/Utility/_files/layout_merged/multiple_handles.xml | 2 +- .../View/Utility/_files/layout_merged/single_handle.xml | 2 +- .../Framework/View/_files/Fixture_Module/registration.php | 2 +- .../Magento/ModuleA/view/adminhtml/product/product.css | 2 +- .../View/_files/Magento/ModuleC/view/adminhtml/styles.css | 2 +- .../Framework/View/_files/UiComponent/expected/config.xml | 2 +- .../UiComponent/theme/Magento_Catalog/ui_component/test.xml | 2 +- .../theme/Magento_Customer/ui_component/test.xml | 2 +- .../View/_files/UiComponent/theme/registration.php | 2 +- .../Framework/View/_files/UiComponent/theme/theme.xml | 2 +- .../fallback/app/code/ViewTest_Module/registration.php | 2 +- .../ViewTest_Module/templates/fixture_template_two.phtml | 2 +- .../custom_theme/ViewTest_Module/web/fixture_script_two.js | 2 +- .../design/frontend/Vendor/custom_theme/registration.php | 2 +- .../custom_theme/templates/fixture_template_two.phtml | 2 +- .../fallback/design/frontend/Vendor/custom_theme/theme.xml | 2 +- .../frontend/Vendor/custom_theme/web/fixture_script_two.js | 2 +- .../design/frontend/Vendor/custom_theme/web/mage/script.js | 2 +- .../design/frontend/Vendor/custom_theme2/registration.php | 2 +- .../fallback/design/frontend/Vendor/custom_theme2/theme.xml | 2 +- .../ViewTest_Module/templates/fixture_template.phtml | 2 +- .../Vendor/default/ViewTest_Module/web/fixture_script.js | 2 +- .../ViewTest_Module/web/i18n/ru_RU/fixture_script.js | 2 +- .../design/frontend/Vendor/default/registration.php | 2 +- .../Vendor/default/templates/fixture_template.phtml | 2 +- .../fallback/design/frontend/Vendor/default/theme.xml | 2 +- .../design/frontend/Vendor/default/web/fixture_script.js | 2 +- .../Vendor/default/web/i18n/ru_RU/fixture_script.js | 2 +- .../frontend/Vendor/standalone_theme/registration.php | 2 +- .../design/frontend/Vendor/standalone_theme/theme.xml | 2 +- .../Framework/View/_files/fallback/lib/web/mage/script.js | 2 +- .../Magento/Framework/View/_files/layout/cacheable.xml | 2 +- .../Framework/View/_files/layout/container_attributes.xml | 2 +- .../Magento/Framework/View/_files/layout/non_cacheable.xml | 2 +- .../action_for_anonymous_parent_block.xml | 2 +- .../View/_files/layout_directives_test/arguments.xml | 2 +- .../layout_directives_test/arguments_complex_values.xml | 2 +- .../_files/layout_directives_test/arguments_object_type.xml | 2 +- .../arguments_object_type_updaters.xml | 2 +- .../_files/layout_directives_test/arguments_url_type.xml | 2 +- .../View/_files/layout_directives_test/get_block.xml | 2 +- .../Framework/View/_files/layout_directives_test/group.xml | 2 +- .../View/_files/layout_directives_test/ifconfig.xml | 2 +- .../Framework/View/_files/layout_directives_test/move.xml | 2 +- .../_files/layout_directives_test/move_alias_broken.xml | 2 +- .../View/_files/layout_directives_test/move_broken.xml | 2 +- .../View/_files/layout_directives_test/move_new_alias.xml | 2 +- .../_files/layout_directives_test/move_the_same_alias.xml | 2 +- .../Framework/View/_files/layout_directives_test/remove.xml | 2 +- .../View/_files/layout_directives_test/remove_broken.xml | 2 +- .../_files/layout_directives_test/remove_cancellation.xml | 2 +- .../Framework/View/_files/layout_directives_test/render.xml | 2 +- .../View/_files/layout_directives_test/sort_after_after.xml | 2 +- .../_files/layout_directives_test/sort_after_previous.xml | 2 +- .../_files/layout_directives_test/sort_before_after.xml | 2 +- .../_files/layout_directives_test/sort_before_before.xml | 2 +- .../Framework/View/_files/layout_with_exceptions/layout.xml | 2 +- .../Framework/View/_files/static/theme/registration.php | 2 +- .../Magento/Framework/View/_files/static/theme/theme.xml | 2 +- .../_files/static/theme/web/css/preminified-styles.min.css | 4 ++-- .../Framework/View/_files/static/theme/web/css/styles.css | 4 ++-- .../Framework/View/_files/static/theme/web/js/test.js | 2 +- .../Magento/GiftMessage/Model/OrderItemRepositoryTest.php | 2 +- .../Magento/GiftMessage/Model/OrderRepositoryTest.php | 2 +- .../testsuite/Magento/GiftMessage/_files/empty_order.php | 2 +- .../Magento/GiftMessage/_files/order_with_message.php | 2 +- .../GiftMessage/_files/quote_with_customer_and_message.php | 2 +- .../_files/quote_with_customer_and_message_rollback.php | 2 +- .../Magento/GiftMessage/_files/quote_with_item_message.php | 2 +- .../GiftMessage/_files/quote_with_item_message_rollback.php | 2 +- .../Magento/GiftMessage/_files/quote_with_message.php | 2 +- .../GiftMessage/_files/quote_with_message_rollback.php | 2 +- .../testsuite/Magento/GiftMessage/_files/virtual_order.php | 2 +- .../Magento/GoogleAdwords/Model/Validator/FactoryTest.php | 2 +- .../Magento/GroupedImportExport/Model/GroupedTest.php | 2 +- .../Model/Import/Product/Type/GroupedTest.php | 2 +- .../GroupedProduct/Model/Product/Type/GroupedTest.php | 2 +- .../Type/Grouped/AssociatedProductsCollectionTest.php | 2 +- .../Magento/GroupedProduct/Pricing/Price/FinalPriceTest.php | 2 +- .../Magento/GroupedProduct/_files/product_grouped.php | 2 +- .../GroupedProduct/_files/product_grouped_rollback.php | 2 +- .../ImportExport/Block/Adminhtml/Export/Edit/FormTest.php | 2 +- .../ImportExport/Block/Adminhtml/Export/FilterTest.php | 2 +- .../ImportExport/Block/Adminhtml/Import/Edit/BeforeTest.php | 2 +- .../ImportExport/Block/Adminhtml/Import/Edit/FormTest.php | 2 +- .../ImportExport/Controller/Adminhtml/ExportTest.php | 2 +- .../Controller/Adminhtml/Import/HttpFactoryMock.php | 2 +- .../Controller/Adminhtml/Import/ValidateTest.php | 2 +- .../ImportExport/Controller/Adminhtml/ImportTest.php | 2 +- .../ImportExport/Model/Export/AbstractStubEntity.php | 2 +- .../ImportExport/Model/Export/Entity/AbstractEavTest.php | 2 +- .../ImportExport/Model/Export/EntityAbstractTest.php | 2 +- .../testsuite/Magento/ImportExport/Model/ExportTest.php | 2 +- .../ImportExport/Model/Import/Entity/EavAbstractTest.php | 2 +- .../ImportExport/Model/Import/EntityAbstractTest.php | 2 +- .../testsuite/Magento/ImportExport/Model/ImportTest.php | 2 +- .../ImportExport/Model/ResourceModel/Import/DataTest.php | 2 +- .../Magento/ImportExport/Model/Source/Import/EntityTest.php | 2 +- .../testsuite/Magento/ImportExport/_files/import_data.php | 2 +- .../testsuite/Magento/ImportExport/_files/product.php | 2 +- .../Magento/Indexer/Controller/Adminhtml/IndexerTest.php | 2 +- .../Magento/Indexer/Model/Config/ConverterTest.php | 2 +- .../Magento/Indexer/Model/Config/_files/indexer.xml | 2 +- .../Magento/Indexer/Model/Config/_files/result.php | 2 +- .../Integration/Activate/Permissions/Tab/WebapiTest.php | 2 +- .../Block/Adminhtml/Integration/Edit/FormTest.php | 2 +- .../Block/Adminhtml/Integration/Edit/Tab/InfoTest.php | 2 +- .../Integration/Block/Adminhtml/Integration/EditTest.php | 2 +- .../Integration/Block/Adminhtml/Integration/GridTest.php | 2 +- .../Integration/Block/Adminhtml/Integration/TokensTest.php | 2 +- .../Widget/Grid/Column/Renderer/Button/DeleteTest.php | 2 +- .../Widget/Grid/Column/Renderer/Button/EditTest.php | 2 +- .../Widget/Grid/Column/Renderer/Link/ActivateTest.php | 2 +- .../Integration/Controller/Adminhtml/IntegrationTest.php | 2 +- .../Magento/Integration/Model/AdminTokenServiceTest.php | 2 +- .../Magento/Integration/Model/AuthorizationServiceTest.php | 2 +- .../Integration/Model/Config/Consolidated/ReaderTest.php | 2 +- .../Model/Config/Consolidated/_files/integration.php | 2 +- .../Model/Config/Consolidated/_files/integrationA.xml | 2 +- .../Model/Config/Consolidated/_files/integrationB.xml | 2 +- .../Integration/Model/Config/Integration/ReaderTest.php | 2 +- .../Integration/Model/Config/Integration/_files/api.php | 2 +- .../Integration/Model/Config/Integration/_files/apiA.xml | 2 +- .../Integration/Model/Config/Integration/_files/apiB.xml | 2 +- .../Magento/Integration/Model/Config/ReaderTest.php | 2 +- .../Magento/Integration/Model/Config/_files/configA.xml | 2 +- .../Magento/Integration/Model/Config/_files/configB.xml | 2 +- .../Magento/Integration/Model/Config/_files/integration.php | 2 +- .../Magento/Integration/Model/CustomerTokenServiceTest.php | 2 +- .../Integration/Model/ResourceModel/IntegrationTest.php | 2 +- .../Integration/_files/integration_all_permissions.php | 2 +- .../_files/integration_all_permissions_rollback.php | 2 +- .../Magento/MediaStorage/Model/File/StorageTest.php | 2 +- dev/tests/integration/testsuite/Magento/MemoryUsageTest.php | 2 +- .../Multishipping/Block/Checkout/Address/SelectTest.php | 2 +- .../Magento/Multishipping/Block/Checkout/AddressesTest.php | 2 +- .../Magento/Multishipping/Block/Checkout/OverviewTest.php | 2 +- .../Magento/Multishipping/Controller/CheckoutTest.php | 2 +- .../Multishipping/Model/Checkout/Type/MultishippingTest.php | 2 +- .../Newsletter/Block/Adminhtml/Queue/Edit/FormTest.php | 2 +- .../Magento/Newsletter/Block/Adminhtml/SubscriberTest.php | 2 +- .../Newsletter/Controller/Adminhtml/NewsletterQueueTest.php | 2 +- .../Controller/Adminhtml/NewsletterTemplateTest.php | 2 +- .../testsuite/Magento/Newsletter/Controller/ManageTest.php | 2 +- .../Magento/Newsletter/Controller/SubscriberTest.php | 2 +- .../testsuite/Magento/Newsletter/Helper/DataTest.php | 2 +- .../Magento/Newsletter/Model/Plugin/PluginTest.php | 2 +- .../testsuite/Magento/Newsletter/Model/QueueTest.php | 2 +- .../Model/ResourceModel/Problem/CollectionTest.php | 2 +- .../Model/ResourceModel/Subscriber/CollectionTest.php | 2 +- .../Newsletter/Model/ResourceModel/SubscriberTest.php | 2 +- .../testsuite/Magento/Newsletter/Model/SubscriberTest.php | 2 +- .../testsuite/Magento/Newsletter/Model/TemplateTest.php | 2 +- .../Magento/Newsletter/_files/newsletter_sample.php | 2 +- .../testsuite/Magento/Newsletter/_files/problems.php | 2 +- .../testsuite/Magento/Newsletter/_files/queue.php | 2 +- .../testsuite/Magento/Newsletter/_files/subscribers.php | 2 +- .../Magento/Newsletter/_files/subscribers_rollback.php | 2 +- .../testsuite/Magento/Newsletter/_files/template.php | 2 +- .../testsuite/Magento/OfflineShipping/_files/tablerates.php | 2 +- .../Magento/OfflineShipping/_files/tablerates_rollback.php | 2 +- .../testsuite/Magento/PageCache/Block/JavascriptTest.php | 2 +- .../PageCache/Block/System/Config/Form/Field/ExportTest.php | 2 +- .../PageCache/Model/System/Config/Backend/TtlTest.php | 2 +- .../PageCache/Model/System/Config/Backend/VarnishTest.php | 2 +- .../testsuite/Magento/Payment/Block/InfoTest.php | 2 +- .../Magento/Payment/Block/Transparent/IframeTest.php | 2 +- .../testsuite/Magento/Payment/Helper/DataTest.php | 2 +- .../testsuite/Magento/Payment/Model/Config/ReaderTest.php | 2 +- .../testsuite/Magento/Payment/Model/ConfigTest.php | 2 +- .../testsuite/Magento/Payment/Model/_files/payment.xml | 2 +- .../testsuite/Magento/Payment/Model/_files/payment2.xml | 2 +- .../UpdateOrderStatusForPaymentMethodsObserverTest.php | 2 +- .../testsuite/Magento/Payment/_files/order_status.php | 2 +- .../Magento/Paypal/Adminhtml/Paypal/ReportsTest.php | 2 +- .../Block/Adminhtml/Billing/Agreement/View/Tab/InfoTest.php | 2 +- .../Magento/Paypal/Block/Billing/Agreement/ViewTest.php | 2 +- .../testsuite/Magento/Paypal/Block/Bml/BannersTest.php | 2 +- .../Magento/Paypal/Block/Express/Review/BillingTest.php | 2 +- .../testsuite/Magento/Paypal/Block/Express/ReviewTest.php | 2 +- .../Paypal/Block/Payment/Form/Billing/AgreementTest.php | 2 +- .../Controller/Adminhtml/Billing/Agreement/CancelTest.php | 2 +- .../Controller/Adminhtml/Billing/Agreement/DeleteTest.php | 2 +- .../Controller/Adminhtml/Billing/Agreement/GridTest.php | 2 +- .../Controller/Adminhtml/Billing/Agreement/IndexTest.php | 2 +- .../Controller/Adminhtml/Billing/Agreement/ViewTest.php | 2 +- .../Paypal/Controller/Adminhtml/Billing/AgreementTest.php | 2 +- .../Controller/Adminhtml/Paypal/Reports/DetailsTest.php | 2 +- .../Controller/Adminhtml/Paypal/Reports/FetchTest.php | 2 +- .../Controller/Adminhtml/Paypal/Reports/IndexTest.php | 2 +- .../Magento/Paypal/Controller/Billing/AgreementTest.php | 2 +- .../testsuite/Magento/Paypal/Controller/ExpressTest.php | 2 +- .../testsuite/Magento/Paypal/Controller/HostedproTest.php | 2 +- .../testsuite/Magento/Paypal/Controller/PayflowTest.php | 2 +- .../Magento/Paypal/Controller/PayflowadvancedTest.php | 2 +- .../Paypal/Model/Config/Structure/Reader/ConverterStub.php | 2 +- .../Paypal/Model/Config/Structure/Reader/ReaderStub.php | 2 +- .../Paypal/Model/Config/Structure/Reader/ReaderTest.php | 2 +- .../Model/Config/Structure/Reader/_files/actual/config.xml | 2 +- .../Config/Structure/Reader/_files/expected/config.xml | 2 +- .../testsuite/Magento/Paypal/Model/Express/CheckoutTest.php | 2 +- .../Magento/Paypal/Model/Hostedpro/RequestTest.php | 2 +- .../testsuite/Magento/Paypal/Model/HostedproTest.php | 2 +- .../integration/testsuite/Magento/Paypal/Model/IpnTest.php | 2 +- .../testsuite/Magento/Paypal/Model/PayflowproTest.php | 2 +- .../Model/Payment/Method/Billing/AbstractAgreementTest.php | 2 +- .../Magento/Paypal/Model/Report/SettlementTest.php | 2 +- .../ResourceModel/Billing/Agreement/CollectionTest.php | 2 +- .../integration/testsuite/Magento/Paypal/Model/VoidTest.php | 2 +- .../testsuite/Magento/Paypal/_files/address_data.php | 2 +- .../testsuite/Magento/Paypal/_files/billing_agreement.php | 2 +- .../integration/testsuite/Magento/Paypal/_files/ipn.php | 2 +- .../testsuite/Magento/Paypal/_files/order_express.php | 2 +- .../testsuite/Magento/Paypal/_files/order_hostedpro.php | 2 +- .../testsuite/Magento/Paypal/_files/order_payflowpro.php | 2 +- .../testsuite/Magento/Paypal/_files/quote_express.php | 2 +- .../Magento/Paypal/_files/quote_express_with_customer.php | 2 +- .../testsuite/Magento/Paypal/_files/quote_payment.php | 2 +- .../Magento/Paypal/_files/quote_payment_express.php | 2 +- .../Paypal/_files/quote_payment_express_with_customer.php | 2 +- .../Magento/Paypal/_files/quote_payment_payflow.php | 2 +- .../Magento/Persistent/Block/Header/AdditionalTest.php | 2 +- .../testsuite/Magento/Persistent/Model/ObserverTest.php | 2 +- .../Magento/Persistent/Model/Persistent/ConfigTest.php | 2 +- .../Persistent/Model/Persistent/_files/expectedArray.php | 2 +- .../Model/Persistent/_files/expectedBlocksArray.php | 2 +- .../Persistent/Model/Persistent/_files/persistent.xml | 2 +- .../testsuite/Magento/Persistent/Model/SessionTest.php | 2 +- .../Persistent/Observer/EmulateCustomerObserverTest.php | 2 +- .../Persistent/Observer/EmulateQuoteObserverTest.php | 2 +- .../Observer/SynchronizePersistentOnLoginObserverTest.php | 2 +- .../Observer/SynchronizePersistentOnLogoutObserverTest.php | 2 +- .../testsuite/Magento/Persistent/_files/persistent.php | 2 +- .../testsuite/Magento/ProductAlert/Model/EmailTest.php | 2 +- .../testsuite/Magento/ProductAlert/Model/ObserverTest.php | 2 +- .../testsuite/Magento/ProductAlert/_files/product_alert.php | 2 +- .../testsuite/Magento/Quote/Model/Quote/AddressTest.php | 2 +- .../Magento/Quote/Model/Quote/Item/RepositoryTest.php | 2 +- .../testsuite/Magento/Quote/Model/QuoteManagementTest.php | 2 +- .../testsuite/Magento/Quote/Model/QuoteRepositoryTest.php | 2 +- .../integration/testsuite/Magento/Quote/Model/QuoteTest.php | 2 +- .../Magento/Quote/Model/ResourceModel/QuoteTest.php | 2 +- .../Magento/Quote/Model/ShippingMethodManagementTest.php | 2 +- .../Frontend/Quote/Address/CollectTotalsObserverTest.php | 2 +- .../testsuite/Magento/Quote/_files/empty_quote.php | 2 +- .../testsuite/Magento/Quote/_files/empty_quote_rollback.php | 2 +- .../testsuite/Magento/Quote/etc/extension_attributes.xml | 2 +- .../Magento/Reports/Block/Adminhtml/Filter/FormTest.php | 2 +- .../testsuite/Magento/Reports/Block/Adminhtml/GridTest.php | 2 +- .../Reports/Block/Adminhtml/Sales/Bestsellers/GridTest.php | 2 +- .../Reports/Block/Adminhtml/Sales/Coupons/GridTest.php | 2 +- .../Reports/Block/Adminhtml/Sales/Invoiced/GridTest.php | 2 +- .../Reports/Block/Adminhtml/Sales/Refunded/GridTest.php | 2 +- .../Reports/Block/Adminhtml/Sales/Sales/GridTest.php | 2 +- .../Reports/Block/Adminhtml/Sales/Shipping/GridTest.php | 2 +- .../Magento/Reports/Block/Adminhtml/Sales/Tax/GridTest.php | 2 +- .../Reports/Block/Adminhtml/Shopcart/Abandoned/GridTest.php | 2 +- .../Reports/Block/Adminhtml/Shopcart/GridTestAbstract.php | 2 +- .../Reports/Block/Adminhtml/Shopcart/Product/GridTest.php | 2 +- .../testsuite/Magento/Reports/Block/WidgetTest.php | 2 +- .../Controller/Adminhtml/Report/Product/ViewedTest.php | 2 +- .../Model/ResourceModel/Product/Lowstock/CollectionTest.php | 2 +- .../ResourceModel/Report/Product/Viewed/CollectionTest.php | 2 +- .../Model/ResourceModel/Review/Product/CollectionTest.php | 2 +- .../integration/testsuite/Magento/Reports/_files/orders.php | 2 +- .../testsuite/Magento/Reports/_files/viewed_products.php | 2 +- .../Magento/Review/Block/Adminhtml/Edit/FormTest.php | 2 +- .../Magento/Review/Block/Adminhtml/Edit/Tab/FormTest.php | 2 +- .../testsuite/Magento/Review/Block/Adminhtml/MainTest.php | 2 +- .../testsuite/Magento/Review/Controller/ProductTest.php | 2 +- .../Review/Model/ResourceModel/Rating/CollectionTest.php | 2 +- .../Magento/Review/Model/ResourceModel/RatingTest.php | 2 +- .../Model/ResourceModel/Review/Product/CollectionTest.php | 2 +- .../Review/Model/ResourceModel/Review/ReviewTest.php | 2 +- .../testsuite/Magento/Review/_files/customer_review.php | 2 +- .../Magento/Review/_files/customer_review_with_rating.php | 2 +- .../testsuite/Magento/Review/_files/different_reviews.php | 2 +- .../testsuite/Magento/Review/_files/review_xss.php | 2 +- .../integration/testsuite/Magento/Review/_files/reviews.php | 2 +- .../testsuite/Magento/Rule/Model/Condition/AbstractTest.php | 2 +- .../Sales/Api/CreditmemoCommentRepositoryInterfaceTest.php | 2 +- .../Sales/Api/CreditmemoItemRepositoryInterfaceTest.php | 2 +- .../Sales/Api/InvoiceCommentRepositoryInterfaceTest.php | 2 +- .../Sales/Api/InvoiceItemRepositoryInterfaceTest.php | 2 +- .../Sales/Api/OrderStatusHistoryRepositoryInterfaceTest.php | 2 +- .../Sales/Api/ShipmentCommentRepositoryInterfaceTest.php | 2 +- .../Sales/Api/ShipmentItemRepositoryInterfaceTest.php | 2 +- .../Sales/Api/ShipmentTrackRepositoryInterfaceTest.php | 2 +- .../Magento/Sales/Block/Adminhtml/Items/AbstractTest.php | 2 +- .../Block/Adminhtml/Order/Create/Form/AbstractTest.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Form/AccountTest.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/Form/AddressTest.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/Create/FormTest.php | 2 +- .../Block/Adminhtml/Order/Create/Giftmessage/FormTest.php | 2 +- .../Sales/Block/Adminhtml/Order/Create/HeaderTest.php | 2 +- .../Magento/Sales/Block/Adminhtml/Order/View/InfoTest.php | 2 +- .../Sales/Block/Adminhtml/Report/Filter/Form/CouponTest.php | 2 +- .../testsuite/Magento/Sales/Block/Order/CommentsTest.php | 2 +- .../Magento/Sales/Block/Order/Creditmemo/ItemsTest.php | 2 +- .../Magento/Sales/Block/Order/Invoice/ItemsTest.php | 2 +- .../Magento/Sales/Block/Order/PrintOrder/CreditmemoTest.php | 2 +- .../Magento/Sales/Block/Order/PrintOrder/InvoiceTest.php | 2 +- .../testsuite/Magento/Sales/Block/Order/TotalsTest.php | 2 +- .../Sales/Controller/Adminhtml/Order/AddCommentTest.php | 2 +- .../Sales/Controller/Adminhtml/Order/AddressSaveTest.php | 2 +- .../Sales/Controller/Adminhtml/Order/AddressTest.php | 2 +- .../Sales/Controller/Adminhtml/Order/AuthorizationMock.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/CancelTest.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/CreateTest.php | 2 +- .../Sales/Controller/Adminhtml/Order/CreditmemoTest.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/EmailTest.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/HoldTest.php | 2 +- .../Sales/Controller/Adminhtml/Order/ReviewPaymentTest.php | 2 +- .../Controller/Adminhtml/Order/Stub/OrderCreateStub.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/UnholdTest.php | 2 +- .../Magento/Sales/Controller/Adminhtml/Order/ViewTest.php | 2 +- .../Sales/Controller/Adminhtml/Transactions/FetchTest.php | 2 +- .../Magento/Sales/Model/AbstractCollectorPositionsTest.php | 2 +- .../testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php | 2 +- .../testsuite/Magento/Sales/Model/Convert/OrderTest.php | 2 +- .../Magento/Sales/Model/CronJob/CleanExpiredOrdersTest.php | 2 +- .../Magento/Sales/Model/Order/AddressRepositoryTest.php | 2 +- .../testsuite/Magento/Sales/Model/Order/AddressTest.php | 2 +- .../Sales/Model/Order/Email/Sender/CreditmemoSenderTest.php | 2 +- .../Sales/Model/Order/Email/Sender/InvoiceSenderTest.php | 2 +- .../Sales/Model/Order/Email/Sender/OrderSenderTest.php | 2 +- .../Sales/Model/Order/Email/Sender/ShipmentSenderTest.php | 2 +- .../testsuite/Magento/Sales/Model/Order/InvoiceTest.php | 2 +- .../Magento/Sales/Model/Order/Payment/RepositoryTest.php | 2 +- .../Magento/Sales/Model/Order/Payment/TransactionTest.php | 2 +- .../testsuite/Magento/Sales/Model/Order/ShipmentTest.php | 2 +- .../Magento/Sales/Model/ResourceModel/Order/StatusTest.php | 2 +- .../Magento/Sales/Model/ResourceModel/OrderTest.php | 2 +- .../ResourceModel/Report/Bestsellers/CollectionTest.php | 2 +- .../Report/Invoiced/Collection/InvoicedTest.php | 2 +- .../ResourceModel/Report/Invoiced/Collection/OrderTest.php | 2 +- .../ResourceModel/Report/Refunded/Collection/OrderTest.php | 2 +- .../Report/Refunded/Collection/RefundedTest.php | 2 +- .../ResourceModel/Report/Shipping/Collection/OrderTest.php | 2 +- .../Report/Shipping/Collection/ShipmentTest.php | 2 +- .../Sales/Model/ResourceModel/Sale/CollectionTest.php | 2 +- .../Magento/Sales/Observer/Backend/CustomerQuoteTest.php | 2 +- .../integration/testsuite/Magento/Sales/_files/address.php | 2 +- .../testsuite/Magento/Sales/_files/address_data.php | 2 +- .../testsuite/Magento/Sales/_files/address_list.php | 2 +- .../Magento/Sales/_files/address_list_rollback.php | 2 +- .../Magento/Sales/_files/assign_status_to_state.php | 2 +- .../testsuite/Magento/Sales/_files/creditmemo.php | 2 +- .../Magento/Sales/_files/creditmemo_comments_for_search.php | 2 +- .../testsuite/Magento/Sales/_files/creditmemo_for_get.php | 2 +- .../Magento/Sales/_files/creditmemo_for_get_rollback.php | 2 +- .../Magento/Sales/_files/creditmemo_items_for_search.php | 2 +- .../testsuite/Magento/Sales/_files/creditmemo_list.php | 2 +- .../Magento/Sales/_files/creditmemo_list_rollback.php | 2 +- .../testsuite/Magento/Sales/_files/creditmemo_rollback.php | 2 +- .../testsuite/Magento/Sales/_files/creditmemo_with_list.php | 2 +- .../Magento/Sales/_files/creditmemo_with_list_rollback.php | 2 +- .../testsuite/Magento/Sales/_files/default_rollback.php | 2 +- .../integration/testsuite/Magento/Sales/_files/invoice.php | 2 +- .../Magento/Sales/_files/invoice_comments_for_search.php | 2 +- .../Magento/Sales/_files/invoice_fixture_store_order.php | 2 +- .../Magento/Sales/_files/invoice_items_for_search.php | 2 +- .../testsuite/Magento/Sales/_files/invoice_list.php | 2 +- .../Magento/Sales/_files/invoice_list_rollback.php | 2 +- .../testsuite/Magento/Sales/_files/invoice_payflowpro.php | 2 +- .../testsuite/Magento/Sales/_files/invoice_rollback.php | 2 +- .../integration/testsuite/Magento/Sales/_files/order.php | 2 +- .../Magento/Sales/_files/order_alphanumeric_id.php | 2 +- .../testsuite/Magento/Sales/_files/order_fixture_store.php | 2 +- .../testsuite/Magento/Sales/_files/order_info.php | 2 +- .../testsuite/Magento/Sales/_files/order_item_list.php | 2 +- .../testsuite/Magento/Sales/_files/order_list.php | 2 +- .../testsuite/Magento/Sales/_files/order_list_rollback.php | 2 +- .../testsuite/Magento/Sales/_files/order_new.php | 2 +- .../testsuite/Magento/Sales/_files/order_new_rollback.php | 2 +- .../Magento/Sales/_files/order_paid_with_payflowpro.php | 2 +- .../testsuite/Magento/Sales/_files/order_payment_list.php | 2 +- .../Magento/Sales/_files/order_pending_payment.php | 2 +- .../testsuite/Magento/Sales/_files/order_rollback.php | 2 +- .../testsuite/Magento/Sales/_files/order_shipping.php | 2 +- .../_files/order_shipping_address_different_to_billing.php | 2 +- .../Sales/_files/order_shipping_address_same_as_billing.php | 2 +- .../Sales/_files/order_status_history_for_search.php | 2 +- .../testsuite/Magento/Sales/_files/order_with_customer.php | 2 +- .../Sales/_files/order_with_shipping_and_invoice.php | 2 +- .../_files/order_with_shipping_and_invoice_rollback.php | 2 +- .../integration/testsuite/Magento/Sales/_files/quote.php | 2 +- .../testsuite/Magento/Sales/_files/quote_rollback.php | 2 +- .../testsuite/Magento/Sales/_files/quote_with_bundle.php | 2 +- .../Magento/Sales/_files/quote_with_bundle_rollback.php | 2 +- .../testsuite/Magento/Sales/_files/quote_with_customer.php | 2 +- .../Magento/Sales/_files/quote_with_customer_rollback.php | 2 +- .../testsuite/Magento/Sales/_files/report_bestsellers.php | 2 +- .../testsuite/Magento/Sales/_files/report_invoiced.php | 2 +- .../testsuite/Magento/Sales/_files/report_refunded.php | 2 +- .../testsuite/Magento/Sales/_files/report_shipping.php | 2 +- .../integration/testsuite/Magento/Sales/_files/shipment.php | 2 +- .../Magento/Sales/_files/shipment_comments_for_search.php | 2 +- .../Magento/Sales/_files/shipment_items_for_search.php | 2 +- .../testsuite/Magento/Sales/_files/shipment_list.php | 2 +- .../Magento/Sales/_files/shipment_list_rollback.php | 2 +- .../testsuite/Magento/Sales/_files/shipment_rollback.php | 2 +- .../Magento/Sales/_files/shipment_tracks_for_search.php | 2 +- .../testsuite/Magento/Sales/_files/transactions.php | 2 +- .../Magento/Sales/_files/transactions_detailed.php | 2 +- .../testsuite/Magento/Sales/_files/transactions_list.php | 2 +- .../Magento/Sales/_files/transactions_list_rollback.php | 2 +- .../Sales/_files/two_orders_for_one_of_two_customers.php | 2 +- .../Sales/_files/two_orders_for_two_diff_customers.php | 2 +- .../Block/Adminhtml/Promo/Quote/Edit/Tab/LabelsTest.php | 2 +- .../SalesRule/Model/Quote/Address/Total/ShippingTest.php | 2 +- .../Model/ResourceModel/Report/Rule/CreatedatTest.php | 2 +- .../SalesRule/Model/ResourceModel/Rule/CollectionTest.php | 2 +- .../Magento/SalesRule/_files/cart_rule_40_percent_off.php | 2 +- .../Magento/SalesRule/_files/cart_rule_50_percent_off.php | 2 +- .../Magento/SalesRule/_files/cart_rule_free_shipping.php | 2 +- .../SalesRule/_files/cart_rule_free_shipping_rollback.php | 2 +- .../testsuite/Magento/SalesRule/_files/coupons.php | 2 +- .../testsuite/Magento/SalesRule/_files/coupons_advanced.php | 2 +- .../Magento/SalesRule/_files/order_with_coupon.php | 2 +- .../testsuite/Magento/SalesRule/_files/report_coupons.php | 2 +- .../_files/rule_free_shipping_by_product_weight.php | 2 +- .../Magento/SalesRule/_files/rule_specific_date.php | 2 +- .../testsuite/Magento/SalesRule/_files/rules.php | 2 +- .../testsuite/Magento/SalesRule/_files/rules_advanced.php | 2 +- .../Magento/SalesRule/_files/rules_autogeneration.php | 2 +- .../SalesRule/_files/rules_autogeneration_rollback.php | 2 +- .../testsuite/Magento/SalesRule/_files/rules_categories.php | 2 +- .../Magento/SalesRule/_files/rules_categories_rollback.php | 2 +- .../testsuite/Magento/SalesRule/_files/rules_category.php | 2 +- .../Magento/SalesRule/_files/rules_category_rollback.php | 2 +- .../Magento/SalesRule/_files/rules_group_all_categories.php | 2 +- .../_files/rules_group_all_categories_price_attr_set.php | 2 +- .../Magento/SalesRule/_files/rules_group_any_categories.php | 2 +- .../_files/rules_group_any_categories_price_address.php | 2 +- .../_files/rules_group_any_categories_price_attr_set.php | 2 +- .../rules_group_any_categories_price_attr_set_any.php | 2 +- .../rules_group_categories_price_sku_attr_set_any.php | 2 +- .../_files/rules_group_not_categories_sku_attr.php | 2 +- .../testsuite/Magento/SalesRule/_files/rules_rollback.php | 2 +- .../testsuite/Magento/SampleData/Model/DependencyTest.php | 2 +- .../Model/Adminhtml/System/Config/Source/EngineTest.php | 2 +- .../Magento/Search/Model/ResourceModel/SynonymGroupTest.php | 2 +- .../Magento/Search/Model/SearchEngine/ConfigTest.php | 2 +- .../testsuite/Magento/Search/Model/SynonymAnalyzerTest.php | 2 +- .../Magento/Search/Model/SynonymGroupRepositoryTest.php | 2 +- .../testsuite/Magento/Search/Model/SynonymReaderTest.php | 2 +- .../testsuite/Magento/Search/_files/search_engine.xml | 2 +- .../testsuite/Magento/Search/_files/synonym_reader.php | 2 +- .../Magento/Search/_files/synonym_reader_rollback.php | 2 +- .../Security/Controller/Adminhtml/Session/LogoutAllTest.php | 2 +- .../Magento/Security/Model/AdminSessionsManagerTest.php | 2 +- .../Magento/Security/Model/Plugin/AuthSessionTest.php | 2 +- .../Model/ResourceModel/AdminSessionInfo/CollectionTest.php | 2 +- .../Security/Model/ResourceModel/AdminSessionInfoTest.php | 2 +- .../PasswordResetRequestEvent/CollectionTest.php | 2 +- .../Model/ResourceModel/PasswordResetRequestEventTest.php | 2 +- .../Magento/Security/Model/SecurityManagerTest.php | 2 +- .../testsuite/Magento/Security/_files/adminsession.php | 2 +- .../Security/_files/password_reset_request_events.php | 2 +- .../testsuite/Magento/SendFriend/Block/SendTest.php | 2 +- .../Command/DependenciesShowFrameworkCommandTest.php | 2 +- .../Command/DependenciesShowModulesCircularCommandTest.php | 2 +- .../Console/Command/DependenciesShowModulesCommandTest.php | 2 +- .../Setup/Console/Command/I18nCollectPhrasesCommandTest.php | 2 +- .../Magento/Setup/Console/Command/I18nPackCommandTest.php | 2 +- .../Setup/Console/Command/_files/phrases/TestPhrases.php | 2 +- .../Command/_files/root/app/code/Magento/A/Model/Foo.php | 2 +- .../Command/_files/root/app/code/Magento/A/etc/module.xml | 2 +- .../Command/_files/root/app/code/Magento/A/registration.php | 2 +- .../Command/_files/root/app/code/Magento/B/Model/Foo.php | 2 +- .../Command/_files/root/app/code/Magento/B/etc/module.xml | 2 +- .../Command/_files/root/app/code/Magento/B/registration.php | 2 +- .../Command/_files/root/app/code/Magento/C/registration.php | 2 +- .../Command/_files/root/app/code/Magento/D/registration.php | 2 +- .../testsuite/Magento/Setup/Controller/UrlCheckTest.php | 2 +- .../testsuite/Magento/Setup/Fixtures/FixtureModelTest.php | 2 +- .../testsuite/Magento/Setup/Fixtures/_files/small.xml | 2 +- .../Magento/Setup/Model/ConfigOptionsListCollectorTest.php | 2 +- .../Magento/Setup/Model/Cron/MultipleStreamOutputTest.php | 2 +- .../Magento/Setup/Model/ObjectManagerProviderTest.php | 2 +- .../testsuite/Magento/Setup/Module/DataSetupTest.php | 2 +- .../Magento/Setup/Module/Dependency/CircularTest.php | 2 +- .../Setup/Module/Dependency/Parser/Composer/JsonTest.php | 2 +- .../Setup/Module/Dependency/Parser/Config/XmlTest.php | 2 +- .../Magento/Setup/Module/Dependency/Report/CircularTest.php | 2 +- .../Setup/Module/Dependency/Report/DependencyTest.php | 2 +- .../Setup/Module/Dependency/Report/FrameworkTest.php | 2 +- .../_files/code/Magento/FirstModule/Helper/Helper.php | 2 +- .../_files/code/Magento/FirstModule/Model/Model.php | 2 +- .../code/Magento/FirstModule/Model/WithoutDependencies.php | 2 +- .../_files/code/Magento/FirstModule/etc/module.xml | 2 +- .../code/Magento/FirstModule/view/frontend/template.phtml | 2 +- .../Magento/Setup/Module/Dependency/_files/module1.xml | 2 +- .../Magento/Setup/Module/Dependency/_files/module2.xml | 2 +- .../Magento/Setup/Module/I18n/Dictionary/GeneratorTest.php | 2 +- .../source/app/code/Magento/FirstModule/Helper/Helper.php | 2 +- .../source/app/code/Magento/FirstModule/Model/Model.php | 2 +- .../app/code/Magento/FirstModule/view/frontend/default.xml | 2 +- .../app/code/Magento/FirstModule/view/frontend/file.js | 2 +- .../code/Magento/FirstModule/view/frontend/template.phtml | 2 +- .../source/app/code/Magento/SecondModule/Model/Model.php | 2 +- .../source/app/design/adminhtml/default/backend/default.xml | 2 +- .../app/design/adminhtml/default/backend/template.phtml | 2 +- .../I18n/Dictionary/_files/source/lib/web/mage/file.js | 2 +- .../I18n/Dictionary/_files/source/lib/web/varien/file.js | 2 +- .../I18n/Dictionary/_files/source/not_magento_dir/Model.php | 2 +- .../I18n/Dictionary/_files/source/not_magento_dir/file.js | 2 +- .../Dictionary/_files/source/not_magento_dir/template.phtml | 2 +- .../Magento/Setup/Module/I18n/Pack/GeneratorTest.php | 2 +- .../Magento/Setup/Module/I18n/Parser/Adapter/JsTest.php | 2 +- .../Parser/Adapter/Php/Tokenizer/PhraseCollectorTest.php | 2 +- .../Adapter/Php/Tokenizer/Translate/MethodCollectorTest.php | 2 +- .../Magento/Setup/Module/I18n/Parser/Adapter/XmlTest.php | 2 +- .../Module/I18n/Parser/Adapter/_files/xmlPhrasesForTest.xml | 2 +- .../testsuite/Magento/Shipping/Block/ItemsTest.php | 2 +- .../testsuite/Magento/Shipping/Helper/DataTest.php | 2 +- .../testsuite/Magento/Sitemap/Helper/DataTest.php | 2 +- .../Sitemap/Model/ResourceModel/Catalog/ProductTest.php | 2 +- .../testsuite/Magento/Sitemap/_files/sitemap_products.php | 2 +- .../Magento/Sitemap/_files/sitemap_products_rollback.php | 2 +- .../Magento/Store/App/Request/PathInfoProcessorTest.php | 2 +- .../Magento/Store/Controller/Store/SwitchActionTest.php | 2 +- .../testsuite/Magento/Store/Model/App/EmulationTest.php | 2 +- .../testsuite/Magento/Store/Model/DataSource.php | 2 +- .../integration/testsuite/Magento/Store/Model/GroupTest.php | 2 +- .../Store/Model/ResourceModel/Store/CollectionTest.php | 2 +- .../Magento/Store/Model/ResourceModel/StoreTest.php | 2 +- .../Magento/Store/Model/ResourceModel/WebsiteTest.php | 2 +- .../Magento/Store/Model/StoreCookieManagerTest.php | 2 +- .../testsuite/Magento/Store/Model/StoreManagerTest.php | 2 +- .../testsuite/Magento/Store/Model/StoreResolverTest.php | 2 +- .../integration/testsuite/Magento/Store/Model/StoreTest.php | 2 +- .../testsuite/Magento/Store/Model/WebsiteTest.php | 2 +- .../testsuite/Magento/Store/_files/core_fixturestore.php | 2 +- .../Magento/Store/_files/core_fixturestore_rollback.php | 2 +- .../Magento/Store/_files/core_second_third_fixturestore.php | 2 +- .../Store/_files/fixture_store_with_catalogsearch_index.php | 2 +- .../fixture_store_with_catalogsearch_index_rollback.php | 2 +- .../testsuite/Magento/Store/_files/scope.config.fixture.php | 2 +- .../testsuite/Magento/Store/_files/second_store.php | 2 +- .../Magento/Store/_files/second_store_rollback.php | 2 +- .../integration/testsuite/Magento/Store/_files/store.php | 2 +- .../integration/testsuite/Magento/Store/_files/website.php | 2 +- .../testsuite/Magento/Store/_files/website_rollback.php | 2 +- .../Magento/Tax/Block/Adminhtml/Rate/TitleTest.php | 2 +- .../testsuite/Magento/Tax/Controller/Adminhtml/RateTest.php | 2 +- .../testsuite/Magento/Tax/Controller/Adminhtml/TaxTest.php | 2 +- .../integration/testsuite/Magento/Tax/Helper/DataTest.php | 2 +- .../Magento/Tax/Model/Calculation/RateRepositoryTest.php | 2 +- .../testsuite/Magento/Tax/Model/CalculationTest.php | 2 +- .../integration/testsuite/Magento/Tax/Model/ClassTest.php | 2 +- .../integration/testsuite/Magento/Tax/Model/ConfigTest.php | 2 +- .../testsuite/Magento/Tax/Model/Rate/SourceTest.php | 2 +- .../Model/ResourceModel/Calculation/Rule/CollectionTest.php | 2 +- .../Magento/Tax/Model/ResourceModel/CalculationTest.php | 2 +- .../Tax/Model/ResourceModel/Report/CollectionTest.php | 2 +- .../Magento/Tax/Model/Sales/Total/Quote/SetupUtil.php | 2 +- .../Magento/Tax/Model/Sales/Total/Quote/SubtotalTest.php | 2 +- .../Magento/Tax/Model/Sales/Total/Quote/TaxTest.php | 2 +- .../testsuite/Magento/Tax/Model/TaxCalculationTest.php | 2 +- .../testsuite/Magento/Tax/Model/TaxClass/ManagementTest.php | 2 +- .../testsuite/Magento/Tax/Model/TaxClass/RepositoryTest.php | 2 +- .../Magento/Tax/Model/TaxClass/Source/CustomerTest.php | 2 +- .../Magento/Tax/Model/TaxClass/Source/ProductTest.php | 2 +- .../Magento/Tax/Model/TaxClass/Type/CustomerTest.php | 2 +- .../testsuite/Magento/Tax/Model/TaxRateCollectionTest.php | 2 +- .../testsuite/Magento/Tax/Model/TaxRateManagementTest.php | 2 +- .../testsuite/Magento/Tax/Model/TaxRuleCollectionTest.php | 2 +- .../testsuite/Magento/Tax/Model/TaxRuleFixtureFactory.php | 2 +- .../testsuite/Magento/Tax/Model/TaxRuleRepositoryTest.php | 2 +- .../testsuite/Magento/Tax/Pricing/AdjustmentTest.php | 2 +- .../testsuite/Magento/Tax/_files/order_with_tax.php | 2 +- .../integration/testsuite/Magento/Tax/_files/report_tax.php | 2 +- .../scenarios/excluding_tax_apply_tax_after_discount.php | 2 +- .../excluding_tax_apply_tax_after_discount_discount_tax.php | 2 +- .../scenarios/excluding_tax_apply_tax_before_discount.php | 2 +- .../Tax/_files/scenarios/excluding_tax_multi_item_row.php | 2 +- .../Tax/_files/scenarios/excluding_tax_multi_item_total.php | 2 +- .../Tax/_files/scenarios/excluding_tax_multi_item_unit.php | 2 +- .../Magento/Tax/_files/scenarios/excluding_tax_row.php | 2 +- .../Magento/Tax/_files/scenarios/excluding_tax_total.php | 2 +- .../Magento/Tax/_files/scenarios/excluding_tax_unit.php | 2 +- .../scenarios/including_tax_cross_border_trade_disabled.php | 2 +- .../scenarios/including_tax_cross_border_trade_enabled.php | 2 +- .../Magento/Tax/_files/scenarios/including_tax_row.php | 2 +- .../Magento/Tax/_files/scenarios/including_tax_total.php | 2 +- .../Magento/Tax/_files/scenarios/including_tax_unit.php | 2 +- .../multi_tax_rule_total_calculate_subtotal_no.php | 2 +- .../multi_tax_rule_total_calculate_subtotal_yes.php | 2 +- .../multi_tax_rule_two_row_calculate_subtotal_yes_row.php | 2 +- .../multi_tax_rule_two_row_calculate_subtotal_yes_total.php | 2 +- .../scenarios/multi_tax_rule_unit_calculate_subtotal_no.php | 2 +- .../multi_tax_rule_unit_calculate_subtotal_yes.php | 2 +- .../Magento/Tax/_files/tax_calculation_data_aggregated.php | 2 +- .../testsuite/Magento/Tax/_files/tax_classes.php | 2 +- .../Block/Adminhtml/Rate/ImportExportTest.php | 2 +- .../Controller/Adminhtml/Rate/ExportPostTest.php | 2 +- .../Controller/Adminhtml/Rate/ImportExportTest.php | 2 +- .../Controller/Adminhtml/Rate/ImportPostTest.php | 2 +- .../TaxImportExport/Model/Rate/CsvImportHandlerTest.php | 2 +- .../testsuite/Magento/Test/Integrity/DatabaseTest.php | 2 +- .../testsuite/Magento/Test/Integrity/LayoutTest.php | 2 +- .../Magento/Test/Integrity/Magento/Payment/MethodsTest.php | 2 +- .../Magento/Test/Integrity/Magento/Widget/SkinFilesTest.php | 2 +- .../Test/Integrity/Magento/Widget/TemplateFilesTest.php | 2 +- .../Test/Integrity/Modular/AbstractMergedConfigTest.php | 2 +- .../Magento/Test/Integrity/Modular/AclConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/BlockInstantiationTest.php | 2 +- .../Magento/Test/Integrity/Modular/CacheFilesTest.php | 2 +- .../Test/Integrity/Modular/CarrierConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/CrontabConfigFilesTest.php | 2 +- .../Magento/Test/Integrity/Modular/DiConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/EavAttributesConfigFilesTest.php | 2 +- .../Magento/Test/Integrity/Modular/EventConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/ExportConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/FieldsetConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/ImportConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/IndexerConfigFilesTest.php | 2 +- .../Magento/Test/Integrity/Modular/LayoutFilesTest.php | 2 +- .../Modular/Magento/Catalog/AttributeConfigFilesTest.php | 2 +- .../Modular/Magento/Customer/AddressFormatsFilesTest.php | 2 +- .../Modular/Magento/Email/EmailTemplateConfigFilesTest.php | 2 +- .../Integrity/Modular/Magento/Sales/PdfConfigFilesTest.php | 2 +- .../Magento/Test/Integrity/Modular/MenuConfigFilesTest.php | 2 +- .../Magento/Test/Integrity/Modular/MviewConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/PaymentConfigFilesTest.php | 2 +- .../Integrity/Modular/ProductOptionsConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/ProductTypesConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/ResourcesConfigFilesTest.php | 2 +- .../Magento/Test/Integrity/Modular/RouteConfigFilesTest.php | 2 +- .../Magento/Test/Integrity/Modular/SalesConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/SystemConfigFilesTest.php | 2 +- .../Magento/Test/Integrity/Modular/TemplateFilesTest.php | 2 +- .../Magento/Test/Integrity/Modular/ThemeConfigFilesTest.php | 2 +- .../Magento/Test/Integrity/Modular/ViewConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/WidgetConfigFilesTest.php | 2 +- .../Test/Integrity/Modular/_files/skip_blocks_ce.php | 2 +- .../Integrity/Modular/_files/skip_template_blocks_ce.php | 2 +- .../testsuite/Magento/Test/Integrity/StaticFilesTest.php | 2 +- .../Magento/Test/Integrity/Theme/TemplateFilesTest.php | 2 +- .../testsuite/Magento/Test/Integrity/Theme/XmlFilesTest.php | 2 +- .../Magento/Test/Integrity/ViewFileReferenceTest.php | 2 +- .../Magento/TestFixture/Controller/Adminhtml/Noroute.php | 2 +- .../Magento/TestModuleSample/ModuleInstallationTest.php | 2 +- .../Adminhtml/System/Design/Theme/Edit/Tab/GeneralTest.php | 2 +- .../testsuite/Magento/Theme/Block/Html/BreadcrumbsTest.php | 2 +- .../testsuite/Magento/Theme/Block/Html/FooterTest.php | 2 +- .../Adminhtml/System/Design/ThemeControllerTest.php | 2 +- .../Adminhtml/System/Design/_files/simple-js-file.js | 2 +- .../testsuite/Magento/Theme/Model/Config/ValidatorTest.php | 2 +- .../Magento/Theme/Model/Design/Backend/ExceptionsTest.php | 2 +- .../testsuite/Magento/Theme/Model/DesignTest.php | 2 +- .../Magento/Theme/Model/Layout/Config/ReaderTest.php | 2 +- .../testsuite/Magento/Theme/Model/Layout/ConfigTest.php | 2 +- .../Magento/Theme/Model/Layout/_files/page_layouts.xml | 2 +- .../Magento/Theme/Model/Layout/_files/page_layouts2.xml | 2 +- .../Theme/Model/ResourceModel/Theme/CollectionTest.php | 2 +- .../testsuite/Magento/Theme/Model/Theme/CollectionTest.php | 2 +- .../Magento/Theme/Model/Theme/Domain/VirtualTest.php | 2 +- .../testsuite/Magento/Theme/Model/Theme/FileTest.php | 2 +- .../Magento/Theme/Model/Theme/RegistrationTest.php | 2 +- .../Magento/Theme/Model/Theme/Source/ThemeTest.php | 2 +- .../Model/Theme/Source/_files/design/frontend/a_d/theme.xml | 2 +- .../Model/Theme/Source/_files/design/frontend/b_e/theme.xml | 2 +- .../Source/_files/design/frontend/magento_default/theme.xml | 2 +- .../Theme/Source/_files/design/frontend/magento_g/theme.xml | 2 +- .../integration/testsuite/Magento/Theme/Model/ThemeTest.php | 2 +- .../testsuite/Magento/Theme/Model/View/DesignTest.php | 2 +- .../_files/design/adminhtml/Vendor/test/registration.php | 2 +- .../Model/_files/design/adminhtml/Vendor/test/theme.xml | 2 +- .../design/area_two/Vendor/theme_one/registration.php | 2 +- .../Model/_files/design/area_two/Vendor/theme_one/theme.xml | 2 +- .../design/design_area/Vendor/theme_one/registration.php | 2 +- .../_files/design/design_area/Vendor/theme_one/theme.xml | 2 +- .../_files/design/frontend/Magento/default/registration.php | 2 +- .../Model/_files/design/frontend/Magento/default/theme.xml | 2 +- .../design/frontend/Magento/default_iphone/registration.php | 2 +- .../_files/design/frontend/Magento/default_iphone/theme.xml | 2 +- .../design/frontend/Test/cache_test_theme/registration.php | 2 +- .../_files/design/frontend/Test/cache_test_theme/theme.xml | 2 +- .../Test/default/Magento_Catalog/catalog_category_view.xml | 2 +- .../Magento_Catalog/catalog_category_view_type_default.xml | 2 +- .../Test/default/Magento_Catalog/catalog_product_view.xml | 2 +- .../Magento_Catalog/catalog_product_view_type_simple.xml | 2 +- .../default/Magento_Catalog/templates/theme_template.phtml | 2 +- .../Test/default/Magento_Cms/layout_test_handle_extra.xml | 2 +- .../Test/default/Magento_Core/layout_test_handle_main.xml | 2 +- .../Test/default/Magento_Core/layout_test_handle_sample.xml | 2 +- .../Model/_files/design/frontend/Test/default/etc/view.xml | 2 +- .../_files/design/frontend/Test/default/registration.php | 2 +- .../Model/_files/design/frontend/Test/default/theme.xml | 2 +- .../_files/design/frontend/Test/default/web/css/styles.css | 2 +- .../_files/design/frontend/Test/default/web/js/tabs.js | 2 +- .../design/frontend/Test/default/web/result_source.css | 4 ++-- .../design/frontend/Test/default/web/result_source_dev.css | 2 +- .../_files/design/frontend/Test/default/web/source.less | 2 +- .../design/frontend/Test/publication/registration.php | 2 +- .../Model/_files/design/frontend/Test/publication/theme.xml | 2 +- .../_files/design/frontend/Test/test_theme/registration.php | 2 +- .../Model/_files/design/frontend/Test/test_theme/theme.xml | 2 +- .../custom_theme/Fixture_Module/web/fixture_script.js | 2 +- .../design/frontend/Vendor/custom_theme/registration.php | 2 +- .../_files/design/frontend/Vendor/custom_theme/theme.xml | 2 +- .../design/frontend/Vendor/default/access_violation.php | 2 +- .../_files/design/frontend/Vendor/default/registration.php | 2 +- .../Model/_files/design/frontend/Vendor/default/theme.xml | 2 +- .../design/frontend/Vendor/default/web/css/base64.css | 2 +- .../frontend/Vendor/default/web/css/deep/recursive.css | 2 +- .../design/frontend/Vendor/default/web/css/exception.css | 2 +- .../_files/design/frontend/Vendor/default/web/css/file.css | 2 +- .../_files/design/frontend/Vendor/default/web/recursive.css | 2 +- .../_files/design/frontend/Vendor/default/web/scripts.js | 2 +- .../Theme/Model/_files/design/frontend/access_violation.php | 2 +- .../testsuite/Magento/Theme/_files/design_change.php | 2 +- .../Magento/Theme/_files/design_change_rollback.php | 2 +- .../Magento/Theme/_files/design_change_timezone.php | 2 +- .../Theme/_files/design_change_timezone_rollback.php | 2 +- .../testsuite/Magento/Translation/Controller/AjaxTest.php | 2 +- .../Magento/Translation/Model/InlineParserTest.php | 2 +- .../testsuite/Magento/Translation/Model/StringTest.php | 2 +- .../Model/_files/local_config/local_config/custom/local.xml | 2 +- .../local_config/custom/prohibited.filename.xml | 2 +- .../Model/_files/local_config/local_config/local.xml | 2 +- .../Model/_files/local_config/local_config/z.xml | 2 +- .../Model/_files/local_config/no_local_config/a.xml | 2 +- .../Model/_files/local_config/no_local_config/b.xml | 2 +- .../_files/local_config/no_local_config/custom/local.xml | 2 +- .../Translation/Model/_files/locale/en_AU/config.xml | 2 +- .../testsuite/Magento/Translation/_files/db_translate.php | 2 +- .../Magento/Translation/_files/db_translate_admin_store.php | 2 +- .../testsuite/Magento/Ui/Api/BookmarkRepositoryTest.php | 2 +- .../integration/testsuite/Magento/Ui/_files/bookmarks.php | 2 +- .../integration/testsuite/Magento/Ups/Model/CarrierTest.php | 2 +- .../Magento/UrlRewrite/Block/Catalog/Category/EditTest.php | 2 +- .../Magento/UrlRewrite/Block/Catalog/Category/TreeTest.php | 2 +- .../Magento/UrlRewrite/Block/Catalog/Edit/FormTest.php | 2 +- .../Magento/UrlRewrite/Block/Catalog/Product/EditTest.php | 2 +- .../Magento/UrlRewrite/Block/Catalog/Product/GridTest.php | 2 +- .../Magento/UrlRewrite/Block/Cms/Page/Edit/FormTest.php | 2 +- .../Magento/UrlRewrite/Block/Cms/Page/EditTest.php | 2 +- .../Magento/UrlRewrite/Block/Cms/Page/GridTest.php | 2 +- .../testsuite/Magento/UrlRewrite/Block/Edit/FormTest.php | 2 +- .../testsuite/Magento/UrlRewrite/Block/EditTest.php | 2 +- .../testsuite/Magento/UrlRewrite/Block/SelectorTest.php | 2 +- .../testsuite/Magento/User/Block/Role/Grid/UserTest.php | 2 +- .../testsuite/Magento/User/Block/Role/Tab/EditTest.php | 2 +- .../testsuite/Magento/User/Block/User/Edit/Tab/MainTest.php | 2 +- .../Magento/User/Controller/Adminhtml/AuthTest.php | 2 +- .../Magento/User/Controller/Adminhtml/Locks/GridTest.php | 2 +- .../Magento/User/Controller/Adminhtml/Locks/IndexTest.php | 2 +- .../User/Controller/Adminhtml/Locks/MassUnlockTest.php | 2 +- .../Magento/User/Controller/Adminhtml/User/DeleteTest.php | 2 +- .../User/Controller/Adminhtml/User/InvalidateTokenTest.php | 2 +- .../Magento/User/Controller/Adminhtml/User/RoleTest.php | 2 +- .../Magento/User/Controller/Adminhtml/UserTest.php | 2 +- .../integration/testsuite/Magento/User/Helper/DataTest.php | 2 +- .../User/Model/ResourceModel/Role/User/CollectionTest.php | 2 +- .../testsuite/Magento/User/Model/ResourceModel/UserTest.php | 2 +- .../integration/testsuite/Magento/User/Model/UserTest.php | 2 +- .../testsuite/Magento/User/_files/dummy_user.php | 2 +- .../testsuite/Magento/User/_files/locked_users.php | 2 +- .../testsuite/Magento/User/_files/user_with_role.php | 2 +- .../Magento/Variable/Block/System/Variable/EditTest.php | 2 +- .../Variable/Controller/Adminhtml/System/VariableTest.php | 2 +- .../Magento/Variable/Model/Variable/ConfigTest.php | 2 +- .../testsuite/Magento/Variable/Model/VariableTest.php | 2 +- .../testsuite/Magento/Variable/_files/variable.php | 2 +- .../Magento/Vault/Model/PaymentTokenRepositoryTest.php | 2 +- .../Magento/Vault/Model/ResourceModel/PaymentTokenTest.php | 2 +- .../integration/testsuite/Magento/Vault/_files/customer.php | 2 +- .../testsuite/Magento/Vault/_files/payment_tokens.php | 2 +- .../Magento/Version/Controller/Index/IndexTest.php | 2 +- .../Magento/Webapi/Controller/PathProcessorTest.php | 2 +- .../testsuite/Magento/Webapi/Model/Config/ReaderTest.php | 2 +- .../testsuite/Magento/Webapi/Model/Config/_files/webapi.php | 2 +- .../Magento/Webapi/Model/Config/_files/webapiA.xml | 2 +- .../Magento/Webapi/Model/Config/_files/webapiB.xml | 2 +- .../testsuite/Magento/Webapi/Model/ServiceMetadataTest.php | 2 +- .../testsuite/Magento/Webapi/Model/Soap/ConfigTest.php | 2 +- .../testsuite/Magento/Webapi/Service/Entity/TestService.php | 2 +- .../testsuite/Magento/Webapi/ServiceNameCollisionTest.php | 2 +- .../testsuite/Magento/Webapi/_files/webapi_user.php | 2 +- .../Magento/Webapi/_files/webapi_user_rollback.php | 2 +- .../integration/testsuite/Magento/Weee/Model/TaxTest.php | 2 +- .../testsuite/Magento/Weee/_files/product_with_fpt.php | 2 +- .../Magento/Weee/_files/product_with_fpt_rollback.php | 2 +- .../Widget/Instance/Edit/Chooser/ContainerTest.php | 2 +- .../Widget/Instance/Edit/Chooser/DesignAbstractionTest.php | 2 +- .../Adminhtml/Widget/Instance/Edit/Chooser/LayoutTest.php | 2 +- .../Edit/Chooser/_files/design-abstraction_select.html | 2 +- .../_files/layout/child_page_with_inherited_containers.xml | 2 +- .../child_page_with_inherited_imported_containers.xml | 2 +- .../_files/layout/child_page_with_own_containers.xml | 2 +- .../Chooser/_files/layout/child_page_without_containers.xml | 2 +- .../Edit/Chooser/_files/layout/customer_account.xml | 2 +- .../_files/layout/non_page_handle_with_own_containers.xml | 2 +- .../Instance/Edit/Chooser/_files/layout/page_empty.xml | 2 +- .../_files/layout/root_page_with_imported_containers.xml | 2 +- .../Chooser/_files/layout/root_page_with_own_containers.xml | 2 +- .../Chooser/_files/layout/root_page_without_containers.xml | 2 +- .../_files/layout/root_page_without_own_containers.xml | 2 +- .../Instance/Edit/Chooser/_files/page_types_select.html | 2 +- .../Adminhtml/Widget/Instance/Edit/Tab/Main/LayoutTest.php | 2 +- .../Block/Adminhtml/Widget/Instance/Edit/Tab/MainTest.php | 2 +- .../Widget/Block/Adminhtml/Widget/Instance/EditTest.php | 2 +- .../Widget/Controller/Adminhtml/Widget/InstanceTest.php | 2 +- .../Magento/Widget/Controller/Adminhtml/WidgetTest.php | 2 +- .../testsuite/Magento/Widget/Model/Config/DataTest.php | 2 +- .../testsuite/Magento/Widget/Model/Config/ReaderTest.php | 2 +- .../Model/Config/_files/catalog_new_products_list.xml | 2 +- .../Widget/Model/Config/_files/expectedGlobalArray.php | 2 +- .../Model/Config/_files/expectedGlobalDesignArray.php | 2 +- .../Widget/Model/Config/_files/expectedMergedArray.php | 2 +- .../Widget/Model/Config/_files/orders_and_returns.xml | 2 +- .../Model/Config/_files/orders_and_returns_customized.xml | 2 +- .../testsuite/Magento/Widget/Model/Layout/UpdateTest.php | 2 +- .../Widget/Model/ResourceModel/Layout/UpdateTest.php | 2 +- .../testsuite/Magento/Widget/Model/Template/FilterTest.php | 2 +- .../testsuite/Magento/Widget/Model/Widget/ConfigTest.php | 2 +- .../testsuite/Magento/Widget/Model/Widget/InstanceTest.php | 2 +- .../testsuite/Magento/Widget/Model/WidgetTest.php | 2 +- .../Widget/_files/design/adminhtml/magento_basic/theme.xml | 2 +- .../testsuite/Magento/Widget/_files/layout_cache.php | 2 +- .../testsuite/Magento/Widget/_files/layout_update.php | 2 +- .../Wishlist/Block/Customer/Wishlist/Item/ColumnTest.php | 2 +- .../Wishlist/Block/Customer/Wishlist/Item/OptionsTest.php | 2 +- .../Magento/Wishlist/Block/Customer/Wishlist/ItemsTest.php | 2 +- .../testsuite/Magento/Wishlist/Block/Share/WishlistTest.php | 2 +- .../testsuite/Magento/Wishlist/Controller/IndexTest.php | 2 +- .../testsuite/Magento/Wishlist/Controller/SharedTest.php | 2 +- .../testsuite/Magento/Wishlist/Helper/DataTest.php | 2 +- .../testsuite/Magento/Wishlist/_files/wishlist.php | 2 +- .../testsuite/Magento/Wishlist/_files/wishlist_shared.php | 2 +- .../_files/wishlist_with_product_qty_increments.php | 2 +- dev/tests/js/JsTestDriver/framework/requirejs-util.js | 2 +- dev/tests/js/JsTestDriver/framework/stub.js | 2 +- dev/tests/js/JsTestDriver/jsTestDriver.php.dist | 2 +- dev/tests/js/JsTestDriver/jsTestDriverOrder.php | 2 +- dev/tests/js/JsTestDriver/run_js_tests.php | 2 +- .../JsTestDriver/testsuite/lib/ko/datepicker/datepicker.js | 4 ++-- .../js/JsTestDriver/testsuite/lib/ko/datepicker/index.html | 2 +- dev/tests/js/JsTestDriver/testsuite/lib/storage/index.html | 2 +- .../js/JsTestDriver/testsuite/lib/storage/test-storage.js | 4 ++-- dev/tests/js/JsTestDriver/testsuite/mage/_demo/index.html | 4 ++-- dev/tests/js/JsTestDriver/testsuite/mage/_demo/test.js | 4 ++-- .../js/JsTestDriver/testsuite/mage/accordion/accordion.js | 2 +- .../js/JsTestDriver/testsuite/mage/accordion/index.html | 4 ++-- .../js/JsTestDriver/testsuite/mage/button/button-test.js | 2 +- .../JsTestDriver/testsuite/mage/calendar/calendar-qunit.js | 4 ++-- .../JsTestDriver/testsuite/mage/calendar/calendar-test.js | 2 +- .../js/JsTestDriver/testsuite/mage/calendar/calendar.html | 4 ++-- .../JsTestDriver/testsuite/mage/calendar/date-range-test.js | 4 ++-- .../js/JsTestDriver/testsuite/mage/collapsible/content.html | 4 ++-- .../js/JsTestDriver/testsuite/mage/collapsible/index.html | 2 +- .../testsuite/mage/collapsible/test-collapsible.js | 2 +- dev/tests/js/JsTestDriver/testsuite/mage/decorate-test.js | 2 +- .../js/JsTestDriver/testsuite/mage/dropdown/index.html | 2 +- .../JsTestDriver/testsuite/mage/dropdown/test-dropdown.js | 2 +- .../testsuite/mage/edit_trigger/edit-trigger-test.js | 2 +- dev/tests/js/JsTestDriver/testsuite/mage/form/form-test.js | 2 +- dev/tests/js/JsTestDriver/testsuite/mage/list/index.html | 4 ++-- .../js/JsTestDriver/testsuite/mage/list/jquery-list-test.js | 2 +- .../testsuite/mage/loader/jquery-loader-test.js | 4 ++-- .../js/JsTestDriver/testsuite/mage/loader/loader-test.js | 2 +- dev/tests/js/JsTestDriver/testsuite/mage/loader/loader.html | 4 ++-- dev/tests/js/JsTestDriver/testsuite/mage/mage-test.js | 4 ++-- dev/tests/js/JsTestDriver/testsuite/mage/menu/index.html | 2 +- dev/tests/js/JsTestDriver/testsuite/mage/menu/test-menu.js | 2 +- .../testsuite/mage/search/regular-search-test.js | 2 +- .../js/JsTestDriver/testsuite/mage/suggest/suggest-test.js | 2 +- .../testsuite/mage/suggest/tree-suggest-test.js | 2 +- dev/tests/js/JsTestDriver/testsuite/mage/tabs/index.html | 2 +- dev/tests/js/JsTestDriver/testsuite/mage/tabs/tabs-test.js | 2 +- dev/tests/js/JsTestDriver/testsuite/mage/tabs/tabs.js | 2 +- .../JsTestDriver/testsuite/mage/translate/translate-test.js | 2 +- .../mage/translate_inline/translate-inline-test.js | 2 +- .../translate-inline-vde-dialog-test.js | 2 +- .../mage/translate_inline_vde/translate-inline-vde-test.js | 2 +- .../js/JsTestDriver/testsuite/mage/validation/index.html | 4 ++-- .../testsuite/mage/validation/test-validation.js | 4 ++-- dev/tests/js/JsTestDriver/testsuite/mage/webapi-test.js | 2 +- dev/tests/js/JsTestDriver/testsuite/mage/zoom/zoom-test.js | 4 ++-- dev/tests/js/jasmine/assets/apply/components/fn.js | 2 +- dev/tests/js/jasmine/assets/apply/index.js | 2 +- dev/tests/js/jasmine/assets/apply/templates/node.html | 4 ++-- dev/tests/js/jasmine/assets/jsbuild/config.js | 2 +- dev/tests/js/jasmine/assets/jsbuild/external.js | 2 +- dev/tests/js/jasmine/assets/jsbuild/local.js | 2 +- dev/tests/js/jasmine/assets/script/index.js | 2 +- dev/tests/js/jasmine/assets/script/templates/selector.html | 4 ++-- dev/tests/js/jasmine/assets/script/templates/virtual.html | 2 +- dev/tests/js/jasmine/assets/text/config.js | 6 +++--- dev/tests/js/jasmine/assets/text/external.html | 4 ++-- dev/tests/js/jasmine/assets/text/local.html | 4 ++-- dev/tests/js/jasmine/assets/tools.js | 2 +- dev/tests/js/jasmine/require.conf.js | 6 +++--- dev/tests/js/jasmine/spec_runner/index.js | 4 ++-- dev/tests/js/jasmine/spec_runner/tasks/connect.js | 4 ++-- dev/tests/js/jasmine/spec_runner/tasks/jasmine.js | 4 ++-- dev/tests/js/jasmine/spec_runner/template.html | 4 ++-- .../adminhtml/js/utils/percentage-price-calculator.test.js | 2 +- .../Checkout/frontend/js/model/new-customer-address.test.js | 2 +- .../frontend/js/view/cart/shipping-estimation.test.js | 2 +- .../code/Magento/Checkout/frontend/js/view/shipping.test.js | 2 +- .../Customer/frontend/js/model/customer/address.test.js | 2 +- .../Customer/frontend/js/view/authentication-popup.test.js | 2 +- .../tests/app/code/Magento/Msrp/frontend/js/msrp.test.js | 2 +- .../code/Magento/PageCache/frontend/js/page-cache.test.js | 2 +- .../Review/view/frontend/web/js/process-review.test.js | 2 +- .../tests/app/code/Magento/Ui/base/js/core/layout.test.js | 4 ++-- .../tests/app/code/Magento/Ui/base/js/form/adapter.test.js | 2 +- .../tests/app/code/Magento/Ui/base/js/form/client.test.js | 2 +- .../code/Magento/Ui/base/js/form/components/area.test.js | 2 +- .../Magento/Ui/base/js/form/components/collection.test.js | 2 +- .../Ui/base/js/form/components/collection/item.test.js | 2 +- .../code/Magento/Ui/base/js/form/components/group.test.js | 2 +- .../code/Magento/Ui/base/js/form/components/html.test.js | 2 +- .../app/code/Magento/Ui/base/js/form/components/tab.test.js | 2 +- .../Magento/Ui/base/js/form/components/tab_group.test.js | 2 +- .../code/Magento/Ui/base/js/form/element/abstract.test.js | 2 +- .../code/Magento/Ui/base/js/form/element/boolean.test.js | 2 +- .../code/Magento/Ui/base/js/form/element/date-time.test.js | 2 +- .../app/code/Magento/Ui/base/js/form/element/date.test.js | 2 +- .../Magento/Ui/base/js/form/element/file-uploader.test.js | 2 +- .../code/Magento/Ui/base/js/form/element/post-code.test.js | 2 +- .../app/code/Magento/Ui/base/js/form/element/region.test.js | 2 +- .../app/code/Magento/Ui/base/js/form/element/select.test.js | 2 +- .../code/Magento/Ui/base/js/form/element/textarea.test.js | 2 +- .../tests/app/code/Magento/Ui/base/js/form/form.test.js | 2 +- .../tests/app/code/Magento/Ui/base/js/form/provider.test.js | 2 +- .../app/code/Magento/Ui/base/js/form/ui-select.test.js | 2 +- .../code/Magento/Ui/base/js/grid/columns/actions.test.js | 4 ++-- .../app/code/Magento/Ui/base/js/grid/columns/column.test.js | 2 +- .../app/code/Magento/Ui/base/js/grid/columns/date.test.js | 2 +- .../Magento/Ui/base/js/grid/columns/multiselect.test.js | 4 ++-- .../app/code/Magento/Ui/base/js/grid/columns/select.test.js | 2 +- .../Ui/base/js/grid/controls/bookmarks/storage.test.js | 2 +- .../code/Magento/Ui/base/js/grid/controls/columns.test.js | 2 +- .../app/code/Magento/Ui/base/js/grid/editing/bulk.test.js | 2 +- .../code/Magento/Ui/base/js/grid/filters/filters.test.js | 2 +- .../app/code/Magento/Ui/base/js/grid/filters/range.test.js | 2 +- .../app/code/Magento/Ui/base/js/grid/paging/paging.test.js | 2 +- .../tests/app/code/Magento/Ui/base/js/grid/resize.test.js | 2 +- .../app/code/Magento/Ui/base/js/grid/search/search.test.js | 2 +- .../app/code/Magento/Ui/base/js/grid/sticky/sticky.test.js | 4 ++-- .../code/Magento/Ui/base/js/grid/tree-massactions.test.js | 2 +- .../app/code/Magento/Ui/base/js/lib/component/links.test.js | 2 +- .../tests/app/code/Magento/Ui/base/js/lib/events.test.js | 2 +- .../code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js | 4 ++-- .../app/code/Magento/Ui/base/js/lib/ko/bind/i18n.test.js | 2 +- .../code/Magento/Ui/base/js/lib/registry/registry.test.js | 2 +- .../tests/app/code/Magento/Ui/base/js/modal/alert.test.js | 2 +- .../tests/app/code/Magento/Ui/base/js/modal/confirm.test.js | 2 +- .../tests/app/code/Magento/Ui/base/js/modal/modal.test.js | 2 +- .../tests/app/code/Magento/Ui/base/js/modal/prompt.test.js | 2 +- dev/tests/js/jasmine/tests/lib/mage/apply.test.js | 2 +- dev/tests/js/jasmine/tests/lib/mage/misc.test.js | 2 +- .../jasmine/tests/lib/mage/requirejs/static-jsbuild.test.js | 2 +- .../js/jasmine/tests/lib/mage/requirejs/static-text.test.js | 2 +- .../jasmine/tests/lib/mage/requirejs/statistician.test.js | 2 +- dev/tests/js/jasmine/tests/lib/mage/scripts.test.js | 2 +- dev/tests/js/jasmine/tests/lib/mage/template.test.js | 2 +- dev/tests/js/jasmine/tests/lib/mage/validation.test.js | 2 +- .../Magento/Sniffs/Arrays/ShortArraySyntaxSniff.php | 2 +- .../framework/Magento/Sniffs/Files/LineLengthSniff.php | 2 +- .../static/framework/Magento/Sniffs/Less/AvoidIdSniff.php | 2 +- .../framework/Magento/Sniffs/Less/BracesFormattingSniff.php | 2 +- .../framework/Magento/Sniffs/Less/ClassNamingSniff.php | 2 +- .../framework/Magento/Sniffs/Less/ColonSpacingSniff.php | 2 +- .../framework/Magento/Sniffs/Less/ColourDefinitionSniff.php | 2 +- .../Magento/Sniffs/Less/CombinatorIndentationSniff.php | 2 +- .../framework/Magento/Sniffs/Less/CommentLevelsSniff.php | 2 +- .../Magento/Sniffs/Less/ImportantPropertySniff.php | 2 +- .../framework/Magento/Sniffs/Less/IndentationSniff.php | 2 +- .../Magento/Sniffs/Less/PropertiesLineBreakSniff.php | 2 +- .../Magento/Sniffs/Less/PropertiesSortingSniff.php | 2 +- .../static/framework/Magento/Sniffs/Less/QuotesSniff.php | 2 +- .../Magento/Sniffs/Less/SelectorDelimiterSniff.php | 2 +- .../framework/Magento/Sniffs/Less/SemicolonSpacingSniff.php | 2 +- .../Magento/Sniffs/Less/TokenizerSymbolsInterface.php | 2 +- .../Magento/Sniffs/Less/TypeSelectorConcatenationSniff.php | 2 +- .../framework/Magento/Sniffs/Less/TypeSelectorsSniff.php | 2 +- .../static/framework/Magento/Sniffs/Less/VariablesSniff.php | 2 +- .../static/framework/Magento/Sniffs/Less/ZeroUnitsSniff.php | 2 +- .../Sniffs/LiteralNamespaces/LiteralNamespacesSniff.php | 2 +- .../Magento/Sniffs/MicroOptimizations/IsNullSniff.php | 2 +- .../Magento/Sniffs/NamingConventions/InterfaceNameSniff.php | 2 +- .../Magento/Sniffs/NamingConventions/ReservedWordsSniff.php | 2 +- .../Magento/Sniffs/Translation/ConstantUsageSniff.php | 2 +- .../Magento/Sniffs/Whitespace/EmptyLineMissedSniff.php | 2 +- .../Magento/Sniffs/Whitespace/MultipleEmptyLinesSniff.php | 2 +- .../CodingStandard/Tool/BlacklistInterface.php | 2 +- .../TestFramework/CodingStandard/Tool/CodeMessDetector.php | 2 +- .../TestFramework/CodingStandard/Tool/CodeSniffer.php | 2 +- .../CodingStandard/Tool/CodeSniffer/LessWrapper.php | 2 +- .../CodingStandard/Tool/CodeSniffer/Wrapper.php | 2 +- .../TestFramework/CodingStandard/Tool/CopyPasteDetector.php | 2 +- .../CodingStandard/Tool/ExtensionInterface.php | 2 +- .../Magento/TestFramework/CodingStandard/ToolInterface.php | 2 +- .../framework/Magento/TestFramework/Dependency/DbRule.php | 2 +- .../framework/Magento/TestFramework/Dependency/DiRule.php | 2 +- .../Magento/TestFramework/Dependency/LayoutRule.php | 2 +- .../framework/Magento/TestFramework/Dependency/PhpRule.php | 2 +- .../Magento/TestFramework/Dependency/RuleInterface.php | 2 +- .../Dependency/VirtualType/VirtualTypeMapper.php | 2 +- .../Magento/TestFramework/Inspection/AbstractCommand.php | 2 +- .../Magento/TestFramework/Inspection/Exception.php | 2 +- .../Magento/TestFramework/Inspection/JsHint/Command.php | 2 +- .../Magento/TestFramework/Inspection/WordsFinder.php | 4 ++-- .../Magento/TestFramework/Integrity/AbstractConfig.php | 2 +- .../Magento/TestFramework/Integrity/Library/Injectable.php | 2 +- .../Library/PhpParser/DependenciesCollectorInterface.php | 2 +- .../Integrity/Library/PhpParser/ParserFactory.php | 2 +- .../Integrity/Library/PhpParser/ParserInterface.php | 2 +- .../Integrity/Library/PhpParser/StaticCalls.php | 2 +- .../TestFramework/Integrity/Library/PhpParser/Throws.php | 2 +- .../TestFramework/Integrity/Library/PhpParser/Tokens.php | 2 +- .../TestFramework/Integrity/Library/PhpParser/Uses.php | 2 +- .../Magento/TestFramework/Integrity/PluginValidator.php | 2 +- .../Magento/TestFramework/Utility/ChangedFiles.php | 2 +- .../framework/Magento/TestFramework/Utility/CodeCheck.php | 2 +- .../static/framework/Magento/TestFramework/Utility/File.php | 2 +- .../TestFramework/Utility/File/RegexIteratorFactory.php | 2 +- .../Magento/TestFramework/Utility/FunctionDetector.php | 2 +- .../Magento/TestFramework/Utility/XssOutputValidator.php | 2 +- dev/tests/static/framework/Magento/ruleset.xml | 2 +- dev/tests/static/framework/autoload.php | 2 +- dev/tests/static/framework/bootstrap.php | 2 +- dev/tests/static/framework/tests/unit/phpunit.xml.dist | 2 +- .../Magento/Sniffs/Translation/ConstantUsageSniffTest.php | 2 +- .../Magento/Sniffs/Translation/_files/correct_arguments.txt | 2 +- .../Sniffs/Translation/_files/incorrect_arguments.txt | 2 +- .../Magento/Test/Integrity/Library/InjectableTest.php | 2 +- .../Test/Integrity/Library/PhpParser/ParserFactoryTest.php | 2 +- .../Test/Integrity/Library/PhpParser/StaticCallsTest.php | 2 +- .../Magento/Test/Integrity/Library/PhpParser/ThrowsTest.php | 2 +- .../Magento/Test/Integrity/Library/PhpParser/TokensTest.php | 2 +- .../Magento/Test/Integrity/Library/PhpParser/UsesTest.php | 2 +- .../CodingStandard/Tool/CodeMessDetectorTest.php | 2 +- .../CodingStandard/Tool/CodeSniffer/WrapperTest.php | 2 +- .../TestFramework/CodingStandard/Tool/CodeSnifferTest.php | 2 +- .../Magento/TestFramework/Dependency/DbRuleTest.php | 2 +- .../Magento/TestFramework/Dependency/DiRuleTest.php | 2 +- .../Magento/TestFramework/Dependency/LayoutRuleTest.php | 2 +- .../Magento/TestFramework/Dependency/PhpRuleTest.php | 2 +- .../Dependency/VirtualType/VirtualTypeMapperTest.php | 2 +- .../Dependency/VirtualType/_files/etc/adminhtml/di.xml | 2 +- .../TestFramework/Dependency/VirtualType/_files/etc/di.xml | 2 +- .../Dependency/_files/di_external_dependency.xml | 2 +- .../Dependency/_files/di_in_module_dependency.xml | 2 +- .../TestFramework/Dependency/_files/di_no_dependency.xml | 2 +- .../Dependency/_files/di_virtual_dependency.xml | 2 +- .../TestFramework/Dependency/_files/layout_handle.xml | 2 +- .../Dependency/_files/layout_handle_parent.xml | 2 +- .../Dependency/_files/layout_handle_update.xml | 2 +- .../TestFramework/Dependency/_files/layout_reference.xml | 2 +- .../Magento/TestFramework/Inspection/JsHint/CommandTest.php | 2 +- .../Magento/TestFramework/Inspection/WordsFinderTest.php | 2 +- .../TestFramework/Inspection/_files/broken_config.xml | 2 +- .../Magento/TestFramework/Inspection/_files/config.xml | 2 +- .../TestFramework/Inspection/_files/config_additional.xml | 2 +- .../Inspection/_files/empty_whitelist_path.xml | 2 +- .../TestFramework/Inspection/_files/empty_words_config.xml | 2 +- .../TestFramework/Inspection/_files/words_finder/buffy.php | 2 +- .../_files/words_finder/interview_with_the_vampire.php | 2 +- .../Inspection/_files/words_finder/self_tested_config.xml | 2 +- .../Inspection/_files/words_finder/twilight/eclipse.php | 2 +- .../Inspection/_files/words_finder/twilight/newmoon.php | 2 +- .../testsuite/Magento/TestFramework/Utility/FileTest.php | 2 +- .../Magento/TestFramework/Utility/FunctionDetectorTest.php | 2 +- .../TestFramework/Utility/XssOutputValidatorTest.php | 2 +- .../Magento/TestFramework/Utility/_files/xss_safe.phtml | 2 +- .../Magento/TestFramework/Utility/_files/xss_unsafe.phtml | 2 +- dev/tests/static/get_github_changes.php | 2 +- dev/tests/static/phpunit-all.xml.dist | 2 +- dev/tests/static/phpunit.xml.dist | 2 +- .../Test/Integrity/App/Language/CircularDependencyTest.php | 2 +- .../Magento/Test/Integrity/App/Language/ConfigTest.php | 2 +- .../Test/Integrity/App/Language/TranslationFiles.php | 2 +- .../Test/Integrity/App/Language/TranslationFilesTest.php | 2 +- .../Test/Integrity/App/Language/_files/known_invalid.xml | 2 +- .../Test/Integrity/App/Language/_files/known_valid.xml | 2 +- .../Magento/Test/Integrity/CircularDependencyTest.php | 2 +- .../static/testsuite/Magento/Test/Integrity/ClassesTest.php | 2 +- .../testsuite/Magento/Test/Integrity/ComposerLockTest.php | 2 +- .../testsuite/Magento/Test/Integrity/ComposerTest.php | 2 +- .../static/testsuite/Magento/Test/Integrity/ConfigTest.php | 2 +- .../testsuite/Magento/Test/Integrity/DependencyTest.php | 2 +- .../testsuite/Magento/Test/Integrity/Di/CompilerTest.php | 2 +- .../Magento/Test/Integrity/ExceptionHierarchyTest.php | 2 +- .../Magento/Test/Integrity/HhvmCompatibilityTest.php | 2 +- .../testsuite/Magento/Test/Integrity/Layout/BlocksTest.php | 2 +- .../testsuite/Magento/Test/Integrity/Layout/HandlesTest.php | 2 +- .../Magento/Test/Integrity/Layout/ThemeHandlesTest.php | 2 +- .../Magento/Test/Integrity/Library/DependencyTest.php | 2 +- .../Test/Integrity/Magento/Backend/SystemConfigTest.php | 2 +- .../Magento/Core/Model/Fieldset/FieldsetConfigTest.php | 2 +- .../Magento/Core/Model/Fieldset/_files/fieldset.xml | 2 +- .../Magento/Core/Model/Fieldset/_files/fieldset_file.xml | 2 +- .../Magento/Core/Model/Fieldset/_files/invalid_fieldset.xml | 2 +- .../Magento/Framework/Api/ExtensibleInterfacesTest.php | 2 +- .../Magento/Framework/Search/RequestConfigTest.php | 2 +- .../Magento/Framework/Search/SearchEngineConfigTest.php | 2 +- .../Magento/Framework/Search/_files/request/invalid.xml | 2 +- .../Framework/Search/_files/request/invalid_partial.xml | 2 +- .../Magento/Framework/Search/_files/request/valid.xml | 4 ++-- .../Framework/Search/_files/request/valid_partial.xml | 4 ++-- .../Framework/Search/_files/search_engine/invalid.xml | 2 +- .../Magento/Framework/Search/_files/search_engine/valid.xml | 2 +- .../Magento/Test/Integrity/Magento/Indexer/ConfigTest.php | 2 +- .../Test/Integrity/Magento/Indexer/_files/invalid.xml | 2 +- .../Magento/Test/Integrity/Magento/Indexer/_files/valid.xml | 2 +- .../Test/Integrity/Magento/Indexer/_files/valid_partial.xml | 2 +- .../Integrity/Magento/Payment/Config/ReferentialTest.php | 2 +- .../Test/Integrity/Magento/Payment/Model/ConfigTest.php | 2 +- .../Magento/Payment/Model/_files/invalid_payment.xml | 2 +- .../Payment/Model/_files/invalid_payment_partial.xml | 2 +- .../Test/Integrity/Magento/Payment/Model/_files/payment.xml | 2 +- .../Magento/Payment/Model/_files/payment_partial.xml | 2 +- .../Test/Integrity/Magento/Persistent/ConfigTest.php | 2 +- .../Magento/Persistent/_files/invalid_persistent.xml | 2 +- .../Magento/Persistent/_files/valid_persistent.xml | 2 +- .../Test/Integrity/Magento/Webapi/Model/ConfigTest.php | 2 +- .../Magento/Webapi/Model/_files/invalid_webapi.xml | 2 +- .../Test/Integrity/Magento/Webapi/Model/_files/webapi.xml | 2 +- .../Test/Integrity/Magento/Widget/WidgetConfigTest.php | 2 +- .../Test/Integrity/Magento/Widget/_files/invalid_widget.xml | 2 +- .../Magento/Test/Integrity/Magento/Widget/_files/widget.xml | 2 +- .../Test/Integrity/Magento/Widget/_files/widget_file.xml | 4 ++-- .../Magento/Test/Integrity/ObserverImplementationTest.php | 2 +- .../Magento/Test/Integrity/Phrase/AbstractTestCase.php | 2 +- .../Magento/Test/Integrity/Phrase/ArgumentsTest.php | 2 +- .../Magento/Test/Integrity/Phrase/Legacy/SignatureTest.php | 2 +- .../testsuite/Magento/Test/Integrity/Readme/ReadmeTest.php | 2 +- .../testsuite/Magento/Test/Integrity/TestPlacementTest.php | 2 +- .../testsuite/Magento/Test/Integrity/Xml/SchemaTest.php | 2 +- .../Test/Integrity/_files/dependency_test/tables_ce.php | 2 +- .../testsuite/Magento/Test/Js/Exemplar/JsHintTest.php | 2 +- dev/tests/static/testsuite/Magento/Test/Js/LiveCodeTest.php | 2 +- .../static/testsuite/Magento/Test/Legacy/ClassesTest.php | 2 +- .../static/testsuite/Magento/Test/Legacy/ConfigTest.php | 2 +- .../static/testsuite/Magento/Test/Legacy/CopyrightTest.php | 2 +- .../testsuite/Magento/Test/Legacy/EmailTemplateTest.php | 2 +- .../static/testsuite/Magento/Test/Legacy/FilesystemTest.php | 2 +- .../testsuite/Magento/Test/Legacy/InstallUpgradeTest.php | 2 +- .../static/testsuite/Magento/Test/Legacy/LayoutTest.php | 2 +- .../testsuite/Magento/Test/Legacy/LibraryLocationTest.php | 2 +- .../static/testsuite/Magento/Test/Legacy/LicenseTest.php | 2 +- .../Test/Legacy/Magento/Core/Block/AbstractBlockTest.php | 2 +- .../Test/Legacy/Magento/Framework/Module/ModuleXMLTest.php | 2 +- .../Legacy/Magento/Framework/ObjectManager/DiConfigTest.php | 2 +- .../Magento/Test/Legacy/Magento/Widget/XmlTest.php | 2 +- .../testsuite/Magento/Test/Legacy/ModuleDBChangeTest.php | 2 +- .../testsuite/Magento/Test/Legacy/ObsoleteAclTest.php | 2 +- .../testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php | 2 +- .../Magento/Test/Legacy/ObsoleteConnectionTest.php | 2 +- .../testsuite/Magento/Test/Legacy/ObsoleteMenuTest.php | 2 +- .../testsuite/Magento/Test/Legacy/ObsoleteResponseTest.php | 2 +- .../Magento/Test/Legacy/ObsoleteSystemConfigurationTest.php | 2 +- .../Magento/Test/Legacy/ObsoleteThemeLocalXmlTest.php | 2 +- .../testsuite/Magento/Test/Legacy/PhtmlTemplateTest.php | 2 +- .../testsuite/Magento/Test/Legacy/RestrictedCodeTest.php | 2 +- .../static/testsuite/Magento/Test/Legacy/TableTest.php | 2 +- .../Magento/Test/Legacy/UnsecureFunctionsUsageTest.php | 2 +- .../static/testsuite/Magento/Test/Legacy/WordsTest.php | 2 +- .../Magento/Test/Legacy/_files/blacklist/obsolete_mage.php | 2 +- .../Test/Legacy/_files/connection/blacklist/files_list.php | 2 +- .../_files/connection/whitelist/refactored_modules.php | 2 +- .../Magento/Test/Legacy/_files/copyright/blacklist.php | 2 +- .../Magento/Test/Legacy/_files/obsolete_classes.php | 2 +- .../Magento/Test/Legacy/_files/obsolete_config_nodes.php | 2 +- .../Magento/Test/Legacy/_files/obsolete_constants.php | 2 +- .../Magento/Test/Legacy/_files/obsolete_methods.php | 2 +- .../Magento/Test/Legacy/_files/obsolete_namespaces.php | 2 +- .../testsuite/Magento/Test/Legacy/_files/obsolete_paths.php | 2 +- .../Magento/Test/Legacy/_files/obsolete_properties.php | 2 +- .../Test/Legacy/_files/response/blacklist/files_list.php | 2 +- .../Legacy/_files/response/obsolete_response_methods.php | 2 +- .../Legacy/_files/response/whitelist/refactored_modules.php | 2 +- .../Magento/Test/Legacy/_files/restricted_classes.php | 2 +- .../Test/Legacy/_files/security/unsecure_php_functions.php | 2 +- .../testsuite/Magento/Test/Legacy/_files/words_ce.xml | 2 +- .../static/testsuite/Magento/Test/Less/LiveCodeTest.php | 2 +- .../testsuite/Magento/Test/Less/_files/lesscs/ruleset.xml | 4 ++-- .../static/testsuite/Magento/Test/Php/LiveCodeTest.php | 2 +- .../testsuite/Magento/Test/Php/XssPhtmlTemplateTest.php | 2 +- .../testsuite/Magento/Test/Php/_files/phpcs/ruleset.xml | 2 +- .../testsuite/Magento/Test/Php/_files/phpmd/ruleset.xml | 2 +- .../Magento/Test/Php/_files/whitelist/exempt_modules/ce.php | 2 +- .../Magento/Test/Tools/Composer/RootComposerMappingTest.php | 2 +- dev/tests/unit/framework/autoload.php | 2 +- dev/tests/unit/framework/bootstrap.php | 2 +- dev/tests/unit/phpunit.xml.dist | 4 ++-- .../Magento/Tools/Layout/processors/addItemRenderer.xsl | 2 +- .../Magento/Tools/Layout/processors/addToParentGroup.xsl | 2 +- dev/tools/Magento/Tools/Layout/processors/headBlocks.xsl | 2 +- .../Magento/Tools/Layout/processors/layoutArguments.xsl | 2 +- .../Magento/Tools/Layout/processors/layoutGridContainer.xsl | 2 +- dev/tools/Magento/Tools/Layout/processors/layoutHandles.xsl | 2 +- dev/tools/Magento/Tools/Layout/processors/layoutLabels.xsl | 2 +- .../Magento/Tools/Layout/processors/layoutReferences.xsl | 2 +- .../Magento/Tools/Layout/processors/layoutTranslate.xsl | 2 +- dev/tools/bootstrap.php | 2 +- dev/tools/grunt/assets/legacy-build/shim.js | 2 +- dev/tools/grunt/configs/clean.js | 2 +- dev/tools/grunt/configs/combo.js | 2 +- dev/tools/grunt/configs/eslint.js | 2 +- dev/tools/grunt/configs/exec.js | 2 +- dev/tools/grunt/configs/imagemin.js | 2 +- dev/tools/grunt/configs/jscs.js | 2 +- dev/tools/grunt/configs/less.js | 2 +- dev/tools/grunt/configs/path.js | 2 +- dev/tools/grunt/configs/replace.js | 4 ++-- dev/tools/grunt/configs/themes.js | 2 +- dev/tools/grunt/configs/usebanner.js | 4 ++-- dev/tools/grunt/configs/watch.js | 2 +- dev/tools/grunt/tasks/black-list-generator.js | 4 ++-- dev/tools/grunt/tasks/clean-black-list.js | 2 +- dev/tools/grunt/tasks/deploy.js | 2 +- dev/tools/grunt/tasks/mage-minify.js | 2 +- dev/tools/grunt/tasks/static.js | 2 +- dev/tools/grunt/tools/collect-validation-files.js | 4 ++-- dev/tools/grunt/tools/files-router.js | 2 +- dev/tools/grunt/tools/fs-tools.js | 2 +- dev/travis/before_install.sh | 2 +- dev/travis/before_script.sh | 2 +- index.php | 2 +- lib/internal/Magento/Framework/Acl.php | 2 +- lib/internal/Magento/Framework/Acl/AclResource.php | 2 +- .../Framework/Acl/AclResource/Config/Converter/Dom.php | 2 +- .../Framework/Acl/AclResource/Config/Reader/Filesystem.php | 2 +- .../Framework/Acl/AclResource/Config/SchemaLocator.php | 2 +- lib/internal/Magento/Framework/Acl/AclResource/Provider.php | 2 +- .../Magento/Framework/Acl/AclResource/ProviderInterface.php | 2 +- .../Magento/Framework/Acl/AclResource/TreeBuilder.php | 2 +- lib/internal/Magento/Framework/Acl/AclResourceFactory.php | 2 +- lib/internal/Magento/Framework/Acl/Builder.php | 2 +- lib/internal/Magento/Framework/Acl/Cache.php | 2 +- lib/internal/Magento/Framework/Acl/CacheInterface.php | 2 +- lib/internal/Magento/Framework/Acl/Loader/DefaultLoader.php | 2 +- .../Magento/Framework/Acl/Loader/ResourceLoader.php | 2 +- lib/internal/Magento/Framework/Acl/LoaderInterface.php | 2 +- lib/internal/Magento/Framework/Acl/Role/Registry.php | 2 +- lib/internal/Magento/Framework/Acl/RootResource.php | 2 +- .../Acl/Test/Unit/AclResource/Config/Converter/DomTest.php | 2 +- .../Config/Converter/_files/converted_valid_acl.php | 2 +- .../Unit/AclResource/Config/Converter/_files/valid_acl.xml | 2 +- .../Acl/Test/Unit/AclResource/Config/MergedXsdTest.php | 2 +- .../Acl/Test/Unit/AclResource/Config/SchemaLocatorTest.php | 2 +- .../Framework/Acl/Test/Unit/AclResource/Config/XsdTest.php | 2 +- .../Unit/AclResource/Config/_files/invalidAclXmlArray.php | 2 +- .../AclResource/Config/_files/invalidMergedAclXmlArray.php | 2 +- .../Acl/Test/Unit/AclResource/Config/_files/valid_acl.xml | 2 +- .../Unit/AclResource/Config/_files/valid_merged_acl.xml | 2 +- .../Framework/Acl/Test/Unit/AclResource/ProviderTest.php | 2 +- .../Framework/Acl/Test/Unit/AclResource/TreeBuilderTest.php | 2 +- .../Magento/Framework/Acl/Test/Unit/BuilderTest.php | 2 +- lib/internal/Magento/Framework/Acl/Test/Unit/CacheTest.php | 2 +- .../Magento/Framework/Acl/Test/Unit/Loader/DefaultTest.php | 2 +- .../Framework/Acl/Test/Unit/Loader/ResourceLoaderTest.php | 2 +- .../Magento/Framework/Acl/Test/Unit/ResourceFactoryTest.php | 2 +- .../Magento/Framework/Acl/Test/Unit/Role/RegistryTest.php | 2 +- .../Magento/Framework/Acl/Test/Unit/_files/resourceList.php | 2 +- .../Magento/Framework/Acl/Test/Unit/_files/result.php | 2 +- lib/internal/Magento/Framework/Acl/etc/acl.xsd | 2 +- lib/internal/Magento/Framework/Acl/etc/acl_merged.xsd | 2 +- lib/internal/Magento/Framework/AclFactory.php | 2 +- .../Magento/Framework/Api/AbstractExtensibleObject.php | 2 +- .../Magento/Framework/Api/AbstractServiceCollection.php | 2 +- lib/internal/Magento/Framework/Api/AbstractSimpleObject.php | 2 +- .../Magento/Framework/Api/AbstractSimpleObjectBuilder.php | 2 +- lib/internal/Magento/Framework/Api/ArrayObjectSearch.php | 2 +- lib/internal/Magento/Framework/Api/AttributeInterface.php | 2 +- lib/internal/Magento/Framework/Api/AttributeMetadata.php | 2 +- .../Framework/Api/AttributeTypeResolverInterface.php | 2 +- lib/internal/Magento/Framework/Api/AttributeValue.php | 2 +- .../Magento/Framework/Api/AttributeValueFactory.php | 2 +- .../Api/Code/Generator/ExtensionAttributesGenerator.php | 2 +- .../Generator/ExtensionAttributesInterfaceGenerator.php | 2 +- .../Magento/Framework/Api/Code/Generator/Mapper.php | 2 +- .../Magento/Framework/Api/Code/Generator/SearchResults.php | 2 +- lib/internal/Magento/Framework/Api/CriteriaInterface.php | 2 +- .../Magento/Framework/Api/CustomAttributesDataInterface.php | 2 +- .../Magento/Framework/Api/Data/ImageContentInterface.php | 2 +- .../Magento/Framework/Api/Data/VideoContentInterface.php | 2 +- lib/internal/Magento/Framework/Api/DataObjectHelper.php | 2 +- .../Magento/Framework/Api/DefaultMetadataService.php | 2 +- .../Magento/Framework/Api/ExtensibleDataInterface.php | 2 +- .../Magento/Framework/Api/ExtensibleDataObjectConverter.php | 2 +- .../Magento/Framework/Api/ExtensionAttribute/Config.php | 2 +- .../Framework/Api/ExtensionAttribute/Config/Converter.php | 2 +- .../Framework/Api/ExtensionAttribute/Config/Reader.php | 2 +- .../Api/ExtensionAttribute/Config/SchemaLocator.php | 2 +- .../Magento/Framework/Api/ExtensionAttribute/JoinData.php | 2 +- .../Framework/Api/ExtensionAttribute/JoinDataInterface.php | 2 +- .../Api/ExtensionAttribute/JoinDataInterfaceFactory.php | 2 +- .../Framework/Api/ExtensionAttribute/JoinProcessor.php | 2 +- .../Api/ExtensionAttribute/JoinProcessorHelper.php | 2 +- .../Api/ExtensionAttribute/JoinProcessorInterface.php | 2 +- .../Magento/Framework/Api/ExtensionAttributesFactory.php | 2 +- .../Magento/Framework/Api/ExtensionAttributesInterface.php | 2 +- lib/internal/Magento/Framework/Api/Filter.php | 2 +- lib/internal/Magento/Framework/Api/FilterBuilder.php | 2 +- lib/internal/Magento/Framework/Api/ImageContent.php | 2 +- .../Magento/Framework/Api/ImageContentValidator.php | 2 +- .../Framework/Api/ImageContentValidatorInterface.php | 2 +- lib/internal/Magento/Framework/Api/ImageProcessor.php | 2 +- .../Magento/Framework/Api/ImageProcessorInterface.php | 2 +- .../Magento/Framework/Api/MetadataObjectInterface.php | 2 +- .../Magento/Framework/Api/MetadataServiceInterface.php | 2 +- lib/internal/Magento/Framework/Api/ObjectFactory.php | 2 +- .../Magento/Framework/Api/Search/AggregationInterface.php | 2 +- .../Framework/Api/Search/AggregationValueInterface.php | 2 +- .../Magento/Framework/Api/Search/BucketInterface.php | 2 +- lib/internal/Magento/Framework/Api/Search/Document.php | 2 +- .../Magento/Framework/Api/Search/DocumentFactory.php | 2 +- .../Magento/Framework/Api/Search/DocumentInterface.php | 2 +- lib/internal/Magento/Framework/Api/Search/FilterGroup.php | 2 +- .../Magento/Framework/Api/Search/FilterGroupBuilder.php | 2 +- .../Magento/Framework/Api/Search/ReportingInterface.php | 2 +- .../Magento/Framework/Api/Search/SearchCriteria.php | 2 +- .../Magento/Framework/Api/Search/SearchCriteriaBuilder.php | 2 +- .../Magento/Framework/Api/Search/SearchCriteriaFactory.php | 2 +- .../Framework/Api/Search/SearchCriteriaInterface.php | 2 +- .../Magento/Framework/Api/Search/SearchInterface.php | 2 +- lib/internal/Magento/Framework/Api/Search/SearchResult.php | 2 +- .../Magento/Framework/Api/Search/SearchResultFactory.php | 2 +- .../Magento/Framework/Api/Search/SearchResultInterface.php | 2 +- lib/internal/Magento/Framework/Api/SearchCriteria.php | 2 +- .../Framework/Api/SearchCriteria/CollectionProcessor.php | 2 +- .../SearchCriteria/CollectionProcessor/FilterProcessor.php | 2 +- .../FilterProcessor/CustomFilterInterface.php | 2 +- .../SearchCriteria/CollectionProcessor/JoinProcessor.php | 2 +- .../JoinProcessor/CustomJoinInterface.php | 2 +- .../CollectionProcessor/PaginationProcessor.php | 2 +- .../SearchCriteria/CollectionProcessor/SortingProcessor.php | 2 +- .../Api/SearchCriteria/CollectionProcessorInterface.php | 2 +- .../Magento/Framework/Api/SearchCriteriaBuilder.php | 2 +- .../Magento/Framework/Api/SearchCriteriaInterface.php | 2 +- lib/internal/Magento/Framework/Api/SearchResults.php | 2 +- .../Magento/Framework/Api/SearchResultsInterface.php | 2 +- .../Magento/Framework/Api/SimpleBuilderInterface.php | 2 +- .../Magento/Framework/Api/SimpleDataObjectConverter.php | 2 +- lib/internal/Magento/Framework/Api/SortOrder.php | 2 +- lib/internal/Magento/Framework/Api/SortOrderBuilder.php | 2 +- .../Api/Test/Unit/Api/ImageContentValidatorTest.php | 2 +- .../Framework/Api/Test/Unit/Api/ImageProcessorTest.php | 2 +- .../Test/Unit/Code/Generator/EntityChildTestAbstract.php | 2 +- .../Api/Test/Unit/Code/Generator/ExtensibleSample.php | 2 +- .../Test/Unit/Code/Generator/ExtensibleSampleInterface.php | 2 +- .../Code/Generator/ExtensionAttributesGeneratorTest.php | 2 +- .../Generator/ExtensionAttributesInterfaceGeneratorTest.php | 2 +- .../Api/Test/Unit/Code/Generator/GenerateMapperTest.php | 2 +- .../Test/Unit/Code/Generator/GenerateSearchResultsTest.php | 2 +- .../Framework/Api/Test/Unit/Code/Generator/Sample.php | 2 +- .../Framework/Api/Test/Unit/Data/AttributeValueTest.php | 2 +- .../Framework/Api/Test/Unit/DataObjectHelperTest.php | 2 +- .../Api/Test/Unit/ExtensibleDataObjectConverterTest.php | 2 +- .../Test/Unit/ExtensionAttribute/Config/ConverterTest.php | 2 +- .../Api/Test/Unit/ExtensionAttribute/Config/ReaderTest.php | 2 +- .../Unit/ExtensionAttribute/Config/SchemaLocatorTest.php | 2 +- .../Api/Test/Unit/ExtensionAttribute/Config/XsdTest.php | 2 +- .../Config/_files/extension_attributes.xml | 2 +- .../_files/extension_attributes_with_join_directives.xml | 2 +- .../Framework/Api/Test/Unit/Search/SearchResultTest.php | 2 +- .../CollectionProcessor/FilterProcessorTest.php | 2 +- .../CollectionProcessor/JoinProcessorTest.php | 2 +- .../CollectionProcessor/PaginationProcessorTest.php | 2 +- .../CollectionProcessor/SortingProcessorTest.php | 2 +- .../Test/Unit/SearchCriteria/CollectionProcessorTest.php | 2 +- .../Magento/Framework/Api/Test/Unit/SortOrderTest.php | 2 +- .../Framework/Api/Test/Unit/StubAbstractSimpleObject.php | 2 +- lib/internal/Magento/Framework/Api/Uploader.php | 2 +- .../Magento/Framework/Api/etc/extension_attributes.xsd | 2 +- .../Magento/Framework/App/Action/AbstractAction.php | 2 +- lib/internal/Magento/Framework/App/Action/Action.php | 2 +- lib/internal/Magento/Framework/App/Action/Context.php | 2 +- lib/internal/Magento/Framework/App/Action/Forward.php | 2 +- lib/internal/Magento/Framework/App/Action/Plugin/Design.php | 2 +- lib/internal/Magento/Framework/App/Action/Redirect.php | 2 +- lib/internal/Magento/Framework/App/ActionFactory.php | 2 +- lib/internal/Magento/Framework/App/ActionFlag.php | 2 +- lib/internal/Magento/Framework/App/ActionInterface.php | 2 +- lib/internal/Magento/Framework/App/Area.php | 2 +- .../Magento/Framework/App/Area/FrontNameResolverFactory.php | 2 +- .../Framework/App/Area/FrontNameResolverInterface.php | 2 +- lib/internal/Magento/Framework/App/AreaInterface.php | 2 +- lib/internal/Magento/Framework/App/AreaList.php | 2 +- lib/internal/Magento/Framework/App/AreaList/Proxy.php | 2 +- .../Magento/Framework/App/Arguments/ArgumentInterpreter.php | 2 +- .../Framework/App/Arguments/FileResolver/Primary.php | 2 +- .../Magento/Framework/App/Arguments/ValidationState.php | 2 +- lib/internal/Magento/Framework/App/Bootstrap.php | 2 +- lib/internal/Magento/Framework/App/Cache.php | 2 +- .../Magento/Framework/App/Cache/FlushCacheByTags.php | 2 +- .../Magento/Framework/App/Cache/Frontend/Factory.php | 2 +- lib/internal/Magento/Framework/App/Cache/Frontend/Pool.php | 2 +- .../Magento/Framework/App/Cache/InstanceFactory.php | 2 +- lib/internal/Magento/Framework/App/Cache/Manager.php | 2 +- lib/internal/Magento/Framework/App/Cache/Proxy.php | 2 +- lib/internal/Magento/Framework/App/Cache/State.php | 2 +- lib/internal/Magento/Framework/App/Cache/StateInterface.php | 2 +- lib/internal/Magento/Framework/App/Cache/Tag/Resolver.php | 2 +- .../Magento/Framework/App/Cache/Tag/Strategy/Dummy.php | 2 +- .../Magento/Framework/App/Cache/Tag/Strategy/Factory.php | 2 +- .../Magento/Framework/App/Cache/Tag/Strategy/Identifier.php | 2 +- .../Magento/Framework/App/Cache/Tag/StrategyInterface.php | 2 +- .../Magento/Framework/App/Cache/Type/AccessProxy.php | 2 +- lib/internal/Magento/Framework/App/Cache/Type/Block.php | 2 +- .../Magento/Framework/App/Cache/Type/Collection.php | 2 +- lib/internal/Magento/Framework/App/Cache/Type/Config.php | 2 +- lib/internal/Magento/Framework/App/Cache/Type/Dummy.php | 2 +- .../Magento/Framework/App/Cache/Type/FrontendPool.php | 2 +- lib/internal/Magento/Framework/App/Cache/Type/Layout.php | 2 +- .../Magento/Framework/App/Cache/Type/Reflection.php | 2 +- lib/internal/Magento/Framework/App/Cache/Type/Translate.php | 2 +- lib/internal/Magento/Framework/App/Cache/TypeList.php | 2 +- .../Magento/Framework/App/Cache/TypeListInterface.php | 2 +- lib/internal/Magento/Framework/App/CacheInterface.php | 2 +- lib/internal/Magento/Framework/App/Config.php | 2 +- lib/internal/Magento/Framework/App/Config/Base.php | 2 +- lib/internal/Magento/Framework/App/Config/BaseFactory.php | 2 +- .../Magento/Framework/App/Config/CommentInterface.php | 2 +- .../Framework/App/Config/ConfigResource/ConfigInterface.php | 2 +- .../Magento/Framework/App/Config/ConfigSourceAggregated.php | 2 +- .../Magento/Framework/App/Config/ConfigSourceInterface.php | 2 +- .../Magento/Framework/App/Config/ConfigTypeInterface.php | 2 +- lib/internal/Magento/Framework/App/Config/Data.php | 2 +- .../Magento/Framework/App/Config/Data/ProcessorFactory.php | 2 +- .../Framework/App/Config/Data/ProcessorInterface.php | 2 +- lib/internal/Magento/Framework/App/Config/DataFactory.php | 2 +- lib/internal/Magento/Framework/App/Config/DataInterface.php | 2 +- lib/internal/Magento/Framework/App/Config/Element.php | 2 +- lib/internal/Magento/Framework/App/Config/FileResolver.php | 2 +- lib/internal/Magento/Framework/App/Config/Initial.php | 2 +- .../Magento/Framework/App/Config/Initial/Converter.php | 2 +- .../Magento/Framework/App/Config/Initial/Reader.php | 2 +- .../Magento/Framework/App/Config/Initial/SchemaLocator.php | 2 +- .../Magento/Framework/App/Config/InitialConfigSource.php | 2 +- .../Framework/App/Config/MetadataConfigTypeProcessor.php | 2 +- .../Magento/Framework/App/Config/MetadataProcessor.php | 2 +- .../Framework/App/Config/MutableScopeConfigInterface.php | 2 +- .../Magento/Framework/App/Config/PostProcessorComposite.php | 2 +- .../Magento/Framework/App/Config/PreProcessorComposite.php | 2 +- .../Framework/App/Config/Reader/Source/SourceInterface.php | 2 +- .../Framework/App/Config/ReinitableConfigInterface.php | 2 +- .../Magento/Framework/App/Config/Scope/Converter.php | 2 +- .../Magento/Framework/App/Config/Scope/ReaderInterface.php | 2 +- .../Magento/Framework/App/Config/ScopeCodeResolver.php | 2 +- .../Magento/Framework/App/Config/ScopeConfigInterface.php | 2 +- .../Framework/App/Config/Spi/PostProcessorInterface.php | 2 +- .../Framework/App/Config/Spi/PreProcessorInterface.php | 2 +- .../Magento/Framework/App/Config/Storage/Writer.php | 2 +- .../Framework/App/Config/Storage/WriterInterface.php | 2 +- lib/internal/Magento/Framework/App/Config/Value.php | 2 +- lib/internal/Magento/Framework/App/Config/ValueFactory.php | 2 +- .../Magento/Framework/App/Config/ValueInterface.php | 2 +- lib/internal/Magento/Framework/App/Console/Request.php | 2 +- lib/internal/Magento/Framework/App/Console/Response.php | 2 +- lib/internal/Magento/Framework/App/Cron.php | 2 +- .../Magento/Framework/App/DefaultPath/DefaultPath.php | 2 +- lib/internal/Magento/Framework/App/DefaultPathInterface.php | 2 +- lib/internal/Magento/Framework/App/DeploymentConfig.php | 2 +- .../Magento/Framework/App/DeploymentConfig/Reader.php | 2 +- .../Magento/Framework/App/DeploymentConfig/Writer.php | 2 +- .../App/DeploymentConfig/Writer/FormatterInterface.php | 2 +- .../Framework/App/DeploymentConfig/Writer/PhpFormatter.php | 2 +- lib/internal/Magento/Framework/App/DesignInterface.php | 2 +- lib/internal/Magento/Framework/App/DocRootLocator.php | 2 +- lib/internal/Magento/Framework/App/EnvironmentFactory.php | 2 +- lib/internal/Magento/Framework/App/EnvironmentInterface.php | 2 +- lib/internal/Magento/Framework/App/ErrorHandler.php | 2 +- .../Magento/Framework/App/Filesystem/DirectoryList.php | 2 +- lib/internal/Magento/Framework/App/FrontController.php | 2 +- .../Magento/Framework/App/FrontControllerInterface.php | 2 +- .../Magento/Framework/App/Helper/AbstractHelper.php | 2 +- lib/internal/Magento/Framework/App/Helper/Context.php | 2 +- lib/internal/Magento/Framework/App/Http.php | 2 +- lib/internal/Magento/Framework/App/Http/Context.php | 2 +- .../Framework/App/Interception/Cache/CompiledConfig.php | 2 +- lib/internal/Magento/Framework/App/Language/Config.php | 2 +- .../Magento/Framework/App/Language/ConfigFactory.php | 2 +- lib/internal/Magento/Framework/App/Language/Dictionary.php | 2 +- lib/internal/Magento/Framework/App/Language/package.xsd | 2 +- lib/internal/Magento/Framework/App/MaintenanceMode.php | 2 +- lib/internal/Magento/Framework/App/MutableScopeConfig.php | 2 +- lib/internal/Magento/Framework/App/ObjectManager.php | 2 +- .../Magento/Framework/App/ObjectManager/ConfigCache.php | 2 +- .../Magento/Framework/App/ObjectManager/ConfigLoader.php | 2 +- .../Framework/App/ObjectManager/ConfigLoader/Compiled.php | 2 +- .../App/ObjectManager/Environment/AbstractEnvironment.php | 2 +- .../Framework/App/ObjectManager/Environment/Compiled.php | 2 +- .../Framework/App/ObjectManager/Environment/Developer.php | 2 +- lib/internal/Magento/Framework/App/ObjectManagerFactory.php | 2 +- lib/internal/Magento/Framework/App/PageCache/Cache.php | 2 +- lib/internal/Magento/Framework/App/PageCache/FormKey.php | 2 +- lib/internal/Magento/Framework/App/PageCache/Identifier.php | 2 +- lib/internal/Magento/Framework/App/PageCache/Kernel.php | 2 +- .../Framework/App/PageCache/NotCacheableInterface.php | 2 +- lib/internal/Magento/Framework/App/PageCache/Version.php | 2 +- lib/internal/Magento/Framework/App/ProductMetadata.php | 2 +- .../Magento/Framework/App/ProductMetadataInterface.php | 2 +- lib/internal/Magento/Framework/App/ReinitableConfig.php | 2 +- .../Magento/Framework/App/Request/DataPersistor.php | 2 +- .../Framework/App/Request/DataPersistorInterface.php | 2 +- lib/internal/Magento/Framework/App/Request/Http.php | 2 +- .../Framework/App/Request/PathInfoProcessorInterface.php | 2 +- lib/internal/Magento/Framework/App/RequestFactory.php | 2 +- lib/internal/Magento/Framework/App/RequestInterface.php | 2 +- .../Magento/Framework/App/RequestSafetyInterface.php | 2 +- lib/internal/Magento/Framework/App/ResourceConnection.php | 2 +- .../Magento/Framework/App/ResourceConnection/Config.php | 2 +- .../Framework/App/ResourceConnection/Config/Converter.php | 2 +- .../Framework/App/ResourceConnection/Config/Reader.php | 2 +- .../App/ResourceConnection/Config/SchemaLocator.php | 2 +- .../Framework/App/ResourceConnection/ConfigInterface.php | 2 +- .../App/ResourceConnection/ConnectionAdapterInterface.php | 2 +- .../Framework/App/ResourceConnection/ConnectionFactory.php | 2 +- .../Framework/App/ResourceConnection/SourceFactory.php | 2 +- .../App/ResourceConnection/SourceProviderInterface.php | 2 +- .../Magento/Framework/App/Response/FileInterface.php | 2 +- .../Magento/Framework/App/Response/HeaderManager.php | 2 +- .../App/Response/HeaderProvider/AbstractHeaderProvider.php | 2 +- .../App/Response/HeaderProvider/HeaderProviderInterface.php | 2 +- .../App/Response/HeaderProvider/XContentTypeOptions.php | 2 +- .../Framework/App/Response/HeaderProvider/XFrameOptions.php | 2 +- .../Framework/App/Response/HeaderProvider/XssProtection.php | 2 +- lib/internal/Magento/Framework/App/Response/Http.php | 2 +- .../Magento/Framework/App/Response/Http/FileFactory.php | 2 +- .../Magento/Framework/App/Response/HttpInterface.php | 2 +- .../Magento/Framework/App/Response/RedirectInterface.php | 2 +- lib/internal/Magento/Framework/App/ResponseFactory.php | 2 +- lib/internal/Magento/Framework/App/ResponseInterface.php | 2 +- lib/internal/Magento/Framework/App/Route/Config.php | 2 +- .../Magento/Framework/App/Route/Config/Converter.php | 2 +- lib/internal/Magento/Framework/App/Route/Config/Reader.php | 2 +- .../Magento/Framework/App/Route/Config/SchemaLocator.php | 2 +- .../Magento/Framework/App/Route/ConfigInterface.php | 2 +- .../Magento/Framework/App/Route/ConfigInterface/Proxy.php | 2 +- lib/internal/Magento/Framework/App/Router/ActionList.php | 2 +- lib/internal/Magento/Framework/App/Router/Base.php | 2 +- lib/internal/Magento/Framework/App/Router/DefaultRouter.php | 2 +- .../Magento/Framework/App/Router/NoRouteHandler.php | 2 +- .../Framework/App/Router/NoRouteHandlerInterface.php | 2 +- .../Magento/Framework/App/Router/NoRouteHandlerList.php | 2 +- .../Magento/Framework/App/Router/PathConfigInterface.php | 2 +- lib/internal/Magento/Framework/App/RouterInterface.php | 2 +- lib/internal/Magento/Framework/App/RouterList.php | 2 +- lib/internal/Magento/Framework/App/RouterListInterface.php | 2 +- .../Magento/Framework/App/Rss/DataProviderInterface.php | 2 +- .../Magento/Framework/App/Rss/RssManagerInterface.php | 2 +- lib/internal/Magento/Framework/App/Rss/UrlBuilder.php | 2 +- .../Magento/Framework/App/Rss/UrlBuilderInterface.php | 2 +- lib/internal/Magento/Framework/App/Scope/Source.php | 2 +- .../Framework/App/ScopeFallbackResolverInterface.php | 2 +- lib/internal/Magento/Framework/App/ScopeInterface.php | 2 +- .../Magento/Framework/App/ScopeResolverInterface.php | 2 +- lib/internal/Magento/Framework/App/ScopeResolverPool.php | 2 +- .../Magento/Framework/App/ScopeTreeProviderInterface.php | 2 +- .../Magento/Framework/App/ScopeValidatorInterface.php | 2 +- lib/internal/Magento/Framework/App/SetupInfo.php | 2 +- lib/internal/Magento/Framework/App/Shell.php | 2 +- lib/internal/Magento/Framework/App/State.php | 2 +- lib/internal/Magento/Framework/App/State/CleanupFiles.php | 2 +- lib/internal/Magento/Framework/App/StaticResource.php | 2 +- .../Magento/Framework/App/TemplateTypesInterface.php | 2 +- .../Magento/Framework/App/Test/Unit/AclResourceTest.php | 2 +- .../Framework/App/Test/Unit/Action/AbstractActionTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Action/ActionTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Action/ForwardTest.php | 2 +- .../Framework/App/Test/Unit/Action/Plugin/DesignTest.php | 2 +- .../Framework/App/Test/Unit/Action/Stub/ActionStub.php | 2 +- .../Magento/Framework/App/Test/Unit/ActionFlagTest.php | 2 +- .../Magento/Framework/App/Test/Unit/AreaListTest.php | 2 +- lib/internal/Magento/Framework/App/Test/Unit/AreaTest.php | 2 +- .../App/Test/Unit/Arguments/ArgumentInterpreterTest.php | 2 +- .../App/Test/Unit/Arguments/FileResolver/PrimaryTest.php | 2 +- .../Unit/Arguments/FileResolver/_files/app/etc/config.xml | 2 +- .../Arguments/FileResolver/_files/app/etc/custom/config.xml | 2 +- .../Arguments/FileResolver/_files/primary/app/etc/di.xml | 2 +- .../FileResolver/_files/primary/app/etc/some_config/di.xml | 2 +- .../Magento/Framework/App/Test/Unit/BootstrapTest.php | 2 +- .../Framework/App/Test/Unit/Cache/FlushCacheByTagsTest.php | 2 +- .../Framework/App/Test/Unit/Cache/Frontend/FactoryTest.php | 2 +- .../Unit/Cache/Frontend/FactoryTest/CacheDecoratorDummy.php | 2 +- .../Framework/App/Test/Unit/Cache/Frontend/PoolTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Cache/ManagerTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Cache/StateTest.php | 2 +- .../Framework/App/Test/Unit/Cache/Tag/ResolverTest.php | 2 +- .../App/Test/Unit/Cache/Tag/Strategy/DummyTest.php | 2 +- .../App/Test/Unit/Cache/Tag/Strategy/FactoryTest.php | 2 +- .../App/Test/Unit/Cache/Tag/Strategy/IdentifierTest.php | 2 +- .../Framework/App/Test/Unit/Cache/Type/AccessProxyTest.php | 2 +- .../Framework/App/Test/Unit/Cache/Type/ConfigTest.php | 2 +- .../Framework/App/Test/Unit/Cache/Type/FrontendPoolTest.php | 2 +- .../Framework/App/Test/Unit/Cache/Type/GenericTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Cache/TypeListTest.php | 2 +- lib/internal/Magento/Framework/App/Test/Unit/CacheTest.php | 2 +- .../Framework/App/Test/Unit/Config/BaseFactoryTest.php | 2 +- .../App/Test/Unit/Config/ConfigSourceAggregatedTest.php | 2 +- .../App/Test/Unit/Config/Data/ProcessorFactoryTest.php | 2 +- .../Framework/App/Test/Unit/Config/DataFactoryTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Config/DataTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Config/ElementTest.php | 2 +- .../Framework/App/Test/Unit/Config/FileResolverTest.php | 2 +- .../App/Test/Unit/Config/Initial/ConverterTest.php | 2 +- .../Framework/App/Test/Unit/Config/Initial/ReaderTest.php | 2 +- .../App/Test/Unit/Config/Initial/SchemaLocatorTest.php | 2 +- .../Framework/App/Test/Unit/Config/Initial/XsdTest.php | 2 +- .../App/Test/Unit/Config/Initial/_files/config.xml | 2 +- .../App/Test/Unit/Config/Initial/_files/config.xsd | 4 ++-- .../Test/Unit/Config/Initial/_files/converted_config.php | 2 +- .../App/Test/Unit/Config/Initial/_files/initial_config1.xml | 2 +- .../App/Test/Unit/Config/Initial/_files/initial_config2.xml | 2 +- .../Unit/Config/Initial/_files/initial_config_merged.php | 2 +- .../Unit/Config/Initial/_files/invalidConfigXmlArray.php | 2 +- .../App/Test/Unit/Config/Initial/_files/invalid_config.xml | 2 +- .../App/Test/Unit/Config/Initial/_files/valid_config.xml | 2 +- .../App/Test/Unit/Config/InitialConfigSourceTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Config/InitialTest.php | 2 +- .../Test/Unit/Config/MetadataConfigTypeProcessorTest.php | 2 +- .../App/Test/Unit/Config/MetadataProcessorTest.php | 2 +- .../App/Test/Unit/Config/PreProcessorCompositeTest.php | 2 +- .../Framework/App/Test/Unit/Config/Scope/ConverterTest.php | 2 +- .../App/Test/Unit/Config/ScopeCodeResolverTest.php | 2 +- .../Framework/App/Test/Unit/Config/Storage/WriterTest.php | 2 +- .../Framework/App/Test/Unit/Config/ValueFactoryTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Config/ValueTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Config/XsdTest.php | 2 +- .../Framework/App/Test/Unit/Config/_files/element.xml | 2 +- .../App/Test/Unit/Config/_files/invalidRoutesXmlArray.php | 2 +- .../Framework/App/Test/Unit/Config/_files/valid_routes.xml | 2 +- lib/internal/Magento/Framework/App/Test/Unit/ConfigTest.php | 2 +- .../Framework/App/Test/Unit/Console/CommandListTest.php | 2 +- .../Framework/App/Test/Unit/Console/ResponseTest.php | 2 +- lib/internal/Magento/Framework/App/Test/Unit/CronTest.php | 2 +- .../Magento/Framework/App/Test/Unit/DefaultClass.php | 2 +- .../Framework/App/Test/Unit/DefaultPath/DefaultPathTest.php | 2 +- .../Framework/App/Test/Unit/DeploymentConfig/ReaderTest.php | 2 +- .../Test/Unit/DeploymentConfig/Writer/PhpFormatterTest.php | 2 +- .../Framework/App/Test/Unit/DeploymentConfig/WriterTest.php | 2 +- .../App/Test/Unit/DeploymentConfig/_files/config.php | 2 +- .../App/Test/Unit/DeploymentConfig/_files/custom.php | 2 +- .../Test/Unit/DeploymentConfig/_files/duplicateConfig.php | 2 +- .../Framework/App/Test/Unit/DeploymentConfig/_files/env.php | 2 +- .../App/Test/Unit/DeploymentConfig/_files/mergeOne.php | 2 +- .../App/Test/Unit/DeploymentConfig/_files/mergeTwo.php | 2 +- .../Framework/App/Test/Unit/DeploymentConfigTest.php | 2 +- .../Magento/Framework/App/Test/Unit/DocRootLocatorTest.php | 2 +- .../Magento/Framework/App/Test/Unit/ErrorHandlerTest.php | 2 +- .../App/Test/Unit/Filesystem/DirectoryListTest.php | 2 +- lib/internal/Magento/Framework/App/Test/Unit/FrontClass.php | 2 +- .../Magento/Framework/App/Test/Unit/FrontControllerTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Http/ContextTest.php | 2 +- lib/internal/Magento/Framework/App/Test/Unit/HttpTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Language/ConfigTest.php | 2 +- .../Framework/App/Test/Unit/Language/DictionaryTest.php | 2 +- .../Framework/App/Test/Unit/Language/_files/language.xml | 2 +- .../Magento/Framework/App/Test/Unit/MaintenanceModeTest.php | 2 +- .../App/Test/Unit/ObjectManager/ConfigCacheTest.php | 2 +- .../App/Test/Unit/ObjectManager/ConfigLoaderTest.php | 2 +- .../Test/Unit/ObjectManager/Environment/CompiledTest.php | 2 +- .../Test/Unit/ObjectManager/Environment/CompiledTesting.php | 2 +- .../Test/Unit/ObjectManager/Environment/ConfigTesting.php | 2 +- .../Test/Unit/ObjectManager/Environment/DeveloperTest.php | 2 +- .../Framework/App/Test/Unit/ObjectManager/FactoryStub.php | 2 +- .../Framework/App/Test/Unit/ObjectManagerFactoryTest.php | 2 +- .../Framework/App/Test/Unit/PageCache/FormKeyTest.php | 2 +- .../Framework/App/Test/Unit/PageCache/IdentifierTest.php | 2 +- .../Framework/App/Test/Unit/PageCache/KernelTest.php | 2 +- .../Framework/App/Test/Unit/PageCache/PageCacheTest.php | 2 +- .../Framework/App/Test/Unit/PageCache/VersionTest.php | 2 +- .../Magento/Framework/App/Test/Unit/ProductMetadataTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Request/HttpTest.php | 2 +- .../Magento/Framework/App/Test/Unit/RequestFactoryTest.php | 2 +- .../Test/Unit/ResourceConnection/Config/ConverterTest.php | 2 +- .../App/Test/Unit/ResourceConnection/Config/ReaderTest.php | 2 +- .../Unit/ResourceConnection/Config/SchemaLocatorTest.php | 2 +- .../App/Test/Unit/ResourceConnection/Config/XsdTest.php | 2 +- .../Config/_files/invalidResourcesXmlArray.php | 2 +- .../Unit/ResourceConnection/Config/_files/resources.php | 2 +- .../Unit/ResourceConnection/Config/_files/resources.xml | 2 +- .../ResourceConnection/Config/_files/valid_resources.xml | 2 +- .../App/Test/Unit/ResourceConnection/ConfigTest.php | 2 +- .../Test/Unit/ResourceConnection/ConnectionFactoryTest.php | 2 +- .../Test/Unit/Response/HeaderProvider/XFrameOptionsTest.php | 2 +- .../Test/Unit/Response/HeaderProvider/XssProtectionTest.php | 2 +- .../App/Test/Unit/Response/Http/FileFactoryTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Response/HttpTest.php | 2 +- .../Magento/Framework/App/Test/Unit/ResponseFactoryTest.php | 2 +- .../Framework/App/Test/Unit/Route/Config/ConverterTest.php | 2 +- .../App/Test/Unit/Route/Config/SchemaLocatorTest.php | 2 +- .../Framework/App/Test/Unit/Route/Config/_files/routes.php | 2 +- .../Framework/App/Test/Unit/Route/Config/_files/routes.xml | 2 +- .../App/Test/Unit/Route/ConfigInterface/ProxyTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Route/ConfigTest.php | 2 +- .../Framework/App/Test/Unit/Router/ActionListTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Router/BaseTest.php | 2 +- .../Framework/App/Test/Unit/Router/DefaultRouterTest.php | 2 +- .../App/Test/Unit/Router/NoRouteHandlerListTest.php | 2 +- .../Framework/App/Test/Unit/Router/NoRouteHandlerTest.php | 2 +- .../Magento/Framework/App/Test/Unit/RouterListTest.php | 2 +- .../Framework/App/Test/Unit/ScopeResolverPoolTest.php | 2 +- .../Magento/Framework/App/Test/Unit/SetupInfoTest.php | 2 +- lib/internal/Magento/Framework/App/Test/Unit/ShellTest.php | 2 +- .../Framework/App/Test/Unit/State/CleanupFilesTest.php | 2 +- lib/internal/Magento/Framework/App/Test/Unit/StateTest.php | 2 +- .../Magento/Framework/App/Test/Unit/StaticResourceTest.php | 2 +- .../App/Test/Unit/Utility/AggregateInvokerTest.php | 2 +- .../Magento/Framework/App/Test/Unit/Utility/FilesTest.php | 2 +- .../Unit/View/Asset/MaterializationStrategy/CopyTest.php | 2 +- .../Unit/View/Asset/MaterializationStrategy/FactoryTest.php | 2 +- .../Unit/View/Asset/MaterializationStrategy/SymlinkTest.php | 2 +- .../Framework/App/Test/Unit/View/Asset/PublisherTest.php | 2 +- .../Test/Unit/View/Deployment/Version/Storage/FileTest.php | 2 +- .../Framework/App/Test/Unit/View/Deployment/VersionTest.php | 2 +- lib/internal/Magento/Framework/App/Test/Unit/ViewTest.php | 2 +- .../Magento/Framework/App/Test/Unit/_files/app/etc/di.xml | 2 +- .../Magento/Framework/App/Test/Unit/_files/config.php | 2 +- .../App/Test/Unit/_files/other/local_developer.php | 2 +- .../App/Test/Unit/_files/other/local_developer_merged.php | 2 +- .../Magento/Framework/App/Test/Unit/_files/pub/index.php | 2 +- .../Magento/Framework/App/Test/Unit/_files/setup/index.php | 2 +- .../Magento/Framework/App/Utility/AggregateInvoker.php | 2 +- lib/internal/Magento/Framework/App/Utility/Classes.php | 2 +- lib/internal/Magento/Framework/App/Utility/Files.php | 2 +- lib/internal/Magento/Framework/App/View.php | 2 +- .../App/View/Asset/MaterializationStrategy/Copy.php | 2 +- .../App/View/Asset/MaterializationStrategy/Factory.php | 2 +- .../Asset/MaterializationStrategy/StrategyInterface.php | 2 +- .../App/View/Asset/MaterializationStrategy/Symlink.php | 2 +- lib/internal/Magento/Framework/App/View/Asset/Publisher.php | 2 +- .../Magento/Framework/App/View/Deployment/Version.php | 2 +- .../Framework/App/View/Deployment/Version/Storage/File.php | 2 +- .../App/View/Deployment/Version/StorageInterface.php | 2 +- lib/internal/Magento/Framework/App/ViewInterface.php | 2 +- lib/internal/Magento/Framework/App/etc/resources.xsd | 2 +- lib/internal/Magento/Framework/App/etc/routes.xsd | 2 +- lib/internal/Magento/Framework/App/etc/routes_merged.xsd | 2 +- lib/internal/Magento/Framework/AppInterface.php | 2 +- lib/internal/Magento/Framework/Archive.php | 2 +- lib/internal/Magento/Framework/Archive/AbstractArchive.php | 2 +- lib/internal/Magento/Framework/Archive/ArchiveInterface.php | 2 +- lib/internal/Magento/Framework/Archive/Bz.php | 2 +- lib/internal/Magento/Framework/Archive/Gz.php | 2 +- lib/internal/Magento/Framework/Archive/Helper/File.php | 2 +- lib/internal/Magento/Framework/Archive/Helper/File/Bz.php | 2 +- lib/internal/Magento/Framework/Archive/Helper/File/Gz.php | 2 +- lib/internal/Magento/Framework/Archive/Tar.php | 2 +- .../Magento/Framework/Archive/Test/Unit/ZipTest.php | 2 +- lib/internal/Magento/Framework/Archive/Zip.php | 2 +- lib/internal/Magento/Framework/Authorization.php | 2 +- lib/internal/Magento/Framework/Authorization/Factory.php | 2 +- lib/internal/Magento/Framework/Authorization/Policy/Acl.php | 2 +- .../Framework/Authorization/Policy/DefaultPolicy.php | 2 +- .../Magento/Framework/Authorization/PolicyInterface.php | 2 +- .../Authorization/RoleLocator/DefaultRoleLocator.php | 2 +- .../Framework/Authorization/RoleLocatorInterface.php | 2 +- .../Framework/Authorization/Test/Unit/Policy/AclTest.php | 2 +- .../Authorization/Test/Unit/Policy/DefaultTest.php | 2 +- lib/internal/Magento/Framework/AuthorizationInterface.php | 2 +- .../Magento/Framework/Autoload/AutoloaderInterface.php | 2 +- .../Magento/Framework/Autoload/AutoloaderRegistry.php | 2 +- .../Magento/Framework/Autoload/ClassLoaderWrapper.php | 2 +- lib/internal/Magento/Framework/Autoload/ClassMap.php | 2 +- lib/internal/Magento/Framework/Autoload/Populator.php | 2 +- .../Framework/Autoload/Test/Unit/ClassLoaderWrapperTest.php | 2 +- .../Magento/Framework/Autoload/Test/Unit/PopulatorTest.php | 2 +- lib/internal/Magento/Framework/Backup/AbstractBackup.php | 2 +- lib/internal/Magento/Framework/Backup/Archive/Tar.php | 2 +- lib/internal/Magento/Framework/Backup/BackupException.php | 2 +- lib/internal/Magento/Framework/Backup/BackupInterface.php | 2 +- lib/internal/Magento/Framework/Backup/Db.php | 2 +- .../Magento/Framework/Backup/Db/BackupDbInterface.php | 2 +- lib/internal/Magento/Framework/Backup/Db/BackupFactory.php | 2 +- .../Magento/Framework/Backup/Db/BackupInterface.php | 2 +- .../Magento/Framework/Backup/Exception/CantLoadSnapshot.php | 2 +- .../Framework/Backup/Exception/FtpConnectionFailed.php | 2 +- .../Framework/Backup/Exception/FtpValidationFailed.php | 2 +- .../Framework/Backup/Exception/NotEnoughFreeSpace.php | 2 +- .../Framework/Backup/Exception/NotEnoughPermissions.php | 2 +- lib/internal/Magento/Framework/Backup/Factory.php | 2 +- lib/internal/Magento/Framework/Backup/Filesystem.php | 2 +- lib/internal/Magento/Framework/Backup/Filesystem/Helper.php | 2 +- .../Magento/Framework/Backup/Filesystem/Iterator/File.php | 2 +- .../Magento/Framework/Backup/Filesystem/Iterator/Filter.php | 2 +- .../Backup/Filesystem/Rollback/AbstractRollback.php | 2 +- .../Magento/Framework/Backup/Filesystem/Rollback/Fs.php | 2 +- .../Magento/Framework/Backup/Filesystem/Rollback/Ftp.php | 2 +- lib/internal/Magento/Framework/Backup/Media.php | 2 +- lib/internal/Magento/Framework/Backup/Nomedia.php | 2 +- lib/internal/Magento/Framework/Backup/Snapshot.php | 2 +- .../Magento/Framework/Backup/Test/Unit/FactoryTest.php | 2 +- .../Framework/Backup/Test/Unit/Filesystem/Helper.php | 2 +- .../Framework/Backup/Test/Unit/Filesystem/Rollback/Fs.php | 2 +- .../Backup/Test/Unit/Filesystem/Rollback/FsTest.php | 2 +- .../Framework/Backup/Test/Unit/Filesystem/Rollback/Ftp.php | 2 +- .../Backup/Test/Unit/Filesystem/Rollback/_files/ioMock.php | 2 +- .../Magento/Framework/Backup/Test/Unit/FilesystemTest.php | 2 +- .../Magento/Framework/Backup/Test/Unit/MediaTest.php | 2 +- .../Magento/Framework/Backup/Test/Unit/NomediaTest.php | 2 +- .../Magento/Framework/Backup/Test/Unit/SnapshotTest.php | 2 +- .../Magento/Framework/Backup/Test/Unit/_files/app_dirs.php | 2 +- .../Framework/Backup/Test/Unit/_files/app_dirs_rollback.php | 2 +- .../Magento/Framework/Backup/Test/Unit/_files/io.php | 2 +- lib/internal/Magento/Framework/Cache/Backend/Database.php | 2 +- .../Framework/Cache/Backend/Decorator/AbstractDecorator.php | 2 +- .../Framework/Cache/Backend/Decorator/Compression.php | 2 +- .../Magento/Framework/Cache/Backend/Eaccelerator.php | 2 +- lib/internal/Magento/Framework/Cache/Backend/Memcached.php | 2 +- lib/internal/Magento/Framework/Cache/Backend/MongoDb.php | 2 +- lib/internal/Magento/Framework/Cache/Config.php | 2 +- lib/internal/Magento/Framework/Cache/Config/Converter.php | 2 +- lib/internal/Magento/Framework/Cache/Config/Data.php | 2 +- lib/internal/Magento/Framework/Cache/Config/Reader.php | 2 +- .../Magento/Framework/Cache/Config/SchemaLocator.php | 2 +- lib/internal/Magento/Framework/Cache/ConfigInterface.php | 2 +- lib/internal/Magento/Framework/Cache/Core.php | 2 +- .../Magento/Framework/Cache/Frontend/Adapter/Zend.php | 2 +- .../Magento/Framework/Cache/Frontend/Decorator/Bare.php | 2 +- .../Magento/Framework/Cache/Frontend/Decorator/Logger.php | 2 +- .../Magento/Framework/Cache/Frontend/Decorator/Profiler.php | 2 +- .../Magento/Framework/Cache/Frontend/Decorator/TagScope.php | 2 +- lib/internal/Magento/Framework/Cache/FrontendInterface.php | 2 +- lib/internal/Magento/Framework/Cache/InvalidateLogger.php | 2 +- .../Framework/Cache/Test/Unit/Backend/DatabaseTest.php | 2 +- .../Cache/Test/Unit/Backend/Decorator/CompressionTest.php | 2 +- .../Test/Unit/Backend/Decorator/DecoratorAbstractTest.php | 2 +- .../Framework/Cache/Test/Unit/Backend/MongoDbTest.php | 2 +- .../Cache/Test/Unit/Backend/_files/MongoBinData.txt | 2 +- .../Framework/Cache/Test/Unit/Config/ConverterTest.php | 2 +- .../Framework/Cache/Test/Unit/Config/SchemaLocatorTest.php | 2 +- .../Cache/Test/Unit/Config/_files/cache_config.php | 2 +- .../Cache/Test/Unit/Config/_files/cache_config.xml | 2 +- .../Magento/Framework/Cache/Test/Unit/ConfigTest.php | 2 +- lib/internal/Magento/Framework/Cache/Test/Unit/CoreTest.php | 2 +- .../Magento/Framework/Cache/Test/Unit/CoreTestMock.php | 2 +- .../Framework/Cache/Test/Unit/Frontend/Adapter/ZendTest.php | 2 +- .../Cache/Test/Unit/Frontend/Decorator/BareTest.php | 2 +- .../Cache/Test/Unit/Frontend/Decorator/ProfilerTest.php | 2 +- .../Cache/Test/Unit/Frontend/Decorator/TagScopeTest.php | 2 +- .../Framework/Cache/Test/Unit/InvalidateLoggerTest.php | 2 +- lib/internal/Magento/Framework/Cache/etc/cache.xsd | 2 +- lib/internal/Magento/Framework/Code/GeneratedFiles.php | 2 +- lib/internal/Magento/Framework/Code/Generator.php | 2 +- .../Magento/Framework/Code/Generator/Autoloader.php | 2 +- .../Magento/Framework/Code/Generator/ClassGenerator.php | 2 +- .../Framework/Code/Generator/CodeGeneratorInterface.php | 2 +- .../Magento/Framework/Code/Generator/DefinedClasses.php | 2 +- .../Magento/Framework/Code/Generator/EntityAbstract.php | 2 +- .../Magento/Framework/Code/Generator/InterfaceGenerator.php | 2 +- .../Framework/Code/Generator/InterfaceMethodGenerator.php | 2 +- lib/internal/Magento/Framework/Code/Generator/Io.php | 2 +- .../Magento/Framework/Code/Minifier/Adapter/Css/CSSmin.php | 2 +- .../Magento/Framework/Code/Minifier/Adapter/Js/JShrink.php | 2 +- .../Magento/Framework/Code/Minifier/AdapterInterface.php | 2 +- lib/internal/Magento/Framework/Code/NameBuilder.php | 2 +- .../Magento/Framework/Code/Reader/ArgumentsReader.php | 2 +- lib/internal/Magento/Framework/Code/Reader/ClassReader.php | 2 +- .../Magento/Framework/Code/Reader/ClassReaderInterface.php | 2 +- .../Magento/Framework/Code/Reader/SourceArgumentsReader.php | 2 +- .../Magento/Framework/Code/Test/Unit/GeneratedFilesTest.php | 2 +- .../Code/Test/Unit/Generator/ClassGeneratorTest.php | 2 +- .../Code/Test/Unit/Generator/DefinedClassesTest.php | 2 +- .../Code/Test/Unit/Generator/EntityAbstractTest.php | 2 +- .../Code/Test/Unit/Generator/InterfaceGeneratorTest.php | 2 +- .../Magento/Framework/Code/Test/Unit/Generator/IoTest.php | 2 +- .../Code/Test/Unit/Generator/TestAsset/ParentClass.php | 2 +- .../Code/Test/Unit/Generator/TestAsset/SourceClass.php | 2 +- .../Test/Unit/Generator/TestAsset/TestGenerationClass.php | 2 +- .../Magento/Framework/Code/Test/Unit/GeneratorTest.php | 2 +- .../Code/Test/Unit/Minifier/Adapter/Css/CssMinTest.php | 2 +- .../Code/Test/Unit/Minifier/Adapter/Js/JShrinkTest.php | 2 +- .../Framework/Code/Test/Unit/Minifier/_files/js/original.js | 2 +- .../Unit/Model/File/Validator/NotProtectedExtensionTest.php | 2 +- .../Magento/Framework/Code/Test/Unit/NameBuilderTest.php | 2 +- .../Framework/Code/Test/Unit/Reader/ArgumentsReaderTest.php | 2 +- .../Test/Unit/Reader/_files/ClassesForArgumentsReader.php | 2 +- .../Code/Test/Unit/Validator/ArgumentSequenceTest.php | 2 +- .../Test/Unit/Validator/ConstructorArgumentTypesTest.php | 2 +- .../Code/Test/Unit/Validator/ConstructorIntegrityTest.php | 2 +- .../Code/Test/Unit/Validator/ContextAggregationTest.php | 2 +- .../Code/Test/Unit/Validator/TypeDuplicationTest.php | 2 +- .../Unit/Validator/_files/ClassesForArgumentSequence.php | 2 +- .../Validator/_files/ClassesForConstructorIntegrity.php | 2 +- .../Unit/Validator/_files/ClassesForContextAggregation.php | 2 +- .../Unit/Validator/_files/ClassesForTypeDuplication.php | 2 +- .../Magento/Framework/Code/Test/Unit/ValidatorTest.php | 2 +- .../app/code/Magento/SomeModule/Model/ElementFactory.php | 2 +- .../_files/app/code/Magento/SomeModule/Model/Five/Test.php | 2 +- .../_files/app/code/Magento/SomeModule/Model/Four/Test.php | 2 +- .../_files/app/code/Magento/SomeModule/Model/One/Test.php | 2 +- .../Unit/_files/app/code/Magento/SomeModule/Model/Proxy.php | 2 +- .../app/code/Magento/SomeModule/Model/SevenInterface.php | 2 +- .../_files/app/code/Magento/SomeModule/Model/Six/Test.php | 2 +- .../_files/app/code/Magento/SomeModule/Model/Three/Test.php | 2 +- .../_files/app/code/Magento/SomeModule/Model/Two/Test.php | 2 +- lib/internal/Magento/Framework/Code/Validator.php | 2 +- .../Magento/Framework/Code/Validator/ArgumentSequence.php | 2 +- .../Framework/Code/Validator/ConstructorArgumentTypes.php | 2 +- .../Framework/Code/Validator/ConstructorIntegrity.php | 2 +- .../Magento/Framework/Code/Validator/ContextAggregation.php | 2 +- .../Magento/Framework/Code/Validator/TypeDuplication.php | 2 +- lib/internal/Magento/Framework/Code/ValidatorInterface.php | 2 +- lib/internal/Magento/Framework/Communication/Config.php | 2 +- .../Framework/Communication/Config/CompositeReader.php | 2 +- .../Magento/Framework/Communication/Config/ConfigParser.php | 2 +- .../Magento/Framework/Communication/Config/Data.php | 2 +- .../Framework/Communication/Config/Reader/EnvReader.php | 2 +- .../Communication/Config/Reader/EnvReader/Validator.php | 2 +- .../Framework/Communication/Config/Reader/XmlReader.php | 2 +- .../Communication/Config/Reader/XmlReader/Converter.php | 2 +- .../Communication/Config/Reader/XmlReader/SchemaLocator.php | 2 +- .../Communication/Config/Reader/XmlReader/Validator.php | 2 +- .../Framework/Communication/Config/ReflectionGenerator.php | 2 +- .../Magento/Framework/Communication/Config/Validator.php | 2 +- .../Magento/Framework/Communication/ConfigInterface.php | 2 +- .../Magento/Framework/Communication/etc/communication.xsd | 2 +- lib/internal/Magento/Framework/Component/ComponentFile.php | 2 +- .../Magento/Framework/Component/ComponentRegistrar.php | 2 +- .../Framework/Component/ComponentRegistrarInterface.php | 2 +- lib/internal/Magento/Framework/Component/DirSearch.php | 2 +- .../Framework/Component/Test/Unit/ComponentFileTest.php | 2 +- .../Component/Test/Unit/ComponentRegistrarTest.php | 2 +- .../Magento/Framework/Component/Test/Unit/DirSearchTest.php | 2 +- lib/internal/Magento/Framework/Composer/BufferIoFactory.php | 2 +- lib/internal/Magento/Framework/Composer/ComposerFactory.php | 2 +- .../Magento/Framework/Composer/ComposerInformation.php | 2 +- .../Magento/Framework/Composer/ComposerJsonFinder.php | 2 +- .../Magento/Framework/Composer/DependencyChecker.php | 2 +- .../Magento/Framework/Composer/MagentoComponent.php | 2 +- .../Composer/MagentoComposerApplicationFactory.php | 2 +- lib/internal/Magento/Framework/Composer/Remove.php | 2 +- .../Framework/Composer/Test/Unit/ComposerFactoryTest.php | 2 +- .../Composer/Test/Unit/ComposerInformationTest.php | 2 +- .../Framework/Composer/Test/Unit/DependencyCheckerTest.php | 2 +- lib/internal/Magento/Framework/Config/AbstractXml.php | 2 +- lib/internal/Magento/Framework/Config/CacheInterface.php | 2 +- lib/internal/Magento/Framework/Config/Composer/Package.php | 2 +- .../Magento/Framework/Config/ConfigOptionsListConstants.php | 2 +- lib/internal/Magento/Framework/Config/Converter.php | 2 +- lib/internal/Magento/Framework/Config/Converter/Dom.php | 2 +- .../Magento/Framework/Config/Converter/Dom/Flat.php | 2 +- .../Magento/Framework/Config/ConverterInterface.php | 2 +- lib/internal/Magento/Framework/Config/Data.php | 2 +- lib/internal/Magento/Framework/Config/Data/ConfigData.php | 2 +- lib/internal/Magento/Framework/Config/Data/Scoped.php | 2 +- lib/internal/Magento/Framework/Config/DataInterface.php | 2 +- .../Magento/Framework/Config/DesignResolverInterface.php | 2 +- lib/internal/Magento/Framework/Config/Dom.php | 2 +- .../Magento/Framework/Config/Dom/ArrayNodeConfig.php | 2 +- .../Magento/Framework/Config/Dom/NodeMergingConfig.php | 2 +- .../Magento/Framework/Config/Dom/NodePathMatcher.php | 2 +- lib/internal/Magento/Framework/Config/Dom/UrnResolver.php | 2 +- .../Magento/Framework/Config/Dom/ValidationException.php | 2 +- .../Framework/Config/Dom/ValidationSchemaException.php | 2 +- lib/internal/Magento/Framework/Config/DomFactory.php | 2 +- .../Magento/Framework/Config/File/ConfigFilePool.php | 2 +- lib/internal/Magento/Framework/Config/FileIterator.php | 2 +- .../Magento/Framework/Config/FileIteratorFactory.php | 2 +- lib/internal/Magento/Framework/Config/FileResolver.php | 2 +- .../Magento/Framework/Config/FileResolverInterface.php | 2 +- .../Magento/Framework/Config/GenericSchemaLocator.php | 2 +- lib/internal/Magento/Framework/Config/Reader.php | 2 +- lib/internal/Magento/Framework/Config/Reader/Filesystem.php | 2 +- lib/internal/Magento/Framework/Config/ReaderInterface.php | 2 +- lib/internal/Magento/Framework/Config/SchemaLocator.php | 2 +- .../Magento/Framework/Config/SchemaLocatorInterface.php | 2 +- lib/internal/Magento/Framework/Config/Scope.php | 2 +- lib/internal/Magento/Framework/Config/ScopeInterface.php | 2 +- .../Magento/Framework/Config/ScopeListInterface.php | 2 +- .../Framework/Config/Test/Unit/Composer/PackageTest.php | 2 +- .../Framework/Config/Test/Unit/Converter/Dom/FlatTest.php | 2 +- .../Framework/Config/Test/Unit/Converter/DomTest.php | 2 +- .../Framework/Config/Test/Unit/Data/ConfigDataTest.php | 2 +- .../Magento/Framework/Config/Test/Unit/Data/ScopedTest.php | 2 +- .../Magento/Framework/Config/Test/Unit/DataTest.php | 2 +- .../Framework/Config/Test/Unit/Dom/ArrayNodeConfigTest.php | 2 +- .../Config/Test/Unit/Dom/NodeMergingConfigTest.php | 2 +- .../Framework/Config/Test/Unit/Dom/NodePathMatcherTest.php | 2 +- .../Framework/Config/Test/Unit/Dom/UrnResolverTest.php | 2 +- lib/internal/Magento/Framework/Config/Test/Unit/DomTest.php | 2 +- .../Framework/Config/Test/Unit/File/ConfigFilePoolTest.php | 2 +- .../Magento/Framework/Config/Test/Unit/FileIteratorTest.php | 2 +- .../Framework/Config/Test/Unit/GenericSchemaLocatorTest.php | 2 +- .../Framework/Config/Test/Unit/Reader/FilesystemTest.php | 2 +- .../Magento/Framework/Config/Test/Unit/ReaderTest.php | 2 +- .../Magento/Framework/Config/Test/Unit/ScopeTest.php | 2 +- .../Magento/Framework/Config/Test/Unit/ThemeTest.php | 2 +- .../Framework/Config/Test/Unit/ValidationStateTest.php | 2 +- .../Magento/Framework/Config/Test/Unit/ViewFactoryTest.php | 2 +- lib/internal/Magento/Framework/Config/Test/Unit/XsdTest.php | 2 +- .../Config/Test/Unit/_files/area/default_default/theme.xml | 2 +- .../Config/Test/Unit/_files/area/default_test/theme.xml | 2 +- .../Config/Test/Unit/_files/area/default_test2/theme.xml | 2 +- .../Config/Test/Unit/_files/area/test_default/theme.xml | 2 +- .../_files/area/test_external_package_descendant/theme.xml | 2 +- .../Config/Test/Unit/_files/converter/dom/attributes.php | 2 +- .../Config/Test/Unit/_files/converter/dom/attributes.xml | 2 +- .../Config/Test/Unit/_files/converter/dom/cdata.php | 2 +- .../Config/Test/Unit/_files/converter/dom/cdata.xml | 2 +- .../Config/Test/Unit/_files/converter/dom/flat/result.php | 2 +- .../Config/Test/Unit/_files/converter/dom/flat/source.xml | 2 +- .../Test/Unit/_files/converter/dom/flat/source_notuniq.xml | 2 +- .../Unit/_files/converter/dom/flat/source_wrongarray.xml | 2 +- .../Config/Test/Unit/_files/dom/ambiguous_merged.xml | 2 +- .../Config/Test/Unit/_files/dom/ambiguous_new_one.xml | 2 +- .../Config/Test/Unit/_files/dom/ambiguous_new_two.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/ambiguous_one.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/ambiguous_two.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/attributes.xml | 2 +- .../Config/Test/Unit/_files/dom/attributes_merged.xml | 2 +- .../Config/Test/Unit/_files/dom/attributes_new.xml | 2 +- .../Config/Test/Unit/_files/dom/converter/cdata.php | 2 +- .../Config/Test/Unit/_files/dom/converter/cdata.xml | 2 +- .../Config/Test/Unit/_files/dom/converter/no_attributes.php | 2 +- .../Config/Test/Unit/_files/dom/converter/no_attributes.xml | 2 +- .../Test/Unit/_files/dom/converter/with_attributes.php | 2 +- .../Test/Unit/_files/dom/converter/with_attributes.xml | 2 +- .../Magento/Framework/Config/Test/Unit/_files/dom/ids.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/ids_merged.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/ids_new.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/namespaced.xml | 2 +- .../Config/Test/Unit/_files/dom/namespaced_merged.xml | 2 +- .../Config/Test/Unit/_files/dom/namespaced_new.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/no_ids.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/no_ids_merged.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/no_ids_new.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/override_node.xml | 4 ++-- .../Config/Test/Unit/_files/dom/override_node_merged.xml | 4 ++-- .../Config/Test/Unit/_files/dom/override_node_new.xml | 4 ++-- .../Framework/Config/Test/Unit/_files/dom/recursive.xml | 2 +- .../Config/Test/Unit/_files/dom/recursive_deep.xml | 2 +- .../Config/Test/Unit/_files/dom/recursive_deep_merged.xml | 2 +- .../Config/Test/Unit/_files/dom/recursive_deep_new.xml | 2 +- .../Config/Test/Unit/_files/dom/recursive_merged.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/recursive_new.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/text_node.xml | 4 ++-- .../Config/Test/Unit/_files/dom/text_node_merged.xml | 4 ++-- .../Framework/Config/Test/Unit/_files/dom/text_node_new.xml | 4 ++-- .../Magento/Framework/Config/Test/Unit/_files/dom/types.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/types_merged.xml | 2 +- .../Framework/Config/Test/Unit/_files/dom/types_new.xml | 2 +- .../Framework/Config/Test/Unit/_files/reader/config.xml | 4 ++-- .../Framework/Config/Test/Unit/_files/reader/schema.xsd | 4 ++-- .../Magento/Framework/Config/Test/Unit/_files/sample.xsd | 2 +- .../Framework/Config/Test/Unit/_files/theme_invalid.xml | 2 +- .../Framework/Config/Test/Unit/_files/view_invalid.xml | 2 +- .../Magento/Framework/Config/Test/Unit/_files/view_one.xml | 2 +- .../Magento/Framework/Config/Test/Unit/_files/view_two.xml | 2 +- lib/internal/Magento/Framework/Config/Theme.php | 2 +- .../Magento/Framework/Config/ValidationStateInterface.php | 2 +- lib/internal/Magento/Framework/Config/View.php | 2 +- lib/internal/Magento/Framework/Config/ViewFactory.php | 2 +- lib/internal/Magento/Framework/Config/etc/theme.xsd | 2 +- lib/internal/Magento/Framework/Config/etc/view.xsd | 2 +- lib/internal/Magento/Framework/Console/Cli.php | 2 +- lib/internal/Magento/Framework/Console/CommandList.php | 2 +- .../Magento/Framework/Console/CommandListInterface.php | 2 +- lib/internal/Magento/Framework/Console/CommandLocator.php | 2 +- .../Magento/Framework/Console/GenerationDirectoryAccess.php | 2 +- .../Magento/Framework/Controller/AbstractResult.php | 2 +- lib/internal/Magento/Framework/Controller/Index/Index.php | 2 +- lib/internal/Magento/Framework/Controller/Noroute/Index.php | 2 +- .../Magento/Framework/Controller/Result/Forward.php | 2 +- lib/internal/Magento/Framework/Controller/Result/Json.php | 2 +- .../Magento/Framework/Controller/Result/JsonFactory.php | 2 +- lib/internal/Magento/Framework/Controller/Result/Raw.php | 2 +- .../Magento/Framework/Controller/Result/Redirect.php | 2 +- .../Magento/Framework/Controller/Result/RedirectFactory.php | 2 +- lib/internal/Magento/Framework/Controller/ResultFactory.php | 2 +- .../Magento/Framework/Controller/ResultInterface.php | 2 +- .../Magento/Framework/Controller/Router/Route/Factory.php | 2 +- .../Controller/Test/Unit/Controller/Index/IndexTest.php | 2 +- .../Controller/Test/Unit/Controller/NorouteTest.php | 2 +- .../Framework/Controller/Test/Unit/Result/ForwardTest.php | 2 +- .../Framework/Controller/Test/Unit/Result/JsonTest.php | 2 +- .../Framework/Controller/Test/Unit/Result/RawTest.php | 2 +- .../Controller/Test/Unit/Result/RedirectFactoryTest.php | 2 +- .../Framework/Controller/Test/Unit/Result/RedirectTest.php | 2 +- .../Controller/Test/Unit/Router/Route/FactoryTest.php | 2 +- lib/internal/Magento/Framework/Convert/ConvertArray.php | 2 +- lib/internal/Magento/Framework/Convert/DataObject.php | 2 +- lib/internal/Magento/Framework/Convert/DataSize.php | 2 +- lib/internal/Magento/Framework/Convert/Excel.php | 2 +- lib/internal/Magento/Framework/Convert/ExcelFactory.php | 2 +- .../Framework/Convert/Test/Unit/ConvertArrayTest.php | 2 +- .../Magento/Framework/Convert/Test/Unit/DataSizeTest.php | 2 +- .../Framework/Convert/Test/Unit/ExcelFactoryTest.php | 2 +- .../Magento/Framework/Convert/Test/Unit/ExcelTest.php | 2 +- .../Magento/Framework/Convert/Test/Unit/ObjectTest.php | 2 +- .../Magento/Framework/Convert/Test/Unit/XmlTest.php | 2 +- .../Magento/Framework/Convert/Test/Unit/_files/sample.xml | 2 +- lib/internal/Magento/Framework/Convert/Xml.php | 2 +- lib/internal/Magento/Framework/Crontab/CrontabManager.php | 2 +- .../Magento/Framework/Crontab/CrontabManagerInterface.php | 2 +- lib/internal/Magento/Framework/Crontab/TasksProvider.php | 2 +- .../Magento/Framework/Crontab/TasksProviderInterface.php | 2 +- .../Framework/Crontab/Test/Unit/CrontabManagerTest.php | 2 +- .../Framework/Crontab/Test/Unit/TasksProviderTest.php | 2 +- .../Framework/Css/PreProcessor/Adapter/Less/Processor.php | 2 +- lib/internal/Magento/Framework/Css/PreProcessor/Config.php | 2 +- .../Magento/Framework/Css/PreProcessor/ErrorHandler.php | 2 +- .../Framework/Css/PreProcessor/ErrorHandlerInterface.php | 2 +- .../Css/PreProcessor/File/Collector/Aggregated.php | 2 +- .../Framework/Css/PreProcessor/File/Collector/Library.php | 2 +- .../Framework/Css/PreProcessor/File/FileList/Collator.php | 2 +- .../Magento/Framework/Css/PreProcessor/File/Temporary.php | 2 +- .../Css/PreProcessor/FileGenerator/RelatedGenerator.php | 2 +- .../Framework/Css/PreProcessor/Instruction/Import.php | 2 +- .../Css/PreProcessor/Instruction/MagentoImport.php | 2 +- .../Test/Unit/PreProcessor/Adapter/Less/ProcessorTest.php | 2 +- .../Css/Test/Unit/PreProcessor/Adapter/Less/_file/test.css | 2 +- .../Css/Test/Unit/PreProcessor/Adapter/Less/_file/test.less | 4 ++-- .../Unit/PreProcessor/File/Collector/AggregatedTest.php | 2 +- .../Test/Unit/PreProcessor/File/Collector/LibraryTest.php | 2 +- .../Test/Unit/PreProcessor/File/FileList/CollatorTest.php | 2 +- .../Css/Test/Unit/PreProcessor/Instruction/ImportTest.php | 2 +- .../Unit/PreProcessor/Instruction/MagentoImportTest.php | 2 +- .../Css/Test/Unit/PreProcessor/_files/invalid.less | 2 +- .../Framework/Css/Test/Unit/PreProcessor/_files/valid.less | 2 +- lib/internal/Magento/Framework/Currency.php | 2 +- lib/internal/Magento/Framework/CurrencyFactory.php | 2 +- lib/internal/Magento/Framework/CurrencyInterface.php | 2 +- lib/internal/Magento/Framework/DB/AbstractMapper.php | 2 +- .../Magento/Framework/DB/Adapter/AdapterInterface.php | 2 +- .../Magento/Framework/DB/Adapter/ConnectionException.php | 2 +- lib/internal/Magento/Framework/DB/Adapter/DdlCache.php | 2 +- .../Magento/Framework/DB/Adapter/DeadlockException.php | 2 +- .../Magento/Framework/DB/Adapter/DuplicateException.php | 2 +- .../Magento/Framework/DB/Adapter/LockWaitException.php | 2 +- lib/internal/Magento/Framework/DB/Adapter/Pdo/Mysql.php | 2 +- lib/internal/Magento/Framework/DB/Ddl/Sequence.php | 2 +- lib/internal/Magento/Framework/DB/Ddl/Table.php | 2 +- lib/internal/Magento/Framework/DB/Ddl/Trigger.php | 2 +- lib/internal/Magento/Framework/DB/Ddl/TriggerFactory.php | 2 +- lib/internal/Magento/Framework/DB/ExpressionConverter.php | 2 +- lib/internal/Magento/Framework/DB/GenericMapper.php | 2 +- lib/internal/Magento/Framework/DB/Helper.php | 2 +- lib/internal/Magento/Framework/DB/Helper/AbstractHelper.php | 2 +- lib/internal/Magento/Framework/DB/Helper/Mysql/Fulltext.php | 2 +- lib/internal/Magento/Framework/DB/Logger/File.php | 2 +- lib/internal/Magento/Framework/DB/Logger/LoggerAbstract.php | 2 +- lib/internal/Magento/Framework/DB/Logger/Quiet.php | 2 +- lib/internal/Magento/Framework/DB/LoggerInterface.php | 2 +- lib/internal/Magento/Framework/DB/MapperFactory.php | 2 +- lib/internal/Magento/Framework/DB/MapperInterface.php | 2 +- lib/internal/Magento/Framework/DB/Platform/Quote.php | 2 +- lib/internal/Magento/Framework/DB/Profiler.php | 2 +- lib/internal/Magento/Framework/DB/Query.php | 2 +- lib/internal/Magento/Framework/DB/Query/BatchIterator.php | 2 +- .../Magento/Framework/DB/Query/BatchIteratorFactory.php | 2 +- lib/internal/Magento/Framework/DB/Query/Generator.php | 2 +- lib/internal/Magento/Framework/DB/QueryBuilder.php | 2 +- lib/internal/Magento/Framework/DB/QueryFactory.php | 2 +- lib/internal/Magento/Framework/DB/QueryInterface.php | 2 +- lib/internal/Magento/Framework/DB/Select.php | 2 +- .../Magento/Framework/DB/Select/ColumnsRenderer.php | 2 +- .../Magento/Framework/DB/Select/DistinctRenderer.php | 2 +- .../Magento/Framework/DB/Select/ForUpdateRenderer.php | 2 +- lib/internal/Magento/Framework/DB/Select/FromRenderer.php | 2 +- lib/internal/Magento/Framework/DB/Select/GroupRenderer.php | 2 +- lib/internal/Magento/Framework/DB/Select/HavingRenderer.php | 2 +- lib/internal/Magento/Framework/DB/Select/LimitRenderer.php | 2 +- lib/internal/Magento/Framework/DB/Select/OrderRenderer.php | 2 +- .../Magento/Framework/DB/Select/RendererInterface.php | 2 +- lib/internal/Magento/Framework/DB/Select/RendererProxy.php | 2 +- lib/internal/Magento/Framework/DB/Select/SelectRenderer.php | 2 +- lib/internal/Magento/Framework/DB/Select/UnionRenderer.php | 2 +- lib/internal/Magento/Framework/DB/Select/WhereRenderer.php | 2 +- lib/internal/Magento/Framework/DB/SelectFactory.php | 2 +- .../Magento/Framework/DB/Sequence/SequenceInterface.php | 2 +- lib/internal/Magento/Framework/DB/Sql/ConcatExpression.php | 2 +- lib/internal/Magento/Framework/DB/Sql/LimitExpression.php | 2 +- lib/internal/Magento/Framework/DB/Sql/LookupExpression.php | 2 +- lib/internal/Magento/Framework/DB/Sql/UnionExpression.php | 2 +- lib/internal/Magento/Framework/DB/Statement/Parameter.php | 2 +- lib/internal/Magento/Framework/DB/Statement/Pdo/Mysql.php | 2 +- lib/internal/Magento/Framework/DB/SubSelect.php | 2 +- .../Magento/Framework/DB/Test/Unit/AbstractMapperTest.php | 2 +- .../Framework/DB/Test/Unit/Adapter/Pdo/MysqlTest.php | 2 +- .../Magento/Framework/DB/Test/Unit/Ddl/TriggerTest.php | 2 +- .../Framework/DB/Test/Unit/ExpressionConverterTest.php | 2 +- .../Magento/Framework/DB/Test/Unit/GenericMapperTest.php | 2 +- .../Framework/DB/Test/Unit/Helper/AbstractHelperTest.php | 2 +- .../Framework/DB/Test/Unit/Helper/Mysql/FulltextTest.php | 2 +- .../Magento/Framework/DB/Test/Unit/Logger/FileTest.php | 2 +- .../Magento/Framework/DB/Test/Unit/Platform/QuoteTest.php | 2 +- .../Magento/Framework/DB/Test/Unit/ProfilerTest.php | 2 +- lib/internal/Magento/Framework/DB/Test/Unit/QueryTest.php | 2 +- .../Framework/DB/Test/Unit/Select/ColumnsRendererTest.php | 2 +- .../Framework/DB/Test/Unit/Select/DistinctRendererTest.php | 2 +- .../Framework/DB/Test/Unit/Select/ForUpdateRendererTest.php | 2 +- .../Framework/DB/Test/Unit/Select/FromRendererTest.php | 2 +- .../Framework/DB/Test/Unit/Select/GroupRendererTest.php | 2 +- .../Framework/DB/Test/Unit/Select/HavingRendererTest.php | 2 +- .../Framework/DB/Test/Unit/Select/LimitRendererTest.php | 2 +- .../Framework/DB/Test/Unit/Select/OrderRendererTest.php | 2 +- .../Framework/DB/Test/Unit/Select/RendererProxyTest.php | 2 +- .../Framework/DB/Test/Unit/Select/SelectRendererTest.php | 2 +- .../Framework/DB/Test/Unit/Select/UnionRendererTest.php | 2 +- .../Framework/DB/Test/Unit/Select/WhereRendererTest.php | 2 +- .../Magento/Framework/DB/Test/Unit/SelectFactoryTest.php | 2 +- lib/internal/Magento/Framework/DB/Test/Unit/SelectTest.php | 2 +- .../Framework/DB/Test/Unit/Sql/LimitExpressionTest.php | 2 +- .../Framework/DB/Test/Unit/Sql/UnionExpressionTest.php | 2 +- .../Magento/Framework/DB/Test/Unit/Tree/NodeTest.php | 2 +- lib/internal/Magento/Framework/DB/Transaction.php | 2 +- lib/internal/Magento/Framework/DB/Tree.php | 2 +- lib/internal/Magento/Framework/DB/Tree/Node.php | 2 +- lib/internal/Magento/Framework/DB/Tree/NodeSet.php | 2 +- lib/internal/Magento/Framework/Data/AbstractCriteria.php | 2 +- lib/internal/Magento/Framework/Data/AbstractDataObject.php | 2 +- .../Framework/Data/AbstractSearchCriteriaBuilder.php | 2 +- .../Magento/Framework/Data/AbstractSearchResult.php | 2 +- .../Framework/Data/Argument/Interpreter/ArrayType.php | 2 +- .../Magento/Framework/Data/Argument/Interpreter/Boolean.php | 2 +- .../Framework/Data/Argument/Interpreter/Composite.php | 2 +- .../Framework/Data/Argument/Interpreter/Constant.php | 2 +- .../Framework/Data/Argument/Interpreter/DataObject.php | 2 +- .../Framework/Data/Argument/Interpreter/NullType.php | 2 +- .../Magento/Framework/Data/Argument/Interpreter/Number.php | 2 +- .../Framework/Data/Argument/Interpreter/StringUtils.php | 2 +- .../Framework/Data/Argument/InterpreterInterface.php | 2 +- lib/internal/Magento/Framework/Data/Collection.php | 2 +- .../Magento/Framework/Data/Collection/AbstractDb.php | 2 +- .../Framework/Data/Collection/Db/FetchStrategy/Cache.php | 2 +- .../Framework/Data/Collection/Db/FetchStrategy/Query.php | 2 +- .../Framework/Data/Collection/Db/FetchStrategyInterface.php | 2 +- .../Magento/Framework/Data/Collection/EntityFactory.php | 2 +- .../Framework/Data/Collection/EntityFactoryInterface.php | 2 +- .../Magento/Framework/Data/Collection/Filesystem.php | 2 +- .../Magento/Framework/Data/Collection/ModelFactory.php | 2 +- .../Framework/Data/CollectionDataSourceInterface.php | 2 +- lib/internal/Magento/Framework/Data/DataArray.php | 2 +- lib/internal/Magento/Framework/Data/Form.php | 2 +- lib/internal/Magento/Framework/Data/Form/AbstractForm.php | 2 +- .../Magento/Framework/Data/Form/Element/AbstractElement.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Button.php | 2 +- .../Magento/Framework/Data/Form/Element/Checkbox.php | 2 +- .../Magento/Framework/Data/Form/Element/Checkboxes.php | 2 +- .../Magento/Framework/Data/Form/Element/Collection.php | 2 +- .../Framework/Data/Form/Element/CollectionFactory.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Column.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Date.php | 2 +- .../Framework/Data/Form/Element/Editablemultiselect.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Editor.php | 2 +- .../Magento/Framework/Data/Form/Element/Factory.php | 2 +- .../Magento/Framework/Data/Form/Element/Fieldset.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/File.php | 2 +- .../Magento/Framework/Data/Form/Element/Gallery.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Hidden.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Image.php | 2 +- .../Magento/Framework/Data/Form/Element/Imagefile.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Label.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Link.php | 2 +- .../Magento/Framework/Data/Form/Element/Multiline.php | 2 +- .../Magento/Framework/Data/Form/Element/Multiselect.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Note.php | 2 +- .../Magento/Framework/Data/Form/Element/Obscure.php | 2 +- .../Magento/Framework/Data/Form/Element/Password.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Radio.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Radios.php | 2 +- .../Data/Form/Element/Renderer/RendererInterface.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Reset.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Select.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Submit.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Text.php | 2 +- .../Magento/Framework/Data/Form/Element/Textarea.php | 2 +- lib/internal/Magento/Framework/Data/Form/Element/Time.php | 2 +- lib/internal/Magento/Framework/Data/Form/ElementFactory.php | 2 +- lib/internal/Magento/Framework/Data/Form/Filter/Date.php | 2 +- .../Magento/Framework/Data/Form/Filter/Escapehtml.php | 2 +- .../Magento/Framework/Data/Form/Filter/FilterInterface.php | 2 +- .../Magento/Framework/Data/Form/Filter/Striptags.php | 2 +- lib/internal/Magento/Framework/Data/Form/FilterFactory.php | 2 +- lib/internal/Magento/Framework/Data/Form/FormKey.php | 2 +- .../Magento/Framework/Data/Form/FormKey/Validator.php | 2 +- lib/internal/Magento/Framework/Data/FormFactory.php | 2 +- lib/internal/Magento/Framework/Data/Graph.php | 2 +- lib/internal/Magento/Framework/Data/Helper/PostHelper.php | 2 +- lib/internal/Magento/Framework/Data/ObjectFactory.php | 2 +- .../Magento/Framework/Data/OptionSourceInterface.php | 2 +- lib/internal/Magento/Framework/Data/Schema.php | 2 +- .../Magento/Framework/Data/SearchResultInterface.php | 2 +- .../Magento/Framework/Data/SearchResultIterator.php | 2 +- .../Magento/Framework/Data/SearchResultIteratorFactory.php | 2 +- .../Magento/Framework/Data/SearchResultProcessor.php | 2 +- .../Magento/Framework/Data/SearchResultProcessorFactory.php | 2 +- .../Framework/Data/SearchResultProcessorInterface.php | 2 +- lib/internal/Magento/Framework/Data/Structure.php | 2 +- .../Framework/Data/Test/Unit/AbstractCriteriaTest.php | 2 +- .../Framework/Data/Test/Unit/AbstractDataObjectTest.php | 2 +- .../Framework/Data/Test/Unit/AbstractSearchResultTest.php | 2 +- .../Data/Test/Unit/Argument/Interpreter/ArrayTypeTest.php | 2 +- .../Data/Test/Unit/Argument/Interpreter/BooleanTest.php | 2 +- .../Data/Test/Unit/Argument/Interpreter/CompositeTest.php | 2 +- .../Data/Test/Unit/Argument/Interpreter/ConstantTest.php | 2 +- .../Data/Test/Unit/Argument/Interpreter/NullTypeTest.php | 2 +- .../Data/Test/Unit/Argument/Interpreter/NumberTest.php | 2 +- .../Magento/Framework/Data/Test/Unit/Argument/XsdTest.php | 2 +- .../Data/Test/Unit/Argument/_files/typesInvalidArray.php | 2 +- .../Data/Test/Unit/Argument/_files/types_schema.xsd | 2 +- .../Data/Test/Unit/Argument/_files/types_valid.xml | 2 +- .../Test/Unit/Collection/Db/FetchStrategy/CacheTest.php | 2 +- .../Test/Unit/Collection/Db/FetchStrategy/QueryTest.php | 2 +- .../Framework/Data/Test/Unit/Collection/DbCollection.php | 2 +- .../Magento/Framework/Data/Test/Unit/Collection/DbTest.php | 2 +- .../Framework/Data/Test/Unit/Collection/FilesystemTest.php | 2 +- .../Magento/Framework/Data/Test/Unit/CollectionTest.php | 2 +- .../Magento/Framework/Data/Test/Unit/Criteria/Sample.php | 2 +- .../Framework/Data/Test/Unit/Form/AbstractFormTest.php | 2 +- .../Data/Test/Unit/Form/Element/AbstractElementTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/ButtonTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/CheckboxTest.php | 2 +- .../Data/Test/Unit/Form/Element/CollectionFactoryTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/ColumnTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/DateTest.php | 2 +- .../Data/Test/Unit/Form/Element/EditablemultiselectTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/EditorTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/FactoryTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/FileTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/HiddenTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/ImageTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/ImagefileTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/LabelTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/LinkTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/MultilineTest.php | 2 +- .../Data/Test/Unit/Form/Element/MultiselectTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/NoteTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/ObscureTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/PasswordTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/RadioTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/ResetTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/SubmitTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/TextTest.php | 2 +- .../Framework/Data/Test/Unit/Form/Element/TextareaTest.php | 2 +- .../Framework/Data/Test/Unit/Form/FilterFactoryTest.php | 2 +- .../Framework/Data/Test/Unit/Form/FormKey/ValidatorTest.php | 2 +- .../Magento/Framework/Data/Test/Unit/Form/FormKeyTest.php | 2 +- .../Magento/Framework/Data/Test/Unit/FormFactoryTest.php | 2 +- lib/internal/Magento/Framework/Data/Test/Unit/FormTest.php | 2 +- lib/internal/Magento/Framework/Data/Test/Unit/GraphTest.php | 2 +- .../Framework/Data/Test/Unit/Helper/PostHelperTest.php | 2 +- .../Framework/Data/Test/Unit/SearchCriteriaBuilderTest.php | 2 +- .../Framework/Data/Test/Unit/SearchResultProcessorTest.php | 2 +- .../Magento/Framework/Data/Test/Unit/StructureTest.php | 2 +- .../Magento/Framework/Data/Test/Unit/Stub/DataObject.php | 2 +- .../Framework/Data/Test/Unit/Stub/SearchCriteriaBuilder.php | 2 +- .../Magento/Framework/Data/Test/Unit/Stub/SearchResult.php | 2 +- .../Framework/Data/Test/Unit/Tree/Node/CollectionTest.php | 2 +- lib/internal/Magento/Framework/Data/Test/Unit/TreeTest.php | 2 +- lib/internal/Magento/Framework/Data/Tree.php | 2 +- lib/internal/Magento/Framework/Data/Tree/Db.php | 2 +- lib/internal/Magento/Framework/Data/Tree/Dbp.php | 2 +- lib/internal/Magento/Framework/Data/Tree/Node.php | 2 +- .../Magento/Framework/Data/Tree/Node/Collection.php | 2 +- lib/internal/Magento/Framework/Data/Tree/NodeFactory.php | 2 +- lib/internal/Magento/Framework/Data/TreeFactory.php | 2 +- .../Magento/Framework/Data/ValueSourceInterface.php | 2 +- lib/internal/Magento/Framework/Data/etc/argument/types.xsd | 2 +- lib/internal/Magento/Framework/DataObject.php | 2 +- lib/internal/Magento/Framework/DataObject/Cache.php | 2 +- lib/internal/Magento/Framework/DataObject/Copy.php | 2 +- lib/internal/Magento/Framework/DataObject/Copy/Config.php | 2 +- .../Magento/Framework/DataObject/Copy/Config/Converter.php | 2 +- .../Magento/Framework/DataObject/Copy/Config/Data.php | 2 +- .../Magento/Framework/DataObject/Copy/Config/Data/Proxy.php | 2 +- .../Magento/Framework/DataObject/Copy/Config/Reader.php | 2 +- .../Framework/DataObject/Copy/Config/SchemaLocator.php | 2 +- lib/internal/Magento/Framework/DataObject/Factory.php | 2 +- .../Framework/DataObject/IdentityGeneratorInterface.php | 2 +- .../Magento/Framework/DataObject/IdentityInterface.php | 2 +- .../Magento/Framework/DataObject/IdentityService.php | 2 +- .../Framework/DataObject/KeyValueObjectInterface.php | 2 +- lib/internal/Magento/Framework/DataObject/Mapper.php | 2 +- .../Magento/Framework/DataObject/Test/Unit/CacheTest.php | 2 +- .../DataObject/Test/Unit/Copy/Config/ConverterTest.php | 2 +- .../DataObject/Test/Unit/Copy/Config/SchemaLocatorTest.php | 2 +- .../DataObject/Test/Unit/Copy/Config/_files/fieldset.xml | 2 +- .../Test/Unit/Copy/Config/_files/fieldset_config.php | 2 +- .../Framework/DataObject/Test/Unit/Copy/ConfigTest.php | 2 +- .../Magento/Framework/DataObject/Test/Unit/CopyTest.php | 2 +- .../Magento/Framework/DataObject/Test/Unit/MapperTest.php | 2 +- lib/internal/Magento/Framework/DataObject/etc/fieldset.xsd | 4 ++-- .../Magento/Framework/DataObject/etc/fieldset_file.xsd | 2 +- lib/internal/Magento/Framework/Debug.php | 2 +- .../Magento/Framework/DomDocument/DomDocumentFactory.php | 2 +- lib/internal/Magento/Framework/Encryption/Crypt.php | 2 +- lib/internal/Magento/Framework/Encryption/Encryptor.php | 2 +- .../Magento/Framework/Encryption/EncryptorInterface.php | 2 +- .../Magento/Framework/Encryption/Helper/Security.php | 2 +- .../Encryption/Test/Unit/Crypt/_files/_cipher_info.php | 2 +- .../Encryption/Test/Unit/Crypt/_files/_crypt_fixtures.php | 2 +- .../Magento/Framework/Encryption/Test/Unit/CryptTest.php | 2 +- .../Framework/Encryption/Test/Unit/EncryptorTest.php | 2 +- .../Framework/Encryption/Test/Unit/Helper/SecurityTest.php | 2 +- .../Magento/Framework/Encryption/Test/Unit/UrlCoderTest.php | 2 +- lib/internal/Magento/Framework/Encryption/UrlCoder.php | 2 +- .../Framework/EntityManager/AbstractModelHydrator.php | 2 +- .../Magento/Framework/EntityManager/CallbackHandler.php | 2 +- .../Magento/Framework/EntityManager/CompositeMapper.php | 2 +- .../Magento/Framework/EntityManager/Db/CreateRow.php | 2 +- .../Magento/Framework/EntityManager/Db/DeleteRow.php | 2 +- lib/internal/Magento/Framework/EntityManager/Db/ReadRow.php | 2 +- .../Magento/Framework/EntityManager/Db/UpdateRow.php | 2 +- .../Magento/Framework/EntityManager/EntityManager.php | 2 +- .../Magento/Framework/EntityManager/EntityMetadata.php | 2 +- .../Framework/EntityManager/EntityMetadataInterface.php | 2 +- .../Magento/Framework/EntityManager/EventManager.php | 2 +- lib/internal/Magento/Framework/EntityManager/Hydrator.php | 2 +- .../Magento/Framework/EntityManager/HydratorInterface.php | 2 +- .../Magento/Framework/EntityManager/HydratorPool.php | 2 +- lib/internal/Magento/Framework/EntityManager/Mapper.php | 2 +- .../Magento/Framework/EntityManager/MapperInterface.php | 2 +- lib/internal/Magento/Framework/EntityManager/MapperPool.php | 2 +- .../Magento/Framework/EntityManager/MetadataPool.php | 2 +- .../Framework/EntityManager/Observer/AfterEntityDelete.php | 2 +- .../Framework/EntityManager/Observer/AfterEntityLoad.php | 2 +- .../Framework/EntityManager/Observer/AfterEntitySave.php | 2 +- .../Framework/EntityManager/Observer/BeforeEntityDelete.php | 2 +- .../Framework/EntityManager/Observer/BeforeEntityLoad.php | 2 +- .../Framework/EntityManager/Observer/BeforeEntitySave.php | 2 +- .../EntityManager/Operation/AttributeInterface.php | 2 +- .../Framework/EntityManager/Operation/AttributePool.php | 2 +- .../Framework/EntityManager/Operation/CheckIfExists.php | 2 +- .../EntityManager/Operation/CheckIfExistsInterface.php | 2 +- .../Magento/Framework/EntityManager/Operation/Create.php | 2 +- .../EntityManager/Operation/Create/CreateAttributes.php | 2 +- .../EntityManager/Operation/Create/CreateExtensions.php | 2 +- .../Framework/EntityManager/Operation/Create/CreateMain.php | 2 +- .../Framework/EntityManager/Operation/CreateInterface.php | 2 +- .../Magento/Framework/EntityManager/Operation/Delete.php | 2 +- .../EntityManager/Operation/Delete/DeleteAttributes.php | 2 +- .../EntityManager/Operation/Delete/DeleteExtensions.php | 2 +- .../Framework/EntityManager/Operation/Delete/DeleteMain.php | 2 +- .../Framework/EntityManager/Operation/DeleteInterface.php | 2 +- .../EntityManager/Operation/ExtensionInterface.php | 2 +- .../Framework/EntityManager/Operation/ExtensionPool.php | 2 +- .../Magento/Framework/EntityManager/Operation/Read.php | 2 +- .../EntityManager/Operation/Read/ReadAttributes.php | 2 +- .../EntityManager/Operation/Read/ReadExtensions.php | 2 +- .../Framework/EntityManager/Operation/Read/ReadMain.php | 2 +- .../Framework/EntityManager/Operation/ReadInterface.php | 2 +- .../Magento/Framework/EntityManager/Operation/Update.php | 2 +- .../EntityManager/Operation/Update/UpdateAttributes.php | 2 +- .../EntityManager/Operation/Update/UpdateExtensions.php | 2 +- .../Framework/EntityManager/Operation/Update/UpdateMain.php | 2 +- .../Framework/EntityManager/Operation/UpdateInterface.php | 2 +- .../Framework/EntityManager/Operation/ValidatorPool.php | 2 +- .../Magento/Framework/EntityManager/OperationInterface.php | 2 +- .../Magento/Framework/EntityManager/OperationPool.php | 2 +- .../Magento/Framework/EntityManager/Sequence/Sequence.php | 2 +- .../Framework/EntityManager/Sequence/SequenceFactory.php | 2 +- .../Framework/EntityManager/Sequence/SequenceManager.php | 2 +- .../Framework/EntityManager/Sequence/SequenceRegistry.php | 2 +- .../Framework/EntityManager/Test/Unit/Db/UpdateRowTest.php | 2 +- .../Framework/EntityManager/Test/Unit/MapperTest.php | 2 +- .../EntityManager/Test/Unit/Operation/CreateTest.php | 2 +- .../EntityManager/Test/Unit/Operation/UpdateTest.php | 2 +- .../Framework/EntityManager/Test/Unit/TypeResolverTest.php | 2 +- .../Magento/Framework/EntityManager/TypeResolver.php | 2 +- lib/internal/Magento/Framework/Escaper.php | 2 +- lib/internal/Magento/Framework/Event.php | 2 +- lib/internal/Magento/Framework/Event/Collection.php | 2 +- lib/internal/Magento/Framework/Event/Config.php | 2 +- lib/internal/Magento/Framework/Event/Config/Converter.php | 2 +- lib/internal/Magento/Framework/Event/Config/Data.php | 2 +- lib/internal/Magento/Framework/Event/Config/Reader.php | 2 +- .../Magento/Framework/Event/Config/SchemaLocator.php | 2 +- lib/internal/Magento/Framework/Event/ConfigInterface.php | 2 +- .../Magento/Framework/Event/Invoker/InvokerDefault.php | 2 +- lib/internal/Magento/Framework/Event/InvokerInterface.php | 2 +- lib/internal/Magento/Framework/Event/Manager.php | 2 +- lib/internal/Magento/Framework/Event/ManagerInterface.php | 2 +- lib/internal/Magento/Framework/Event/Observer.php | 2 +- .../Magento/Framework/Event/Observer/Collection.php | 2 +- lib/internal/Magento/Framework/Event/Observer/Cron.php | 2 +- lib/internal/Magento/Framework/Event/Observer/Regex.php | 2 +- lib/internal/Magento/Framework/Event/ObserverFactory.php | 2 +- lib/internal/Magento/Framework/Event/ObserverInterface.php | 2 +- .../Magento/Framework/Event/Test/Unit/CollectionTest.php | 2 +- .../Framework/Event/Test/Unit/Config/ConverterTest.php | 2 +- .../Framework/Event/Test/Unit/Config/SchemaLocatorTest.php | 2 +- .../Magento/Framework/Event/Test/Unit/Config/XsdTest.php | 2 +- .../Event/Test/Unit/Config/_files/event_config.php | 2 +- .../Event/Test/Unit/Config/_files/event_config.xml | 4 ++-- .../Event/Test/Unit/Config/_files/event_invalid_config.xml | 4 ++-- .../Event/Test/Unit/Config/_files/invalidEventsXmlArray.php | 2 +- .../Event/Test/Unit/Config/_files/valid_events.xml | 2 +- .../Magento/Framework/Event/Test/Unit/ConfigTest.php | 2 +- .../Event/Test/Unit/Invoker/InvokerDefaultTest.php | 2 +- .../Framework/Event/Test/Unit/Invoker/ObserverExample.php | 2 +- .../Magento/Framework/Event/Test/Unit/ManagerStub.php | 2 +- .../Magento/Framework/Event/Test/Unit/ManagerTest.php | 2 +- .../Framework/Event/Test/Unit/Observer/CollectionTest.php | 2 +- .../Magento/Framework/Event/Test/Unit/Observer/CronTest.php | 2 +- .../Framework/Event/Test/Unit/Observer/RegexTest.php | 2 +- .../Framework/Event/Test/Unit/ObserverFactoryTest.php | 2 +- .../Magento/Framework/Event/Test/Unit/ObserverTest.php | 2 +- .../Framework/Event/Test/Unit/WrapperFactoryTest.php | 2 +- lib/internal/Magento/Framework/Event/WrapperFactory.php | 2 +- lib/internal/Magento/Framework/Event/etc/events.xsd | 2 +- lib/internal/Magento/Framework/EventFactory.php | 2 +- .../Framework/Exception/AbstractAggregateException.php | 2 +- .../Magento/Framework/Exception/AlreadyExistsException.php | 2 +- .../Magento/Framework/Exception/AuthenticationException.php | 2 +- .../Magento/Framework/Exception/AuthorizationException.php | 2 +- .../Framework/Exception/ConfigurationMismatchException.php | 2 +- .../Magento/Framework/Exception/CouldNotDeleteException.php | 2 +- .../Magento/Framework/Exception/CouldNotSaveException.php | 2 +- lib/internal/Magento/Framework/Exception/CronException.php | 2 +- .../Framework/Exception/EmailNotConfirmedException.php | 2 +- .../Magento/Framework/Exception/FileSystemException.php | 2 +- lib/internal/Magento/Framework/Exception/InputException.php | 2 +- .../Magento/Framework/Exception/IntegrationException.php | 2 +- .../Framework/Exception/InvalidEmailOrPasswordException.php | 2 +- .../Magento/Framework/Exception/LocalizedException.php | 2 +- lib/internal/Magento/Framework/Exception/MailException.php | 2 +- .../Magento/Framework/Exception/NoSuchEntityException.php | 2 +- .../Magento/Framework/Exception/NotFoundException.php | 2 +- .../Magento/Framework/Exception/PaymentException.php | 2 +- .../Framework/Exception/Plugin/AuthenticationException.php | 2 +- .../Exception/RemoteServiceUnavailableException.php | 2 +- .../Framework/Exception/SecurityViolationException.php | 2 +- .../Magento/Framework/Exception/SerializationException.php | 2 +- .../Magento/Framework/Exception/SessionException.php | 2 +- .../Magento/Framework/Exception/State/ExpiredException.php | 2 +- .../Magento/Framework/Exception/State/InitException.php | 2 +- .../Framework/Exception/State/InputMismatchException.php | 2 +- .../Exception/State/InvalidTransitionException.php | 2 +- .../Framework/Exception/State/UserLockedException.php | 2 +- lib/internal/Magento/Framework/Exception/StateException.php | 2 +- .../Exception/TemporaryState/CouldNotSaveException.php | 2 +- .../Exception/TemporaryStateExceptionInterface.php | 2 +- .../Exception/Test/Unit/AuthenticationExceptionTest.php | 2 +- .../Exception/Test/Unit/AuthorizationExceptionTest.php | 2 +- .../Exception/Test/Unit/EmailNotConfirmedExceptionTest.php | 2 +- .../Framework/Exception/Test/Unit/InputExceptionTest.php | 2 +- .../Exception/Test/Unit/LocalizedExceptionTest.php | 2 +- .../Exception/Test/Unit/NoSuchEntityExceptionTest.php | 2 +- .../Exception/Test/Unit/State/ExpiredExceptionTest.php | 2 +- .../Test/Unit/State/InputMismatchExceptionTest.php | 2 +- .../Test/Unit/State/InvalidTransitionExceptionTest.php | 2 +- .../Framework/Exception/Test/Unit/StateExceptionTest.php | 2 +- .../Magento/Framework/Exception/ValidatorException.php | 2 +- lib/internal/Magento/Framework/File/Csv.php | 2 +- lib/internal/Magento/Framework/File/CsvMulty.php | 2 +- lib/internal/Magento/Framework/File/Mime.php | 2 +- lib/internal/Magento/Framework/File/Size.php | 2 +- lib/internal/Magento/Framework/File/Test/Unit/CsvTest.php | 2 +- lib/internal/Magento/Framework/File/Test/Unit/MimeTest.php | 2 +- .../Framework/File/Test/Unit/Transfer/Adapter/HttpTest.php | 2 +- .../Magento/Framework/File/Test/Unit/_files/javascript.js | 2 +- .../Magento/Framework/File/Transfer/Adapter/Http.php | 2 +- lib/internal/Magento/Framework/File/Uploader.php | 2 +- lib/internal/Magento/Framework/File/UploaderFactory.php | 2 +- lib/internal/Magento/Framework/Filesystem.php | 2 +- .../Magento/Framework/Filesystem/Directory/Read.php | 2 +- .../Magento/Framework/Filesystem/Directory/ReadFactory.php | 2 +- .../Framework/Filesystem/Directory/ReadInterface.php | 2 +- .../Magento/Framework/Filesystem/Directory/Write.php | 2 +- .../Magento/Framework/Filesystem/Directory/WriteFactory.php | 2 +- .../Framework/Filesystem/Directory/WriteInterface.php | 2 +- lib/internal/Magento/Framework/Filesystem/DirectoryList.php | 2 +- lib/internal/Magento/Framework/Filesystem/Driver/File.php | 2 +- lib/internal/Magento/Framework/Filesystem/Driver/Http.php | 2 +- lib/internal/Magento/Framework/Filesystem/Driver/Https.php | 2 +- lib/internal/Magento/Framework/Filesystem/Driver/Zlib.php | 2 +- .../Magento/Framework/Filesystem/DriverInterface.php | 2 +- lib/internal/Magento/Framework/Filesystem/DriverPool.php | 2 +- lib/internal/Magento/Framework/Filesystem/File/Read.php | 2 +- .../Magento/Framework/Filesystem/File/ReadFactory.php | 2 +- .../Magento/Framework/Filesystem/File/ReadInterface.php | 2 +- lib/internal/Magento/Framework/Filesystem/File/Write.php | 2 +- .../Magento/Framework/Filesystem/File/WriteFactory.php | 2 +- .../Magento/Framework/Filesystem/File/WriteInterface.php | 2 +- lib/internal/Magento/Framework/Filesystem/FileResolver.php | 2 +- .../Magento/Framework/Filesystem/Filter/ExcludeFilter.php | 2 +- lib/internal/Magento/Framework/Filesystem/Glob.php | 2 +- lib/internal/Magento/Framework/Filesystem/Io/AbstractIo.php | 2 +- lib/internal/Magento/Framework/Filesystem/Io/File.php | 2 +- lib/internal/Magento/Framework/Filesystem/Io/Ftp.php | 2 +- .../Magento/Framework/Filesystem/Io/IoInterface.php | 2 +- lib/internal/Magento/Framework/Filesystem/Io/Sftp.php | 2 +- .../Framework/Filesystem/Test/Unit/Directory/ReadTest.php | 2 +- .../Framework/Filesystem/Test/Unit/Directory/WriteTest.php | 2 +- .../Framework/Filesystem/Test/Unit/DirectoryListTest.php | 2 +- .../Framework/Filesystem/Test/Unit/Driver/FileTest.php | 2 +- .../Framework/Filesystem/Test/Unit/Driver/HttpTest.php | 2 +- .../Framework/Filesystem/Test/Unit/Driver/HttpsTest.php | 2 +- .../Framework/Filesystem/Test/Unit/DriverPoolTest.php | 2 +- .../Filesystem/Test/Unit/File/ExcludeFilterTest.php | 2 +- .../Framework/Filesystem/Test/Unit/File/ReadFactoryTest.php | 2 +- .../Framework/Filesystem/Test/Unit/File/ReadTest.php | 2 +- .../Filesystem/Test/Unit/File/WriteFactoryTest.php | 2 +- .../Framework/Filesystem/Test/Unit/File/WriteTest.php | 2 +- .../Framework/Filesystem/Test/Unit/FileResolverTest.php | 2 +- .../Framework/Filesystem/Test/Unit/_files/http_mock.php | 2 +- lib/internal/Magento/Framework/Filter/AbstractFactory.php | 2 +- lib/internal/Magento/Framework/Filter/ArrayFilter.php | 2 +- lib/internal/Magento/Framework/Filter/DataObject.php | 2 +- lib/internal/Magento/Framework/Filter/DataObject/Grid.php | 2 +- lib/internal/Magento/Framework/Filter/Decrypt.php | 2 +- lib/internal/Magento/Framework/Filter/Email.php | 2 +- lib/internal/Magento/Framework/Filter/Encrypt.php | 2 +- .../Magento/Framework/Filter/Encrypt/AdapterInterface.php | 2 +- lib/internal/Magento/Framework/Filter/Encrypt/Basic.php | 2 +- lib/internal/Magento/Framework/Filter/Factory.php | 2 +- lib/internal/Magento/Framework/Filter/FactoryInterface.php | 2 +- lib/internal/Magento/Framework/Filter/FilterManager.php | 2 +- .../Magento/Framework/Filter/FilterManager/Config.php | 2 +- .../Framework/Filter/FilterManager/ConfigInterface.php | 2 +- lib/internal/Magento/Framework/Filter/Input.php | 2 +- .../Magento/Framework/Filter/Input/MaliciousCode.php | 2 +- .../Magento/Framework/Filter/LocalizedToNormalized.php | 2 +- lib/internal/Magento/Framework/Filter/Money.php | 2 +- lib/internal/Magento/Framework/Filter/RemoveAccents.php | 2 +- lib/internal/Magento/Framework/Filter/RemoveTags.php | 2 +- lib/internal/Magento/Framework/Filter/SplitWords.php | 2 +- lib/internal/Magento/Framework/Filter/Sprintf.php | 2 +- lib/internal/Magento/Framework/Filter/StripTags.php | 2 +- lib/internal/Magento/Framework/Filter/Template.php | 2 +- lib/internal/Magento/Framework/Filter/Template/Simple.php | 2 +- .../Filter/Template/Tokenizer/AbstractTokenizer.php | 2 +- .../Framework/Filter/Template/Tokenizer/Parameter.php | 2 +- .../Framework/Filter/Template/Tokenizer/Variable.php | 2 +- .../Framework/Filter/Test/Unit/AbstractFactoryTest.php | 2 +- .../Magento/Framework/Filter/Test/Unit/ArrayFilterTest.php | 2 +- .../Framework/Filter/Test/Unit/DataObject/GridTest.php | 2 +- .../Framework/Filter/Test/Unit/FilterManager/ConfigTest.php | 2 +- .../Framework/Filter/Test/Unit/FilterManagerTest.php | 2 +- .../Framework/Filter/Test/Unit/Input/MaliciousCodeTest.php | 2 +- .../Magento/Framework/Filter/Test/Unit/InputTest.php | 2 +- .../Framework/Filter/Test/Unit/RemoveAccentsTest.php | 2 +- .../Magento/Framework/Filter/Test/Unit/RemoveTagsTest.php | 2 +- .../Magento/Framework/Filter/Test/Unit/SplitWordsTest.php | 2 +- .../Magento/Framework/Filter/Test/Unit/SprintfTest.php | 2 +- .../Magento/Framework/Filter/Test/Unit/StripTagsTest.php | 2 +- .../Framework/Filter/Test/Unit/Template/SimpleTest.php | 2 +- .../Filter/Test/Unit/Template/Tokenizer/ParameterTest.php | 2 +- .../Filter/Test/Unit/Template/Tokenizer/VariableTest.php | 2 +- .../Magento/Framework/Filter/Test/Unit/TemplateTest.php | 2 +- .../Magento/Framework/Filter/Test/Unit/TranslitTest.php | 2 +- .../Magento/Framework/Filter/Test/Unit/TranslitUrlTest.php | 2 +- .../Magento/Framework/Filter/Test/Unit/TruncateTest.php | 2 +- lib/internal/Magento/Framework/Filter/Translit.php | 2 +- lib/internal/Magento/Framework/Filter/TranslitUrl.php | 2 +- lib/internal/Magento/Framework/Filter/Truncate.php | 2 +- lib/internal/Magento/Framework/Filter/ZendFactory.php | 2 +- lib/internal/Magento/Framework/Flag.php | 2 +- lib/internal/Magento/Framework/Flag/FlagResource.php | 2 +- lib/internal/Magento/Framework/FlagFactory.php | 2 +- lib/internal/Magento/Framework/HTTP/Adapter/Curl.php | 2 +- .../Magento/Framework/HTTP/Adapter/FileTransferFactory.php | 2 +- lib/internal/Magento/Framework/HTTP/Authentication.php | 2 +- lib/internal/Magento/Framework/HTTP/Client/Curl.php | 2 +- lib/internal/Magento/Framework/HTTP/Client/Socket.php | 2 +- lib/internal/Magento/Framework/HTTP/ClientFactory.php | 2 +- lib/internal/Magento/Framework/HTTP/ClientInterface.php | 2 +- lib/internal/Magento/Framework/HTTP/Header.php | 2 +- .../Magento/Framework/HTTP/PhpEnvironment/RemoteAddress.php | 2 +- .../Magento/Framework/HTTP/PhpEnvironment/Request.php | 2 +- .../Magento/Framework/HTTP/PhpEnvironment/Response.php | 2 +- .../Magento/Framework/HTTP/PhpEnvironment/ServerAddress.php | 2 +- .../Magento/Framework/HTTP/Test/Unit/Adapter/CurlTest.php | 2 +- .../HTTP/Test/Unit/Adapter/_files/curl_exec_mock.php | 2 +- .../Magento/Framework/HTTP/Test/Unit/AuthenticationTest.php | 2 +- .../Magento/Framework/HTTP/Test/Unit/HeaderTest.php | 2 +- .../HTTP/Test/Unit/PhpEnvironment/RemoteAddressTest.php | 2 +- .../Framework/HTTP/Test/Unit/PhpEnvironment/RequestTest.php | 2 +- .../HTTP/Test/Unit/PhpEnvironment/ResponseTest.php | 2 +- .../HTTP/Test/Unit/PhpEnvironment/ServerAddressTest.php | 2 +- lib/internal/Magento/Framework/HTTP/ZendClient.php | 2 +- lib/internal/Magento/Framework/Image.php | 2 +- .../Magento/Framework/Image/Adapter/AbstractAdapter.php | 2 +- .../Magento/Framework/Image/Adapter/AdapterInterface.php | 2 +- lib/internal/Magento/Framework/Image/Adapter/Config.php | 2 +- .../Magento/Framework/Image/Adapter/ConfigInterface.php | 2 +- lib/internal/Magento/Framework/Image/Adapter/Gd2.php | 2 +- .../Magento/Framework/Image/Adapter/ImageMagick.php | 2 +- lib/internal/Magento/Framework/Image/AdapterFactory.php | 2 +- lib/internal/Magento/Framework/Image/Factory.php | 2 +- .../Framework/Image/Test/Unit/Adapter/AbstractTest.php | 2 +- .../Magento/Framework/Image/Test/Unit/Adapter/Gd2Test.php | 2 +- .../Framework/Image/Test/Unit/Adapter/ImageMagickTest.php | 2 +- .../Image/Test/Unit/Adapter/_files/global_php_mock.php | 2 +- .../Framework/Image/Test/Unit/AdapterFactoryTest.php | 2 +- .../Magento/Framework/Indexer/AbstractProcessor.php | 2 +- lib/internal/Magento/Framework/Indexer/Action/Base.php | 2 +- lib/internal/Magento/Framework/Indexer/Action/Dummy.php | 2 +- lib/internal/Magento/Framework/Indexer/Action/Entity.php | 2 +- lib/internal/Magento/Framework/Indexer/ActionFactory.php | 2 +- lib/internal/Magento/Framework/Indexer/ActionInterface.php | 2 +- lib/internal/Magento/Framework/Indexer/CacheContext.php | 2 +- lib/internal/Magento/Framework/Indexer/Config/Converter.php | 2 +- lib/internal/Magento/Framework/Indexer/Config/Reader.php | 2 +- .../Magento/Framework/Indexer/Config/SchemaLocator.php | 2 +- lib/internal/Magento/Framework/Indexer/ConfigInterface.php | 2 +- .../Magento/Framework/Indexer/FieldsetInterface.php | 2 +- lib/internal/Magento/Framework/Indexer/FieldsetPool.php | 2 +- lib/internal/Magento/Framework/Indexer/FilterInterface.php | 2 +- lib/internal/Magento/Framework/Indexer/GridStructure.php | 2 +- .../Magento/Framework/Indexer/Handler/AttributeHandler.php | 2 +- .../Magento/Framework/Indexer/Handler/ConcatHandler.php | 2 +- .../Magento/Framework/Indexer/Handler/DefaultHandler.php | 2 +- lib/internal/Magento/Framework/Indexer/HandlerInterface.php | 2 +- lib/internal/Magento/Framework/Indexer/HandlerPool.php | 2 +- lib/internal/Magento/Framework/Indexer/IndexStructure.php | 2 +- .../Magento/Framework/Indexer/IndexStructureInterface.php | 2 +- lib/internal/Magento/Framework/Indexer/IndexerInterface.php | 2 +- lib/internal/Magento/Framework/Indexer/IndexerRegistry.php | 2 +- .../Magento/Framework/Indexer/SaveHandler/Batch.php | 2 +- lib/internal/Magento/Framework/Indexer/SaveHandler/Grid.php | 2 +- .../Framework/Indexer/SaveHandler/IndexerHandler.php | 2 +- .../Framework/Indexer/SaveHandler/IndexerInterface.php | 2 +- .../Magento/Framework/Indexer/SaveHandlerFactory.php | 2 +- .../Framework/Indexer/ScopeResolver/FlatScopeResolver.php | 2 +- .../Framework/Indexer/ScopeResolver/IndexScopeResolver.php | 2 +- lib/internal/Magento/Framework/Indexer/StateInterface.php | 2 +- lib/internal/Magento/Framework/Indexer/StructureFactory.php | 2 +- lib/internal/Magento/Framework/Indexer/Table/Strategy.php | 2 +- .../Magento/Framework/Indexer/Table/StrategyInterface.php | 2 +- .../Framework/Indexer/Test/Unit/ActionFactoryTest.php | 2 +- .../Magento/Framework/Indexer/Test/Unit/BatchTest.php | 2 +- .../Framework/Indexer/Test/Unit/Config/ConverterTest.php | 2 +- .../Framework/Indexer/Test/Unit/Config/ReaderTest.php | 2 +- .../Indexer/Test/Unit/Config/SchemaLocatorTest.php | 2 +- .../Framework/Indexer/Test/Unit/GridStructureTest.php | 2 +- .../Framework/Indexer/Test/Unit/IndexStructureTest.php | 2 +- .../Framework/Indexer/Test/Unit/IndexerRegistryTest.php | 2 +- .../Test/Unit/ScopeResolver/IndexScopeResolverTest.php | 2 +- .../Magento/Framework/Indexer/Test/Unit/StrategyTest.php | 2 +- .../Magento/Framework/Indexer/Test/Unit/XsdTest.php | 2 +- .../Framework/Indexer/Test/Unit/_files/indexer_config.php | 2 +- .../Indexer/Test/Unit/_files/indexer_merged_one.xml | 4 ++-- .../Indexer/Test/Unit/_files/indexer_merged_two.xml | 4 ++-- .../Framework/Indexer/Test/Unit/_files/indexer_one.xml | 4 ++-- .../Framework/Indexer/Test/Unit/_files/indexer_three.xml | 4 ++-- .../Framework/Indexer/Test/Unit/_files/indexer_two.xml | 4 ++-- .../Indexer/Test/Unit/_files/invalidIndexerXmlArray.php | 2 +- .../Framework/Indexer/Test/Unit/_files/valid_indexer.xml | 4 ++-- lib/internal/Magento/Framework/Indexer/etc/indexer.xsd | 2 +- .../Magento/Framework/Indexer/etc/indexer_merged.xsd | 2 +- .../Framework/Interception/Code/Generator/Interceptor.php | 2 +- .../Framework/Interception/Code/InterfaceValidator.php | 2 +- .../Magento/Framework/Interception/Config/Config.php | 2 +- .../Magento/Framework/Interception/ConfigInterface.php | 2 +- .../Magento/Framework/Interception/Definition/Runtime.php | 2 +- .../Magento/Framework/Interception/DefinitionInterface.php | 2 +- lib/internal/Magento/Framework/Interception/Interceptor.php | 2 +- .../Magento/Framework/Interception/InterceptorInterface.php | 2 +- .../Interception/ObjectManager/Config/Compiled.php | 2 +- .../Interception/ObjectManager/Config/Developer.php | 2 +- .../Interception/ObjectManager/ConfigInterface.php | 2 +- .../Framework/Interception/PluginList/PluginList.php | 2 +- .../Magento/Framework/Interception/PluginListInterface.php | 2 +- .../Test/Unit/Code/Generator/InterceptorTest.php | 2 +- .../Interception/Test/Unit/Code/InterfaceValidatorTest.php | 2 +- .../Framework/Interception/Test/Unit/Config/ConfigTest.php | 2 +- .../Unit/Custom/Module/Model/InterfaceValidator/Item.php | 2 +- .../Model/InterfaceValidator/ItemPlugin/ExtraParameters.php | 2 +- .../ItemPlugin/IncompatibleArgumentsCount.php | 2 +- .../ItemPlugin/IncompatibleArgumentsType.php | 2 +- .../InterfaceValidator/ItemPlugin/IncompatibleInterface.php | 2 +- .../InterfaceValidator/ItemPlugin/IncorrectSubject.php | 2 +- .../Model/InterfaceValidator/ItemPlugin/InvalidProceed.php | 2 +- .../Model/InterfaceValidator/ItemPlugin/ValidPlugin.php | 2 +- .../Module/Model/InterfaceValidator/ItemWithArguments.php | 2 +- .../Interception/Test/Unit/Custom/Module/Model/Item.php | 2 +- .../Test/Unit/Custom/Module/Model/Item/Enhanced.php | 2 +- .../Test/Unit/Custom/Module/Model/ItemContainer.php | 2 +- .../Unit/Custom/Module/Model/ItemContainer/Enhanced.php | 2 +- .../Unit/Custom/Module/Model/ItemContainerPlugin/Simple.php | 2 +- .../Test/Unit/Custom/Module/Model/ItemPlugin/Advanced.php | 2 +- .../Test/Unit/Custom/Module/Model/ItemPlugin/Simple.php | 2 +- .../Test/Unit/Custom/Module/Model/StartingBackslash.php | 2 +- .../Unit/Custom/Module/Model/StartingBackslash/Plugin.php | 2 +- .../Test/Unit/ObjectManager/Config/DeveloperTest.php | 2 +- .../Interception/Test/Unit/PluginList/PluginListTest.php | 2 +- .../Interception/Test/Unit/_files/reader_mock_map.php | 2 +- lib/internal/Magento/Framework/Intl/DateTimeFactory.php | 2 +- lib/internal/Magento/Framework/Json/Decoder.php | 2 +- lib/internal/Magento/Framework/Json/DecoderInterface.php | 2 +- lib/internal/Magento/Framework/Json/Encoder.php | 2 +- lib/internal/Magento/Framework/Json/EncoderInterface.php | 2 +- lib/internal/Magento/Framework/Json/Helper/Data.php | 2 +- .../Magento/Framework/Json/Test/Unit/Helper/DataTest.php | 2 +- .../Magento/Framework/Locale/Bundle/CurrencyBundle.php | 2 +- lib/internal/Magento/Framework/Locale/Bundle/DataBundle.php | 2 +- .../Magento/Framework/Locale/Bundle/LanguageBundle.php | 2 +- .../Magento/Framework/Locale/Bundle/RegionBundle.php | 2 +- .../Magento/Framework/Locale/Bundle/TimezoneBundle.php | 2 +- lib/internal/Magento/Framework/Locale/Config.php | 2 +- lib/internal/Magento/Framework/Locale/ConfigInterface.php | 2 +- lib/internal/Magento/Framework/Locale/Currency.php | 2 +- lib/internal/Magento/Framework/Locale/CurrencyInterface.php | 2 +- lib/internal/Magento/Framework/Locale/Format.php | 2 +- lib/internal/Magento/Framework/Locale/FormatInterface.php | 2 +- lib/internal/Magento/Framework/Locale/ListsInterface.php | 2 +- lib/internal/Magento/Framework/Locale/Resolver.php | 2 +- lib/internal/Magento/Framework/Locale/ResolverInterface.php | 2 +- .../Magento/Framework/Locale/Test/Unit/ConfigTest.php | 2 +- .../Magento/Framework/Locale/Test/Unit/CurrencyTest.php | 2 +- .../Framework/Locale/Test/Unit/TranslatedListsTest.php | 2 +- lib/internal/Magento/Framework/Locale/TranslatedLists.php | 2 +- lib/internal/Magento/Framework/Logger/Handler/Base.php | 2 +- lib/internal/Magento/Framework/Logger/Handler/Debug.php | 2 +- lib/internal/Magento/Framework/Logger/Handler/Exception.php | 2 +- lib/internal/Magento/Framework/Logger/Handler/System.php | 2 +- lib/internal/Magento/Framework/Logger/Monolog.php | 2 +- lib/internal/Magento/Framework/Mail/Message.php | 2 +- lib/internal/Magento/Framework/Mail/MessageInterface.php | 2 +- .../Magento/Framework/Mail/Template/ConfigInterface.php | 2 +- lib/internal/Magento/Framework/Mail/Template/Factory.php | 2 +- .../Magento/Framework/Mail/Template/FactoryInterface.php | 2 +- .../Framework/Mail/Template/SenderResolverInterface.php | 2 +- .../Magento/Framework/Mail/Template/TransportBuilder.php | 2 +- lib/internal/Magento/Framework/Mail/TemplateInterface.php | 2 +- .../Magento/Framework/Mail/Test/Unit/MessageTest.php | 2 +- .../Framework/Mail/Test/Unit/Template/FactoryTest.php | 2 +- .../Mail/Test/Unit/Template/TransportBuilderTest.php | 2 +- .../Magento/Framework/Mail/Test/Unit/TransportTest.php | 2 +- lib/internal/Magento/Framework/Mail/Transport.php | 2 +- lib/internal/Magento/Framework/Mail/TransportInterface.php | 2 +- .../Magento/Framework/Mail/TransportInterfaceFactory.php | 2 +- lib/internal/Magento/Framework/Math/Calculator.php | 2 +- lib/internal/Magento/Framework/Math/Division.php | 2 +- lib/internal/Magento/Framework/Math/Random.php | 2 +- .../Magento/Framework/Math/Test/Unit/CalculatorTest.php | 2 +- .../Magento/Framework/Math/Test/Unit/DivisionTest.php | 2 +- .../Magento/Framework/Math/Test/Unit/RandomTest.php | 2 +- lib/internal/Magento/Framework/Message/AbstractMessage.php | 2 +- lib/internal/Magento/Framework/Message/Collection.php | 2 +- .../Magento/Framework/Message/CollectionFactory.php | 2 +- lib/internal/Magento/Framework/Message/Error.php | 2 +- lib/internal/Magento/Framework/Message/Factory.php | 2 +- lib/internal/Magento/Framework/Message/Manager.php | 2 +- lib/internal/Magento/Framework/Message/ManagerInterface.php | 2 +- lib/internal/Magento/Framework/Message/MessageInterface.php | 2 +- lib/internal/Magento/Framework/Message/Notice.php | 2 +- lib/internal/Magento/Framework/Message/PhraseFactory.php | 2 +- lib/internal/Magento/Framework/Message/Session.php | 2 +- lib/internal/Magento/Framework/Message/Success.php | 2 +- .../Framework/Message/Test/Unit/AbstractMessageTest.php | 2 +- .../Magento/Framework/Message/Test/Unit/CollectionTest.php | 2 +- .../Magento/Framework/Message/Test/Unit/ErrorTest.php | 2 +- .../Magento/Framework/Message/Test/Unit/FactoryTest.php | 2 +- .../Magento/Framework/Message/Test/Unit/ManagerTest.php | 2 +- .../Magento/Framework/Message/Test/Unit/NoticeTest.php | 2 +- .../Magento/Framework/Message/Test/Unit/SuccessTest.php | 2 +- .../Magento/Framework/Message/Test/Unit/TestingMessage.php | 2 +- .../Magento/Framework/Message/Test/Unit/WarningTest.php | 2 +- lib/internal/Magento/Framework/Message/Warning.php | 2 +- .../Magento/Framework/Model/AbstractExtensibleModel.php | 2 +- lib/internal/Magento/Framework/Model/AbstractModel.php | 2 +- .../Framework/Model/ActionValidator/RemoveAction.php | 2 +- .../Model/ActionValidator/RemoveAction/Allowed.php | 2 +- lib/internal/Magento/Framework/Model/CallbackPool.php | 2 +- lib/internal/Magento/Framework/Model/Context.php | 2 +- .../Magento/Framework/Model/Entity/RepositoryFactory.php | 2 +- lib/internal/Magento/Framework/Model/Entity/Scope.php | 2 +- .../Magento/Framework/Model/Entity/ScopeFactory.php | 2 +- .../Magento/Framework/Model/Entity/ScopeInterface.php | 2 +- .../Framework/Model/Entity/ScopeProviderInterface.php | 2 +- .../Magento/Framework/Model/Entity/ScopeResolver.php | 2 +- lib/internal/Magento/Framework/Model/EntityRegistry.php | 2 +- lib/internal/Magento/Framework/Model/EntitySnapshot.php | 2 +- .../Framework/Model/EntitySnapshot/AttributeProvider.php | 2 +- .../Model/EntitySnapshot/AttributeProviderInterface.php | 2 +- .../Magento/Framework/Model/Operation/ReadInterface.php | 2 +- .../Magento/Framework/Model/Operation/WriteInterface.php | 2 +- .../Framework/Model/ResourceModel/AbstractResource.php | 2 +- .../Magento/Framework/Model/ResourceModel/Db/AbstractDb.php | 2 +- .../ResourceModel/Db/Collection/AbstractCollection.php | 2 +- .../Magento/Framework/Model/ResourceModel/Db/Context.php | 2 +- .../Framework/Model/ResourceModel/Db/CreateEntityRow.php | 2 +- .../Framework/Model/ResourceModel/Db/DeleteEntityRow.php | 2 +- .../Model/ResourceModel/Db/ObjectRelationProcessor.php | 2 +- .../ResourceModel/Db/ProcessEntityRelationInterface.php | 2 +- .../Magento/Framework/Model/ResourceModel/Db/Profiler.php | 2 +- .../Framework/Model/ResourceModel/Db/ReadEntityRow.php | 2 +- .../Model/ResourceModel/Db/Relation/ActionPool.php | 2 +- .../Framework/Model/ResourceModel/Db/TransactionManager.php | 2 +- .../Model/ResourceModel/Db/TransactionManagerInterface.php | 2 +- .../Framework/Model/ResourceModel/Db/UpdateEntityRow.php | 2 +- .../Model/ResourceModel/Db/ValidateDataIntegrity.php | 2 +- .../Model/ResourceModel/Db/VersionControl/AbstractDb.php | 2 +- .../Model/ResourceModel/Db/VersionControl/Collection.php | 2 +- .../Model/ResourceModel/Db/VersionControl/Metadata.php | 2 +- .../ResourceModel/Db/VersionControl/RelationComposite.php | 2 +- .../ResourceModel/Db/VersionControl/RelationInterface.php | 2 +- .../Model/ResourceModel/Db/VersionControl/Snapshot.php | 2 +- .../Framework/Model/ResourceModel/Entity/AbstractEntity.php | 2 +- .../Magento/Framework/Model/ResourceModel/Entity/Table.php | 2 +- .../Magento/Framework/Model/ResourceModel/Iterator.php | 2 +- .../Framework/Model/ResourceModel/Type/AbstractType.php | 2 +- .../Magento/Framework/Model/ResourceModel/Type/Db.php | 2 +- .../Model/ResourceModel/Type/Db/ConnectionFactory.php | 2 +- .../ResourceModel/Type/Db/ConnectionFactoryInterface.php | 2 +- .../Framework/Model/ResourceModel/Type/Db/Pdo/Mysql.php | 2 +- .../Model/Test/Unit/AbstractExtensibleModelTest.php | 2 +- .../Magento/Framework/Model/Test/Unit/AbstractModelTest.php | 2 +- .../Model/Test/Unit/ActionValidator/RemoveActionTest.php | 2 +- .../Test/Unit/EntitySnapshot/AttributeProviderTest.php | 2 +- .../Model/Test/Unit/ResourceModel/AbstractResourceStub.php | 2 +- .../Model/Test/Unit/ResourceModel/AbstractResourceTest.php | 2 +- .../Model/Test/Unit/ResourceModel/Db/AbstractDbTest.php | 2 +- .../ResourceModel/Db/Collection/AbstractCollectionTest.php | 2 +- .../Test/Unit/ResourceModel/Db/CreateEntityRowTest.php | 2 +- .../Test/Unit/ResourceModel/Db/DeleteEntityRowTest.php | 2 +- .../Model/Test/Unit/ResourceModel/Db/ReadEntityRowTest.php | 2 +- .../Test/Unit/ResourceModel/Db/Relation/ActionPoolTest.php | 2 +- .../Test/Unit/ResourceModel/Db/UpdateEntityRowTest.php | 2 +- .../Unit/ResourceModel/Db/VersionControl/MetadataTest.php | 2 +- .../Db/VersionControl/RelationCompositeTest.php | 2 +- .../Unit/ResourceModel/Db/VersionControl/SnapshotTest.php | 2 +- .../Unit/ResourceModel/Type/Db/ConnectionFactoryTest.php | 2 +- .../Model/Test/Unit/ResourceModel/Type/Db/Pdo/MysqlTest.php | 2 +- lib/internal/Magento/Framework/Module/ConflictChecker.php | 2 +- lib/internal/Magento/Framework/Module/DbVersionInfo.php | 2 +- .../Magento/Framework/Module/Declaration/Converter/Dom.php | 2 +- lib/internal/Magento/Framework/Module/DependencyChecker.php | 2 +- lib/internal/Magento/Framework/Module/Dir.php | 2 +- lib/internal/Magento/Framework/Module/Dir/Reader.php | 2 +- .../Magento/Framework/Module/Dir/ReverseResolver.php | 2 +- lib/internal/Magento/Framework/Module/FullModuleList.php | 2 +- lib/internal/Magento/Framework/Module/Manager.php | 2 +- lib/internal/Magento/Framework/Module/ModuleList.php | 2 +- lib/internal/Magento/Framework/Module/ModuleList/Loader.php | 2 +- .../Magento/Framework/Module/ModuleListInterface.php | 2 +- lib/internal/Magento/Framework/Module/ModuleResource.php | 2 +- lib/internal/Magento/Framework/Module/Output/Config.php | 2 +- .../Magento/Framework/Module/Output/ConfigInterface.php | 2 +- lib/internal/Magento/Framework/Module/PackageInfo.php | 2 +- .../Magento/Framework/Module/PackageInfoFactory.php | 2 +- .../Magento/Framework/Module/Plugin/DbStatusValidator.php | 2 +- lib/internal/Magento/Framework/Module/ResourceInterface.php | 2 +- lib/internal/Magento/Framework/Module/Setup.php | 2 +- lib/internal/Magento/Framework/Module/Setup/Context.php | 2 +- lib/internal/Magento/Framework/Module/Setup/Migration.php | 2 +- .../Magento/Framework/Module/Setup/MigrationData.php | 2 +- .../Magento/Framework/Module/Setup/MigrationFactory.php | 2 +- lib/internal/Magento/Framework/Module/Status.php | 2 +- .../Framework/Module/Test/Unit/ConflictCheckerTest.php | 2 +- .../Framework/Module/Test/Unit/DbVersionInfoTest.php | 2 +- .../Module/Test/Unit/Declaration/Converter/DomTest.php | 2 +- .../Declaration/Converter/_files/converted_valid_module.php | 2 +- .../Test/Unit/Declaration/Converter/_files/valid_module.xml | 2 +- .../Framework/Module/Test/Unit/DependencyCheckerTest.php | 2 +- .../Magento/Framework/Module/Test/Unit/Dir/ReaderTest.php | 2 +- .../Framework/Module/Test/Unit/Dir/ReverseResolverTest.php | 2 +- lib/internal/Magento/Framework/Module/Test/Unit/DirTest.php | 2 +- .../Framework/Module/Test/Unit/FullModuleListTest.php | 2 +- .../Magento/Framework/Module/Test/Unit/ManagerTest.php | 2 +- .../Framework/Module/Test/Unit/ModuleList/LoaderTest.php | 2 +- .../Magento/Framework/Module/Test/Unit/ModuleListTest.php | 2 +- .../Framework/Module/Test/Unit/PackageInfoFactoryTest.php | 2 +- .../Magento/Framework/Module/Test/Unit/PackageInfoTest.php | 2 +- .../Module/Test/Unit/Plugin/DbStatusValidatorTest.php | 2 +- .../Framework/Module/Test/Unit/Setup/MigrationTest.php | 2 +- .../Test/Unit/Setup/_files/data_content_plain_model.php | 2 +- .../Test/Unit/Setup/_files/data_content_plain_pk_fields.php | 2 +- .../Test/Unit/Setup/_files/data_content_plain_resource.php | 2 +- .../Test/Unit/Setup/_files/data_content_serialized.php | 2 +- .../Module/Test/Unit/Setup/_files/data_content_wiki.php | 2 +- .../Module/Test/Unit/Setup/_files/data_content_xml.php | 2 +- .../Magento/Framework/Module/Test/Unit/SetupTest.php | 2 +- .../Magento/Framework/Module/Test/Unit/StatusTest.php | 2 +- lib/internal/Magento/Framework/Module/etc/module.xsd | 2 +- lib/internal/Magento/Framework/Mview/ActionFactory.php | 2 +- lib/internal/Magento/Framework/Mview/ActionInterface.php | 2 +- lib/internal/Magento/Framework/Mview/Config.php | 2 +- lib/internal/Magento/Framework/Mview/Config/Converter.php | 2 +- lib/internal/Magento/Framework/Mview/Config/Data.php | 2 +- lib/internal/Magento/Framework/Mview/Config/Data/Proxy.php | 2 +- lib/internal/Magento/Framework/Mview/Config/Reader.php | 2 +- .../Magento/Framework/Mview/Config/SchemaLocator.php | 2 +- lib/internal/Magento/Framework/Mview/ConfigInterface.php | 2 +- lib/internal/Magento/Framework/Mview/Processor.php | 2 +- lib/internal/Magento/Framework/Mview/ProcessorInterface.php | 2 +- .../Magento/Framework/Mview/Test/Unit/ActionFactoryTest.php | 2 +- .../Framework/Mview/Test/Unit/Config/ConverterTest.php | 2 +- .../Framework/Mview/Test/Unit/Config/Data/ProxyTest.php | 2 +- .../Magento/Framework/Mview/Test/Unit/Config/DataTest.php | 2 +- .../Magento/Framework/Mview/Test/Unit/Config/ReaderTest.php | 2 +- .../Magento/Framework/Mview/Test/Unit/ConfigTest.php | 2 +- .../Magento/Framework/Mview/Test/Unit/ProcessorTest.php | 2 +- .../Framework/Mview/Test/Unit/View/ChangelogTest.php | 2 +- .../Framework/Mview/Test/Unit/View/CollectionTest.php | 2 +- .../Mview/Test/Unit/View/SubscriptionFactoryTest.php | 2 +- .../Framework/Mview/Test/Unit/View/SubscriptionTest.php | 2 +- lib/internal/Magento/Framework/Mview/Test/Unit/ViewTest.php | 2 +- lib/internal/Magento/Framework/Mview/Test/Unit/XsdTest.php | 2 +- .../Mview/Test/Unit/_files/invalidMviewXmlArray.php | 2 +- .../Framework/Mview/Test/Unit/_files/mview_config.php | 2 +- .../Framework/Mview/Test/Unit/_files/mview_merged_one.xml | 2 +- .../Framework/Mview/Test/Unit/_files/mview_merged_two.xml | 2 +- .../Magento/Framework/Mview/Test/Unit/_files/mview_one.xml | 2 +- .../Framework/Mview/Test/Unit/_files/mview_three.xml | 2 +- .../Magento/Framework/Mview/Test/Unit/_files/mview_two.xml | 2 +- .../Framework/Mview/Test/Unit/_files/valid_mview.xml | 2 +- lib/internal/Magento/Framework/Mview/View.php | 2 +- .../Magento/Framework/Mview/View/AbstractFactory.php | 2 +- lib/internal/Magento/Framework/Mview/View/Changelog.php | 2 +- .../Magento/Framework/Mview/View/ChangelogInterface.php | 2 +- .../Mview/View/ChangelogTableNotExistsException.php | 2 +- lib/internal/Magento/Framework/Mview/View/Collection.php | 2 +- .../Magento/Framework/Mview/View/CollectionFactory.php | 2 +- .../Magento/Framework/Mview/View/CollectionInterface.php | 2 +- .../Framework/Mview/View/State/CollectionFactory.php | 2 +- .../Framework/Mview/View/State/CollectionInterface.php | 2 +- .../Magento/Framework/Mview/View/StateInterface.php | 2 +- lib/internal/Magento/Framework/Mview/View/Subscription.php | 2 +- .../Magento/Framework/Mview/View/SubscriptionFactory.php | 2 +- .../Magento/Framework/Mview/View/SubscriptionInterface.php | 2 +- lib/internal/Magento/Framework/Mview/ViewInterface.php | 2 +- lib/internal/Magento/Framework/Mview/etc/mview.xsd | 2 +- .../Magento/Framework/Notification/MessageInterface.php | 2 +- lib/internal/Magento/Framework/Notification/MessageList.php | 2 +- .../Magento/Framework/Notification/NotifierInterface.php | 2 +- .../Magento/Framework/Notification/NotifierList.php | 2 +- .../Magento/Framework/Notification/NotifierPool.php | 2 +- .../Framework/Notification/Test/Unit/NotifierListTest.php | 2 +- .../Framework/Notification/Test/Unit/NotifierPoolTest.php | 2 +- lib/internal/Magento/Framework/Oauth/ConsumerInterface.php | 2 +- lib/internal/Magento/Framework/Oauth/Exception.php | 2 +- lib/internal/Magento/Framework/Oauth/Helper/Oauth.php | 2 +- lib/internal/Magento/Framework/Oauth/Helper/Request.php | 2 +- .../Magento/Framework/Oauth/NonceGeneratorInterface.php | 2 +- lib/internal/Magento/Framework/Oauth/Oauth.php | 2 +- .../Magento/Framework/Oauth/OauthInputException.php | 2 +- lib/internal/Magento/Framework/Oauth/OauthInterface.php | 2 +- .../Framework/Oauth/Test/Unit/Helper/RequestTest.php | 2 +- .../Framework/Oauth/Test/Unit/OauthInputExceptionTest.php | 2 +- .../Magento/Framework/Oauth/TokenProviderInterface.php | 2 +- .../Framework/ObjectManager/Code/Generator/Converter.php | 2 +- .../Framework/ObjectManager/Code/Generator/Factory.php | 2 +- .../Framework/ObjectManager/Code/Generator/Persistor.php | 2 +- .../Framework/ObjectManager/Code/Generator/Proxy.php | 2 +- .../Framework/ObjectManager/Code/Generator/Repository.php | 2 +- .../Magento/Framework/ObjectManager/Config/Compiled.php | 2 +- .../Magento/Framework/ObjectManager/Config/Config.php | 2 +- .../ObjectManager/Config/Mapper/ArgumentParser.php | 2 +- .../Magento/Framework/ObjectManager/Config/Mapper/Dom.php | 2 +- .../Magento/Framework/ObjectManager/Config/Reader/Dom.php | 2 +- .../Framework/ObjectManager/Config/Reader/DomFactory.php | 2 +- .../Framework/ObjectManager/Config/SchemaLocator.php | 2 +- .../Framework/ObjectManager/ConfigCacheInterface.php | 2 +- .../Magento/Framework/ObjectManager/ConfigInterface.php | 2 +- .../Framework/ObjectManager/ConfigLoaderInterface.php | 2 +- .../Magento/Framework/ObjectManager/ContextInterface.php | 2 +- .../Magento/Framework/ObjectManager/Definition/Runtime.php | 2 +- .../Magento/Framework/ObjectManager/DefinitionFactory.php | 2 +- .../Magento/Framework/ObjectManager/DefinitionInterface.php | 2 +- .../Framework/ObjectManager/DynamicConfigInterface.php | 2 +- .../Framework/ObjectManager/Factory/AbstractFactory.php | 2 +- .../Magento/Framework/ObjectManager/Factory/Compiled.php | 2 +- .../Framework/ObjectManager/Factory/Dynamic/Developer.php | 2 +- .../Framework/ObjectManager/Factory/Dynamic/Production.php | 2 +- .../Magento/Framework/ObjectManager/FactoryInterface.php | 2 +- .../Magento/Framework/ObjectManager/Helper/Composite.php | 2 +- .../Framework/ObjectManager/InterceptableValidator.php | 2 +- .../Framework/ObjectManager/NoninterceptableInterface.php | 2 +- .../Magento/Framework/ObjectManager/ObjectManager.php | 2 +- .../ObjectManager/Profiler/Code/Generator/Logger.php | 2 +- .../Framework/ObjectManager/Profiler/FactoryDecorator.php | 2 +- .../Magento/Framework/ObjectManager/Profiler/Log.php | 2 +- .../Magento/Framework/ObjectManager/Profiler/Tree/Item.php | 2 +- .../Magento/Framework/ObjectManager/Relations/Runtime.php | 2 +- .../Magento/Framework/ObjectManager/RelationsInterface.php | 2 +- lib/internal/Magento/Framework/ObjectManager/TMap.php | 2 +- .../Magento/Framework/ObjectManager/TMapFactory.php | 2 +- .../Test/Unit/Code/Generator/ConverterTest.php | 2 +- .../ObjectManager/Test/Unit/Code/Generator/FactoryTest.php | 2 +- .../Test/Unit/Code/Generator/GenerateRepositoryTest.php | 2 +- .../ObjectManager/Test/Unit/Code/Generator/ProxyTest.php | 2 +- .../Test/Unit/Code/Generator/RepositoryTest.php | 2 +- .../Test/Unit/Code/Generator/_files/Sample.php | 2 +- .../ObjectManager/Test/Unit/Config/CompiledTest.php | 2 +- .../Framework/ObjectManager/Test/Unit/Config/ConfigTest.php | 2 +- .../Test/Unit/Config/Mapper/ArgumentParserTest.php | 2 +- .../ObjectManager/Test/Unit/Config/Mapper/DomTest.php | 2 +- .../Test/Unit/Config/Mapper/_files/argument_parser.xml | 2 +- .../Unit/Config/Mapper/_files/mapped_simple_di_config.php | 2 +- .../Test/Unit/Config/Mapper/_files/simple_di_config.xml | 2 +- .../Test/Unit/Config/Reader/DomFactoryTest.php | 2 +- .../ObjectManager/Test/Unit/Config/Reader/DomTest.php | 2 +- .../Test/Unit/Config/Reader/_files/ConfigDomMock.php | 2 +- .../ObjectManager/Test/Unit/Config/SchemaLocatorTest.php | 2 +- .../Framework/ObjectManager/Test/Unit/Config/XsdTest.php | 2 +- .../Test/Unit/Config/_files/invalidConfigXmlArray.php | 2 +- .../ObjectManager/Test/Unit/Config/_files/valid_config.xml | 2 +- .../ObjectManager/Test/Unit/DefinitionFactoryTest.php | 2 +- .../ObjectManager/Test/Unit/Factory/CompiledTest.php | 2 +- .../ObjectManager/Test/Unit/Factory/FactoryTest.php | 2 +- .../ObjectManager/Test/Unit/Factory/Fixture/CircularOne.php | 2 +- .../Test/Unit/Factory/Fixture/CircularThree.php | 2 +- .../ObjectManager/Test/Unit/Factory/Fixture/CircularTwo.php | 2 +- .../Factory/Fixture/Compiled/DependencySharedTesting.php | 2 +- .../Unit/Factory/Fixture/Compiled/DependencyTesting.php | 2 +- .../Unit/Factory/Fixture/Compiled/SimpleClassTesting.php | 2 +- .../ObjectManager/Test/Unit/Factory/Fixture/OneScalar.php | 2 +- .../Test/Unit/Factory/Fixture/Polymorphous.php | 2 +- .../ObjectManager/Test/Unit/Factory/Fixture/Two.php | 2 +- .../ObjectManager/Test/Unit/Helper/CompositeTest.php | 2 +- .../ObjectManager/Test/Unit/InterceptableValidatorTest.php | 2 +- .../Framework/ObjectManager/Test/Unit/ObjectManagerTest.php | 2 +- .../Test/Unit/Profiler/FactoryDecoratorTest.php | 2 +- .../ObjectManager/Test/Unit/Relations/RuntimeTest.php | 2 +- .../Magento/Framework/ObjectManager/Test/Unit/TMapTest.php | 2 +- .../Test/Unit/_files/Aggregate/AggregateInterface.php | 2 +- .../Test/Unit/_files/Aggregate/AggregateParent.php | 2 +- .../ObjectManager/Test/Unit/_files/Aggregate/Child.php | 2 +- .../Test/Unit/_files/Aggregate/WithOptional.php | 2 +- .../Framework/ObjectManager/Test/Unit/_files/Child.php | 2 +- .../Framework/ObjectManager/Test/Unit/_files/Child/A.php | 2 +- .../ObjectManager/Test/Unit/_files/Child/Circular.php | 2 +- .../ObjectManager/Test/Unit/_files/Child/Interceptor.php | 2 +- .../ObjectManager/Test/Unit/_files/Child/Interceptor/A.php | 2 +- .../ObjectManager/Test/Unit/_files/Child/Interceptor/B.php | 2 +- .../ObjectManager/Test/Unit/_files/ChildInterface.php | 2 +- .../ObjectManager/Test/Unit/_files/DiInterface.php | 2 +- .../Framework/ObjectManager/Test/Unit/_files/DiParent.php | 2 +- .../Framework/ObjectManager/Test/Unit/_files/Proxy.php | 2 +- .../ObjectManager/Test/Unit/_files/TMap/TClass.php | 2 +- .../ObjectManager/Test/Unit/_files/TMap/TInterface.php | 2 +- .../ObjectManager/Test/Unit/_files/logger_classes.php | 2 +- lib/internal/Magento/Framework/ObjectManager/etc/config.xsd | 2 +- lib/internal/Magento/Framework/ObjectManagerInterface.php | 2 +- lib/internal/Magento/Framework/Option/ArrayInterface.php | 2 +- lib/internal/Magento/Framework/Option/ArrayPool.php | 2 +- lib/internal/Magento/Framework/OsInfo.php | 2 +- lib/internal/Magento/Framework/Parse/Zip.php | 2 +- lib/internal/Magento/Framework/Phrase.php | 2 +- .../Magento/Framework/Phrase/Renderer/Composite.php | 2 +- lib/internal/Magento/Framework/Phrase/Renderer/Inline.php | 2 +- .../Magento/Framework/Phrase/Renderer/Placeholder.php | 2 +- .../Magento/Framework/Phrase/Renderer/Translate.php | 2 +- lib/internal/Magento/Framework/Phrase/RendererInterface.php | 2 +- .../Framework/Phrase/Test/Unit/Renderer/CompositeTest.php | 2 +- .../Framework/Phrase/Test/Unit/Renderer/InlineTest.php | 2 +- .../Framework/Phrase/Test/Unit/Renderer/PlaceholderTest.php | 2 +- .../Framework/Phrase/Test/Unit/Renderer/TranslateTest.php | 2 +- .../Framework/Pricing/Adjustment/AdjustmentInterface.php | 2 +- .../Magento/Framework/Pricing/Adjustment/Calculator.php | 2 +- .../Framework/Pricing/Adjustment/CalculatorInterface.php | 2 +- .../Magento/Framework/Pricing/Adjustment/Collection.php | 2 +- .../Magento/Framework/Pricing/Adjustment/Factory.php | 2 +- lib/internal/Magento/Framework/Pricing/Adjustment/Pool.php | 2 +- .../Magento/Framework/Pricing/Amount/AmountFactory.php | 2 +- .../Magento/Framework/Pricing/Amount/AmountInterface.php | 2 +- lib/internal/Magento/Framework/Pricing/Amount/Base.php | 2 +- lib/internal/Magento/Framework/Pricing/Helper/Data.php | 2 +- .../Magento/Framework/Pricing/Price/AbstractPrice.php | 2 +- .../Framework/Pricing/Price/BasePriceProviderInterface.php | 2 +- lib/internal/Magento/Framework/Pricing/Price/Collection.php | 2 +- lib/internal/Magento/Framework/Pricing/Price/Factory.php | 2 +- lib/internal/Magento/Framework/Pricing/Price/Pool.php | 2 +- .../Magento/Framework/Pricing/Price/PriceInterface.php | 2 +- lib/internal/Magento/Framework/Pricing/PriceComposite.php | 2 +- .../Magento/Framework/Pricing/PriceCurrencyInterface.php | 2 +- lib/internal/Magento/Framework/Pricing/PriceInfo/Base.php | 2 +- .../Magento/Framework/Pricing/PriceInfo/Factory.php | 2 +- .../Magento/Framework/Pricing/PriceInfoInterface.php | 2 +- lib/internal/Magento/Framework/Pricing/Render.php | 2 +- .../Magento/Framework/Pricing/Render/AbstractAdjustment.php | 2 +- .../Framework/Pricing/Render/AdjustmentRenderInterface.php | 2 +- lib/internal/Magento/Framework/Pricing/Render/Amount.php | 2 +- .../Framework/Pricing/Render/AmountRenderInterface.php | 2 +- lib/internal/Magento/Framework/Pricing/Render/Layout.php | 2 +- lib/internal/Magento/Framework/Pricing/Render/PriceBox.php | 2 +- .../Framework/Pricing/Render/PriceBoxRenderInterface.php | 2 +- .../Magento/Framework/Pricing/Render/RendererPool.php | 2 +- .../Magento/Framework/Pricing/SaleableInterface.php | 2 +- .../Pricing/Test/Unit/Adjustment/CalculatorTest.php | 2 +- .../Pricing/Test/Unit/Adjustment/CollectionTest.php | 2 +- .../Framework/Pricing/Test/Unit/Adjustment/FactoryTest.php | 2 +- .../Framework/Pricing/Test/Unit/Adjustment/PoolTest.php | 2 +- .../Pricing/Test/Unit/Amount/AmountFactoryTest.php | 2 +- .../Magento/Framework/Pricing/Test/Unit/Amount/BaseTest.php | 2 +- .../Magento/Framework/Pricing/Test/Unit/Helper/DataTest.php | 2 +- .../Framework/Pricing/Test/Unit/Price/AbstractPriceTest.php | 2 +- .../Framework/Pricing/Test/Unit/Price/CollectionTest.php | 2 +- .../Framework/Pricing/Test/Unit/Price/FactoryTest.php | 2 +- .../Magento/Framework/Pricing/Test/Unit/Price/PoolTest.php | 2 +- .../Magento/Framework/Pricing/Test/Unit/Price/Stub.php | 2 +- .../Framework/Pricing/Test/Unit/PriceInfo/BaseTest.php | 2 +- .../Framework/Pricing/Test/Unit/PriceInfo/FactoryTest.php | 2 +- .../Pricing/Test/Unit/Render/AbstractAdjustmentTest.php | 2 +- .../Framework/Pricing/Test/Unit/Render/AmountTest.php | 2 +- .../Framework/Pricing/Test/Unit/Render/LayoutTest.php | 2 +- .../Framework/Pricing/Test/Unit/Render/PriceBoxTest.php | 2 +- .../Framework/Pricing/Test/Unit/Render/RendererPoolTest.php | 2 +- .../Magento/Framework/Pricing/Test/Unit/RenderTest.php | 2 +- .../Framework/Process/PhpExecutableFinderFactory.php | 2 +- lib/internal/Magento/Framework/Profiler.php | 2 +- lib/internal/Magento/Framework/Profiler/Driver/Factory.php | 2 +- lib/internal/Magento/Framework/Profiler/Driver/Standard.php | 2 +- .../Framework/Profiler/Driver/Standard/AbstractOutput.php | 2 +- .../Framework/Profiler/Driver/Standard/Output/Csvfile.php | 2 +- .../Framework/Profiler/Driver/Standard/Output/Factory.php | 2 +- .../Framework/Profiler/Driver/Standard/Output/Firebug.php | 2 +- .../Framework/Profiler/Driver/Standard/Output/Html.php | 2 +- .../Framework/Profiler/Driver/Standard/OutputInterface.php | 2 +- .../Magento/Framework/Profiler/Driver/Standard/Stat.php | 2 +- lib/internal/Magento/Framework/Profiler/DriverInterface.php | 2 +- .../Framework/Profiler/Test/Unit/Driver/FactoryTest.php | 2 +- .../Test/Unit/Driver/Standard/Output/CsvfileTest.php | 2 +- .../Test/Unit/Driver/Standard/Output/FactoryTest.php | 2 +- .../Test/Unit/Driver/Standard/Output/FirebugTest.php | 2 +- .../Test/Unit/Driver/Standard/OutputAbstractTest.php | 2 +- .../Profiler/Test/Unit/Driver/Standard/StatTest.php | 2 +- .../Framework/Profiler/Test/Unit/Driver/StandardTest.php | 2 +- .../Magento/Framework/Reflection/AttributeTypeResolver.php | 2 +- .../Framework/Reflection/CustomAttributesProcessor.php | 2 +- .../Magento/Framework/Reflection/DataObjectProcessor.php | 2 +- .../Framework/Reflection/ExtensionAttributesProcessor.php | 2 +- lib/internal/Magento/Framework/Reflection/FieldNamer.php | 2 +- lib/internal/Magento/Framework/Reflection/MethodsMap.php | 2 +- lib/internal/Magento/Framework/Reflection/NameFinder.php | 2 +- .../Reflection/Test/Unit/AttributeTypeResolverTest.php | 2 +- .../Magento/Framework/Reflection/Test/Unit/DataObject.php | 2 +- .../Reflection/Test/Unit/ExtensionAttributesObject.php | 2 +- .../Test/Unit/ExtensionAttributesProcessorTest.php | 2 +- .../Framework/Reflection/Test/Unit/FieldNamerTest.php | 2 +- .../Framework/Reflection/Test/Unit/MethodsMapTest.php | 2 +- .../Framework/Reflection/Test/Unit/NameFinderTest.php | 2 +- .../Framework/Reflection/Test/Unit/TypeCasterTest.php | 2 +- .../Framework/Reflection/Test/Unit/TypeProcessorTest.php | 2 +- lib/internal/Magento/Framework/Reflection/TypeCaster.php | 2 +- lib/internal/Magento/Framework/Reflection/TypeProcessor.php | 2 +- lib/internal/Magento/Framework/Registry.php | 2 +- lib/internal/Magento/Framework/RequireJs/Config.php | 2 +- .../RequireJs/Config/File/Collector/Aggregated.php | 2 +- .../Magento/Framework/RequireJs/Test/Unit/ConfigTest.php | 2 +- .../Magento/Framework/Search/AbstractKeyValuePair.php | 2 +- .../Search/Adapter/Aggregation/AggregationResolver.php | 2 +- .../Adapter/Aggregation/AggregationResolverInterface.php | 2 +- .../Magento/Framework/Search/Adapter/Mysql/Adapter.php | 2 +- .../Framework/Search/Adapter/Mysql/Aggregation/Builder.php | 2 +- .../Adapter/Mysql/Aggregation/Builder/BucketInterface.php | 2 +- .../Search/Adapter/Mysql/Aggregation/Builder/Container.php | 2 +- .../Search/Adapter/Mysql/Aggregation/Builder/Dynamic.php | 2 +- .../Search/Adapter/Mysql/Aggregation/Builder/Metrics.php | 2 +- .../Search/Adapter/Mysql/Aggregation/Builder/Range.php | 2 +- .../Search/Adapter/Mysql/Aggregation/Builder/Term.php | 2 +- .../Adapter/Mysql/Aggregation/DataProviderContainer.php | 2 +- .../Adapter/Mysql/Aggregation/DataProviderInterface.php | 2 +- .../Framework/Search/Adapter/Mysql/Aggregation/Interval.php | 2 +- .../Framework/Search/Adapter/Mysql/AggregationFactory.php | 2 +- .../Framework/Search/Adapter/Mysql/ConditionManager.php | 2 +- .../Framework/Search/Adapter/Mysql/DocumentFactory.php | 2 +- .../Magento/Framework/Search/Adapter/Mysql/Field/Field.php | 2 +- .../Framework/Search/Adapter/Mysql/Field/FieldFactory.php | 2 +- .../Framework/Search/Adapter/Mysql/Field/FieldInterface.php | 2 +- .../Framework/Search/Adapter/Mysql/Field/Resolver.php | 2 +- .../Search/Adapter/Mysql/Field/ResolverInterface.php | 2 +- .../Framework/Search/Adapter/Mysql/Filter/Builder.php | 2 +- .../Search/Adapter/Mysql/Filter/Builder/FilterInterface.php | 2 +- .../Framework/Search/Adapter/Mysql/Filter/Builder/Range.php | 2 +- .../Framework/Search/Adapter/Mysql/Filter/Builder/Term.php | 2 +- .../Search/Adapter/Mysql/Filter/Builder/Wildcard.php | 2 +- .../Search/Adapter/Mysql/Filter/BuilderInterface.php | 2 +- .../Framework/Search/Adapter/Mysql/Filter/Preprocessor.php | 2 +- .../Search/Adapter/Mysql/Filter/PreprocessorInterface.php | 2 +- .../Search/Adapter/Mysql/IndexBuilderInterface.php | 2 +- .../Magento/Framework/Search/Adapter/Mysql/Mapper.php | 2 +- .../Framework/Search/Adapter/Mysql/Query/Builder/Match.php | 2 +- .../Search/Adapter/Mysql/Query/Builder/QueryInterface.php | 2 +- .../Framework/Search/Adapter/Mysql/Query/MatchContainer.php | 2 +- .../Search/Adapter/Mysql/Query/MatchContainerFactory.php | 2 +- .../Framework/Search/Adapter/Mysql/Query/QueryContainer.php | 2 +- .../Search/Adapter/Mysql/Query/QueryContainerFactory.php | 2 +- .../Framework/Search/Adapter/Mysql/ResponseFactory.php | 2 +- .../Magento/Framework/Search/Adapter/Mysql/ScoreBuilder.php | 2 +- .../Framework/Search/Adapter/Mysql/ScoreBuilderFactory.php | 2 +- .../Framework/Search/Adapter/Mysql/TemporaryStorage.php | 2 +- .../Search/Adapter/Mysql/TemporaryStorageFactory.php | 2 +- .../Magento/Framework/Search/Adapter/OptionsInterface.php | 2 +- .../Search/Adapter/Preprocessor/PreprocessorInterface.php | 2 +- lib/internal/Magento/Framework/Search/AdapterInterface.php | 2 +- lib/internal/Magento/Framework/Search/Dynamic/Algorithm.php | 2 +- .../Search/Dynamic/Algorithm/AlgorithmInterface.php | 2 +- .../Magento/Framework/Search/Dynamic/Algorithm/Auto.php | 2 +- .../Magento/Framework/Search/Dynamic/Algorithm/Improved.php | 2 +- .../Magento/Framework/Search/Dynamic/Algorithm/Manual.php | 2 +- .../Framework/Search/Dynamic/Algorithm/Repository.php | 2 +- .../Framework/Search/Dynamic/DataProviderFactory.php | 2 +- .../Framework/Search/Dynamic/DataProviderInterface.php | 2 +- .../Magento/Framework/Search/Dynamic/EntityStorage.php | 2 +- .../Framework/Search/Dynamic/EntityStorageFactory.php | 2 +- .../Magento/Framework/Search/Dynamic/IntervalFactory.php | 2 +- .../Magento/Framework/Search/Dynamic/IntervalInterface.php | 2 +- lib/internal/Magento/Framework/Search/EntityMetadata.php | 2 +- lib/internal/Magento/Framework/Search/Request.php | 2 +- .../Framework/Search/Request/Aggregation/DynamicBucket.php | 2 +- .../Magento/Framework/Search/Request/Aggregation/Metric.php | 2 +- .../Magento/Framework/Search/Request/Aggregation/Range.php | 2 +- .../Framework/Search/Request/Aggregation/RangeBucket.php | 2 +- .../Magento/Framework/Search/Request/Aggregation/Status.php | 2 +- .../Search/Request/Aggregation/StatusInterface.php | 2 +- .../Framework/Search/Request/Aggregation/TermBucket.php | 2 +- lib/internal/Magento/Framework/Search/Request/Binder.php | 2 +- .../Magento/Framework/Search/Request/BucketInterface.php | 2 +- lib/internal/Magento/Framework/Search/Request/Builder.php | 2 +- lib/internal/Magento/Framework/Search/Request/Cleaner.php | 2 +- lib/internal/Magento/Framework/Search/Request/Config.php | 2 +- .../Magento/Framework/Search/Request/Config/Converter.php | 2 +- .../Framework/Search/Request/Config/FilesystemReader.php | 2 +- .../Framework/Search/Request/Config/SchemaLocator.php | 2 +- lib/internal/Magento/Framework/Search/Request/Dimension.php | 2 +- .../Framework/Search/Request/EmptyRequestDataException.php | 2 +- .../Framework/Search/Request/Filter/BoolExpression.php | 2 +- .../Magento/Framework/Search/Request/Filter/Range.php | 2 +- .../Magento/Framework/Search/Request/Filter/Term.php | 2 +- .../Magento/Framework/Search/Request/Filter/Wildcard.php | 2 +- .../Magento/Framework/Search/Request/FilterInterface.php | 2 +- .../Search/Request/IndexScopeResolverInterface.php | 2 +- lib/internal/Magento/Framework/Search/Request/Mapper.php | 2 +- .../Search/Request/NonExistingRequestNameException.php | 2 +- .../Framework/Search/Request/Query/BoolExpression.php | 2 +- .../Magento/Framework/Search/Request/Query/Filter.php | 2 +- .../Magento/Framework/Search/Request/Query/Match.php | 2 +- .../Magento/Framework/Search/Request/QueryInterface.php | 2 +- lib/internal/Magento/Framework/Search/RequestInterface.php | 2 +- .../Magento/Framework/Search/Response/Aggregation.php | 2 +- .../Magento/Framework/Search/Response/Aggregation/Value.php | 2 +- lib/internal/Magento/Framework/Search/Response/Bucket.php | 2 +- .../Magento/Framework/Search/Response/QueryResponse.php | 2 +- lib/internal/Magento/Framework/Search/ResponseInterface.php | 2 +- lib/internal/Magento/Framework/Search/Search.php | 2 +- .../Framework/Search/SearchEngine/Config/Converter.php | 2 +- .../Magento/Framework/Search/SearchEngine/Config/Reader.php | 2 +- .../Framework/Search/SearchEngine/Config/SchemaLocator.php | 2 +- .../Framework/Search/SearchEngine/ConfigInterface.php | 2 +- .../Magento/Framework/Search/SearchEngineInterface.php | 2 +- .../Magento/Framework/Search/SearchResponseBuilder.php | 2 +- .../Unit/Adapter/Aggregation/AggregationResolverTest.php | 2 +- .../Search/Test/Unit/Adapter/Mysql/AdapterTest.php | 2 +- .../Adapter/Mysql/Aggregation/Builder/ContainerTest.php | 2 +- .../Unit/Adapter/Mysql/Aggregation/Builder/MetricsTest.php | 2 +- .../Unit/Adapter/Mysql/Aggregation/Builder/RangeTest.php | 2 +- .../Unit/Adapter/Mysql/Aggregation/Builder/TermTest.php | 2 +- .../Test/Unit/Adapter/Mysql/Aggregation/BuilderTest.php | 2 +- .../Adapter/Mysql/Aggregation/DataProviderContainerTest.php | 2 +- .../Search/Test/Unit/Adapter/Mysql/ConditionManagerTest.php | 2 +- .../Test/Unit/Adapter/Mysql/Filter/Builder/RangeTest.php | 2 +- .../Test/Unit/Adapter/Mysql/Filter/Builder/TermTest.php | 2 +- .../Test/Unit/Adapter/Mysql/Filter/Builder/WildcardTest.php | 2 +- .../Search/Test/Unit/Adapter/Mysql/Filter/BuilderTest.php | 2 +- .../Framework/Search/Test/Unit/Adapter/Mysql/MapperTest.php | 2 +- .../Test/Unit/Adapter/Mysql/Query/Builder/MatchTest.php | 2 +- .../Test/Unit/Adapter/Mysql/Query/QueryContainerTest.php | 2 +- .../Search/Test/Unit/Adapter/Mysql/ResponseFactoryTest.php | 2 +- .../Search/Test/Unit/Adapter/Mysql/ScoreBuilderTest.php | 2 +- .../Search/Test/Unit/Adapter/Mysql/TemporaryStorageTest.php | 2 +- .../Search/Test/Unit/Dynamic/IntervalFactoryTest.php | 2 +- .../Search/Test/Unit/Request/Aggregation/StatusTest.php | 2 +- .../Framework/Search/Test/Unit/Request/BinderTest.php | 2 +- .../Framework/Search/Test/Unit/Request/BuilderTest.php | 2 +- .../Framework/Search/Test/Unit/Request/CleanerTest.php | 2 +- .../Search/Test/Unit/Request/Config/SchemaLocatorTest.php | 2 +- .../Framework/Search/Test/Unit/Request/MapperTest.php | 2 +- .../Framework/Search/Test/Unit/Response/AggregationTest.php | 2 +- .../Search/Test/Unit/Response/QueryResponseTest.php | 2 +- .../Search/Test/Unit/SearchEngine/Config/ConverterTest.php | 2 +- .../Test/Unit/SearchEngine/Config/SchemaLocatorTest.php | 2 +- .../Search/Test/Unit/SearchResponseBuilderTest.php | 2 +- .../Magento/Framework/Search/Test/Unit/SearchTest.php | 2 +- .../Framework/Search/Test/Unit/_files/search_engine.xml | 2 +- lib/internal/Magento/Framework/Search/etc/requests.xsd | 2 +- lib/internal/Magento/Framework/Search/etc/search_engine.xsd | 2 +- .../Magento/Framework/Search/etc/search_request.xsd | 4 ++-- .../Magento/Framework/Search/etc/search_request_merged.xsd | 4 ++-- .../Magento/Framework/Serialize/Serializer/Json.php | 2 +- .../Magento/Framework/Serialize/Serializer/Serialize.php | 2 +- .../Magento/Framework/Serialize/SerializerInterface.php | 2 +- .../Framework/Serialize/Test/Unit/Serializer/JsonTest.php | 2 +- .../Serialize/Test/Unit/Serializer/SerializeTest.php | 2 +- lib/internal/Magento/Framework/Session/Config.php | 2 +- .../Magento/Framework/Session/Config/ConfigInterface.php | 2 +- .../Session/Config/Validator/CookieDomainValidator.php | 2 +- .../Session/Config/Validator/CookieLifetimeValidator.php | 2 +- .../Session/Config/Validator/CookiePathValidator.php | 2 +- lib/internal/Magento/Framework/Session/Generic.php | 2 +- lib/internal/Magento/Framework/Session/SaveHandler.php | 2 +- .../Magento/Framework/Session/SaveHandler/DbTable.php | 2 +- .../Magento/Framework/Session/SaveHandler/Native.php | 2 +- .../Magento/Framework/Session/SaveHandler/Redis.php | 2 +- .../Magento/Framework/Session/SaveHandler/Redis/Config.php | 2 +- .../Magento/Framework/Session/SaveHandler/Redis/Logger.php | 2 +- .../Magento/Framework/Session/SaveHandlerFactory.php | 2 +- .../Magento/Framework/Session/SaveHandlerInterface.php | 2 +- lib/internal/Magento/Framework/Session/SessionManager.php | 2 +- .../Magento/Framework/Session/SessionManagerInterface.php | 2 +- lib/internal/Magento/Framework/Session/SidResolver.php | 2 +- .../Magento/Framework/Session/SidResolverInterface.php | 2 +- lib/internal/Magento/Framework/Session/Storage.php | 2 +- lib/internal/Magento/Framework/Session/StorageInterface.php | 2 +- .../Magento/Framework/Session/Test/Unit/ConfigTest.php | 2 +- .../Framework/Session/Test/Unit/SaveHandler/DbTableTest.php | 2 +- .../Session/Test/Unit/SaveHandler/Redis/ConfigTest.php | 2 +- .../Session/Test/Unit/SaveHandler/Redis/LoggerTest.php | 2 +- .../Framework/Session/Test/Unit/SaveHandlerFactoryTest.php | 2 +- .../Framework/Session/Test/Unit/SessionManagerTest.php | 2 +- .../Framework/Session/Test/Unit/_files/mock_ini_set.php | 2 +- .../Session/Test/Unit/_files/mock_session_regenerate_id.php | 4 ++-- lib/internal/Magento/Framework/Session/Validator.php | 2 +- .../Magento/Framework/Session/ValidatorInterface.php | 2 +- .../Magento/Framework/Setup/BackendFrontnameGenerator.php | 2 +- lib/internal/Magento/Framework/Setup/BackupRollback.php | 2 +- .../Magento/Framework/Setup/BackupRollbackFactory.php | 2 +- .../Magento/Framework/Setup/ConfigOptionsListInterface.php | 2 +- lib/internal/Magento/Framework/Setup/ConsoleLogger.php | 2 +- lib/internal/Magento/Framework/Setup/DataCacheInterface.php | 2 +- lib/internal/Magento/Framework/Setup/ExternalFKSetup.php | 2 +- lib/internal/Magento/Framework/Setup/FilePermissions.php | 2 +- .../Magento/Framework/Setup/InstallDataInterface.php | 2 +- .../Magento/Framework/Setup/InstallSchemaInterface.php | 2 +- lib/internal/Magento/Framework/Setup/Lists.php | 2 +- lib/internal/Magento/Framework/Setup/LoggerInterface.php | 2 +- .../Magento/Framework/Setup/ModuleContextInterface.php | 2 +- .../Magento/Framework/Setup/ModuleDataSetupInterface.php | 2 +- .../Magento/Framework/Setup/Option/AbstractConfigOption.php | 2 +- .../Magento/Framework/Setup/Option/FlagConfigOption.php | 2 +- .../Framework/Setup/Option/MultiSelectConfigOption.php | 2 +- .../Magento/Framework/Setup/Option/SelectConfigOption.php | 2 +- .../Magento/Framework/Setup/Option/TextConfigOption.php | 2 +- lib/internal/Magento/Framework/Setup/SampleData/Context.php | 2 +- .../Magento/Framework/Setup/SampleData/Executor.php | 2 +- .../Magento/Framework/Setup/SampleData/FixtureManager.php | 2 +- .../Framework/Setup/SampleData/InstallerInterface.php | 2 +- lib/internal/Magento/Framework/Setup/SampleData/State.php | 2 +- .../Magento/Framework/Setup/SampleData/StateInterface.php | 2 +- .../Magento/Framework/Setup/SchemaSetupInterface.php | 2 +- lib/internal/Magento/Framework/Setup/SetupInterface.php | 2 +- .../Setup/Test/Unit/BackendFrontnameGeneratorTest.php | 2 +- .../Framework/Setup/Test/Unit/BackupRollbackFactoryTest.php | 2 +- .../Framework/Setup/Test/Unit/BackupRollbackTest.php | 2 +- .../Magento/Framework/Setup/Test/Unit/ConsoleLoggerTest.php | 2 +- .../Framework/Setup/Test/Unit/FilePermissionsTest.php | 2 +- .../Magento/Framework/Setup/Test/Unit/ListsTest.php | 2 +- .../Setup/Test/Unit/Option/FlagConfigOptionTest.php | 2 +- .../Setup/Test/Unit/Option/MultiSelectConfigOptionTest.php | 2 +- .../Setup/Test/Unit/Option/SelectConfigOptionTest.php | 2 +- .../Setup/Test/Unit/Option/TextConfigOptionTest.php | 2 +- .../Framework/Setup/Test/Unit/SampleData/StateTest.php | 2 +- lib/internal/Magento/Framework/Setup/UninstallInterface.php | 2 +- .../Magento/Framework/Setup/UpgradeDataInterface.php | 2 +- .../Magento/Framework/Setup/UpgradeSchemaInterface.php | 2 +- lib/internal/Magento/Framework/Shell.php | 2 +- lib/internal/Magento/Framework/Shell/CommandRenderer.php | 2 +- .../Magento/Framework/Shell/CommandRendererBackground.php | 2 +- .../Magento/Framework/Shell/CommandRendererInterface.php | 2 +- lib/internal/Magento/Framework/Shell/ComplexParameter.php | 2 +- lib/internal/Magento/Framework/Shell/Driver.php | 2 +- lib/internal/Magento/Framework/Shell/Response.php | 2 +- .../Shell/Test/Unit/CommandRendererBackgroundTest.php | 2 +- .../Framework/Shell/Test/Unit/CommandRendererTest.php | 2 +- .../Framework/Shell/Test/Unit/ComplexParameterTest.php | 2 +- lib/internal/Magento/Framework/ShellInterface.php | 2 +- lib/internal/Magento/Framework/Simplexml/Config.php | 2 +- .../Framework/Simplexml/Config/Cache/AbstractCache.php | 2 +- .../Magento/Framework/Simplexml/Config/Cache/File.php | 2 +- lib/internal/Magento/Framework/Simplexml/Element.php | 2 +- .../Simplexml/Test/Unit/Config/Cache/AbstractCacheTest.php | 2 +- .../Magento/Framework/Simplexml/Test/Unit/ConfigTest.php | 2 +- .../Magento/Framework/Simplexml/Test/Unit/ElementTest.php | 2 +- .../Magento/Framework/Simplexml/Test/Unit/_files/data.xml | 4 ++-- .../Framework/Simplexml/Test/Unit/_files/extend_data.xml | 2 +- .../Framework/Simplexml/Test/Unit/_files/mixed_data.xml | 2 +- lib/internal/Magento/Framework/Stdlib/ArrayManager.php | 2 +- lib/internal/Magento/Framework/Stdlib/ArrayUtils.php | 2 +- lib/internal/Magento/Framework/Stdlib/BooleanUtils.php | 2 +- .../Magento/Framework/Stdlib/Cookie/CookieMetadata.php | 2 +- .../Framework/Stdlib/Cookie/CookieMetadataFactory.php | 2 +- .../Framework/Stdlib/Cookie/CookieReaderInterface.php | 2 +- .../Magento/Framework/Stdlib/Cookie/CookieScope.php | 2 +- .../Framework/Stdlib/Cookie/CookieScopeInterface.php | 2 +- .../Stdlib/Cookie/CookieSizeLimitReachedException.php | 2 +- .../Framework/Stdlib/Cookie/FailureToSendException.php | 2 +- .../Magento/Framework/Stdlib/Cookie/PhpCookieManager.php | 2 +- .../Magento/Framework/Stdlib/Cookie/PhpCookieReader.php | 2 +- .../Framework/Stdlib/Cookie/PublicCookieMetadata.php | 2 +- .../Framework/Stdlib/Cookie/SensitiveCookieMetadata.php | 2 +- .../Magento/Framework/Stdlib/CookieManagerInterface.php | 2 +- lib/internal/Magento/Framework/Stdlib/DateTime.php | 2 +- lib/internal/Magento/Framework/Stdlib/DateTime/DateTime.php | 2 +- .../Magento/Framework/Stdlib/DateTime/DateTimeFormatter.php | 2 +- .../Stdlib/DateTime/DateTimeFormatterInterface.php | 2 +- .../Magento/Framework/Stdlib/DateTime/Filter/Date.php | 2 +- .../Magento/Framework/Stdlib/DateTime/Filter/DateTime.php | 2 +- lib/internal/Magento/Framework/Stdlib/DateTime/Timezone.php | 2 +- .../Framework/Stdlib/DateTime/Timezone/Validator.php | 2 +- .../Magento/Framework/Stdlib/DateTime/TimezoneInterface.php | 2 +- lib/internal/Magento/Framework/Stdlib/StringUtils.php | 2 +- .../Magento/Framework/Stdlib/Test/Unit/ArrayManagerTest.php | 2 +- .../Magento/Framework/Stdlib/Test/Unit/ArrayUtilsTest.php | 2 +- .../Magento/Framework/Stdlib/Test/Unit/BooleanUtilsTest.php | 2 +- .../Framework/Stdlib/Test/Unit/Cookie/CookieScopeTest.php | 2 +- .../Stdlib/Test/Unit/Cookie/PhpCookieManagerTest.php | 2 +- .../Stdlib/Test/Unit/Cookie/PublicCookieMetadataTest.php | 2 +- .../Stdlib/Test/Unit/Cookie/SensitiveCookieMetadataTest.php | 2 +- .../Stdlib/Test/Unit/Cookie/_files/setcookie_mock.php | 2 +- .../Stdlib/Test/Unit/DateTime/DateTimeFormatterTest.php | 2 +- .../Framework/Stdlib/Test/Unit/DateTime/DateTimeTest.php | 2 +- .../Framework/Stdlib/Test/Unit/DateTime/Filter/DateTest.php | 2 +- .../Stdlib/Test/Unit/DateTime/Filter/DateTimeTest.php | 2 +- .../Stdlib/Test/Unit/DateTime/Timezone/ValidatorTest.php | 2 +- .../Magento/Framework/Stdlib/Test/Unit/StringUtilsTest.php | 2 +- .../Framework/Stdlib/Test/Unit/_files/gmdate_mock.php | 2 +- lib/internal/Magento/Framework/System/Dirs.php | 2 +- lib/internal/Magento/Framework/System/Ftp.php | 2 +- .../Framework/Test/Unit/App/ResourceConnectionTest.php | 2 +- .../Magento/Framework/Test/Unit/App/Scope/SourceTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/ArchiveTest.php | 2 +- .../Magento/Framework/Test/Unit/AuthorizationTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/CurrencyTest.php | 2 +- .../Framework/Test/Unit/DB/Query/BatchIteratorTest.php | 2 +- .../Magento/Framework/Test/Unit/DB/Query/GeneratorTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/EscaperTest.php | 2 +- .../Magento/Framework/Test/Unit/EventFactoryTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/EventTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/FilesystemTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/FlagTest.php | 2 +- .../Framework/Test/Unit/Interception/InterceptorTest.php | 2 +- .../Framework/Test/Unit/Interception/Sample/Entity.php | 2 +- .../Framework/Test/Unit/Interception/Sample/Interceptor.php | 2 +- .../Framework/Test/Unit/Interception/Sample/Plugin1.php | 2 +- .../Framework/Test/Unit/Interception/Sample/Plugin2.php | 2 +- .../Framework/Test/Unit/Interception/Sample/Plugin3.php | 2 +- .../Framework/Test/Unit/Interception/Sample/Plugin4.php | 2 +- .../Framework/Test/Unit/Message/PhraseFactoryTest.php | 2 +- .../Test/Unit/Module/Plugin/DbStatusValidatorTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/ObjectTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/PhraseTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/ProfilerTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/RegistryTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/ShellTest.php | 2 +- .../Magento/Framework/Test/Unit/Translate/Js/ConfigTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/TranslateTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/UrlTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/UtilTest.php | 2 +- .../Magento/Framework/Test/Unit/ValidatorFactoryTest.php | 2 +- lib/internal/Magento/Framework/Test/Unit/ValidatorTest.php | 2 +- .../Test/Unit/View/Design/Theme/Label/OptionsTest.php | 2 +- .../Test/Unit/Unit/Helper/ProxyTestingTest.php | 2 +- .../Test/Unit/Unit/Matcher/MethodInvokedAtIndexTest.php | 2 +- .../Test/Unit/Unit/Utility/XsdValidatorTest.php | 2 +- .../TestFramework/Test/Unit/Unit/Utility/_files/invalid.xml | 2 +- .../TestFramework/Test/Unit/Unit/Utility/_files/valid.xml | 2 +- .../TestFramework/Test/Unit/Unit/Utility/_files/valid.xsd | 2 +- .../TestFramework/Unit/AbstractFactoryTestCase.php | 2 +- .../Unit/Autoloader/ExtensionGeneratorAutoloader.php | 2 +- .../Magento/Framework/TestFramework/Unit/BaseTestCase.php | 2 +- .../Framework/TestFramework/Unit/Block/Adminhtml.php | 2 +- .../Framework/TestFramework/Unit/Helper/ObjectManager.php | 2 +- .../Framework/TestFramework/Unit/Helper/ProxyTesting.php | 2 +- .../TestFramework/Unit/Helper/SelectRendererTrait.php | 2 +- .../TestFramework/Unit/Listener/GarbageCleanup.php | 2 +- .../TestFramework/Unit/Matcher/MethodInvokedAtIndex.php | 2 +- .../Magento/Framework/TestFramework/Unit/Module/Config.php | 2 +- .../Framework/TestFramework/Unit/Utility/XsdValidator.php | 2 +- lib/internal/Magento/Framework/Translate.php | 2 +- .../Magento/Framework/Translate/AbstractAdapter.php | 2 +- lib/internal/Magento/Framework/Translate/Adapter.php | 2 +- .../Magento/Framework/Translate/AdapterInterface.php | 2 +- lib/internal/Magento/Framework/Translate/Inline.php | 2 +- .../Magento/Framework/Translate/Inline/ConfigInterface.php | 2 +- .../Magento/Framework/Translate/Inline/ParserFactory.php | 2 +- .../Magento/Framework/Translate/Inline/ParserInterface.php | 2 +- .../Magento/Framework/Translate/Inline/Provider.php | 2 +- .../Framework/Translate/Inline/ProviderInterface.php | 2 +- lib/internal/Magento/Framework/Translate/Inline/Proxy.php | 2 +- lib/internal/Magento/Framework/Translate/Inline/State.php | 2 +- .../Magento/Framework/Translate/Inline/StateInterface.php | 2 +- .../Magento/Framework/Translate/InlineInterface.php | 2 +- lib/internal/Magento/Framework/Translate/Js/Config.php | 2 +- .../Magento/Framework/Translate/Locale/Resolver/Plugin.php | 2 +- .../Magento/Framework/Translate/ResourceInterface.php | 2 +- .../Framework/Translate/Test/Unit/AdapterAbstractTest.php | 2 +- .../Magento/Framework/Translate/Test/Unit/AdapterTest.php | 2 +- .../Framework/Translate/Test/Unit/Inline/ProxyTest.php | 2 +- .../Framework/Translate/Test/Unit/Inline/StateTest.php | 2 +- .../Magento/Framework/Translate/Test/Unit/InlineTest.php | 2 +- lib/internal/Magento/Framework/TranslateInterface.php | 2 +- .../Framework/Unserialize/Test/Unit/UnserializeTest.php | 2 +- lib/internal/Magento/Framework/Unserialize/Unserialize.php | 2 +- lib/internal/Magento/Framework/Url.php | 2 +- lib/internal/Magento/Framework/Url/Decoder.php | 2 +- lib/internal/Magento/Framework/Url/DecoderInterface.php | 2 +- lib/internal/Magento/Framework/Url/Encoder.php | 2 +- lib/internal/Magento/Framework/Url/EncoderInterface.php | 2 +- lib/internal/Magento/Framework/Url/Helper/Data.php | 2 +- lib/internal/Magento/Framework/Url/HostChecker.php | 2 +- lib/internal/Magento/Framework/Url/ModifierComposite.php | 2 +- lib/internal/Magento/Framework/Url/ModifierInterface.php | 2 +- lib/internal/Magento/Framework/Url/QueryParamsResolver.php | 2 +- .../Magento/Framework/Url/QueryParamsResolverInterface.php | 2 +- .../Framework/Url/RouteParamsPreprocessorComposite.php | 2 +- .../Framework/Url/RouteParamsPreprocessorInterface.php | 2 +- lib/internal/Magento/Framework/Url/RouteParamsResolver.php | 2 +- .../Magento/Framework/Url/RouteParamsResolverFactory.php | 2 +- .../Magento/Framework/Url/RouteParamsResolverInterface.php | 2 +- lib/internal/Magento/Framework/Url/ScopeInterface.php | 2 +- lib/internal/Magento/Framework/Url/ScopeResolver.php | 2 +- .../Magento/Framework/Url/ScopeResolverInterface.php | 2 +- lib/internal/Magento/Framework/Url/SecurityInfo.php | 2 +- .../Magento/Framework/Url/SecurityInfoInterface.php | 2 +- .../Magento/Framework/Url/Test/Unit/DecoderTest.php | 2 +- .../Magento/Framework/Url/Test/Unit/Helper/DataTest.php | 2 +- .../Magento/Framework/Url/Test/Unit/HostCheckerTest.php | 2 +- .../Framework/Url/Test/Unit/QueryParamsResolverTest.php | 2 +- .../Url/Test/Unit/RouteParamsResolverFactoryTest.php | 2 +- .../Magento/Framework/Url/Test/Unit/ScopeResolverTest.php | 2 +- .../Magento/Framework/Url/Test/Unit/SecurityInfoTest.php | 2 +- .../Magento/Framework/Url/Test/Unit/ValidatorTest.php | 2 +- lib/internal/Magento/Framework/Url/Validator.php | 2 +- lib/internal/Magento/Framework/UrlFactory.php | 2 +- lib/internal/Magento/Framework/UrlInterface.php | 2 +- lib/internal/Magento/Framework/Util.php | 2 +- lib/internal/Magento/Framework/Validator.php | 2 +- .../Magento/Framework/Validator/AbstractValidator.php | 2 +- .../Magento/Framework/Validator/AllowedProtocols.php | 2 +- lib/internal/Magento/Framework/Validator/Alnum.php | 2 +- lib/internal/Magento/Framework/Validator/Builder.php | 2 +- lib/internal/Magento/Framework/Validator/Config.php | 2 +- lib/internal/Magento/Framework/Validator/Constraint.php | 2 +- .../Magento/Framework/Validator/Constraint/Option.php | 2 +- .../Framework/Validator/Constraint/Option/Callback.php | 2 +- .../Framework/Validator/Constraint/OptionInterface.php | 2 +- .../Magento/Framework/Validator/Constraint/Property.php | 2 +- .../Magento/Framework/Validator/ConstraintFactory.php | 2 +- lib/internal/Magento/Framework/Validator/Currency.php | 2 +- lib/internal/Magento/Framework/Validator/DataObject.php | 2 +- lib/internal/Magento/Framework/Validator/EmailAddress.php | 2 +- .../Magento/Framework/Validator/Entity/Properties.php | 2 +- lib/internal/Magento/Framework/Validator/Exception.php | 2 +- lib/internal/Magento/Framework/Validator/Factory.php | 2 +- lib/internal/Magento/Framework/Validator/File/Extension.php | 2 +- lib/internal/Magento/Framework/Validator/File/ImageSize.php | 2 +- lib/internal/Magento/Framework/Validator/File/IsImage.php | 2 +- lib/internal/Magento/Framework/Validator/File/Size.php | 2 +- lib/internal/Magento/Framework/Validator/FloatUtils.php | 2 +- lib/internal/Magento/Framework/Validator/IntUtils.php | 2 +- lib/internal/Magento/Framework/Validator/Ip.php | 2 +- lib/internal/Magento/Framework/Validator/Locale.php | 2 +- lib/internal/Magento/Framework/Validator/NotEmpty.php | 2 +- lib/internal/Magento/Framework/Validator/Regex.php | 2 +- lib/internal/Magento/Framework/Validator/StringLength.php | 2 +- .../Magento/Framework/Validator/Test/Unit/BuilderTest.php | 2 +- .../Magento/Framework/Validator/Test/Unit/ConfigTest.php | 2 +- .../Validator/Test/Unit/Constraint/Option/CallbackTest.php | 2 +- .../Framework/Validator/Test/Unit/Constraint/OptionTest.php | 2 +- .../Validator/Test/Unit/Constraint/PropertyTest.php | 2 +- .../Framework/Validator/Test/Unit/ConstraintTest.php | 2 +- .../Magento/Framework/Validator/Test/Unit/CurrencyTest.php | 2 +- .../Framework/Validator/Test/Unit/Entity/PropertiesTest.php | 2 +- .../Magento/Framework/Validator/Test/Unit/ExceptionTest.php | 2 +- .../Magento/Framework/Validator/Test/Unit/FactoryTest.php | 2 +- .../Magento/Framework/Validator/Test/Unit/LocaleTest.php | 2 +- .../Magento/Framework/Validator/Test/Unit/ObjectTest.php | 2 +- .../Framework/Validator/Test/Unit/StringLengthTest.php | 2 +- .../Magento/Framework/Validator/Test/Unit/Test/Alnum.php | 2 +- .../Magento/Framework/Validator/Test/Unit/Test/Callback.php | 2 +- .../Magento/Framework/Validator/Test/Unit/Test/IsInt.php | 2 +- .../Magento/Framework/Validator/Test/Unit/Test/IsTrue.php | 2 +- .../Magento/Framework/Validator/Test/Unit/Test/NotEmpty.php | 2 +- .../Framework/Validator/Test/Unit/Test/StringLength.php | 2 +- .../Magento/Framework/Validator/Test/Unit/TimezoneTest.php | 2 +- .../Magento/Framework/Validator/Test/Unit/UrlTest.php | 2 +- .../Framework/Validator/Test/Unit/ValidatorAbstractTest.php | 2 +- .../_files/validation/negative/invalid_builder_class.xml | 2 +- .../_files/validation/negative/invalid_builder_instance.xml | 2 +- .../_files/validation/negative/invalid_child_for_option.xml | 2 +- .../Unit/_files/validation/negative/invalid_constraint.xml | 2 +- .../validation/negative/invalid_content_for_callback.xml | 2 +- .../_files/validation/negative/invalid_entity_callback.xml | 2 +- .../Test/Unit/_files/validation/negative/invalid_method.xml | 2 +- .../_files/validation/negative/invalid_method_callback.xml | 2 +- .../validation/negative/multiple_callback_in_argument.xml | 2 +- .../_files/validation/negative/no_class_for_constraint.xml | 2 +- .../Test/Unit/_files/validation/negative/no_constraint.xml | 2 +- .../Unit/_files/validation/negative/no_name_for_entity.xml | 2 +- .../Unit/_files/validation/negative/no_name_for_group.xml | 2 +- .../Unit/_files/validation/negative/no_name_for_rule.xml | 2 +- .../_files/validation/negative/no_rule_for_reference.xml | 2 +- .../Test/Unit/_files/validation/negative/not_unique_use.xml | 2 +- .../Unit/_files/validation/positive/builder/validation.xml | 2 +- .../Unit/_files/validation/positive/module_a/validation.xml | 2 +- .../Unit/_files/validation/positive/module_b/validation.xml | 2 +- lib/internal/Magento/Framework/Validator/Timezone.php | 2 +- .../Magento/Framework/Validator/UniversalFactory.php | 2 +- lib/internal/Magento/Framework/Validator/Url.php | 2 +- .../Magento/Framework/Validator/ValidatorInterface.php | 2 +- lib/internal/Magento/Framework/Validator/etc/validation.xsd | 2 +- lib/internal/Magento/Framework/ValidatorFactory.php | 2 +- .../Magento/Framework/View/Asset/AssetInterface.php | 2 +- lib/internal/Magento/Framework/View/Asset/Bundle.php | 2 +- lib/internal/Magento/Framework/View/Asset/Bundle/Config.php | 2 +- .../Magento/Framework/View/Asset/Bundle/ConfigInterface.php | 2 +- .../Magento/Framework/View/Asset/Bundle/Manager.php | 2 +- lib/internal/Magento/Framework/View/Asset/Collection.php | 2 +- lib/internal/Magento/Framework/View/Asset/Config.php | 2 +- .../Magento/Framework/View/Asset/ConfigInterface.php | 2 +- .../Framework/View/Asset/ContentProcessorException.php | 2 +- .../Framework/View/Asset/ContentProcessorInterface.php | 2 +- .../Magento/Framework/View/Asset/ContextInterface.php | 2 +- lib/internal/Magento/Framework/View/Asset/File.php | 2 +- lib/internal/Magento/Framework/View/Asset/File/Context.php | 2 +- .../Magento/Framework/View/Asset/File/ContextFactory.php | 2 +- .../Magento/Framework/View/Asset/File/FallbackContext.php | 2 +- .../Framework/View/Asset/File/FallbackContextFactory.php | 2 +- .../Magento/Framework/View/Asset/File/NotFoundException.php | 2 +- lib/internal/Magento/Framework/View/Asset/FileFactory.php | 2 +- .../Magento/Framework/View/Asset/GroupedCollection.php | 2 +- .../Magento/Framework/View/Asset/LocalInterface.php | 2 +- lib/internal/Magento/Framework/View/Asset/LockerProcess.php | 2 +- .../Magento/Framework/View/Asset/LockerProcessInterface.php | 2 +- lib/internal/Magento/Framework/View/Asset/MergeService.php | 2 +- .../Magento/Framework/View/Asset/MergeStrategy/Checksum.php | 2 +- .../Magento/Framework/View/Asset/MergeStrategy/Direct.php | 2 +- .../Framework/View/Asset/MergeStrategy/FileExists.php | 2 +- .../Magento/Framework/View/Asset/MergeStrategyInterface.php | 2 +- .../Magento/Framework/View/Asset/MergeableInterface.php | 2 +- lib/internal/Magento/Framework/View/Asset/Merged.php | 2 +- lib/internal/Magento/Framework/View/Asset/Minification.php | 2 +- .../Framework/View/Asset/NotationResolver/Module.php | 2 +- .../Framework/View/Asset/NotationResolver/Variable.php | 2 +- .../Framework/View/Asset/PreProcessor/AlternativeSource.php | 2 +- .../Asset/PreProcessor/AlternativeSource/AssetBuilder.php | 2 +- .../View/Asset/PreProcessor/AlternativeSourceInterface.php | 2 +- .../Magento/Framework/View/Asset/PreProcessor/Chain.php | 2 +- .../Framework/View/Asset/PreProcessor/ChainFactory.php | 2 +- .../View/Asset/PreProcessor/ChainFactoryInterface.php | 2 +- .../View/Asset/PreProcessor/FilenameResolverInterface.php | 2 +- .../Framework/View/Asset/PreProcessor/Helper/Sort.php | 2 +- .../View/Asset/PreProcessor/Helper/SortInterface.php | 2 +- .../Asset/PreProcessor/MinificationFilenameResolver.php | 2 +- .../Magento/Framework/View/Asset/PreProcessor/Minify.php | 2 +- .../Framework/View/Asset/PreProcessor/ModuleNotation.php | 2 +- .../Framework/View/Asset/PreProcessor/Passthrough.php | 2 +- .../Magento/Framework/View/Asset/PreProcessor/Pool.php | 2 +- .../Framework/View/Asset/PreProcessor/VariableNotation.php | 2 +- .../Magento/Framework/View/Asset/PreProcessorInterface.php | 2 +- lib/internal/Magento/Framework/View/Asset/PropertyGroup.php | 2 +- .../Magento/Framework/View/Asset/PropertyGroupFactory.php | 2 +- lib/internal/Magento/Framework/View/Asset/Remote.php | 2 +- lib/internal/Magento/Framework/View/Asset/RemoteFactory.php | 2 +- lib/internal/Magento/Framework/View/Asset/Repository.php | 2 +- lib/internal/Magento/Framework/View/Asset/Source.php | 2 +- .../Framework/View/Asset/SourceFileGeneratorInterface.php | 2 +- .../Framework/View/Asset/SourceFileGeneratorPool.php | 2 +- lib/internal/Magento/Framework/View/BlockPool.php | 2 +- lib/internal/Magento/Framework/View/Config.php | 2 +- lib/internal/Magento/Framework/View/ConfigInterface.php | 2 +- lib/internal/Magento/Framework/View/Context.php | 2 +- lib/internal/Magento/Framework/View/DataSourcePool.php | 2 +- .../Framework/View/Design/Fallback/Rule/Composite.php | 2 +- .../Framework/View/Design/Fallback/Rule/ModularSwitch.php | 2 +- .../View/Design/Fallback/Rule/ModularSwitchFactory.php | 2 +- .../Magento/Framework/View/Design/Fallback/Rule/Module.php | 2 +- .../Framework/View/Design/Fallback/Rule/ModuleFactory.php | 2 +- .../Framework/View/Design/Fallback/Rule/RuleInterface.php | 2 +- .../Magento/Framework/View/Design/Fallback/Rule/Simple.php | 2 +- .../Framework/View/Design/Fallback/Rule/SimpleFactory.php | 2 +- .../Magento/Framework/View/Design/Fallback/Rule/Theme.php | 2 +- .../Framework/View/Design/Fallback/Rule/ThemeFactory.php | 2 +- .../Magento/Framework/View/Design/Fallback/RulePool.php | 2 +- .../Design/FileResolution/Fallback/EmailTemplateFile.php | 2 +- .../Framework/View/Design/FileResolution/Fallback/File.php | 2 +- .../View/Design/FileResolution/Fallback/LocaleFile.php | 2 +- .../Design/FileResolution/Fallback/Resolver/Alternative.php | 2 +- .../FileResolution/Fallback/Resolver/Minification.php | 2 +- .../View/Design/FileResolution/Fallback/Resolver/Simple.php | 2 +- .../Design/FileResolution/Fallback/ResolverInterface.php | 2 +- .../View/Design/FileResolution/Fallback/StaticFile.php | 2 +- .../View/Design/FileResolution/Fallback/TemplateFile.php | 2 +- .../Magento/Framework/View/Design/Theme/Customization.php | 2 +- .../View/Design/Theme/Customization/AbstractFile.php | 2 +- .../View/Design/Theme/Customization/ConfigInterface.php | 2 +- .../Framework/View/Design/Theme/Customization/File/Css.php | 2 +- .../Framework/View/Design/Theme/Customization/File/Js.php | 2 +- .../View/Design/Theme/Customization/FileAssetInterface.php | 2 +- .../View/Design/Theme/Customization/FileInterface.php | 2 +- .../View/Design/Theme/Customization/FileServiceFactory.php | 2 +- .../Framework/View/Design/Theme/Customization/Path.php | 2 +- .../Framework/View/Design/Theme/CustomizationInterface.php | 2 +- .../Magento/Framework/View/Design/Theme/Domain/Factory.php | 2 +- .../View/Design/Theme/Domain/PhysicalInterface.php | 2 +- .../Framework/View/Design/Theme/Domain/StagingInterface.php | 2 +- .../Framework/View/Design/Theme/Domain/VirtualInterface.php | 2 +- .../View/Design/Theme/File/CollectionInterface.php | 2 +- .../Magento/Framework/View/Design/Theme/FileFactory.php | 2 +- .../Magento/Framework/View/Design/Theme/FileInterface.php | 2 +- .../Framework/View/Design/Theme/FileProviderInterface.php | 2 +- .../Framework/View/Design/Theme/FlyweightFactory.php | 2 +- lib/internal/Magento/Framework/View/Design/Theme/Image.php | 2 +- .../Framework/View/Design/Theme/Image/PathInterface.php | 2 +- .../Magento/Framework/View/Design/Theme/Image/Uploader.php | 2 +- .../Magento/Framework/View/Design/Theme/ImageFactory.php | 2 +- lib/internal/Magento/Framework/View/Design/Theme/Label.php | 2 +- .../Framework/View/Design/Theme/Label/ListInterface.php | 2 +- .../Magento/Framework/View/Design/Theme/Label/Options.php | 2 +- .../Magento/Framework/View/Design/Theme/LabelFactory.php | 2 +- .../Magento/Framework/View/Design/Theme/ListInterface.php | 2 +- .../Framework/View/Design/Theme/ResolverInterface.php | 2 +- .../Magento/Framework/View/Design/Theme/ThemePackage.php | 2 +- .../Framework/View/Design/Theme/ThemePackageFactory.php | 2 +- .../Framework/View/Design/Theme/ThemePackageList.php | 2 +- .../Framework/View/Design/Theme/ThemeProviderInterface.php | 2 +- .../Magento/Framework/View/Design/Theme/Validator.php | 2 +- lib/internal/Magento/Framework/View/Design/ThemeFactory.php | 2 +- .../Magento/Framework/View/Design/ThemeInterface.php | 2 +- lib/internal/Magento/Framework/View/DesignExceptions.php | 2 +- lib/internal/Magento/Framework/View/DesignInterface.php | 2 +- lib/internal/Magento/Framework/View/DesignLoader.php | 2 +- .../Magento/Framework/View/Element/AbstractBlock.php | 2 +- .../Framework/View/Element/Block/ArgumentInterface.php | 2 +- .../Magento/Framework/View/Element/BlockFactory.php | 2 +- .../Magento/Framework/View/Element/BlockInterface.php | 2 +- lib/internal/Magento/Framework/View/Element/Context.php | 2 +- .../Framework/View/Element/ExceptionHandlerBlock.php | 2 +- .../Framework/View/Element/ExceptionHandlerBlockFactory.php | 2 +- lib/internal/Magento/Framework/View/Element/FormKey.php | 2 +- .../Magento/Framework/View/Element/Html/Calendar.php | 2 +- lib/internal/Magento/Framework/View/Element/Html/Date.php | 2 +- lib/internal/Magento/Framework/View/Element/Html/Link.php | 2 +- .../Magento/Framework/View/Element/Html/Link/Current.php | 2 +- lib/internal/Magento/Framework/View/Element/Html/Links.php | 2 +- lib/internal/Magento/Framework/View/Element/Html/Select.php | 2 +- .../Magento/Framework/View/Element/Js/Components.php | 2 +- lib/internal/Magento/Framework/View/Element/Js/Cookie.php | 2 +- .../View/Element/Message/InterpretationMediator.php | 2 +- .../View/Element/Message/InterpretationStrategy.php | 2 +- .../Element/Message/InterpretationStrategyInterface.php | 2 +- .../View/Element/Message/MessageConfigurationsPool.php | 2 +- .../View/Element/Message/Renderer/BlockRenderer.php | 2 +- .../Element/Message/Renderer/BlockRenderer/Template.php | 2 +- .../View/Element/Message/Renderer/EscapeRenderer.php | 2 +- .../View/Element/Message/Renderer/PoolInterface.php | 2 +- .../View/Element/Message/Renderer/RendererInterface.php | 2 +- .../View/Element/Message/Renderer/RenderersPool.php | 2 +- lib/internal/Magento/Framework/View/Element/Messages.php | 2 +- lib/internal/Magento/Framework/View/Element/Redirect.php | 2 +- .../Magento/Framework/View/Element/RendererInterface.php | 2 +- .../Magento/Framework/View/Element/RendererList.php | 2 +- lib/internal/Magento/Framework/View/Element/Template.php | 2 +- .../Magento/Framework/View/Element/Template/Context.php | 2 +- .../Framework/View/Element/Template/File/Resolver.php | 2 +- .../Framework/View/Element/Template/File/Validator.php | 2 +- lib/internal/Magento/Framework/View/Element/Text.php | 2 +- .../Magento/Framework/View/Element/Text/ListText.php | 2 +- .../Magento/Framework/View/Element/Text/TextList/Item.php | 2 +- .../Magento/Framework/View/Element/Text/TextList/Link.php | 2 +- .../UiComponent/Argument/Interpreter/ConfigurableObject.php | 2 +- .../View/Element/UiComponent/ArrayObjectFactory.php | 2 +- .../View/Element/UiComponent/BlockWrapperInterface.php | 2 +- .../Framework/View/Element/UiComponent/Config/Converter.php | 2 +- .../Framework/View/Element/UiComponent/Config/DomMerger.php | 2 +- .../View/Element/UiComponent/Config/DomMergerInterface.php | 2 +- .../Config/FileCollector/AggregatedFileCollector.php | 2 +- .../Config/FileCollector/AggregatedFileCollectorFactory.php | 2 +- .../Element/UiComponent/Config/FileCollectorInterface.php | 2 +- .../View/Element/UiComponent/Config/ManagerInterface.php | 2 +- .../UiComponent/Config/Provider/Component/Definition.php | 2 +- .../View/Element/UiComponent/Config/Provider/Template.php | 2 +- .../Framework/View/Element/UiComponent/Config/Reader.php | 2 +- .../View/Element/UiComponent/Config/ReaderFactory.php | 2 +- .../View/Element/UiComponent/Config/UiReaderInterface.php | 2 +- .../View/Element/UiComponent/ContainerInterface.php | 2 +- .../Element/UiComponent/ContentType/AbstractContentType.php | 2 +- .../Element/UiComponent/ContentType/ContentTypeFactory.php | 2 +- .../UiComponent/ContentType/ContentTypeInterface.php | 2 +- .../Framework/View/Element/UiComponent/ContentType/Html.php | 2 +- .../Framework/View/Element/UiComponent/ContentType/Json.php | 2 +- .../Framework/View/Element/UiComponent/ContentType/Xml.php | 2 +- .../Magento/Framework/View/Element/UiComponent/Context.php | 2 +- .../Framework/View/Element/UiComponent/ContextFactory.php | 2 +- .../Framework/View/Element/UiComponent/ContextInterface.php | 2 +- .../View/Element/UiComponent/Control/ActionPoolFactory.php | 2 +- .../Element/UiComponent/Control/ActionPoolInterface.php | 2 +- .../Element/UiComponent/Control/ButtonProviderFactory.php | 2 +- .../Element/UiComponent/Control/ButtonProviderInterface.php | 2 +- .../View/Element/UiComponent/Control/ControlInterface.php | 2 +- .../View/Element/UiComponent/Control/DummyButton.php | 2 +- .../Element/UiComponent/DataProvider/CollectionFactory.php | 2 +- .../View/Element/UiComponent/DataProvider/DataProvider.php | 2 +- .../UiComponent/DataProvider/DataProviderInterface.php | 2 +- .../View/Element/UiComponent/DataProvider/Document.php | 2 +- .../UiComponent/DataProvider/FilterApplierInterface.php | 2 +- .../View/Element/UiComponent/DataProvider/FilterPool.php | 2 +- .../Element/UiComponent/DataProvider/FulltextFilter.php | 2 +- .../View/Element/UiComponent/DataProvider/RegularFilter.php | 2 +- .../View/Element/UiComponent/DataProvider/Reporting.php | 2 +- .../View/Element/UiComponent/DataProvider/SearchResult.php | 2 +- .../View/Element/UiComponent/DataSourceInterface.php | 2 +- .../View/Element/UiComponent/JsConfigInterface.php | 2 +- .../Framework/View/Element/UiComponent/LayoutInterface.php | 2 +- .../View/Element/UiComponent/ObserverInterface.php | 2 +- .../Framework/View/Element/UiComponent/PoolInterface.php | 2 +- .../Framework/View/Element/UiComponent/Processor.php | 2 +- .../Framework/View/Element/UiComponent/SubjectInterface.php | 2 +- .../Magento/Framework/View/Element/UiComponentFactory.php | 2 +- .../Magento/Framework/View/Element/UiComponentInterface.php | 2 +- lib/internal/Magento/Framework/View/File.php | 2 +- lib/internal/Magento/Framework/View/File/Collector/Base.php | 2 +- .../View/File/Collector/Decorator/ModuleDependency.php | 2 +- .../View/File/Collector/Decorator/ModuleOutput.php | 2 +- .../Magento/Framework/View/File/Collector/Override/Base.php | 2 +- .../Framework/View/File/Collector/Override/ThemeModular.php | 2 +- .../Magento/Framework/View/File/Collector/Theme.php | 2 +- .../Magento/Framework/View/File/Collector/ThemeModular.php | 2 +- .../Magento/Framework/View/File/CollectorInterface.php | 2 +- lib/internal/Magento/Framework/View/File/Factory.php | 2 +- lib/internal/Magento/Framework/View/File/FileList.php | 2 +- .../Framework/View/File/FileList/CollateInterface.php | 2 +- .../Magento/Framework/View/File/FileList/Collator.php | 2 +- .../Magento/Framework/View/File/FileList/Factory.php | 2 +- lib/internal/Magento/Framework/View/FileSystem.php | 2 +- lib/internal/Magento/Framework/View/Helper/Js.php | 2 +- lib/internal/Magento/Framework/View/Helper/PathPattern.php | 2 +- lib/internal/Magento/Framework/View/Layout.php | 2 +- .../View/Layout/Argument/Interpreter/DataObject.php | 2 +- .../View/Layout/Argument/Interpreter/Decorator/Updater.php | 2 +- .../View/Layout/Argument/Interpreter/HelperMethod.php | 2 +- .../View/Layout/Argument/Interpreter/NamedParams.php | 2 +- .../Framework/View/Layout/Argument/Interpreter/Options.php | 2 +- .../View/Layout/Argument/Interpreter/Passthrough.php | 2 +- .../Framework/View/Layout/Argument/Interpreter/Url.php | 2 +- .../Magento/Framework/View/Layout/Argument/Parser.php | 2 +- .../Framework/View/Layout/Argument/UpdaterInterface.php | 2 +- lib/internal/Magento/Framework/View/Layout/Builder.php | 2 +- .../Magento/Framework/View/Layout/BuilderFactory.php | 2 +- .../Magento/Framework/View/Layout/BuilderInterface.php | 2 +- .../Magento/Framework/View/Layout/Data/Structure.php | 2 +- lib/internal/Magento/Framework/View/Layout/Element.php | 2 +- .../Framework/View/Layout/File/Collector/Aggregated.php | 2 +- .../Magento/Framework/View/Layout/Generator/Block.php | 2 +- .../Magento/Framework/View/Layout/Generator/Container.php | 2 +- .../Magento/Framework/View/Layout/Generator/Context.php | 2 +- .../Framework/View/Layout/Generator/ContextFactory.php | 2 +- .../Magento/Framework/View/Layout/Generator/Structure.php | 2 +- .../Magento/Framework/View/Layout/Generator/UiComponent.php | 2 +- .../Magento/Framework/View/Layout/GeneratorInterface.php | 2 +- .../Magento/Framework/View/Layout/GeneratorPool.php | 2 +- lib/internal/Magento/Framework/View/Layout/Generic.php | 2 +- .../Magento/Framework/View/Layout/PageType/Config.php | 2 +- .../Framework/View/Layout/PageType/Config/Converter.php | 2 +- .../Framework/View/Layout/PageType/Config/Reader.php | 2 +- .../Framework/View/Layout/PageType/Config/SchemaLocator.php | 2 +- lib/internal/Magento/Framework/View/Layout/Pool.php | 2 +- .../Magento/Framework/View/Layout/ProcessorFactory.php | 2 +- .../Magento/Framework/View/Layout/ProcessorInterface.php | 2 +- lib/internal/Magento/Framework/View/Layout/Proxy.php | 2 +- lib/internal/Magento/Framework/View/Layout/Reader/Block.php | 2 +- .../Magento/Framework/View/Layout/Reader/Container.php | 2 +- .../Magento/Framework/View/Layout/Reader/Context.php | 2 +- .../Magento/Framework/View/Layout/Reader/ContextFactory.php | 2 +- lib/internal/Magento/Framework/View/Layout/Reader/Move.php | 2 +- .../Magento/Framework/View/Layout/Reader/UiComponent.php | 2 +- .../Magento/Framework/View/Layout/ReaderFactory.php | 2 +- .../Magento/Framework/View/Layout/ReaderInterface.php | 2 +- lib/internal/Magento/Framework/View/Layout/ReaderPool.php | 2 +- .../Magento/Framework/View/Layout/ScheduledStructure.php | 2 +- .../Framework/View/Layout/ScheduledStructure/Helper.php | 2 +- lib/internal/Magento/Framework/View/Layout/etc/body.xsd | 2 +- lib/internal/Magento/Framework/View/Layout/etc/elements.xsd | 2 +- lib/internal/Magento/Framework/View/Layout/etc/head.xsd | 2 +- lib/internal/Magento/Framework/View/Layout/etc/html.xsd | 2 +- .../Magento/Framework/View/Layout/etc/layout_generic.xsd | 2 +- .../Magento/Framework/View/Layout/etc/layout_merged.xsd | 2 +- .../Framework/View/Layout/etc/page_configuration.xsd | 2 +- .../Magento/Framework/View/Layout/etc/page_layout.xsd | 2 +- .../Magento/Framework/View/Layout/etc/page_types.xsd | 2 +- lib/internal/Magento/Framework/View/LayoutFactory.php | 2 +- lib/internal/Magento/Framework/View/LayoutInterface.php | 2 +- lib/internal/Magento/Framework/View/Model/Layout/Merge.php | 2 +- .../Magento/Framework/View/Model/Layout/Translator.php | 2 +- .../Framework/View/Model/Layout/Update/Validator.php | 2 +- .../View/Model/PageLayout/Config/BuilderInterface.php | 2 +- lib/internal/Magento/Framework/View/Page/Builder.php | 2 +- lib/internal/Magento/Framework/View/Page/Config.php | 2 +- .../Magento/Framework/View/Page/Config/Generator/Body.php | 2 +- .../Magento/Framework/View/Page/Config/Generator/Head.php | 2 +- .../Magento/Framework/View/Page/Config/Reader/Body.php | 2 +- .../Magento/Framework/View/Page/Config/Reader/Head.php | 2 +- .../Magento/Framework/View/Page/Config/Reader/Html.php | 2 +- .../Magento/Framework/View/Page/Config/Renderer.php | 2 +- .../Magento/Framework/View/Page/Config/RendererFactory.php | 2 +- .../Framework/View/Page/Config/RendererInterface.php | 2 +- .../Magento/Framework/View/Page/Config/Structure.php | 2 +- lib/internal/Magento/Framework/View/Page/ConfigFactory.php | 2 +- .../Magento/Framework/View/Page/FaviconInterface.php | 2 +- lib/internal/Magento/Framework/View/Page/Layout/Reader.php | 2 +- lib/internal/Magento/Framework/View/Page/Title.php | 2 +- lib/internal/Magento/Framework/View/PageLayout/Config.php | 2 +- .../Framework/View/PageLayout/File/Collector/Aggregated.php | 2 +- .../Magento/Framework/View/PageLayout/etc/layouts.xsd | 2 +- .../Magento/Framework/View/Render/RenderFactory.php | 2 +- lib/internal/Magento/Framework/View/RenderInterface.php | 2 +- lib/internal/Magento/Framework/View/Result/Layout.php | 2 +- .../Magento/Framework/View/Result/LayoutFactory.php | 2 +- lib/internal/Magento/Framework/View/Result/Page.php | 2 +- lib/internal/Magento/Framework/View/Result/PageFactory.php | 2 +- .../Magento/Framework/View/Template/Html/Minifier.php | 2 +- .../Framework/View/Template/Html/MinifierInterface.php | 2 +- lib/internal/Magento/Framework/View/TemplateEngine/Php.php | 2 +- .../Magento/Framework/View/TemplateEngine/Xhtml.php | 2 +- .../Framework/View/TemplateEngine/Xhtml/Compiler.php | 2 +- .../View/TemplateEngine/Xhtml/Compiler/Attribute.php | 2 +- .../TemplateEngine/Xhtml/Compiler/AttributeInterface.php | 2 +- .../Framework/View/TemplateEngine/Xhtml/Compiler/Cdata.php | 2 +- .../View/TemplateEngine/Xhtml/Compiler/CdataInterface.php | 2 +- .../View/TemplateEngine/Xhtml/Compiler/Comment.php | 2 +- .../View/TemplateEngine/Xhtml/Compiler/CommentInterface.php | 2 +- .../Xhtml/Compiler/Directive/CallableMethod.php | 2 +- .../Xhtml/Compiler/Directive/DirectiveInterface.php | 2 +- .../TemplateEngine/Xhtml/Compiler/Directive/Variable.php | 2 +- .../Xhtml/Compiler/Element/ElementInterface.php | 2 +- .../Framework/View/TemplateEngine/Xhtml/Compiler/Text.php | 2 +- .../View/TemplateEngine/Xhtml/Compiler/TextInterface.php | 2 +- .../Framework/View/TemplateEngine/Xhtml/CompilerFactory.php | 2 +- .../View/TemplateEngine/Xhtml/CompilerInterface.php | 2 +- .../Framework/View/TemplateEngine/Xhtml/ResultFactory.php | 2 +- .../Framework/View/TemplateEngine/Xhtml/ResultInterface.php | 2 +- .../Framework/View/TemplateEngine/Xhtml/Template.php | 2 +- .../Framework/View/TemplateEngine/Xhtml/TemplateFactory.php | 2 +- .../Magento/Framework/View/TemplateEngineFactory.php | 2 +- .../Magento/Framework/View/TemplateEngineInterface.php | 2 +- lib/internal/Magento/Framework/View/TemplateEnginePool.php | 2 +- .../Framework/View/Test/Unit/Asset/Bundle/ManagerTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Asset/BundleTest.php | 2 +- .../Framework/View/Test/Unit/Asset/CollectionTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Asset/ConfigTest.php | 2 +- .../View/Test/Unit/Asset/File/FallbackContextTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Asset/FileTest.php | 2 +- .../View/Test/Unit/Asset/GroupedCollectionTest.php | 2 +- .../Framework/View/Test/Unit/Asset/LockerProcessTest.php | 2 +- .../Framework/View/Test/Unit/Asset/MergeServiceTest.php | 2 +- .../View/Test/Unit/Asset/MergeStrategy/ChecksumTest.php | 2 +- .../View/Test/Unit/Asset/MergeStrategy/DirectTest.php | 2 +- .../View/Test/Unit/Asset/MergeStrategy/FileExistsTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Asset/MergedTest.php | 2 +- .../Framework/View/Test/Unit/Asset/MinificationTest.php | 2 +- .../View/Test/Unit/Asset/NotationResolver/ModuleTest.php | 2 +- .../View/Test/Unit/Asset/NotationResolver/VariableTest.php | 2 +- .../Test/Unit/Asset/PreProcessor/AlternativeSourceTest.php | 2 +- .../View/Test/Unit/Asset/PreProcessor/ChainTest.php | 2 +- .../View/Test/Unit/Asset/PreProcessor/Helper/SortTest.php | 2 +- .../Asset/PreProcessor/MinificationFilenameResolverTest.php | 2 +- .../View/Test/Unit/Asset/PreProcessor/MinifyTest.php | 2 +- .../View/Test/Unit/Asset/PreProcessor/PoolTest.php | 2 +- .../Framework/View/Test/Unit/Asset/PropertyGroupTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Asset/RemoteTest.php | 2 +- .../Framework/View/Test/Unit/Asset/RepositoryTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Asset/SourceTest.php | 2 +- .../Magento/Framework/View/Test/Unit/BlockPoolTest.php | 2 +- .../Magento/Framework/View/Test/Unit/BlockPoolTestBlock.php | 2 +- .../Magento/Framework/View/Test/Unit/ConfigTest.php | 2 +- .../Magento/Framework/View/Test/Unit/ContextTest.php | 2 +- .../Magento/Framework/View/Test/Unit/DataSourcePoolTest.php | 2 +- .../Framework/View/Test/Unit/DataSourcePoolTestBlock.php | 2 +- .../View/Test/Unit/Design/Fallback/Rule/CompositeTest.php | 2 +- .../Test/Unit/Design/Fallback/Rule/ModularSwitchTest.php | 2 +- .../View/Test/Unit/Design/Fallback/Rule/ModuleTest.php | 2 +- .../View/Test/Unit/Design/Fallback/Rule/SimpleTest.php | 2 +- .../View/Test/Unit/Design/Fallback/Rule/ThemeTest.php | 2 +- .../View/Test/Unit/Design/Fallback/RulePoolTest.php | 2 +- .../Test/Unit/Design/FileResolution/Fallback/FileTest.php | 2 +- .../Unit/Design/FileResolution/Fallback/LocaleFileTest.php | 2 +- .../FileResolution/Fallback/Resolver/AlternativeTest.php | 2 +- .../FileResolution/Fallback/Resolver/MinificationTest.php | 2 +- .../Design/FileResolution/Fallback/Resolver/SimpleTest.php | 2 +- .../Unit/Design/FileResolution/Fallback/StaticFileTest.php | 2 +- .../Design/FileResolution/Fallback/TemplateFileTest.php | 2 +- .../Unit/Design/Theme/Customization/AbstractFileTest.php | 2 +- .../View/Test/Unit/Design/Theme/Customization/PathTest.php | 2 +- .../View/Test/Unit/Design/Theme/CustomizationTest.php | 2 +- .../View/Test/Unit/Design/Theme/Domain/FactoryTest.php | 2 +- .../View/Test/Unit/Design/Theme/FlyweightFactoryTest.php | 2 +- .../View/Test/Unit/Design/Theme/Image/UploaderTest.php | 2 +- .../Framework/View/Test/Unit/Design/Theme/ImageTest.php | 2 +- .../Framework/View/Test/Unit/Design/Theme/LabelTest.php | 2 +- .../View/Test/Unit/Design/Theme/ThemePackageListTest.php | 2 +- .../View/Test/Unit/Design/Theme/ThemePackageTest.php | 2 +- .../Framework/View/Test/Unit/DesignExceptionsTest.php | 2 +- .../Magento/Framework/View/Test/Unit/DesignLoaderTest.php | 2 +- .../Framework/View/Test/Unit/Element/AbstractBlockTest.php | 2 +- .../Framework/View/Test/Unit/Element/BlockFactoryTest.php | 2 +- .../Framework/View/Test/Unit/Element/FormKeyTest.php | 2 +- .../Framework/View/Test/Unit/Element/Html/CalendarTest.php | 2 +- .../View/Test/Unit/Element/Html/Link/CurrentTest.php | 2 +- .../Framework/View/Test/Unit/Element/Html/LinkTest.php | 2 +- .../Framework/View/Test/Unit/Element/Html/LinksTest.php | 2 +- .../Framework/View/Test/Unit/Element/Html/SelectTest.php | 2 +- .../Framework/View/Test/Unit/Element/Js/CookieTest.php | 2 +- .../Unit/Element/Message/InterpretationMediatorTest.php | 2 +- .../Unit/Element/Message/InterpretationStrategyTest.php | 2 +- .../Unit/Element/Message/MessageConfigurationsPoolTest.php | 2 +- .../Element/Message/Renderer/BlockRenderer/TemplateTest.php | 2 +- .../Unit/Element/Message/Renderer/BlockRendererTest.php | 2 +- .../Unit/Element/Message/Renderer/EscapeRendererTest.php | 2 +- .../Unit/Element/Message/Renderer/RenderersPoolTest.php | 2 +- .../Framework/View/Test/Unit/Element/MessagesTest.php | 2 +- .../Framework/View/Test/Unit/Element/RendererListTest.php | 2 +- .../View/Test/Unit/Element/Template/File/ResolverTest.php | 2 +- .../View/Test/Unit/Element/Template/File/ValidatorTest.php | 2 +- .../Framework/View/Test/Unit/Element/TemplateTest.php | 2 +- .../View/Test/Unit/Element/Text/TextList/ItemTest.php | 2 +- .../View/Test/Unit/Element/Text/TextList/LinkTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Element/TextTest.php | 2 +- .../View/Test/Unit/Element/UiComponent/ContextTest.php | 2 +- .../Unit/Element/UiComponent/Control/DummyButtonTest.php | 2 +- .../Element/UiComponent/DataProvider/FulltextFilterTest.php | 2 +- .../View/Test/Unit/Element/UiComponent/ProcessorTest.php | 2 +- .../Framework/View/Test/Unit/File/Collector/BaseTest.php | 2 +- .../Unit/File/Collector/Decorator/ModuleDependencyTest.php | 2 +- .../Test/Unit/File/Collector/Decorator/ModuleOutputTest.php | 2 +- .../View/Test/Unit/File/Collector/Override/BaseTest.php | 2 +- .../Test/Unit/File/Collector/Override/ThemeModularTest.php | 2 +- .../View/Test/Unit/File/Collector/ThemeModularTest.php | 2 +- .../Framework/View/Test/Unit/File/Collector/ThemeTest.php | 2 +- .../Magento/Framework/View/Test/Unit/File/FactoryTest.php | 2 +- .../Framework/View/Test/Unit/File/FileList/CollatorTest.php | 2 +- .../Framework/View/Test/Unit/File/FileList/FactoryTest.php | 2 +- .../Magento/Framework/View/Test/Unit/File/FileListTest.php | 2 +- .../Magento/Framework/View/Test/Unit/FileSystemTest.php | 2 +- lib/internal/Magento/Framework/View/Test/Unit/FileTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Helper/JsTest.php | 2 +- .../Framework/View/Test/Unit/Helper/PathPatternTest.php | 2 +- .../Layout/Argument/Interpreter/Decorator/UpdaterTest.php | 2 +- .../Unit/Layout/Argument/Interpreter/HelperMethodTest.php | 2 +- .../Unit/Layout/Argument/Interpreter/NamedParamsTest.php | 2 +- .../Test/Unit/Layout/Argument/Interpreter/ObjectTest.php | 2 +- .../Test/Unit/Layout/Argument/Interpreter/OptionsTest.php | 2 +- .../Unit/Layout/Argument/Interpreter/PassthroughTest.php | 2 +- .../View/Test/Unit/Layout/Argument/Interpreter/UrlTest.php | 2 +- .../Framework/View/Test/Unit/Layout/Argument/ParserTest.php | 2 +- .../View/Test/Unit/Layout/Argument/_files/arguments.xml | 2 +- .../Framework/View/Test/Unit/Layout/BuilderFactoryTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Layout/BuilderTest.php | 2 +- .../Framework/View/Test/Unit/Layout/Data/StructureTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Layout/ElementTest.php | 2 +- .../View/Test/Unit/Layout/File/Collector/AggregateTest.php | 2 +- .../Framework/View/Test/Unit/Layout/Generator/BlockTest.php | 2 +- .../View/Test/Unit/Layout/Generator/ContainerTest.php | 2 +- .../View/Test/Unit/Layout/Generator/UiComponentTest.php | 2 +- .../Framework/View/Test/Unit/Layout/GeneratorPoolTest.php | 2 +- .../Framework/View/Test/Unit/Layout/Reader/BlockTest.php | 2 +- .../View/Test/Unit/Layout/Reader/ContainerTest.php | 2 +- .../Framework/View/Test/Unit/Layout/Reader/FactoryTest.php | 2 +- .../Framework/View/Test/Unit/Layout/Reader/MoveTest.php | 2 +- .../View/Test/Unit/Layout/Reader/UiComponentTest.php | 2 +- .../Framework/View/Test/Unit/Layout/ReaderPoolTest.php | 2 +- .../View/Test/Unit/Layout/ScheduledStructure/HelperTest.php | 2 +- .../View/Test/Unit/Layout/ScheduledStructureTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Layout/XsdTest.php | 2 +- .../Framework/View/Test/Unit/Layout/_files/action.xml | 4 ++-- .../Framework/View/Test/Unit/Layout/_files/arguments.xml | 2 +- .../Unit/Layout/_files/invalidLayoutArgumentsXmlArray.php | 2 +- .../Magento/Framework/View/Test/Unit/LayoutFactoryTest.php | 2 +- .../Magento/Framework/View/Test/Unit/LayoutTest.php | 2 +- .../Framework/View/Test/Unit/Model/Layout/MergeTest.php | 2 +- .../View/Test/Unit/Model/Layout/TranslatorTest.php | 2 +- .../View/Test/Unit/Model/Layout/Update/ValidatorTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Page/BuilderTest.php | 2 +- .../View/Test/Unit/Page/Config/Generator/BodyTest.php | 2 +- .../View/Test/Unit/Page/Config/Generator/HeadTest.php | 2 +- .../View/Test/Unit/Page/Config/Reader/HeadTest.php | 2 +- .../Framework/View/Test/Unit/Page/Config/RendererTest.php | 2 +- .../Framework/View/Test/Unit/Page/Config/StructureTest.php | 2 +- .../View/Test/Unit/Page/Config/_files/template_body.xml | 2 +- .../View/Test/Unit/Page/Config/_files/template_head.xml | 2 +- .../View/Test/Unit/Page/Config/_files/template_html.xml | 2 +- .../Magento/Framework/View/Test/Unit/Page/ConfigTest.php | 2 +- .../Framework/View/Test/Unit/Page/Layout/ReaderTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Page/TitleTest.php | 2 +- .../Framework/View/Test/Unit/PageLayout/ConfigTest.php | 2 +- .../View/Test/Unit/PageLayout/_files/layouts_one.xml | 2 +- .../View/Test/Unit/PageLayout/_files/layouts_two.xml | 2 +- .../Framework/View/Test/Unit/Render/RenderFactoryTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Result/LayoutTest.php | 2 +- .../Framework/View/Test/Unit/Result/PageFactoryTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Result/PageTest.php | 2 +- .../Framework/View/Test/Unit/Template/Html/MinifierTest.php | 6 +++--- .../Framework/View/Test/Unit/TemplateEngine/PhpTest.php | 2 +- .../View/Test/Unit/TemplateEngine/_files/simple.phtml | 2 +- .../Framework/View/Test/Unit/TemplateEngineFactoryTest.php | 2 +- .../Framework/View/Test/Unit/TemplateEnginePoolTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Url/ConfigTest.php | 2 +- .../Framework/View/Test/Unit/Url/CssResolverTest.php | 2 +- .../Magento/Framework/View/Test/Unit/Url/_files/result.css | 2 +- .../Framework/View/Test/Unit/Url/_files/resultImport.css | 2 +- .../View/Test/Unit/Url/_files/resultNormalized.css | 2 +- .../Magento/Framework/View/Test/Unit/Url/_files/source.css | 2 +- .../Framework/View/Test/Unit/Url/_files/sourceImport.css | 2 +- lib/internal/Magento/Framework/View/Url/Config.php | 2 +- lib/internal/Magento/Framework/View/Url/ConfigInterface.php | 2 +- lib/internal/Magento/Framework/View/Url/CssResolver.php | 2 +- .../Framework/View/Xsd/Media/TypeDataExtractorInterface.php | 2 +- .../Framework/View/Xsd/Media/TypeDataExtractorPool.php | 2 +- lib/internal/Magento/Framework/Webapi/Authorization.php | 2 +- .../Webapi/CustomAttributeTypeLocatorInterface.php | 2 +- lib/internal/Magento/Framework/Webapi/ErrorProcessor.php | 2 +- lib/internal/Magento/Framework/Webapi/Exception.php | 2 +- lib/internal/Magento/Framework/Webapi/Request.php | 2 +- lib/internal/Magento/Framework/Webapi/Response.php | 2 +- lib/internal/Magento/Framework/Webapi/Rest/Request.php | 2 +- .../Framework/Webapi/Rest/Request/Deserializer/Json.php | 2 +- .../Framework/Webapi/Rest/Request/Deserializer/Xml.php | 2 +- .../Framework/Webapi/Rest/Request/DeserializerFactory.php | 2 +- .../Framework/Webapi/Rest/Request/DeserializerInterface.php | 2 +- .../Webapi/Rest/Request/ParamOverriderInterface.php | 2 +- lib/internal/Magento/Framework/Webapi/Rest/Response.php | 2 +- .../Magento/Framework/Webapi/Rest/Response/FieldsFilter.php | 2 +- .../Framework/Webapi/Rest/Response/Renderer/Json.php | 2 +- .../Magento/Framework/Webapi/Rest/Response/Renderer/Xml.php | 2 +- .../Framework/Webapi/Rest/Response/RendererFactory.php | 2 +- .../Framework/Webapi/Rest/Response/RendererInterface.php | 2 +- .../Magento/Framework/Webapi/ServiceInputProcessor.php | 2 +- .../Magento/Framework/Webapi/ServiceOutputProcessor.php | 2 +- .../Framework/Webapi/ServicePayloadConverterInterface.php | 2 +- .../Magento/Framework/Webapi/Soap/ClientFactory.php | 2 +- .../Framework/Webapi/Test/Unit/ErrorProcessorTest.php | 2 +- .../Magento/Framework/Webapi/Test/Unit/RequestTest.php | 2 +- .../Magento/Framework/Webapi/Test/Unit/ResponseTest.php | 2 +- .../Webapi/Test/Unit/Rest/Request/Deserializer/JsonTest.php | 2 +- .../Webapi/Test/Unit/Rest/Request/Deserializer/XmlTest.php | 2 +- .../Test/Unit/Rest/Request/DeserializerFactoryTest.php | 2 +- .../Magento/Framework/Webapi/Test/Unit/Rest/RequestTest.php | 2 +- .../Webapi/Test/Unit/Rest/Response/FieldsFilterTest.php | 2 +- .../Webapi/Test/Unit/Rest/Response/Renderer/JsonTest.php | 2 +- .../Webapi/Test/Unit/Rest/Response/Renderer/XmlTest.php | 2 +- .../Webapi/Test/Unit/Rest/Response/RendererFactoryTest.php | 2 +- .../Framework/Webapi/Test/Unit/Rest/ResponseTest.php | 2 +- .../Test/Unit/ServiceInputProcessor/AssociativeArray.php | 2 +- .../Webapi/Test/Unit/ServiceInputProcessor/DataArray.php | 2 +- .../Webapi/Test/Unit/ServiceInputProcessor/Nested.php | 2 +- .../ServiceInputProcessor/ObjectWithCustomAttributes.php | 2 +- .../Webapi/Test/Unit/ServiceInputProcessor/Simple.php | 2 +- .../Webapi/Test/Unit/ServiceInputProcessor/SimpleArray.php | 2 +- .../Webapi/Test/Unit/ServiceInputProcessor/TestService.php | 2 +- .../Webapi/Test/Unit/ServiceInputProcessorTest.php | 2 +- lib/internal/Magento/Framework/Xml/Generator.php | 2 +- lib/internal/Magento/Framework/Xml/Parser.php | 2 +- lib/internal/Magento/Framework/Xml/Security.php | 2 +- lib/internal/Magento/Framework/Xml/Test/Unit/ParserTest.php | 2 +- .../Magento/Framework/Xml/Test/Unit/SecurityTest.php | 2 +- .../Magento/Framework/Xml/Test/Unit/_files/data.xml | 4 ++-- .../Framework/XsltProcessor/XsltProcessorFactory.php | 2 +- lib/internal/Magento/Framework/ZendEscaper.php | 2 +- lib/internal/Magento/Framework/registration.php | 2 +- lib/web/css/docs/actions-toolbar.html | 2 +- lib/web/css/docs/breadcrumbs.html | 2 +- lib/web/css/docs/buttons.html | 2 +- lib/web/css/docs/components.html | 2 +- lib/web/css/docs/docs.css | 4 ++-- lib/web/css/docs/docs.html | 2 +- lib/web/css/docs/dropdowns.html | 2 +- lib/web/css/docs/forms.html | 2 +- lib/web/css/docs/icons.html | 2 +- lib/web/css/docs/index.html | 2 +- lib/web/css/docs/layout.html | 2 +- lib/web/css/docs/lib.html | 2 +- lib/web/css/docs/loaders.html | 2 +- lib/web/css/docs/messages.html | 2 +- lib/web/css/docs/pages.html | 2 +- lib/web/css/docs/popups.html | 2 +- lib/web/css/docs/rating.html | 2 +- lib/web/css/docs/resets.html | 2 +- lib/web/css/docs/responsive.html | 2 +- lib/web/css/docs/sections.html | 2 +- lib/web/css/docs/source/_actions-toolbar.less | 2 +- lib/web/css/docs/source/_breadcrumbs.less | 2 +- lib/web/css/docs/source/_buttons.less | 2 +- lib/web/css/docs/source/_components.less | 2 +- lib/web/css/docs/source/_dropdowns.less | 2 +- lib/web/css/docs/source/_forms.less | 2 +- lib/web/css/docs/source/_icons.less | 2 +- lib/web/css/docs/source/_layout.less | 2 +- lib/web/css/docs/source/_lib.less | 2 +- lib/web/css/docs/source/_loaders.less | 2 +- lib/web/css/docs/source/_messages.less | 2 +- lib/web/css/docs/source/_pages.less | 2 +- lib/web/css/docs/source/_popups.less | 2 +- lib/web/css/docs/source/_rating.less | 2 +- lib/web/css/docs/source/_resets.less | 2 +- lib/web/css/docs/source/_responsive.less | 2 +- lib/web/css/docs/source/_sections.less | 2 +- lib/web/css/docs/source/_tables.less | 2 +- lib/web/css/docs/source/_tooltips.less | 2 +- lib/web/css/docs/source/_typography.less | 2 +- lib/web/css/docs/source/_utilities.less | 2 +- lib/web/css/docs/source/_variables.less | 2 +- lib/web/css/docs/source/docs.less | 2 +- lib/web/css/docs/source/js/dropdown.js | 4 ++-- lib/web/css/docs/tables.html | 2 +- lib/web/css/docs/tooltips.html | 2 +- lib/web/css/docs/typography.html | 2 +- lib/web/css/docs/utilities.html | 2 +- lib/web/css/docs/variables.html | 2 +- lib/web/css/source/_email-variables.less | 4 ++-- lib/web/css/source/_extend.less | 2 +- lib/web/css/source/_theme.less | 2 +- lib/web/css/source/_variables.less | 2 +- lib/web/css/source/_widgets.less | 2 +- lib/web/css/source/components/_modals.less | 2 +- lib/web/css/source/lib/_actions-toolbar.less | 2 +- lib/web/css/source/lib/_breadcrumbs.less | 2 +- lib/web/css/source/lib/_buttons.less | 2 +- lib/web/css/source/lib/_dropdowns.less | 2 +- lib/web/css/source/lib/_forms.less | 2 +- lib/web/css/source/lib/_grids.less | 2 +- lib/web/css/source/lib/_icons.less | 2 +- lib/web/css/source/lib/_layout.less | 2 +- lib/web/css/source/lib/_lib.less | 2 +- lib/web/css/source/lib/_loaders.less | 2 +- lib/web/css/source/lib/_messages.less | 2 +- lib/web/css/source/lib/_navigation.less | 2 +- lib/web/css/source/lib/_pages.less | 2 +- lib/web/css/source/lib/_popups.less | 2 +- lib/web/css/source/lib/_rating.less | 2 +- lib/web/css/source/lib/_resets.less | 2 +- lib/web/css/source/lib/_responsive.less | 2 +- lib/web/css/source/lib/_sections.less | 2 +- lib/web/css/source/lib/_tables.less | 2 +- lib/web/css/source/lib/_tooltips.less | 2 +- lib/web/css/source/lib/_typography.less | 2 +- lib/web/css/source/lib/_utilities.less | 2 +- lib/web/css/source/lib/_variables.less | 2 +- lib/web/css/source/lib/variables/_actions-toolbar.less | 2 +- lib/web/css/source/lib/variables/_breadcrumbs.less | 2 +- lib/web/css/source/lib/variables/_buttons.less | 2 +- lib/web/css/source/lib/variables/_colors.less | 2 +- lib/web/css/source/lib/variables/_components.less | 2 +- lib/web/css/source/lib/variables/_dropdowns.less | 2 +- lib/web/css/source/lib/variables/_email.less | 2 +- lib/web/css/source/lib/variables/_forms.less | 2 +- lib/web/css/source/lib/variables/_icons.less | 2 +- lib/web/css/source/lib/variables/_layout.less | 2 +- lib/web/css/source/lib/variables/_loaders.less | 2 +- lib/web/css/source/lib/variables/_messages.less | 2 +- lib/web/css/source/lib/variables/_navigation.less | 2 +- lib/web/css/source/lib/variables/_pages.less | 2 +- lib/web/css/source/lib/variables/_popups.less | 2 +- lib/web/css/source/lib/variables/_rating.less | 2 +- lib/web/css/source/lib/variables/_responsive.less | 2 +- lib/web/css/source/lib/variables/_sections.less | 2 +- lib/web/css/source/lib/variables/_structure.less | 2 +- lib/web/css/source/lib/variables/_tables.less | 2 +- lib/web/css/source/lib/variables/_tooltips.less | 2 +- lib/web/css/source/lib/variables/_typography.less | 2 +- lib/web/extjs/defaults.js | 2 +- lib/web/less/config.less.js | 2 +- lib/web/mage/accordion.js | 2 +- lib/web/mage/adminhtml/accordion.js | 2 +- lib/web/mage/adminhtml/backup.js | 4 ++-- lib/web/mage/adminhtml/browser.js | 2 +- lib/web/mage/adminhtml/events.js | 4 ++-- lib/web/mage/adminhtml/form.js | 4 ++-- lib/web/mage/adminhtml/globals.js | 2 +- lib/web/mage/adminhtml/grid.js | 4 ++-- lib/web/mage/adminhtml/tools.js | 2 +- lib/web/mage/adminhtml/varienLoader.js | 2 +- lib/web/mage/adminhtml/wysiwyg/tiny_mce/html5-schema.js | 2 +- .../tiny_mce/plugins/magentovariable/editor_plugin.js | 2 +- .../wysiwyg/tiny_mce/plugins/magentowidget/editor_plugin.js | 2 +- lib/web/mage/adminhtml/wysiwyg/tiny_mce/setup.js | 2 +- .../tiny_mce/themes/advanced/skins/default/content.css | 2 +- .../tiny_mce/themes/advanced/skins/default/dialog.css | 2 +- lib/web/mage/adminhtml/wysiwyg/widget.js | 4 ++-- lib/web/mage/app/config.js | 2 +- lib/web/mage/apply/main.js | 2 +- lib/web/mage/apply/scripts.js | 2 +- lib/web/mage/backend/action-link.js | 2 +- lib/web/mage/backend/bootstrap.js | 2 +- lib/web/mage/backend/button.js | 2 +- lib/web/mage/backend/editablemultiselect.js | 4 ++-- lib/web/mage/backend/floating-header.js | 2 +- lib/web/mage/backend/form.js | 2 +- lib/web/mage/backend/jstree-mixin.js | 2 +- lib/web/mage/backend/menu.js | 4 ++-- lib/web/mage/backend/notification.js | 2 +- lib/web/mage/backend/suggest.js | 2 +- lib/web/mage/backend/tabs.js | 2 +- lib/web/mage/backend/tree-suggest.js | 2 +- lib/web/mage/backend/validation.js | 2 +- lib/web/mage/bootstrap.js | 2 +- lib/web/mage/calendar.css | 2 +- lib/web/mage/calendar.js | 2 +- lib/web/mage/captcha.js | 2 +- lib/web/mage/collapsible.js | 2 +- lib/web/mage/common.js | 2 +- lib/web/mage/cookies.js | 2 +- lib/web/mage/dataPost.js | 2 +- lib/web/mage/decorate.js | 2 +- lib/web/mage/deletable-item.js | 4 ++-- lib/web/mage/dialog.js | 4 ++-- lib/web/mage/dropdown.js | 2 +- lib/web/mage/dropdown_old.js | 2 +- lib/web/mage/dropdowns.js | 4 ++-- lib/web/mage/edit-trigger.js | 2 +- lib/web/mage/fieldset-controls.js | 2 +- lib/web/mage/gallery/gallery.html | 2 +- lib/web/mage/gallery/gallery.js | 2 +- lib/web/mage/gallery/gallery.less | 2 +- lib/web/mage/gallery/module/_extends.less | 2 +- lib/web/mage/gallery/module/_focus.less | 2 +- lib/web/mage/gallery/module/_fullscreen.less | 4 ++-- lib/web/mage/gallery/module/_mixins.less | 4 ++-- lib/web/mage/gallery/module/_variables.less | 2 +- lib/web/mage/ie-class-fixer.js | 2 +- lib/web/mage/item-table.js | 2 +- lib/web/mage/layout.js | 2 +- lib/web/mage/list.js | 4 ++-- lib/web/mage/loader.js | 2 +- lib/web/mage/loader_old.js | 4 ++-- lib/web/mage/mage.js | 2 +- lib/web/mage/menu.js | 2 +- lib/web/mage/popup-window.js | 2 +- lib/web/mage/redirect-url.js | 4 ++-- lib/web/mage/requirejs/mixins.js | 2 +- lib/web/mage/requirejs/resolver.js | 2 +- lib/web/mage/requirejs/static.js | 2 +- lib/web/mage/requirejs/text.js | 2 +- lib/web/mage/smart-keyboard-handler.js | 2 +- lib/web/mage/sticky.js | 2 +- lib/web/mage/storage.js | 2 +- lib/web/mage/tabs.js | 2 +- lib/web/mage/template.js | 2 +- lib/web/mage/terms.js | 2 +- lib/web/mage/toggle.js | 2 +- lib/web/mage/tooltip.js | 2 +- lib/web/mage/translate-inline-vde.css | 2 +- lib/web/mage/translate-inline-vde.js | 2 +- lib/web/mage/translate-inline.css | 2 +- lib/web/mage/translate-inline.js | 2 +- lib/web/mage/translate.js | 4 ++-- lib/web/mage/url.js | 2 +- lib/web/mage/utils/arrays.js | 2 +- lib/web/mage/utils/compare.js | 2 +- lib/web/mage/utils/main.js | 2 +- lib/web/mage/utils/misc.js | 2 +- lib/web/mage/utils/objects.js | 2 +- lib/web/mage/utils/strings.js | 2 +- lib/web/mage/utils/template.js | 2 +- lib/web/mage/utils/wrapper.js | 2 +- lib/web/mage/validation.js | 2 +- lib/web/mage/validation/url.js | 2 +- lib/web/mage/validation/validation.js | 4 ++-- lib/web/mage/view/composite.js | 2 +- lib/web/mage/webapi.js | 2 +- lib/web/mage/zoom.js | 2 +- lib/web/magnifier/magnifier.js | 2 +- lib/web/magnifier/magnify.js | 2 +- lib/web/varien/form.js | 2 +- lib/web/varien/js.js | 2 +- php.ini.sample | 2 +- phpserver/router.php | 2 +- pub/cron.php | 2 +- pub/errors/404.php | 2 +- pub/errors/503.php | 2 +- pub/errors/default/404.phtml | 2 +- pub/errors/default/503.phtml | 2 +- pub/errors/default/css/styles.css | 2 +- pub/errors/default/nocache.phtml | 2 +- pub/errors/default/page.phtml | 2 +- pub/errors/default/report.phtml | 2 +- pub/errors/design.xml | 2 +- pub/errors/local.xml.sample | 2 +- pub/errors/noCache.php | 2 +- pub/errors/processor.php | 2 +- pub/errors/processorFactory.php | 2 +- pub/errors/report.php | 2 +- pub/get.php | 2 +- pub/index.php | 2 +- pub/static.php | 2 +- setup/config/application.config.php | 2 +- setup/config/autoload/global.php | 2 +- setup/config/di.config.php | 2 +- setup/config/languages.config.php | 2 +- setup/config/marketplace.config.php | 2 +- setup/config/module.config.php | 2 +- setup/config/router.config.php | 2 +- setup/config/states.disable.config.php | 2 +- setup/config/states.enable.config.php | 2 +- setup/config/states.extensionManager.config.php | 2 +- setup/config/states.home.config.php | 2 +- setup/config/states.install.config.php | 2 +- setup/config/states.uninstall.config.php | 2 +- setup/config/states.update.config.php | 2 +- setup/config/states.upgrade.config.php | 2 +- setup/index.php | 2 +- setup/performance-toolkit/benchmark.jmx | 2 +- setup/performance-toolkit/config/attributeSets.xml | 4 ++-- setup/performance-toolkit/config/searchConfig.xml | 2 +- setup/performance-toolkit/config/searchTerms.xml | 4 ++-- setup/performance-toolkit/profiles/ce/extra_large.xml | 2 +- setup/performance-toolkit/profiles/ce/large.xml | 2 +- setup/performance-toolkit/profiles/ce/medium.xml | 2 +- setup/performance-toolkit/profiles/ce/small.xml | 2 +- setup/pub/magento/setup/add-database.js | 2 +- setup/pub/magento/setup/app.js | 2 +- setup/pub/magento/setup/auth-dialog.js | 2 +- setup/pub/magento/setup/complete-backup.js | 2 +- setup/pub/magento/setup/create-admin-account.js | 2 +- setup/pub/magento/setup/create-backup.js | 2 +- setup/pub/magento/setup/customize-your-store.js | 2 +- setup/pub/magento/setup/data-option.js | 4 ++-- setup/pub/magento/setup/extension-grid.js | 2 +- setup/pub/magento/setup/home.js | 2 +- setup/pub/magento/setup/install-extension-grid.js | 2 +- setup/pub/magento/setup/install.js | 2 +- setup/pub/magento/setup/landing.js | 2 +- setup/pub/magento/setup/main.js | 2 +- setup/pub/magento/setup/marketplace-credentials.js | 2 +- setup/pub/magento/setup/module-grid.js | 2 +- setup/pub/magento/setup/readiness-check.js | 2 +- setup/pub/magento/setup/remove-dialog.js | 2 +- setup/pub/magento/setup/select-version.js | 2 +- setup/pub/magento/setup/start-updater.js | 2 +- setup/pub/magento/setup/success.js | 2 +- setup/pub/magento/setup/system-config.js | 2 +- setup/pub/magento/setup/update-extension-grid.js | 2 +- setup/pub/magento/setup/updater-success.js | 2 +- setup/pub/magento/setup/web-configuration.js | 2 +- setup/pub/styles/setup.css | 4 ++-- .../Setup/Console/Command/AbstractDependenciesCommand.php | 2 +- .../Setup/Console/Command/AbstractMaintenanceCommand.php | 2 +- .../Magento/Setup/Console/Command/AbstractModuleCommand.php | 2 +- .../Setup/Console/Command/AbstractModuleManageCommand.php | 2 +- .../Magento/Setup/Console/Command/AbstractSetupCommand.php | 2 +- .../Setup/Console/Command/AdminUserCreateCommand.php | 2 +- setup/src/Magento/Setup/Console/Command/BackupCommand.php | 2 +- .../src/Magento/Setup/Console/Command/ConfigSetCommand.php | 2 +- setup/src/Magento/Setup/Console/Command/CronRunCommand.php | 2 +- .../Magento/Setup/Console/Command/DbDataUpgradeCommand.php | 2 +- .../Setup/Console/Command/DbSchemaUpgradeCommand.php | 2 +- setup/src/Magento/Setup/Console/Command/DbStatusCommand.php | 2 +- .../Console/Command/DependenciesShowFrameworkCommand.php | 2 +- .../Command/DependenciesShowModulesCircularCommand.php | 2 +- .../Console/Command/DependenciesShowModulesCommand.php | 2 +- .../Setup/Console/Command/DeployStaticContentCommand.php | 2 +- .../src/Magento/Setup/Console/Command/DiCompileCommand.php | 2 +- .../Setup/Console/Command/GenerateFixturesCommand.php | 2 +- .../Setup/Console/Command/I18nCollectPhrasesCommand.php | 2 +- setup/src/Magento/Setup/Console/Command/I18nPackCommand.php | 2 +- .../Magento/Setup/Console/Command/InfoAdminUriCommand.php | 2 +- .../Setup/Console/Command/InfoBackupsListCommand.php | 2 +- .../Setup/Console/Command/InfoCurrencyListCommand.php | 2 +- .../Setup/Console/Command/InfoLanguageListCommand.php | 2 +- .../Setup/Console/Command/InfoTimezoneListCommand.php | 2 +- setup/src/Magento/Setup/Console/Command/InstallCommand.php | 2 +- .../Console/Command/InstallStoreConfigurationCommand.php | 2 +- .../Setup/Console/Command/MaintenanceAllowIpsCommand.php | 2 +- .../Setup/Console/Command/MaintenanceDisableCommand.php | 2 +- .../Setup/Console/Command/MaintenanceEnableCommand.php | 2 +- .../Setup/Console/Command/MaintenanceStatusCommand.php | 2 +- .../Magento/Setup/Console/Command/ModuleDisableCommand.php | 2 +- .../Magento/Setup/Console/Command/ModuleEnableCommand.php | 2 +- .../Magento/Setup/Console/Command/ModuleStatusCommand.php | 2 +- .../Setup/Console/Command/ModuleUninstallCommand.php | 2 +- setup/src/Magento/Setup/Console/Command/RollbackCommand.php | 2 +- .../src/Magento/Setup/Console/Command/UninstallCommand.php | 2 +- setup/src/Magento/Setup/Console/Command/UpgradeCommand.php | 2 +- setup/src/Magento/Setup/Console/CommandList.php | 2 +- setup/src/Magento/Setup/Console/CompilerPreparation.php | 2 +- setup/src/Magento/Setup/Controller/AddDatabase.php | 2 +- setup/src/Magento/Setup/Controller/BackupActionItems.php | 2 +- setup/src/Magento/Setup/Controller/CompleteBackup.php | 2 +- setup/src/Magento/Setup/Controller/CreateAdminAccount.php | 2 +- setup/src/Magento/Setup/Controller/CreateBackup.php | 2 +- setup/src/Magento/Setup/Controller/CustomizeYourStore.php | 2 +- setup/src/Magento/Setup/Controller/DataOption.php | 2 +- setup/src/Magento/Setup/Controller/DatabaseCheck.php | 2 +- setup/src/Magento/Setup/Controller/DependencyCheck.php | 2 +- setup/src/Magento/Setup/Controller/Environment.php | 2 +- setup/src/Magento/Setup/Controller/ExtensionGrid.php | 2 +- setup/src/Magento/Setup/Controller/Home.php | 2 +- setup/src/Magento/Setup/Controller/Index.php | 2 +- setup/src/Magento/Setup/Controller/Install.php | 2 +- setup/src/Magento/Setup/Controller/InstallExtensionGrid.php | 2 +- setup/src/Magento/Setup/Controller/LandingInstaller.php | 2 +- setup/src/Magento/Setup/Controller/LandingUpdater.php | 2 +- setup/src/Magento/Setup/Controller/License.php | 2 +- setup/src/Magento/Setup/Controller/Maintenance.php | 2 +- setup/src/Magento/Setup/Controller/Marketplace.php | 2 +- .../src/Magento/Setup/Controller/MarketplaceCredentials.php | 2 +- setup/src/Magento/Setup/Controller/ModuleGrid.php | 2 +- setup/src/Magento/Setup/Controller/Modules.php | 2 +- setup/src/Magento/Setup/Controller/Navigation.php | 2 +- setup/src/Magento/Setup/Controller/OtherComponentsGrid.php | 2 +- .../Magento/Setup/Controller/ReadinessCheckInstaller.php | 2 +- .../src/Magento/Setup/Controller/ReadinessCheckUpdater.php | 2 +- .../src/Magento/Setup/Controller/ResponseTypeInterface.php | 2 +- setup/src/Magento/Setup/Controller/SelectVersion.php | 2 +- setup/src/Magento/Setup/Controller/Session.php | 2 +- setup/src/Magento/Setup/Controller/StartUpdater.php | 2 +- setup/src/Magento/Setup/Controller/Success.php | 2 +- setup/src/Magento/Setup/Controller/SystemConfig.php | 2 +- setup/src/Magento/Setup/Controller/UpdateExtensionGrid.php | 2 +- setup/src/Magento/Setup/Controller/UpdaterSuccess.php | 2 +- setup/src/Magento/Setup/Controller/UrlCheck.php | 2 +- .../Magento/Setup/Controller/ValidateAdminCredentials.php | 2 +- setup/src/Magento/Setup/Controller/WebConfiguration.php | 2 +- setup/src/Magento/Setup/Exception.php | 2 +- setup/src/Magento/Setup/Fixtures/AttributeSetsFixture.php | 2 +- setup/src/Magento/Setup/Fixtures/BundleProductsFixture.php | 2 +- setup/src/Magento/Setup/Fixtures/CartPriceRulesFixture.php | 2 +- .../src/Magento/Setup/Fixtures/CatalogPriceRulesFixture.php | 2 +- setup/src/Magento/Setup/Fixtures/CategoriesFixture.php | 2 +- setup/src/Magento/Setup/Fixtures/ConfigsApplyFixture.php | 2 +- .../Magento/Setup/Fixtures/ConfigurableProductsFixture.php | 2 +- setup/src/Magento/Setup/Fixtures/CustomersFixture.php | 2 +- setup/src/Magento/Setup/Fixtures/EavVariationsFixture.php | 2 +- setup/src/Magento/Setup/Fixtures/Fixture.php | 2 +- setup/src/Magento/Setup/Fixtures/FixtureModel.php | 2 +- .../Magento/Setup/Fixtures/IndexersStatesApplyFixture.php | 2 +- setup/src/Magento/Setup/Fixtures/OrdersFixture.php | 2 +- setup/src/Magento/Setup/Fixtures/SimpleProductsFixture.php | 2 +- setup/src/Magento/Setup/Fixtures/StoresFixture.php | 2 +- setup/src/Magento/Setup/Fixtures/TaxRatesFixture.php | 2 +- setup/src/Magento/Setup/Model/AdminAccount.php | 2 +- setup/src/Magento/Setup/Model/AdminAccountFactory.php | 2 +- setup/src/Magento/Setup/Model/BasePackageInfo.php | 2 +- setup/src/Magento/Setup/Model/Bootstrap.php | 2 +- setup/src/Magento/Setup/Model/Complex/Generator.php | 2 +- setup/src/Magento/Setup/Model/Complex/Pattern.php | 2 +- setup/src/Magento/Setup/Model/ConfigGenerator.php | 2 +- setup/src/Magento/Setup/Model/ConfigModel.php | 2 +- setup/src/Magento/Setup/Model/ConfigOptionsList.php | 2 +- .../src/Magento/Setup/Model/ConfigOptionsListCollector.php | 2 +- setup/src/Magento/Setup/Model/Cron/AbstractJob.php | 2 +- .../src/Magento/Setup/Model/Cron/Helper/ModuleUninstall.php | 2 +- .../src/Magento/Setup/Model/Cron/Helper/ThemeUninstall.php | 2 +- .../src/Magento/Setup/Model/Cron/JobComponentUninstall.php | 2 +- setup/src/Magento/Setup/Model/Cron/JobDbRollback.php | 2 +- setup/src/Magento/Setup/Model/Cron/JobFactory.php | 2 +- setup/src/Magento/Setup/Model/Cron/JobModule.php | 2 +- setup/src/Magento/Setup/Model/Cron/JobSetCache.php | 2 +- .../src/Magento/Setup/Model/Cron/JobSetMaintenanceMode.php | 2 +- setup/src/Magento/Setup/Model/Cron/JobStaticRegenerate.php | 2 +- setup/src/Magento/Setup/Model/Cron/JobUpgrade.php | 2 +- setup/src/Magento/Setup/Model/Cron/MultipleStreamOutput.php | 2 +- setup/src/Magento/Setup/Model/Cron/Queue.php | 2 +- setup/src/Magento/Setup/Model/Cron/Queue/Reader.php | 2 +- setup/src/Magento/Setup/Model/Cron/Queue/Writer.php | 2 +- setup/src/Magento/Setup/Model/Cron/ReadinessCheck.php | 2 +- setup/src/Magento/Setup/Model/Cron/SetupLoggerFactory.php | 2 +- setup/src/Magento/Setup/Model/Cron/SetupStreamHandler.php | 2 +- setup/src/Magento/Setup/Model/Cron/Status.php | 2 +- setup/src/Magento/Setup/Model/CronScriptReadinessCheck.php | 2 +- setup/src/Magento/Setup/Model/DataGenerator.php | 2 +- setup/src/Magento/Setup/Model/DateTime/DateTimeProvider.php | 2 +- setup/src/Magento/Setup/Model/DateTime/TimeZoneProvider.php | 2 +- setup/src/Magento/Setup/Model/DependencyReadinessCheck.php | 2 +- setup/src/Magento/Setup/Model/Generator.php | 2 +- setup/src/Magento/Setup/Model/Grid/Extension.php | 2 +- setup/src/Magento/Setup/Model/Grid/Module.php | 2 +- setup/src/Magento/Setup/Model/Grid/TypeMapper.php | 2 +- setup/src/Magento/Setup/Model/Installer.php | 2 +- setup/src/Magento/Setup/Model/Installer/Progress.php | 2 +- setup/src/Magento/Setup/Model/Installer/ProgressFactory.php | 2 +- setup/src/Magento/Setup/Model/InstallerFactory.php | 2 +- setup/src/Magento/Setup/Model/License.php | 2 +- setup/src/Magento/Setup/Model/ModuleContext.php | 2 +- setup/src/Magento/Setup/Model/ModuleRegistryUninstaller.php | 2 +- setup/src/Magento/Setup/Model/ModuleStatus.php | 2 +- setup/src/Magento/Setup/Model/ModuleStatusFactory.php | 2 +- setup/src/Magento/Setup/Model/ModuleUninstaller.php | 2 +- setup/src/Magento/Setup/Model/Navigation.php | 2 +- setup/src/Magento/Setup/Model/ObjectManagerProvider.php | 2 +- setup/src/Magento/Setup/Model/PackagesAuth.php | 2 +- setup/src/Magento/Setup/Model/PackagesData.php | 2 +- setup/src/Magento/Setup/Model/PayloadValidator.php | 2 +- setup/src/Magento/Setup/Model/PhpInformation.php | 2 +- setup/src/Magento/Setup/Model/PhpReadinessCheck.php | 2 +- setup/src/Magento/Setup/Model/RequestDataConverter.php | 2 +- .../Magento/Setup/Model/StoreConfigurationDataMapper.php | 2 +- setup/src/Magento/Setup/Model/SystemPackage.php | 2 +- .../Magento/Setup/Model/ThemeDependencyCheckerFactory.php | 2 +- setup/src/Magento/Setup/Model/UninstallCollector.php | 2 +- setup/src/Magento/Setup/Model/UninstallDependencyCheck.php | 2 +- setup/src/Magento/Setup/Model/Updater.php | 2 +- setup/src/Magento/Setup/Model/UpdaterTaskCreator.php | 2 +- setup/src/Magento/Setup/Model/WebLogger.php | 2 +- setup/src/Magento/Setup/Module.php | 2 +- setup/src/Magento/Setup/Module/ConnectionFactory.php | 2 +- setup/src/Magento/Setup/Module/DataSetup.php | 2 +- setup/src/Magento/Setup/Module/DataSetupFactory.php | 2 +- setup/src/Magento/Setup/Module/Dependency/Circular.php | 2 +- setup/src/Magento/Setup/Module/Dependency/Parser/Code.php | 2 +- .../Setup/Module/Dependency/Parser/Composer/Json.php | 2 +- .../Magento/Setup/Module/Dependency/Parser/Config/Xml.php | 2 +- .../src/Magento/Setup/Module/Dependency/ParserInterface.php | 2 +- .../Module/Dependency/Report/Builder/AbstractBuilder.php | 2 +- .../Setup/Module/Dependency/Report/BuilderInterface.php | 2 +- .../Setup/Module/Dependency/Report/Circular/Builder.php | 2 +- .../Setup/Module/Dependency/Report/Circular/Data/Chain.php | 2 +- .../Setup/Module/Dependency/Report/Circular/Data/Config.php | 2 +- .../Setup/Module/Dependency/Report/Circular/Data/Module.php | 2 +- .../Setup/Module/Dependency/Report/Circular/Writer.php | 2 +- .../Module/Dependency/Report/Data/Config/AbstractConfig.php | 2 +- .../Setup/Module/Dependency/Report/Data/ConfigInterface.php | 2 +- .../Setup/Module/Dependency/Report/Dependency/Builder.php | 2 +- .../Module/Dependency/Report/Dependency/Data/Config.php | 2 +- .../Module/Dependency/Report/Dependency/Data/Dependency.php | 2 +- .../Module/Dependency/Report/Dependency/Data/Module.php | 2 +- .../Setup/Module/Dependency/Report/Dependency/Writer.php | 2 +- .../Setup/Module/Dependency/Report/Framework/Builder.php | 2 +- .../Module/Dependency/Report/Framework/Data/Config.php | 2 +- .../Module/Dependency/Report/Framework/Data/Dependency.php | 2 +- .../Module/Dependency/Report/Framework/Data/Module.php | 2 +- .../Setup/Module/Dependency/Report/Framework/Writer.php | 2 +- .../Module/Dependency/Report/Writer/Csv/AbstractWriter.php | 2 +- .../Setup/Module/Dependency/Report/WriterInterface.php | 2 +- .../src/Magento/Setup/Module/Dependency/ServiceLocator.php | 2 +- setup/src/Magento/Setup/Module/Di/App/Task/Manager.php | 2 +- .../Di/App/Task/Operation/ApplicationCodeGenerator.php | 2 +- .../src/Magento/Setup/Module/Di/App/Task/Operation/Area.php | 2 +- .../Setup/Module/Di/App/Task/Operation/Interception.php | 2 +- .../Module/Di/App/Task/Operation/InterceptionCache.php | 2 +- .../Setup/Module/Di/App/Task/Operation/ProxyGenerator.php | 2 +- .../Module/Di/App/Task/Operation/RepositoryGenerator.php | 2 +- .../App/Task/Operation/ServiceDataAttributesGenerator.php | 2 +- .../Magento/Setup/Module/Di/App/Task/OperationException.php | 2 +- .../Magento/Setup/Module/Di/App/Task/OperationFactory.php | 2 +- .../Magento/Setup/Module/Di/App/Task/OperationInterface.php | 2 +- setup/src/Magento/Setup/Module/Di/Code/Generator.php | 2 +- .../Di/Code/Generator/InterceptionConfigurationBuilder.php | 2 +- .../Magento/Setup/Module/Di/Code/Generator/Interceptor.php | 2 +- .../Magento/Setup/Module/Di/Code/Generator/PluginList.php | 2 +- setup/src/Magento/Setup/Module/Di/Code/GeneratorFactory.php | 2 +- .../Setup/Module/Di/Code/Reader/ClassReaderDecorator.php | 2 +- .../Magento/Setup/Module/Di/Code/Reader/ClassesScanner.php | 2 +- .../Setup/Module/Di/Code/Reader/ClassesScannerInterface.php | 2 +- .../Magento/Setup/Module/Di/Code/Reader/Decorator/Area.php | 2 +- .../Setup/Module/Di/Code/Reader/Decorator/Directory.php | 2 +- .../Setup/Module/Di/Code/Reader/Decorator/Interceptions.php | 2 +- .../src/Magento/Setup/Module/Di/Code/Reader/FileScanner.php | 4 ++-- setup/src/Magento/Setup/Module/Di/Code/Reader/Type.php | 2 +- .../Magento/Setup/Module/Di/Code/Scanner/ArrayScanner.php | 2 +- .../Setup/Module/Di/Code/Scanner/CompositeScanner.php | 2 +- .../Setup/Module/Di/Code/Scanner/ConfigurationScanner.php | 2 +- .../Setup/Module/Di/Code/Scanner/DirectoryScanner.php | 2 +- .../Di/Code/Scanner/InheritanceInterceptorScanner.php | 2 +- .../Module/Di/Code/Scanner/InterceptedInstancesScanner.php | 2 +- .../src/Magento/Setup/Module/Di/Code/Scanner/PhpScanner.php | 2 +- .../Magento/Setup/Module/Di/Code/Scanner/PluginScanner.php | 2 +- .../Setup/Module/Di/Code/Scanner/RepositoryScanner.php | 2 +- .../Setup/Module/Di/Code/Scanner/ScannerInterface.php | 2 +- .../Module/Di/Code/Scanner/ServiceDataAttributesScanner.php | 2 +- .../Setup/Module/Di/Code/Scanner/XmlInterceptorScanner.php | 2 +- .../src/Magento/Setup/Module/Di/Code/Scanner/XmlScanner.php | 2 +- .../Magento/Setup/Module/Di/Compiler/ArgumentsResolver.php | 2 +- .../Setup/Module/Di/Compiler/ArgumentsResolverFactory.php | 2 +- .../Di/Compiler/Config/Chain/ArgumentsSerialization.php | 2 +- .../Setup/Module/Di/Compiler/Config/Chain/BackslashTrim.php | 2 +- .../Di/Compiler/Config/Chain/InterceptorSubstitution.php | 2 +- .../Di/Compiler/Config/Chain/PreferencesResolving.php | 2 +- .../Setup/Module/Di/Compiler/Config/ModificationChain.php | 2 +- .../Module/Di/Compiler/Config/ModificationInterface.php | 2 +- .../src/Magento/Setup/Module/Di/Compiler/Config/Reader.php | 2 +- .../Setup/Module/Di/Compiler/Config/Writer/Filesystem.php | 2 +- .../Setup/Module/Di/Compiler/Config/WriterInterface.php | 2 +- .../Setup/Module/Di/Compiler/ConstructorArgument.php | 2 +- setup/src/Magento/Setup/Module/Di/Compiler/Log/Log.php | 2 +- .../Magento/Setup/Module/Di/Compiler/Log/Writer/Console.php | 2 +- setup/src/Magento/Setup/Module/Di/Definition/Collection.php | 2 +- setup/src/Magento/Setup/Module/I18n/Context.php | 2 +- setup/src/Magento/Setup/Module/I18n/Dictionary.php | 2 +- .../src/Magento/Setup/Module/I18n/Dictionary/Generator.php | 2 +- .../Module/I18n/Dictionary/Loader/File/AbstractFile.php | 2 +- .../Setup/Module/I18n/Dictionary/Loader/File/Csv.php | 2 +- .../Setup/Module/I18n/Dictionary/Loader/FileInterface.php | 2 +- .../Setup/Module/I18n/Dictionary/Options/Resolver.php | 2 +- .../Module/I18n/Dictionary/Options/ResolverFactory.php | 2 +- .../Module/I18n/Dictionary/Options/ResolverInterface.php | 2 +- setup/src/Magento/Setup/Module/I18n/Dictionary/Phrase.php | 2 +- .../src/Magento/Setup/Module/I18n/Dictionary/Writer/Csv.php | 2 +- .../Setup/Module/I18n/Dictionary/Writer/Csv/Stdo.php | 2 +- .../Setup/Module/I18n/Dictionary/WriterInterface.php | 2 +- setup/src/Magento/Setup/Module/I18n/Factory.php | 2 +- setup/src/Magento/Setup/Module/I18n/FilesCollector.php | 2 +- setup/src/Magento/Setup/Module/I18n/Locale.php | 2 +- setup/src/Magento/Setup/Module/I18n/Pack/Generator.php | 2 +- .../Setup/Module/I18n/Pack/Writer/File/AbstractFile.php | 2 +- .../src/Magento/Setup/Module/I18n/Pack/Writer/File/Csv.php | 2 +- .../src/Magento/Setup/Module/I18n/Pack/WriterInterface.php | 2 +- .../src/Magento/Setup/Module/I18n/Parser/AbstractParser.php | 2 +- .../Setup/Module/I18n/Parser/Adapter/AbstractAdapter.php | 2 +- setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Html.php | 2 +- setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Js.php | 2 +- setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php.php | 2 +- .../Setup/Module/I18n/Parser/Adapter/Php/Tokenizer.php | 2 +- .../I18n/Parser/Adapter/Php/Tokenizer/PhraseCollector.php | 2 +- .../Module/I18n/Parser/Adapter/Php/Tokenizer/Token.php | 2 +- .../Adapter/Php/Tokenizer/Translate/MethodCollector.php | 2 +- setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Xml.php | 2 +- .../Magento/Setup/Module/I18n/Parser/AdapterInterface.php | 2 +- setup/src/Magento/Setup/Module/I18n/Parser/Contextual.php | 2 +- setup/src/Magento/Setup/Module/I18n/Parser/Parser.php | 2 +- setup/src/Magento/Setup/Module/I18n/ParserInterface.php | 2 +- setup/src/Magento/Setup/Module/I18n/ServiceLocator.php | 2 +- setup/src/Magento/Setup/Module/ResourceFactory.php | 2 +- setup/src/Magento/Setup/Module/Setup.php | 2 +- setup/src/Magento/Setup/Module/Setup/ResourceConfig.php | 2 +- setup/src/Magento/Setup/Module/Setup/SetupCache.php | 2 +- setup/src/Magento/Setup/Module/SetupFactory.php | 2 +- setup/src/Magento/Setup/Mvc/Bootstrap/InitParamListener.php | 2 +- .../Magento/Setup/Mvc/View/Http/InjectTemplateListener.php | 2 +- .../Unit/Console/Command/AdminUserCreateCommandTest.php | 2 +- .../Setup/Test/Unit/Console/Command/BackupCommandTest.php | 2 +- .../Test/Unit/Console/Command/ConfigSetCommandTest.php | 2 +- .../Setup/Test/Unit/Console/Command/CronRunCommandTest.php | 2 +- .../Test/Unit/Console/Command/DbDataUpgradeCommandTest.php | 2 +- .../Unit/Console/Command/DbSchemaUpgradeCommandTest.php | 2 +- .../Setup/Test/Unit/Console/Command/DbStatusCommandTest.php | 2 +- .../Unit/Console/Command/DeployStaticContentCommandTest.php | 2 +- .../Test/Unit/Console/Command/DiCompileCommandTest.php | 2 +- .../Setup/Test/Unit/Console/Command/FunctionExistMock.php | 2 +- .../Unit/Console/Command/GenerateFixturesCommandTest.php | 2 +- .../Test/Unit/Console/Command/InfoAdminUriCommandTest.php | 2 +- .../Unit/Console/Command/InfoBackupsListCommandTest.php | 2 +- .../Unit/Console/Command/InfoCurrencyListCommandTest.php | 2 +- .../Unit/Console/Command/InfoLanguageListCommandTest.php | 2 +- .../Unit/Console/Command/InfoTimezoneListCommandTest.php | 2 +- .../Setup/Test/Unit/Console/Command/InstallCommandTest.php | 2 +- .../Command/InstallStoreConfigurationCommandTest.php | 2 +- .../Unit/Console/Command/MaintenanceAllowIpsCommandTest.php | 2 +- .../Unit/Console/Command/MaintenanceDisableCommandTest.php | 2 +- .../Unit/Console/Command/MaintenanceEnableCommandTest.php | 2 +- .../Unit/Console/Command/MaintenanceStatusCommandTest.php | 2 +- .../Unit/Console/Command/ModuleEnableDisableCommandTest.php | 2 +- .../Test/Unit/Console/Command/ModuleStatusCommandTest.php | 2 +- .../Unit/Console/Command/ModuleUninstallCommandTest.php | 2 +- .../Setup/Test/Unit/Console/Command/RollbackCommandTest.php | 2 +- .../Test/Unit/Console/Command/UninstallCommandTest.php | 2 +- .../Setup/Test/Unit/Console/Command/UpgradeCommandTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Console/CommandListTest.php | 2 +- .../Setup/Test/Unit/Console/CompilerPreparationTest.php | 2 +- .../Magento/Setup/Test/Unit/Controller/AddDatabaseTest.php | 2 +- .../Setup/Test/Unit/Controller/BackupActionItemsTest.php | 2 +- .../Setup/Test/Unit/Controller/CompleteBackupTest.php | 2 +- .../Setup/Test/Unit/Controller/CreateAdminAccountTest.php | 2 +- .../Magento/Setup/Test/Unit/Controller/CreateBackupTest.php | 2 +- .../Setup/Test/Unit/Controller/CustomizeYourStoreTest.php | 2 +- .../Magento/Setup/Test/Unit/Controller/DataOptionTest.php | 2 +- .../Magento/Setup/Test/Unit/Controller/EnvironmentTest.php | 2 +- .../Setup/Test/Unit/Controller/ExtensionGridTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Controller/IndexTest.php | 2 +- .../Setup/Test/Unit/Controller/InstallExtensionGridTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Controller/InstallTest.php | 2 +- .../Setup/Test/Unit/Controller/LandingInstallerTest.php | 2 +- .../Setup/Test/Unit/Controller/LandingUpdaterTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Controller/LicenseTest.php | 2 +- .../Magento/Setup/Test/Unit/Controller/MaintenanceTest.php | 2 +- .../Magento/Setup/Test/Unit/Controller/MarketplaceTest.php | 2 +- .../Magento/Setup/Test/Unit/Controller/ModuleGridTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Controller/ModulesTest.php | 2 +- .../Magento/Setup/Test/Unit/Controller/NavigationTest.php | 2 +- .../Setup/Test/Unit/Controller/OtherComponentsGridTest.php | 2 +- .../Test/Unit/Controller/ReadinessCheckInstallerTest.php | 2 +- .../Test/Unit/Controller/ReadinessCheckUpdaterTest.php | 2 +- .../Setup/Test/Unit/Controller/SelectVersionTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Controller/SessionTest.php | 2 +- .../Magento/Setup/Test/Unit/Controller/StartUpdaterTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Controller/SuccessTest.php | 2 +- .../Magento/Setup/Test/Unit/Controller/SystemConfigTest.php | 2 +- .../Setup/Test/Unit/Controller/UpdateExtensionGridTest.php | 2 +- .../Setup/Test/Unit/Controller/UpdaterSuccessTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Controller/UrlCheckTest.php | 2 +- .../Setup/Test/Unit/Controller/WebConfigurationTest.php | 2 +- .../Setup/Test/Unit/Fixtures/AttributeSetsFixtureTest.php | 2 +- .../Setup/Test/Unit/Fixtures/CartPriceRulesFixtureTest.php | 2 +- .../Test/Unit/Fixtures/CatalogPriceRulesFixtureTest.php | 2 +- .../Setup/Test/Unit/Fixtures/CategoriesFixtureTest.php | 2 +- .../Setup/Test/Unit/Fixtures/ConfigsApplyFixtureTest.php | 2 +- .../Test/Unit/Fixtures/ConfigurableProductsFixtureTest.php | 2 +- .../Setup/Test/Unit/Fixtures/CustomersFixtureTest.php | 2 +- .../Setup/Test/Unit/Fixtures/EavVariationsFixtureTest.php | 2 +- .../Magento/Setup/Test/Unit/Fixtures/FixtureModelTest.php | 2 +- .../Test/Unit/Fixtures/IndexersStatesApplyFixtureTest.php | 2 +- .../Magento/Setup/Test/Unit/Fixtures/OrdersFixtureTest.php | 2 +- .../Setup/Test/Unit/Fixtures/SimpleProductsFixtureTest.php | 2 +- .../Magento/Setup/Test/Unit/Fixtures/StoresFixtureTest.php | 2 +- .../Setup/Test/Unit/Fixtures/TaxRatesFixtureTest.php | 2 +- .../Setup/Test/Unit/Model/AdminAccountFactoryTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Model/AdminAccountTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/BasePackageInfoTest.php | 2 +- .../Setup/Test/Unit/Model/Complex/ComplexGeneratorTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/Complex/PatternTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/ConfigGeneratorTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Model/ConfigModelTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/ConfigOptionsListTest.php | 2 +- .../Test/Unit/Model/Cron/Helper/ModuleUninstallTest.php | 2 +- .../Test/Unit/Model/Cron/Helper/ThemeUninstallTest.php | 2 +- .../Test/Unit/Model/Cron/JobComponentUninstallTest.php | 2 +- .../Setup/Test/Unit/Model/Cron/JobDbRollbackTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/Cron/JobFactoryTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/Cron/JobModuleTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/Cron/JobSetCacheTest.php | 2 +- .../Test/Unit/Model/Cron/JobSetMaintenanceModeTest.php | 2 +- .../Setup/Test/Unit/Model/Cron/JobStaticRegenerateTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/Cron/JobUpgradeTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/Cron/Queue/ReaderTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/Cron/Queue/WriterTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Model/Cron/QueueTest.php | 2 +- .../Setup/Test/Unit/Model/Cron/ReadinessCheckTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Model/Cron/StatusTest.php | 2 +- .../Setup/Test/Unit/Model/CronScriptReadinessCheckTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Model/DataGeneratorTest.php | 2 +- .../Setup/Test/Unit/Model/DateTime/DateTimeProviderTest.php | 2 +- .../Setup/Test/Unit/Model/DateTime/TimeZoneProviderTest.php | 2 +- .../Setup/Test/Unit/Model/DependencyReadinessCheckTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Model/GeneratorTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/Grid/ExtensionTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Model/Grid/ModuleTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/Grid/TypeMapperTest.php | 2 +- .../Setup/Test/Unit/Model/Installer/ProgressFactoryTest.php | 2 +- .../Setup/Test/Unit/Model/Installer/ProgressTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/InstallerFactoryTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Model/InstallerTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Model/LicenseTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Model/ModuleContextTest.php | 2 +- .../Setup/Test/Unit/Model/ModuleRegistryUninstallerTest.php | 2 +- .../Setup/Test/Unit/Model/ModuleStatusFactoryTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Model/ModuleStatusTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/ModuleUninstallerTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Model/NavigationTest.php | 2 +- .../Setup/Test/Unit/Model/ObjectManagerProviderTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Model/PackagesAuthTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Model/PackagesDataTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/PayloadValidatorTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/PhpInformationTest.php | 2 +- .../Magento/Setup/Test/Unit/Model/PhpReadinessCheckTest.php | 2 +- .../Test/Unit/Model/StoreConfigurationDataMapperTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Model/SystemPackageTest.php | 2 +- .../Test/Unit/Model/ThemeDependencyCheckerFactoryTest.php | 2 +- .../Setup/Test/Unit/Model/UninstallCollectorTest.php | 2 +- .../Setup/Test/Unit/Model/UninstallDependencyCheckTest.php | 2 +- .../Setup/Test/Unit/Model/UpdaterTaskCreatorTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Model/UpdaterTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Model/WebLoggerTest.php | 2 +- .../Magento/Setup/Test/Unit/Module/ConfigGeneratorTest.php | 2 +- .../Setup/Test/Unit/Module/ConnectionFactoryTest.php | 2 +- .../Magento/Setup/Test/Unit/Module/DataSetupFactoryTest.php | 2 +- .../Setup/Test/Unit/Module/Dependency/Parser/CodeTest.php | 2 +- .../Unit/Module/Dependency/Parser/Composer/JsonTest.php | 2 +- .../Test/Unit/Module/Dependency/Parser/Config/XmlTest.php | 2 +- .../Dependency/Report/Builder/AbstractBuilderTest.php | 2 +- .../Module/Dependency/Report/Circular/Data/ChainTest.php | 2 +- .../Module/Dependency/Report/Circular/Data/ConfigTest.php | 2 +- .../Module/Dependency/Report/Circular/Data/ModuleTest.php | 2 +- .../Dependency/Report/Data/Config/AbstractConfigTest.php | 2 +- .../Module/Dependency/Report/Dependency/Data/ConfigTest.php | 2 +- .../Dependency/Report/Dependency/Data/DependencyTest.php | 2 +- .../Module/Dependency/Report/Dependency/Data/ModuleTest.php | 2 +- .../Unit/Module/Dependency/Report/Framework/BuilderTest.php | 2 +- .../Module/Dependency/Report/Framework/Data/ConfigTest.php | 2 +- .../Dependency/Report/Framework/Data/DependencyTest.php | 2 +- .../Module/Dependency/Report/Framework/Data/ModuleTest.php | 2 +- .../Dependency/Report/Writer/Csv/AbstractWriterTest.php | 2 +- .../Module/Di/App/Task/ApplicationCodeGeneratorTest.php | 2 +- .../Magento/Setup/Test/Unit/Module/Di/App/Task/AreaTest.php | 2 +- .../Test/Unit/Module/Di/App/Task/InterceptionCacheTest.php | 2 +- .../Test/Unit/Module/Di/App/Task/OperationFactoryTest.php | 2 +- .../Test/Unit/Module/Di/App/Task/ProxyGeneratorTest.php | 2 +- .../Unit/Module/Di/App/Task/RepositoryGeneratorTest.php | 2 +- .../Di/App/Task/ServiceDataAttributesGeneratorTest.php | 2 +- .../Code/Generator/InterceptionConfigurationBuilderTest.php | 2 +- .../Unit/Module/Di/Code/Reader/ClassReaderDecoratorTest.php | 2 +- .../Test/Unit/Module/Di/Code/Reader/ClassesScannerTest.php | 2 +- .../Module/Di/Code/Reader/InstancesNamesList/AreaTest.php | 2 +- .../Di/Code/Reader/InstancesNamesList/DirectoryTest.php | 2 +- .../Di/Code/Reader/InstancesNamesList/InterceptionsTest.php | 2 +- .../Test/Unit/Module/Di/Code/Scanner/ArrayScannerTest.php | 2 +- .../Unit/Module/Di/Code/Scanner/CompositeScannerTest.php | 2 +- .../Module/Di/Code/Scanner/ConfigurationScannerTest.php | 2 +- .../Unit/Module/Di/Code/Scanner/DirectoryScannerTest.php | 2 +- .../Test/Unit/Module/Di/Code/Scanner/PhpScannerTest.php | 2 +- .../Test/Unit/Module/Di/Code/Scanner/PluginScannerTest.php | 2 +- .../Di/Code/Scanner/ServiceDataAttributesScannerTest.php | 2 +- .../Module/Di/Code/Scanner/XmlInterceptorScannerTest.php | 2 +- .../Test/Unit/Module/Di/Code/Scanner/XmlScannerTest.php | 2 +- .../Test/Unit/Module/Di/Compiler/ArgumentsResolverTest.php | 2 +- .../Di/Compiler/Config/Chain/ArgumentsSerializationTest.php | 2 +- .../Module/Di/Compiler/Config/Chain/BackslashTrimTest.php | 2 +- .../Compiler/Config/Chain/InterceptorSubstitutionTest.php | 2 +- .../Di/Compiler/Config/Chain/PreferencesResolvingTest.php | 2 +- .../Module/Di/Compiler/Config/ModificationChainTest.php | 2 +- .../Test/Unit/Module/Di/Compiler/Config/ReaderTest.php | 2 +- .../Unit/Module/Di/Compiler/ConstructorArgumentTest.php | 2 +- .../Setup/Test/Unit/Module/Di/Definition/CollectionTest.php | 2 +- .../Magento/Setup/Test/Unit/Module/Di/_files/additional.php | 2 +- .../Setup/Test/Unit/Module/Di/_files/app/bootstrap.php | 2 +- .../Di/_files/app/code/Magento/SomeModule/Element.php | 2 +- .../_files/app/code/Magento/SomeModule/ElementFactory.php | 2 +- .../Di/_files/app/code/Magento/SomeModule/Helper/Test.php | 2 +- .../app/code/Magento/SomeModule/Model/DoubleColon.php | 2 +- .../Di/_files/app/code/Magento/SomeModule/Model/Test.php | 2 +- .../app/code/Magento/SomeModule/etc/adminhtml/system.xml | 2 +- .../Module/Di/_files/app/code/Magento/SomeModule/etc/di.xml | 2 +- .../code/Magento/SomeModule/etc/source/PhpExt.php/content | 2 +- .../app/code/Magento/SomeModule/view/frontend/default.xml | 2 +- .../_files/app/design/adminhtml/default/backend/layout.xml | 2 +- .../Setup/Test/Unit/Module/Di/_files/app/etc/additional.xml | 2 +- .../Setup/Test/Unit/Module/Di/_files/app/etc/config.xml | 2 +- .../Setup/Test/Unit/Module/Di/_files/app/etc/di/config.xml | 2 +- .../Test/Unit/Module/Di/_files/extension_attributes.xml | 2 +- .../src/Magento/Setup/Test/Unit/Module/I18n/ContextTest.php | 2 +- .../Test/Unit/Module/I18n/Dictionary/GeneratorTest.php | 2 +- .../Module/I18n/Dictionary/Loader/File/AbstractFileTest.php | 2 +- .../Module/I18n/Dictionary/Options/ResolverFactoryTest.php | 2 +- .../Unit/Module/I18n/Dictionary/Options/ResolverTest.php | 2 +- .../Setup/Test/Unit/Module/I18n/Dictionary/PhraseTest.php | 2 +- .../Unit/Module/I18n/Dictionary/Writer/Csv/StdoTest.php | 2 +- .../Test/Unit/Module/I18n/Dictionary/Writer/CsvTest.php | 2 +- .../Magento/Setup/Test/Unit/Module/I18n/DictionaryTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Module/I18n/FactoryTest.php | 2 +- .../Setup/Test/Unit/Module/I18n/FilesCollectorTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Module/I18n/LocaleTest.php | 2 +- .../Setup/Test/Unit/Module/I18n/Pack/GeneratorTest.php | 2 +- .../Test/Unit/Module/I18n/Pack/Writer/File/CsvTest.php | 2 +- .../Unit/Module/I18n/Pack/Writer/File/_files/ioMock.php | 2 +- .../Test/Unit/Module/I18n/Parser/AbstractParserTest.php | 2 +- .../Unit/Module/I18n/Parser/Adapter/AbstractAdapterTest.php | 2 +- .../Setup/Test/Unit/Module/I18n/Parser/Adapter/HtmlTest.php | 2 +- .../Setup/Test/Unit/Module/I18n/Parser/Adapter/JsTest.php | 2 +- .../Parser/Adapter/Php/Tokenizer/PhraseCollectorTest.php | 2 +- .../Module/I18n/Parser/Adapter/Php/Tokenizer/TokenTest.php | 2 +- .../Unit/Module/I18n/Parser/Adapter/Php/TokenizerTest.php | 2 +- .../Setup/Test/Unit/Module/I18n/Parser/Adapter/PhpTest.php | 2 +- .../Setup/Test/Unit/Module/I18n/Parser/Adapter/XmlTest.php | 2 +- .../Test/Unit/Module/I18n/Parser/Adapter/_files/default.xml | 2 +- .../Test/Unit/Module/I18n/Parser/Adapter/_files/email.html | 2 +- .../Test/Unit/Module/I18n/Parser/Adapter/_files/file.js | 2 +- .../Setup/Test/Unit/Module/I18n/Parser/ParserTest.php | 2 +- .../Unit/Module/I18n/_files/files_collector/default.xml | 2 +- .../Test/Unit/Module/I18n/_files/files_collector/file.js | 2 +- .../Magento/Setup/Test/Unit/Module/ResourceFactoryTest.php | 2 +- .../Setup/Test/Unit/Module/Setup/ResourceConfigTest.php | 2 +- .../Magento/Setup/Test/Unit/Module/Setup/SetupCacheTest.php | 2 +- .../src/Magento/Setup/Test/Unit/Module/SetupFactoryTest.php | 2 +- setup/src/Magento/Setup/Test/Unit/Module/SetupTest.php | 2 +- .../Setup/Test/Unit/Mvc/Bootstrap/InitParamListenerTest.php | 2 +- .../Magento/Setup/Test/Unit/Validator/DbValidatorTest.php | 2 +- .../Magento/Setup/Test/Unit/Validator/IpValidatorTest.php | 2 +- .../Magento/Setup/Validator/AdminCredentialsValidator.php | 2 +- setup/src/Magento/Setup/Validator/DbValidator.php | 2 +- setup/src/Magento/Setup/Validator/IpValidator.php | 2 +- setup/view/error/401.phtml | 2 +- setup/view/error/404.phtml | 2 +- setup/view/error/index.phtml | 2 +- setup/view/layout/layout.phtml | 2 +- setup/view/magento/setup/add-database.phtml | 2 +- setup/view/magento/setup/complete-backup/progress.phtml | 2 +- setup/view/magento/setup/create-admin-account.phtml | 2 +- setup/view/magento/setup/create-backup.phtml | 4 ++-- setup/view/magento/setup/customize-your-store.phtml | 2 +- setup/view/magento/setup/data-option.phtml | 2 +- setup/view/magento/setup/extension-grid.phtml | 2 +- setup/view/magento/setup/home.phtml | 2 +- setup/view/magento/setup/index.phtml | 2 +- setup/view/magento/setup/install-extension-grid.phtml | 2 +- setup/view/magento/setup/install.phtml | 2 +- setup/view/magento/setup/landing.phtml | 2 +- setup/view/magento/setup/license.phtml | 2 +- setup/view/magento/setup/marketplace-credentials.phtml | 2 +- setup/view/magento/setup/module-grid.phtml | 2 +- setup/view/magento/setup/navigation/header-bar.phtml | 4 ++-- setup/view/magento/setup/navigation/menu.phtml | 2 +- setup/view/magento/setup/navigation/side-menu.phtml | 2 +- setup/view/magento/setup/popupauth.phtml | 2 +- setup/view/magento/setup/readiness-check.phtml | 2 +- setup/view/magento/setup/readiness-check/progress.phtml | 2 +- setup/view/magento/setup/select-version.phtml | 2 +- setup/view/magento/setup/start-updater.phtml | 2 +- setup/view/magento/setup/success.phtml | 2 +- setup/view/magento/setup/system-config.phtml | 2 +- setup/view/magento/setup/update-extension-grid.phtml | 2 +- setup/view/magento/setup/updater-success.phtml | 2 +- setup/view/magento/setup/web-configuration.phtml | 2 +- setup/view/styles/lib/variables/_buttons.less | 2 +- setup/view/styles/lib/variables/_colors.less | 2 +- setup/view/styles/lib/variables/_typography.less | 2 +- 23757 files changed, 24130 insertions(+), 24130 deletions(-) diff --git a/Gruntfile.js.sample b/Gruntfile.js.sample index 3bd874be048..7b075c1dc77 100644 --- a/Gruntfile.js.sample +++ b/Gruntfile.js.sample @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/autoload.php b/app/autoload.php index b817bafa7fa..6fdfcd07fdf 100644 --- a/app/autoload.php +++ b/app/autoload.php @@ -2,7 +2,7 @@ /** * Register basic autoloader that uses include path * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ use Magento\Framework\Autoload\AutoloaderRegistry; diff --git a/app/bootstrap.php b/app/bootstrap.php index c8e676cb69c..d13d7b6a84e 100644 --- a/app/bootstrap.php +++ b/app/bootstrap.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php index 322c61b32a5..a7b11138628 100644 --- a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php +++ b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php @@ -2,7 +2,7 @@ /** * Adminhtml AdminNotification Severity Renderer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Notice.php b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Notice.php index b370cbd8b1a..aa95028cfb4 100644 --- a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Notice.php +++ b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Notice.php @@ -2,7 +2,7 @@ /** * Adminhtml AdminNotification Severity Renderer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Block\Grid\Renderer; diff --git a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Severity.php b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Severity.php index 7d0ccd163b8..c348b6cc761 100644 --- a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Severity.php +++ b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Severity.php @@ -2,7 +2,7 @@ /** * Adminhtml AdminNotification Severity Renderer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Block\Grid\Renderer; diff --git a/app/code/Magento/AdminNotification/Block/Inbox.php b/app/code/Magento/AdminNotification/Block/Inbox.php index 899d141c9b0..984de28fd4b 100644 --- a/app/code/Magento/AdminNotification/Block/Inbox.php +++ b/app/code/Magento/AdminNotification/Block/Inbox.php @@ -2,7 +2,7 @@ /** * Adminhtml AdminNotification inbox grid * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Block; diff --git a/app/code/Magento/AdminNotification/Block/System/Messages.php b/app/code/Magento/AdminNotification/Block/System/Messages.php index 223941c6e43..db2ecf62f06 100644 --- a/app/code/Magento/AdminNotification/Block/System/Messages.php +++ b/app/code/Magento/AdminNotification/Block/System/Messages.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Block\System; diff --git a/app/code/Magento/AdminNotification/Block/System/Messages/UnreadMessagePopup.php b/app/code/Magento/AdminNotification/Block/System/Messages/UnreadMessagePopup.php index d5023eaea7c..57e44a092ec 100644 --- a/app/code/Magento/AdminNotification/Block/System/Messages/UnreadMessagePopup.php +++ b/app/code/Magento/AdminNotification/Block/System/Messages/UnreadMessagePopup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Block\System\Messages; diff --git a/app/code/Magento/AdminNotification/Block/ToolbarEntry.php b/app/code/Magento/AdminNotification/Block/ToolbarEntry.php index a3eca3b073a..54052b68c83 100644 --- a/app/code/Magento/AdminNotification/Block/ToolbarEntry.php +++ b/app/code/Magento/AdminNotification/Block/ToolbarEntry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Block/Window.php b/app/code/Magento/AdminNotification/Block/Window.php index f25052746d9..71edb166a78 100644 --- a/app/code/Magento/AdminNotification/Block/Window.php +++ b/app/code/Magento/AdminNotification/Block/Window.php @@ -2,7 +2,7 @@ /** * Critical notification window * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Block; diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification.php index 228f0064f3e..53b3da5c6ac 100644 --- a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification.php +++ b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification.php @@ -2,7 +2,7 @@ /** * Adminhtml AdminNotification controller * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Controller\Adminhtml; diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/AjaxMarkAsRead.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/AjaxMarkAsRead.php index 260f08046b3..96c172bc95c 100644 --- a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/AjaxMarkAsRead.php +++ b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/AjaxMarkAsRead.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Controller\Adminhtml\Notification; diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Index.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Index.php index c9f6fb9ed5e..7e7fb1c8496 100644 --- a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Index.php +++ b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Controller\Adminhtml\Notification; diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MarkAsRead.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MarkAsRead.php index d2ce0fabcaa..5bf209ac144 100644 --- a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MarkAsRead.php +++ b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MarkAsRead.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Controller\Adminhtml\Notification; diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassMarkAsRead.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassMarkAsRead.php index 7289796c247..4ef08711aae 100644 --- a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassMarkAsRead.php +++ b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassMarkAsRead.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Controller\Adminhtml\Notification; diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassRemove.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassRemove.php index a9452d8450f..85a86243f2d 100644 --- a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassRemove.php +++ b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassRemove.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Controller\Adminhtml\Notification; diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Remove.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Remove.php index 687f3c9f620..4047239d3c1 100644 --- a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Remove.php +++ b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Remove.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Controller\Adminhtml\Notification; diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/System/Message/ListAction.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/System/Message/ListAction.php index a887a6ed723..c9fc3255660 100644 --- a/app/code/Magento/AdminNotification/Controller/Adminhtml/System/Message/ListAction.php +++ b/app/code/Magento/AdminNotification/Controller/Adminhtml/System/Message/ListAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Controller\Adminhtml\System\Message; diff --git a/app/code/Magento/AdminNotification/Model/Config/Source/Frequency.php b/app/code/Magento/AdminNotification/Model/Config/Source/Frequency.php index b925d31e0af..9863019b2de 100644 --- a/app/code/Magento/AdminNotification/Model/Config/Source/Frequency.php +++ b/app/code/Magento/AdminNotification/Model/Config/Source/Frequency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model\Config\Source; diff --git a/app/code/Magento/AdminNotification/Model/Feed.php b/app/code/Magento/AdminNotification/Model/Feed.php index fa965051f19..4c7e3585c3f 100644 --- a/app/code/Magento/AdminNotification/Model/Feed.php +++ b/app/code/Magento/AdminNotification/Model/Feed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model; diff --git a/app/code/Magento/AdminNotification/Model/Inbox.php b/app/code/Magento/AdminNotification/Model/Inbox.php index 709675e20f4..08bfd0496c9 100644 --- a/app/code/Magento/AdminNotification/Model/Inbox.php +++ b/app/code/Magento/AdminNotification/Model/Inbox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model; diff --git a/app/code/Magento/AdminNotification/Model/InboxInterface.php b/app/code/Magento/AdminNotification/Model/InboxInterface.php index f2ac1658f53..ab729b43133 100644 --- a/app/code/Magento/AdminNotification/Model/InboxInterface.php +++ b/app/code/Magento/AdminNotification/Model/InboxInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model; diff --git a/app/code/Magento/AdminNotification/Model/NotificationService.php b/app/code/Magento/AdminNotification/Model/NotificationService.php index aed6961b48b..89bf5b5436c 100644 --- a/app/code/Magento/AdminNotification/Model/NotificationService.php +++ b/app/code/Magento/AdminNotification/Model/NotificationService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model; diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/Grid/Collection.php b/app/code/Magento/AdminNotification/Model/ResourceModel/Grid/Collection.php index f402994dd2b..1a3de513d0f 100644 --- a/app/code/Magento/AdminNotification/Model/ResourceModel/Grid/Collection.php +++ b/app/code/Magento/AdminNotification/Model/ResourceModel/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox.php b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox.php index 984359fc8e4..671fe11bbcc 100644 --- a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox.php +++ b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model\ResourceModel; diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection.php b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection.php index 1b45bc480d9..9f5b3213160 100644 --- a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection.php +++ b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model\ResourceModel\Inbox; diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Critical.php b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Critical.php index 24c1efceb30..ac257acee19 100644 --- a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Critical.php +++ b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Critical.php @@ -2,7 +2,7 @@ /** * Critical messages collection * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model\ResourceModel\Inbox\Collection; diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Unread.php b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Unread.php index c82ec4e1822..e5fde12f5d5 100644 --- a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Unread.php +++ b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Unread.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message.php b/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message.php index 205d7a2ec08..86a71be4ffb 100644 --- a/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message.php +++ b/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model\ResourceModel\System; diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection.php b/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection.php index 87ef00d56f6..bddbde87557 100644 --- a/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection.php +++ b/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model\ResourceModel\System\Message; diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection/Synchronized.php b/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection/Synchronized.php index 27bc405f21c..831128c0bb4 100644 --- a/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection/Synchronized.php +++ b/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection/Synchronized.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model\ResourceModel\System\Message\Collection; diff --git a/app/code/Magento/AdminNotification/Model/System/Message.php b/app/code/Magento/AdminNotification/Model/System/Message.php index 1d4c8e2dc68..ff060098fa6 100644 --- a/app/code/Magento/AdminNotification/Model/System/Message.php +++ b/app/code/Magento/AdminNotification/Model/System/Message.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model\System; diff --git a/app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php b/app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php index 7c9f7c3bb95..312394787ef 100644 --- a/app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php +++ b/app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php b/app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php index 707f0e78739..645ace06f5a 100644 --- a/app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php +++ b/app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model\System\Message; diff --git a/app/code/Magento/AdminNotification/Model/System/Message/Media/AbstractSynchronization.php b/app/code/Magento/AdminNotification/Model/System/Message/Media/AbstractSynchronization.php index 0c870cdd29b..35b2afd73d2 100644 --- a/app/code/Magento/AdminNotification/Model/System/Message/Media/AbstractSynchronization.php +++ b/app/code/Magento/AdminNotification/Model/System/Message/Media/AbstractSynchronization.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model\System\Message\Media; diff --git a/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Error.php b/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Error.php index 8665d328903..5cc7b58c131 100644 --- a/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Error.php +++ b/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Error.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Success.php b/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Success.php index 4b96ed80f06..850b72cca73 100644 --- a/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Success.php +++ b/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Success.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model\System\Message\Media\Synchronization; diff --git a/app/code/Magento/AdminNotification/Model/System/Message/Security.php b/app/code/Magento/AdminNotification/Model/System/Message/Security.php index 64343e3ecd9..a7c23eace6c 100644 --- a/app/code/Magento/AdminNotification/Model/System/Message/Security.php +++ b/app/code/Magento/AdminNotification/Model/System/Message/Security.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Observer/PredispatchAdminActionControllerObserver.php b/app/code/Magento/AdminNotification/Observer/PredispatchAdminActionControllerObserver.php index 47638d398c1..66b85352337 100644 --- a/app/code/Magento/AdminNotification/Observer/PredispatchAdminActionControllerObserver.php +++ b/app/code/Magento/AdminNotification/Observer/PredispatchAdminActionControllerObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Observer; diff --git a/app/code/Magento/AdminNotification/Setup/InstallSchema.php b/app/code/Magento/AdminNotification/Setup/InstallSchema.php index 04a68a5916b..01c447b9cc2 100644 --- a/app/code/Magento/AdminNotification/Setup/InstallSchema.php +++ b/app/code/Magento/AdminNotification/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Test/Unit/Block/ToolbarEntryTest.php b/app/code/Magento/AdminNotification/Test/Unit/Block/ToolbarEntryTest.php index f59ade288b7..3e919e6ca6b 100644 --- a/app/code/Magento/AdminNotification/Test/Unit/Block/ToolbarEntryTest.php +++ b/app/code/Magento/AdminNotification/Test/Unit/Block/ToolbarEntryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Test/Unit/Model/FeedTest.php b/app/code/Magento/AdminNotification/Test/Unit/Model/FeedTest.php index 69c111a1623..d1f78ccf89a 100644 --- a/app/code/Magento/AdminNotification/Test/Unit/Model/FeedTest.php +++ b/app/code/Magento/AdminNotification/Test/Unit/Model/FeedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Test/Unit/Model/NotificationServiceTest.php b/app/code/Magento/AdminNotification/Test/Unit/Model/NotificationServiceTest.php index bf3ebd13082..be27f65ecd0 100644 --- a/app/code/Magento/AdminNotification/Test/Unit/Model/NotificationServiceTest.php +++ b/app/code/Magento/AdminNotification/Test/Unit/Model/NotificationServiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/CacheOutdatedTest.php b/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/CacheOutdatedTest.php index ceaa5e3719c..288e50310c2 100644 --- a/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/CacheOutdatedTest.php +++ b/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/CacheOutdatedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Test\Unit\Model\System\Message; diff --git a/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/Media/Synchronization/ErrorTest.php b/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/Media/Synchronization/ErrorTest.php index 11139539253..4309f2d67a0 100644 --- a/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/Media/Synchronization/ErrorTest.php +++ b/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/Media/Synchronization/ErrorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Test\Unit\Model\System\Message\Media\Synchronization; diff --git a/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/SecurityTest.php b/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/SecurityTest.php index 2c7ef80672a..31e7af2c1ca 100644 --- a/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/SecurityTest.php +++ b/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/SecurityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Test\Unit\Model\System\Message; diff --git a/app/code/Magento/AdminNotification/Ui/Component/DataProvider/DataProvider.php b/app/code/Magento/AdminNotification/Ui/Component/DataProvider/DataProvider.php index 296fcf5c461..a4c452b7560 100644 --- a/app/code/Magento/AdminNotification/Ui/Component/DataProvider/DataProvider.php +++ b/app/code/Magento/AdminNotification/Ui/Component/DataProvider/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/etc/acl.xml b/app/code/Magento/AdminNotification/etc/acl.xml index d18f5cf8340..d37f71b32d0 100644 --- a/app/code/Magento/AdminNotification/etc/acl.xml +++ b/app/code/Magento/AdminNotification/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/di.xml b/app/code/Magento/AdminNotification/etc/adminhtml/di.xml index 8986ce73472..1be5f99616c 100644 --- a/app/code/Magento/AdminNotification/etc/adminhtml/di.xml +++ b/app/code/Magento/AdminNotification/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/events.xml b/app/code/Magento/AdminNotification/etc/adminhtml/events.xml index 07bd1ae5e8e..9c897af0a2f 100644 --- a/app/code/Magento/AdminNotification/etc/adminhtml/events.xml +++ b/app/code/Magento/AdminNotification/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/menu.xml b/app/code/Magento/AdminNotification/etc/adminhtml/menu.xml index f64dcbdb51c..47c6644b9f3 100644 --- a/app/code/Magento/AdminNotification/etc/adminhtml/menu.xml +++ b/app/code/Magento/AdminNotification/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml b/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml index 9ca1f2d4cd1..a7100499932 100644 --- a/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml +++ b/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/system.xml b/app/code/Magento/AdminNotification/etc/adminhtml/system.xml index 8038b914fd6..ab0cff5f897 100644 --- a/app/code/Magento/AdminNotification/etc/adminhtml/system.xml +++ b/app/code/Magento/AdminNotification/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/etc/config.xml b/app/code/Magento/AdminNotification/etc/config.xml index f1a1abb4454..c088f7b5e11 100644 --- a/app/code/Magento/AdminNotification/etc/config.xml +++ b/app/code/Magento/AdminNotification/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/etc/di.xml b/app/code/Magento/AdminNotification/etc/di.xml index a5f94685ed9..03e415dd371 100644 --- a/app/code/Magento/AdminNotification/etc/di.xml +++ b/app/code/Magento/AdminNotification/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/etc/module.xml b/app/code/Magento/AdminNotification/etc/module.xml index 77d9d4877ac..8fdfc713293 100644 --- a/app/code/Magento/AdminNotification/etc/module.xml +++ b/app/code/Magento/AdminNotification/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/registration.php b/app/code/Magento/AdminNotification/registration.php index ab3e6a6170d..9bd6a540462 100644 --- a/app/code/Magento/AdminNotification/registration.php +++ b/app/code/Magento/AdminNotification/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_block.xml b/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_block.xml index 6e259f9c188..fda150a74f2 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_block.xml +++ b/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml b/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml index 1d3650fa2af..1083e32f3c9 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml +++ b/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml b/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml index 780e48378a3..4ac9f806e8c 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml +++ b/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/view/adminhtml/requirejs-config.js b/app/code/Magento/AdminNotification/view/adminhtml/requirejs-config.js index 69739a39dd4..c866e796e0a 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/AdminNotification/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -10,4 +10,4 @@ var config = { toolbarEntry: 'Magento_AdminNotification/toolbar_entry' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/AdminNotification/view/adminhtml/templates/notification/window.phtml b/app/code/Magento/AdminNotification/view/adminhtml/templates/notification/window.phtml index 260c7f9be96..5e0e2324676 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/templates/notification/window.phtml +++ b/app/code/Magento/AdminNotification/view/adminhtml/templates/notification/window.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -26,4 +26,4 @@ <?php /* @escapeNotVerified */ echo $block->getNoticeMessageText(); ?><br/> <a href="<?php /* @escapeNotVerified */ echo $block->getNoticeMessageUrl(); ?>"><?php /* @escapeNotVerified */ echo $block->getReadDetailsText(); ?></a> </li> -</ul> \ No newline at end of file +</ul> diff --git a/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages.phtml b/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages.phtml index cd4a9a88ebe..a70a5e97b57 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages.phtml +++ b/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages/popup.phtml b/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages/popup.phtml index edac928bdf6..066e1a7193c 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages/popup.phtml +++ b/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages/popup.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/view/adminhtml/templates/toolbar_entry.phtml b/app/code/Magento/AdminNotification/view/adminhtml/templates/toolbar_entry.phtml index 1c570f1b619..ef5ab5a8f63 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/templates/toolbar_entry.phtml +++ b/app/code/Magento/AdminNotification/view/adminhtml/templates/toolbar_entry.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/view/adminhtml/ui_component/notification_area.xml b/app/code/Magento/AdminNotification/view/adminhtml/ui_component/notification_area.xml index e0149fff714..6044a31f40c 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/ui_component/notification_area.xml +++ b/app/code/Magento/AdminNotification/view/adminhtml/ui_component/notification_area.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/columns/message.js b/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/columns/message.js index aa5477ebafc..aedf9962788 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/columns/message.js +++ b/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/columns/message.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/listing.js b/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/listing.js index 1fbda8d0196..ae17af57fbe 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/listing.js +++ b/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/listing.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/system/notification.js b/app/code/Magento/AdminNotification/view/adminhtml/web/system/notification.js index e3d170ef09c..b9053225459 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/web/system/notification.js +++ b/app/code/Magento/AdminNotification/view/adminhtml/web/system/notification.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/cells/message.html b/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/cells/message.html index 869842e8ee8..b6f659885e8 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/cells/message.html +++ b/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/cells/message.html @@ -1,8 +1,8 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> <div css="$col.getFieldClass($row())" - html="$col.getLabel($row())"/> \ No newline at end of file + html="$col.getLabel($row())"/> diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/listing.html b/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/listing.html index 80f2f4f2423..bce380af785 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/listing.html +++ b/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/listing.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/toolbar_entry.js b/app/code/Magento/AdminNotification/view/adminhtml/web/toolbar_entry.js index 2d69f616f02..705d4005acc 100644 --- a/app/code/Magento/AdminNotification/view/adminhtml/web/toolbar_entry.js +++ b/app/code/Magento/AdminNotification/view/adminhtml/web/toolbar_entry.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ @@ -98,4 +98,4 @@ define([ $('.notifications-action .notifications-counter').show(); } -}); \ No newline at end of file +}); diff --git a/app/code/Magento/AdvancedPricingImportExport/Controller/Adminhtml/Export/GetFilter.php b/app/code/Magento/AdvancedPricingImportExport/Controller/Adminhtml/Export/GetFilter.php index ccbef52b5a8..d35a409b58b 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Controller/Adminhtml/Export/GetFilter.php +++ b/app/code/Magento/AdvancedPricingImportExport/Controller/Adminhtml/Export/GetFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdvancedPricingImportExport\Controller\Adminhtml\Export; diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Export/AdvancedPricing.php b/app/code/Magento/AdvancedPricingImportExport/Model/Export/AdvancedPricing.php index e37fe022342..4219fca7209 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Model/Export/AdvancedPricing.php +++ b/app/code/Magento/AdvancedPricingImportExport/Model/Export/AdvancedPricing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdvancedPricingImportExport\Model\Export; diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing.php b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing.php index e2275f767ee..0bb44c238c7 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing.php +++ b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdvancedPricingImportExport\Model\Import; diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator.php b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator.php index 051628e7e4a..ffc191ac655 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator.php +++ b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdvancedPricingImportExport\Model\Import\AdvancedPricing; diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPrice.php b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPrice.php index 53ee3013c62..a3e28841b54 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPrice.php +++ b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdvancedPricingImportExport\Model\Import\AdvancedPricing\Validator; diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPriceType.php b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPriceType.php index 29982459e02..d00d36b0eda 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPriceType.php +++ b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPriceType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/Website.php b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/Website.php index 150555709b8..bc57b848296 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/Website.php +++ b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdvancedPricingImportExport\Model\Import\AdvancedPricing\Validator; diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Indexer/Product/Price/Plugin/Import.php b/app/code/Magento/AdvancedPricingImportExport/Model/Indexer/Product/Price/Plugin/Import.php index e70b7a93e48..090eb676651 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Model/Indexer/Product/Price/Plugin/Import.php +++ b/app/code/Magento/AdvancedPricingImportExport/Model/Indexer/Product/Price/Plugin/Import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdvancedPricingImportExport\Model\Indexer\Product\Price\Plugin; diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Export/AdvancedPricingTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Export/AdvancedPricingTest.php index 49cc8f16fdf..a531b10da4b 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Export/AdvancedPricingTest.php +++ b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Export/AdvancedPricingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdvancedPricingImportExport\Test\Unit\Model\Export; diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTest.php index 29a2aff0678..a75a88561ac 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTest.php +++ b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTypeTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTypeTest.php index 6abdd2232fb..b03d83abd70 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTypeTest.php +++ b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/WebsiteTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/WebsiteTest.php index ad67ee5cc55..6a0fd28ac74 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/WebsiteTest.php +++ b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/WebsiteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/ValidatorTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/ValidatorTest.php index 422faa22956..f95415f43b5 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/ValidatorTest.php +++ b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdvancedPricingImportExport\Test\Unit\Model\Import\AdvancedPricing; diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricingTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricingTest.php index 1c80f5789c3..e873b503212 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricingTest.php +++ b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php index d65271d9ace..67f6d33a9df 100644 --- a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php +++ b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/adminhtml/routes.xml b/app/code/Magento/AdvancedPricingImportExport/etc/adminhtml/routes.xml index 4ccf73156c2..7ca4374e65a 100644 --- a/app/code/Magento/AdvancedPricingImportExport/etc/adminhtml/routes.xml +++ b/app/code/Magento/AdvancedPricingImportExport/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_AdvancedPricingImportExport" before="Magento_ImportExport" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/di.xml b/app/code/Magento/AdvancedPricingImportExport/etc/di.xml index 711d4b8b399..950054ab524 100644 --- a/app/code/Magento/AdvancedPricingImportExport/etc/di.xml +++ b/app/code/Magento/AdvancedPricingImportExport/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/export.xml b/app/code/Magento/AdvancedPricingImportExport/etc/export.xml index f04e399fdfe..da176e7bd73 100644 --- a/app/code/Magento/AdvancedPricingImportExport/etc/export.xml +++ b/app/code/Magento/AdvancedPricingImportExport/etc/export.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/import.xml b/app/code/Magento/AdvancedPricingImportExport/etc/import.xml index 711a7bf270c..80c8873aad3 100644 --- a/app/code/Magento/AdvancedPricingImportExport/etc/import.xml +++ b/app/code/Magento/AdvancedPricingImportExport/etc/import.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/module.xml b/app/code/Magento/AdvancedPricingImportExport/etc/module.xml index 4ae0d6516e6..f9ad9f34b2a 100644 --- a/app/code/Magento/AdvancedPricingImportExport/etc/module.xml +++ b/app/code/Magento/AdvancedPricingImportExport/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/AdvancedPricingImportExport/registration.php b/app/code/Magento/AdvancedPricingImportExport/registration.php index 86dcff3d60a..a9477f3a9a1 100644 --- a/app/code/Magento/AdvancedPricingImportExport/registration.php +++ b/app/code/Magento/AdvancedPricingImportExport/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorization/Model/Acl/AclRetriever.php b/app/code/Magento/Authorization/Model/Acl/AclRetriever.php index d3a5714c937..5b67748cd2e 100644 --- a/app/code/Magento/Authorization/Model/Acl/AclRetriever.php +++ b/app/code/Magento/Authorization/Model/Acl/AclRetriever.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorization/Model/Acl/Loader/Role.php b/app/code/Magento/Authorization/Model/Acl/Loader/Role.php index 67879ce9c0d..d08c065c091 100644 --- a/app/code/Magento/Authorization/Model/Acl/Loader/Role.php +++ b/app/code/Magento/Authorization/Model/Acl/Loader/Role.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Model\Acl\Loader; diff --git a/app/code/Magento/Authorization/Model/Acl/Loader/Rule.php b/app/code/Magento/Authorization/Model/Acl/Loader/Rule.php index 2fa86b63ae5..b26e29ea070 100644 --- a/app/code/Magento/Authorization/Model/Acl/Loader/Rule.php +++ b/app/code/Magento/Authorization/Model/Acl/Loader/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Model\Acl\Loader; diff --git a/app/code/Magento/Authorization/Model/Acl/Role/Generic.php b/app/code/Magento/Authorization/Model/Acl/Role/Generic.php index f35a755b740..b6a92d5ccae 100644 --- a/app/code/Magento/Authorization/Model/Acl/Role/Generic.php +++ b/app/code/Magento/Authorization/Model/Acl/Role/Generic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Model\Acl\Role; diff --git a/app/code/Magento/Authorization/Model/Acl/Role/Group.php b/app/code/Magento/Authorization/Model/Acl/Role/Group.php index 5228a413648..f890ab7a17a 100644 --- a/app/code/Magento/Authorization/Model/Acl/Role/Group.php +++ b/app/code/Magento/Authorization/Model/Acl/Role/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Model\Acl\Role; diff --git a/app/code/Magento/Authorization/Model/Acl/Role/User.php b/app/code/Magento/Authorization/Model/Acl/Role/User.php index 2f19ebbeca3..f97f374e5eb 100644 --- a/app/code/Magento/Authorization/Model/Acl/Role/User.php +++ b/app/code/Magento/Authorization/Model/Acl/Role/User.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Model\Acl\Role; diff --git a/app/code/Magento/Authorization/Model/CompositeUserContext.php b/app/code/Magento/Authorization/Model/CompositeUserContext.php index 59da19ad30a..5aecae4c393 100644 --- a/app/code/Magento/Authorization/Model/CompositeUserContext.php +++ b/app/code/Magento/Authorization/Model/CompositeUserContext.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Permissions/Collection.php b/app/code/Magento/Authorization/Model/ResourceModel/Permissions/Collection.php index 1bc44605464..cf50ea82322 100644 --- a/app/code/Magento/Authorization/Model/ResourceModel/Permissions/Collection.php +++ b/app/code/Magento/Authorization/Model/ResourceModel/Permissions/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Model\ResourceModel\Permissions; diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Role.php b/app/code/Magento/Authorization/Model/ResourceModel/Role.php index 9cd45471396..ba9aa20db31 100644 --- a/app/code/Magento/Authorization/Model/ResourceModel/Role.php +++ b/app/code/Magento/Authorization/Model/ResourceModel/Role.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Model\ResourceModel; diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Role/Collection.php b/app/code/Magento/Authorization/Model/ResourceModel/Role/Collection.php index 853cd7de943..f905622865b 100644 --- a/app/code/Magento/Authorization/Model/ResourceModel/Role/Collection.php +++ b/app/code/Magento/Authorization/Model/ResourceModel/Role/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Model\ResourceModel\Role; diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Role/Grid/Collection.php b/app/code/Magento/Authorization/Model/ResourceModel/Role/Grid/Collection.php index 018a1f2a9bb..1c06d00b07e 100644 --- a/app/code/Magento/Authorization/Model/ResourceModel/Role/Grid/Collection.php +++ b/app/code/Magento/Authorization/Model/ResourceModel/Role/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Model\ResourceModel\Role\Grid; diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Rules.php b/app/code/Magento/Authorization/Model/ResourceModel/Rules.php index 82bd7f60d05..b003cc43e9e 100644 --- a/app/code/Magento/Authorization/Model/ResourceModel/Rules.php +++ b/app/code/Magento/Authorization/Model/ResourceModel/Rules.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Rules/Collection.php b/app/code/Magento/Authorization/Model/ResourceModel/Rules/Collection.php index e4bb8f11953..9aec7569318 100644 --- a/app/code/Magento/Authorization/Model/ResourceModel/Rules/Collection.php +++ b/app/code/Magento/Authorization/Model/ResourceModel/Rules/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Model\ResourceModel\Rules; diff --git a/app/code/Magento/Authorization/Model/Role.php b/app/code/Magento/Authorization/Model/Role.php index 2395c7ccf7e..1a8aed6020e 100644 --- a/app/code/Magento/Authorization/Model/Role.php +++ b/app/code/Magento/Authorization/Model/Role.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Model; diff --git a/app/code/Magento/Authorization/Model/Rules.php b/app/code/Magento/Authorization/Model/Rules.php index 9b4b908cada..2c3433082a3 100644 --- a/app/code/Magento/Authorization/Model/Rules.php +++ b/app/code/Magento/Authorization/Model/Rules.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorization/Model/UserContextInterface.php b/app/code/Magento/Authorization/Model/UserContextInterface.php index 43765b11994..e346566950c 100644 --- a/app/code/Magento/Authorization/Model/UserContextInterface.php +++ b/app/code/Magento/Authorization/Model/UserContextInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorization/Setup/AuthorizationFactory.php b/app/code/Magento/Authorization/Setup/AuthorizationFactory.php index 3798e4ab3c3..50d44ec7ca0 100644 --- a/app/code/Magento/Authorization/Setup/AuthorizationFactory.php +++ b/app/code/Magento/Authorization/Setup/AuthorizationFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Setup; diff --git a/app/code/Magento/Authorization/Setup/InstallData.php b/app/code/Magento/Authorization/Setup/InstallData.php index 4ef391521ce..c837973fb74 100644 --- a/app/code/Magento/Authorization/Setup/InstallData.php +++ b/app/code/Magento/Authorization/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorization/Setup/InstallSchema.php b/app/code/Magento/Authorization/Setup/InstallSchema.php index 494c422803a..947d834ae59 100644 --- a/app/code/Magento/Authorization/Setup/InstallSchema.php +++ b/app/code/Magento/Authorization/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorization/Test/Unit/Model/Acl/AclRetrieverTest.php b/app/code/Magento/Authorization/Test/Unit/Model/Acl/AclRetrieverTest.php index 79cec47d6dd..631bf1db641 100644 --- a/app/code/Magento/Authorization/Test/Unit/Model/Acl/AclRetrieverTest.php +++ b/app/code/Magento/Authorization/Test/Unit/Model/Acl/AclRetrieverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RoleTest.php b/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RoleTest.php index 2c1b4694680..13990fcd336 100644 --- a/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RoleTest.php +++ b/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RoleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Test\Unit\Model\Acl\Loader; diff --git a/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RuleTest.php b/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RuleTest.php index f5f3b9b6a4b..7bf8e18c3f0 100644 --- a/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RuleTest.php +++ b/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RuleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorization\Test\Unit\Model\Acl\Loader; diff --git a/app/code/Magento/Authorization/Test/Unit/Model/CompositeUserContextTest.php b/app/code/Magento/Authorization/Test/Unit/Model/CompositeUserContextTest.php index 3724a97a08c..d899194bc9e 100644 --- a/app/code/Magento/Authorization/Test/Unit/Model/CompositeUserContextTest.php +++ b/app/code/Magento/Authorization/Test/Unit/Model/CompositeUserContextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorization/etc/di.xml b/app/code/Magento/Authorization/etc/di.xml index 1159fb0a760..9370e14d81a 100644 --- a/app/code/Magento/Authorization/etc/di.xml +++ b/app/code/Magento/Authorization/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorization/etc/module.xml b/app/code/Magento/Authorization/etc/module.xml index f3fa8793f3e..f2725387049 100644 --- a/app/code/Magento/Authorization/etc/module.xml +++ b/app/code/Magento/Authorization/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorization/registration.php b/app/code/Magento/Authorization/registration.php index 6aabf5a16bb..f35b17a4d67 100644 --- a/app/code/Magento/Authorization/registration.php +++ b/app/code/Magento/Authorization/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorizenet/Block/Adminhtml/Order/View/Info/FraudDetails.php b/app/code/Magento/Authorizenet/Block/Adminhtml/Order/View/Info/FraudDetails.php index b5844a7d7c2..4c952f55f6a 100644 --- a/app/code/Magento/Authorizenet/Block/Adminhtml/Order/View/Info/FraudDetails.php +++ b/app/code/Magento/Authorizenet/Block/Adminhtml/Order/View/Info/FraudDetails.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Block\Adminhtml\Order\View\Info; diff --git a/app/code/Magento/Authorizenet/Block/Transparent/Iframe.php b/app/code/Magento/Authorizenet/Block/Transparent/Iframe.php index 10e419db061..aac0225750f 100644 --- a/app/code/Magento/Authorizenet/Block/Transparent/Iframe.php +++ b/app/code/Magento/Authorizenet/Block/Transparent/Iframe.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Block\Transparent; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/AddConfigured.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/AddConfigured.php index 2df7015fb55..28c80d7664d 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/AddConfigured.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/AddConfigured.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Cancel.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Cancel.php index 4bd843ad0f8..e5173eadb6d 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Cancel.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Cancel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureProductToAdd.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureProductToAdd.php index ac25cb038e9..aee648ca9f6 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureProductToAdd.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureProductToAdd.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureQuoteItems.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureQuoteItems.php index 4f02a515612..66a03110ff3 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureQuoteItems.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureQuoteItems.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Index.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Index.php index 1029891e379..2a70bfce0af 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Index.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/LoadBlock.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/LoadBlock.php index dbcb3e1ce8e..0ac75ee3c60 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/LoadBlock.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/LoadBlock.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Place.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Place.php index e86b5292cc9..0246629c9d4 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Place.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Place.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ProcessData.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ProcessData.php index cf7c7ccf87c..1d21d87fe93 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ProcessData.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ProcessData.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Redirect.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Redirect.php index b4317529c00..687ee436792 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Redirect.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Redirect.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Reorder.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Reorder.php index b6db6c96b5c..19dfcfdfeb0 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Reorder.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Reorder.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ReturnQuote.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ReturnQuote.php index 208559f2265..6c1efa986bd 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ReturnQuote.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ReturnQuote.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Save.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Save.php index 44681daaba8..30782f38400 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Save.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ShowUpdateResult.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ShowUpdateResult.php index 60c78c25c79..84d1893153f 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ShowUpdateResult.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ShowUpdateResult.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Start.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Start.php index 60ae8345b6f..439e87a0662 100644 --- a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Start.php +++ b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Start.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment.php index 582457f31f4..c7788fcbf04 100644 --- a/app/code/Magento/Authorizenet/Controller/Directpost/Payment.php +++ b/app/code/Magento/Authorizenet/Controller/Directpost/Payment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Directpost; diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/BackendResponse.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/BackendResponse.php index c0ac07a11ad..609e2f24a19 100644 --- a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/BackendResponse.php +++ b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/BackendResponse.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Place.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Place.php index 2816a3bae78..0921c9bb4d0 100644 --- a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Place.php +++ b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Place.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Redirect.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Redirect.php index 8745737a19b..84d91dc89f1 100644 --- a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Redirect.php +++ b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Redirect.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Response.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Response.php index 69e918a5db5..35ee4c91c39 100644 --- a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Response.php +++ b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Response.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/ReturnQuote.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/ReturnQuote.php index 5bfe9161609..c542c16e9fa 100644 --- a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/ReturnQuote.php +++ b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/ReturnQuote.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Controller\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Helper/Backend/Data.php b/app/code/Magento/Authorizenet/Helper/Backend/Data.php index f819ace561f..327ca9ace84 100644 --- a/app/code/Magento/Authorizenet/Helper/Backend/Data.php +++ b/app/code/Magento/Authorizenet/Helper/Backend/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Helper\Backend; diff --git a/app/code/Magento/Authorizenet/Helper/Data.php b/app/code/Magento/Authorizenet/Helper/Data.php index 2769fd8ded3..cede4fd7d50 100644 --- a/app/code/Magento/Authorizenet/Helper/Data.php +++ b/app/code/Magento/Authorizenet/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Helper; diff --git a/app/code/Magento/Authorizenet/Helper/DataFactory.php b/app/code/Magento/Authorizenet/Helper/DataFactory.php index 8a510f77222..eca97cf99ee 100644 --- a/app/code/Magento/Authorizenet/Helper/DataFactory.php +++ b/app/code/Magento/Authorizenet/Helper/DataFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Helper; diff --git a/app/code/Magento/Authorizenet/Model/Authorizenet.php b/app/code/Magento/Authorizenet/Model/Authorizenet.php index 4408c684367..ba49d30993e 100644 --- a/app/code/Magento/Authorizenet/Model/Authorizenet.php +++ b/app/code/Magento/Authorizenet/Model/Authorizenet.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model; diff --git a/app/code/Magento/Authorizenet/Model/Debug.php b/app/code/Magento/Authorizenet/Model/Debug.php index 3e467311976..7605aa762a1 100644 --- a/app/code/Magento/Authorizenet/Model/Debug.php +++ b/app/code/Magento/Authorizenet/Model/Debug.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model; diff --git a/app/code/Magento/Authorizenet/Model/Directpost.php b/app/code/Magento/Authorizenet/Model/Directpost.php index db00c77ca7a..1dc4e79c0bd 100644 --- a/app/code/Magento/Authorizenet/Model/Directpost.php +++ b/app/code/Magento/Authorizenet/Model/Directpost.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model; diff --git a/app/code/Magento/Authorizenet/Model/Directpost/Request.php b/app/code/Magento/Authorizenet/Model/Directpost/Request.php index 4d5da3e76dc..e43856a5e35 100644 --- a/app/code/Magento/Authorizenet/Model/Directpost/Request.php +++ b/app/code/Magento/Authorizenet/Model/Directpost/Request.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorizenet/Model/Directpost/Request/Factory.php b/app/code/Magento/Authorizenet/Model/Directpost/Request/Factory.php index 7ef66472856..d0f6ea6515d 100644 --- a/app/code/Magento/Authorizenet/Model/Directpost/Request/Factory.php +++ b/app/code/Magento/Authorizenet/Model/Directpost/Request/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model\Directpost\Request; diff --git a/app/code/Magento/Authorizenet/Model/Directpost/Response.php b/app/code/Magento/Authorizenet/Model/Directpost/Response.php index 382e40b8e01..a322d13bdda 100644 --- a/app/code/Magento/Authorizenet/Model/Directpost/Response.php +++ b/app/code/Magento/Authorizenet/Model/Directpost/Response.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model\Directpost; diff --git a/app/code/Magento/Authorizenet/Model/Directpost/Response/Factory.php b/app/code/Magento/Authorizenet/Model/Directpost/Response/Factory.php index 023ce607c38..68a16393b9d 100644 --- a/app/code/Magento/Authorizenet/Model/Directpost/Response/Factory.php +++ b/app/code/Magento/Authorizenet/Model/Directpost/Response/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model\Directpost\Response; diff --git a/app/code/Magento/Authorizenet/Model/Directpost/Session.php b/app/code/Magento/Authorizenet/Model/Directpost/Session.php index 5a01b0bef03..90f8164ab5c 100644 --- a/app/code/Magento/Authorizenet/Model/Directpost/Session.php +++ b/app/code/Magento/Authorizenet/Model/Directpost/Session.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model\Directpost; diff --git a/app/code/Magento/Authorizenet/Model/Request.php b/app/code/Magento/Authorizenet/Model/Request.php index 7cc9a20793f..818221ed34e 100644 --- a/app/code/Magento/Authorizenet/Model/Request.php +++ b/app/code/Magento/Authorizenet/Model/Request.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model; diff --git a/app/code/Magento/Authorizenet/Model/Request/Factory.php b/app/code/Magento/Authorizenet/Model/Request/Factory.php index 9b922988642..d928bcc5254 100644 --- a/app/code/Magento/Authorizenet/Model/Request/Factory.php +++ b/app/code/Magento/Authorizenet/Model/Request/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model\Request; diff --git a/app/code/Magento/Authorizenet/Model/ResourceModel/Debug.php b/app/code/Magento/Authorizenet/Model/ResourceModel/Debug.php index d0abc72db26..d6080fc1ee5 100644 --- a/app/code/Magento/Authorizenet/Model/ResourceModel/Debug.php +++ b/app/code/Magento/Authorizenet/Model/ResourceModel/Debug.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model\ResourceModel; diff --git a/app/code/Magento/Authorizenet/Model/ResourceModel/Debug/Collection.php b/app/code/Magento/Authorizenet/Model/ResourceModel/Debug/Collection.php index d304aa810a9..54262c1bc14 100644 --- a/app/code/Magento/Authorizenet/Model/ResourceModel/Debug/Collection.php +++ b/app/code/Magento/Authorizenet/Model/ResourceModel/Debug/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model\ResourceModel\Debug; diff --git a/app/code/Magento/Authorizenet/Model/Response.php b/app/code/Magento/Authorizenet/Model/Response.php index d614188fd00..34d2200e78b 100644 --- a/app/code/Magento/Authorizenet/Model/Response.php +++ b/app/code/Magento/Authorizenet/Model/Response.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model; diff --git a/app/code/Magento/Authorizenet/Model/Response/Factory.php b/app/code/Magento/Authorizenet/Model/Response/Factory.php index ea6952141ca..1242496aeb6 100644 --- a/app/code/Magento/Authorizenet/Model/Response/Factory.php +++ b/app/code/Magento/Authorizenet/Model/Response/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model\Response; diff --git a/app/code/Magento/Authorizenet/Model/Source/Cctype.php b/app/code/Magento/Authorizenet/Model/Source/Cctype.php index a6e173474ae..b817db934cb 100644 --- a/app/code/Magento/Authorizenet/Model/Source/Cctype.php +++ b/app/code/Magento/Authorizenet/Model/Source/Cctype.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model\Source; diff --git a/app/code/Magento/Authorizenet/Model/Source/PaymentAction.php b/app/code/Magento/Authorizenet/Model/Source/PaymentAction.php index 077ad50a3eb..c763e82237b 100644 --- a/app/code/Magento/Authorizenet/Model/Source/PaymentAction.php +++ b/app/code/Magento/Authorizenet/Model/Source/PaymentAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model\Source; diff --git a/app/code/Magento/Authorizenet/Model/TransactionService.php b/app/code/Magento/Authorizenet/Model/TransactionService.php index 0639fea96bb..7b53d9ffc0c 100644 --- a/app/code/Magento/Authorizenet/Model/TransactionService.php +++ b/app/code/Magento/Authorizenet/Model/TransactionService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Model; diff --git a/app/code/Magento/Authorizenet/Observer/AddFieldsToResponseObserver.php b/app/code/Magento/Authorizenet/Observer/AddFieldsToResponseObserver.php index 178741c6a2d..cb419f3fe90 100644 --- a/app/code/Magento/Authorizenet/Observer/AddFieldsToResponseObserver.php +++ b/app/code/Magento/Authorizenet/Observer/AddFieldsToResponseObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Observer; diff --git a/app/code/Magento/Authorizenet/Observer/SaveOrderAfterSubmitObserver.php b/app/code/Magento/Authorizenet/Observer/SaveOrderAfterSubmitObserver.php index 421f11c21dd..5c845cbffb8 100644 --- a/app/code/Magento/Authorizenet/Observer/SaveOrderAfterSubmitObserver.php +++ b/app/code/Magento/Authorizenet/Observer/SaveOrderAfterSubmitObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Observer; diff --git a/app/code/Magento/Authorizenet/Observer/UpdateAllEditIncrementsObserver.php b/app/code/Magento/Authorizenet/Observer/UpdateAllEditIncrementsObserver.php index dd5e4ecb3a5..bd31bd25a64 100644 --- a/app/code/Magento/Authorizenet/Observer/UpdateAllEditIncrementsObserver.php +++ b/app/code/Magento/Authorizenet/Observer/UpdateAllEditIncrementsObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Observer; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Controller/Adminhtml/Authorizenet/Directpost/Payment/RedirectTest.php b/app/code/Magento/Authorizenet/Test/Unit/Controller/Adminhtml/Authorizenet/Directpost/Payment/RedirectTest.php index dc26628ced9..a03405e2385 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Controller/Adminhtml/Authorizenet/Directpost/Payment/RedirectTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Controller/Adminhtml/Authorizenet/Directpost/Payment/RedirectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Controller\Adminhtml\Authorizenet\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/PlaceTest.php b/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/PlaceTest.php index 8a948f37f28..f2203158ac8 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/PlaceTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/PlaceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Controller\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/RedirectTest.php b/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/RedirectTest.php index d11a7b8df35..4ec5e401c9e 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/RedirectTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/RedirectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Controller\Directpost\Payment; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Helper/Backend/DataTest.php b/app/code/Magento/Authorizenet/Test/Unit/Helper/Backend/DataTest.php index 7c8fb501221..bf6ea87bc95 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Helper/Backend/DataTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Helper/Backend/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Helper\Backend; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Helper/DataTest.php b/app/code/Magento/Authorizenet/Test/Unit/Helper/DataTest.php index 5ba62e5d731..c5c82c190a2 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Helper; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Request/FactoryTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Request/FactoryTest.php index 42ac187169c..de545d9d610 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Request/FactoryTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Request/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Model\Directpost\Request; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Response/FactoryTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Response/FactoryTest.php index d7780624bd0..31a14cb17b9 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Response/FactoryTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Response/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Model\Directpost\Response; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/ResponseTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/ResponseTest.php index 1dd07e57cb3..928c5eecba3 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/ResponseTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/ResponseTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Model\Directpost; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/SessionTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/SessionTest.php index fdc094ae184..d51b525cf56 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/SessionTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/SessionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Model\Directpost; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/DirectpostTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/DirectpostTest.php index 616018e4364..3f8e7cdfdc0 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Model/DirectpostTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Model/DirectpostTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Model; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Request/FactoryTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Request/FactoryTest.php index 09ef8fc76ec..c3d7a111a19 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Model/Request/FactoryTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Model/Request/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Model\Request; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Response/FactoryTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Response/FactoryTest.php index d553c08d3eb..0d0e7dd398c 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Model/Response/FactoryTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Model/Response/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Model\Response; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/TransactionServiceTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/TransactionServiceTest.php index f8aded74e69..dcf2bfe5d34 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Model/TransactionServiceTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Model/TransactionServiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Model; diff --git a/app/code/Magento/Authorizenet/Test/Unit/Observer/AddFieldsToResponseObserverTest.php b/app/code/Magento/Authorizenet/Test/Unit/Observer/AddFieldsToResponseObserverTest.php index 780e6c93f8f..6c8ce0b0d19 100644 --- a/app/code/Magento/Authorizenet/Test/Unit/Observer/AddFieldsToResponseObserverTest.php +++ b/app/code/Magento/Authorizenet/Test/Unit/Observer/AddFieldsToResponseObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Authorizenet\Test\Unit\Observer; diff --git a/app/code/Magento/Authorizenet/etc/adminhtml/di.xml b/app/code/Magento/Authorizenet/etc/adminhtml/di.xml index 8407acb1231..6dc9dc8462a 100644 --- a/app/code/Magento/Authorizenet/etc/adminhtml/di.xml +++ b/app/code/Magento/Authorizenet/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/etc/adminhtml/events.xml b/app/code/Magento/Authorizenet/etc/adminhtml/events.xml index 4a669cd7d9c..8114b8c8312 100644 --- a/app/code/Magento/Authorizenet/etc/adminhtml/events.xml +++ b/app/code/Magento/Authorizenet/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/etc/adminhtml/routes.xml b/app/code/Magento/Authorizenet/etc/adminhtml/routes.xml index ef3e63f2c9c..028e1a8500d 100644 --- a/app/code/Magento/Authorizenet/etc/adminhtml/routes.xml +++ b/app/code/Magento/Authorizenet/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/etc/adminhtml/system.xml b/app/code/Magento/Authorizenet/etc/adminhtml/system.xml index fd2fb84f0a2..3d4cde185dc 100644 --- a/app/code/Magento/Authorizenet/etc/adminhtml/system.xml +++ b/app/code/Magento/Authorizenet/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/etc/config.xml b/app/code/Magento/Authorizenet/etc/config.xml index 5c48b88e082..f5b053003f1 100644 --- a/app/code/Magento/Authorizenet/etc/config.xml +++ b/app/code/Magento/Authorizenet/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/etc/di.xml b/app/code/Magento/Authorizenet/etc/di.xml index 287cdec6fa0..3bd70f25a3b 100644 --- a/app/code/Magento/Authorizenet/etc/di.xml +++ b/app/code/Magento/Authorizenet/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/etc/frontend/di.xml b/app/code/Magento/Authorizenet/etc/frontend/di.xml index 7f20e067cc4..8dcf8ed700d 100644 --- a/app/code/Magento/Authorizenet/etc/frontend/di.xml +++ b/app/code/Magento/Authorizenet/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/etc/frontend/events.xml b/app/code/Magento/Authorizenet/etc/frontend/events.xml index bb11f4bca36..2c6e3f12a91 100644 --- a/app/code/Magento/Authorizenet/etc/frontend/events.xml +++ b/app/code/Magento/Authorizenet/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/etc/frontend/page_types.xml b/app/code/Magento/Authorizenet/etc/frontend/page_types.xml index 6dc50d5d28d..be4692b1359 100644 --- a/app/code/Magento/Authorizenet/etc/frontend/page_types.xml +++ b/app/code/Magento/Authorizenet/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/etc/frontend/routes.xml b/app/code/Magento/Authorizenet/etc/frontend/routes.xml index 7da347a2e63..1bdcff9f1ef 100644 --- a/app/code/Magento/Authorizenet/etc/frontend/routes.xml +++ b/app/code/Magento/Authorizenet/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Authorizenet" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Authorizenet/etc/frontend/sections.xml b/app/code/Magento/Authorizenet/etc/frontend/sections.xml index 33c48e60e8d..977a4b14e3e 100644 --- a/app/code/Magento/Authorizenet/etc/frontend/sections.xml +++ b/app/code/Magento/Authorizenet/etc/frontend/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/etc/module.xml b/app/code/Magento/Authorizenet/etc/module.xml index 75317e254ef..91d93e56e0c 100644 --- a/app/code/Magento/Authorizenet/etc/module.xml +++ b/app/code/Magento/Authorizenet/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/registration.php b/app/code/Magento/Authorizenet/registration.php index a0eab432331..ad98beafa74 100644 --- a/app/code/Magento/Authorizenet/registration.php +++ b/app/code/Magento/Authorizenet/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorizenet/view/adminhtml/layout/adminhtml_authorizenet_directpost_payment_redirect.xml b/app/code/Magento/Authorizenet/view/adminhtml/layout/adminhtml_authorizenet_directpost_payment_redirect.xml index 80da2dc8bfb..e099265209a 100644 --- a/app/code/Magento/Authorizenet/view/adminhtml/layout/adminhtml_authorizenet_directpost_payment_redirect.xml +++ b/app/code/Magento/Authorizenet/view/adminhtml/layout/adminhtml_authorizenet_directpost_payment_redirect.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_index.xml b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_index.xml index aeed400c3c8..851cbf39875 100644 --- a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_index.xml +++ b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -14,4 +14,4 @@ </action> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml index 21e8f1d70fb..ec5ce845b85 100644 --- a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml +++ b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -14,4 +14,4 @@ </action> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_view.xml index d81573c891c..7470afcfdb7 100644 --- a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_view.xml +++ b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/iframe.phtml b/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/iframe.phtml index ae5a5ec6217..2b95af46a6b 100644 --- a/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/iframe.phtml +++ b/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/iframe.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/info.phtml b/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/info.phtml index cb7200cad18..b1bbea2faab 100644 --- a/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/info.phtml +++ b/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorizenet/view/adminhtml/templates/order/view/info/fraud_details.phtml b/app/code/Magento/Authorizenet/view/adminhtml/templates/order/view/info/fraud_details.phtml index 094e0c5da9d..7f3686c21eb 100644 --- a/app/code/Magento/Authorizenet/view/adminhtml/templates/order/view/info/fraud_details.phtml +++ b/app/code/Magento/Authorizenet/view/adminhtml/templates/order/view/info/fraud_details.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -54,4 +54,4 @@ $fraudDetails = $payment->getAdditionalInformation('fraud_details'); <?php endif; ?> </div> </div> -<?php endif; ?> \ No newline at end of file +<?php endif; ?> diff --git a/app/code/Magento/Authorizenet/view/adminhtml/web/js/direct-post.js b/app/code/Magento/Authorizenet/view/adminhtml/web/js/direct-post.js index 69dd63cf47c..ec0701da0da 100644 --- a/app/code/Magento/Authorizenet/view/adminhtml/web/js/direct-post.js +++ b/app/code/Magento/Authorizenet/view/adminhtml/web/js/direct-post.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ (function (factory) { diff --git a/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_backendresponse.xml b/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_backendresponse.xml index 97f425e78c7..1eedd5e26a3 100644 --- a/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_backendresponse.xml +++ b/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_backendresponse.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_redirect.xml b/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_redirect.xml index 97f425e78c7..1eedd5e26a3 100644 --- a/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_redirect.xml +++ b/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_redirect.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_response.xml b/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_response.xml index 97f425e78c7..1eedd5e26a3 100644 --- a/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_response.xml +++ b/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_response.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Authorizenet/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Authorizenet/view/frontend/layout/checkout_index_index.xml index 489dddc9b15..1025207fec1 100644 --- a/app/code/Magento/Authorizenet/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/Authorizenet/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -46,4 +46,4 @@ </arguments> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Authorizenet/view/frontend/requirejs-config.js b/app/code/Magento/Authorizenet/view/frontend/requirejs-config.js index 4af97d5775a..26c0e732303 100644 --- a/app/code/Magento/Authorizenet/view/frontend/requirejs-config.js +++ b/app/code/Magento/Authorizenet/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/authorizenet.js b/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/authorizenet.js index 83b39847355..6f7f94eab63 100644 --- a/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/authorizenet.js +++ b/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/authorizenet.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ @@ -23,4 +23,4 @@ define( /** Add view logic here if needed */ return Component.extend({}); } -); \ No newline at end of file +); diff --git a/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/method-renderer/authorizenet-directpost.js b/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/method-renderer/authorizenet-directpost.js index 86ec8e0c392..a40f3e92767 100644 --- a/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/method-renderer/authorizenet-directpost.js +++ b/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/method-renderer/authorizenet-directpost.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Authorizenet/view/frontend/web/template/payment/authorizenet-directpost.html b/app/code/Magento/Authorizenet/view/frontend/web/template/payment/authorizenet-directpost.html index 1aff94817c6..2de6cad54d2 100644 --- a/app/code/Magento/Authorizenet/view/frontend/web/template/payment/authorizenet-directpost.html +++ b/app/code/Magento/Authorizenet/view/frontend/web/template/payment/authorizenet-directpost.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/App/AbstractAction.php b/app/code/Magento/Backend/App/AbstractAction.php index f0973b8f66a..4efd013f43a 100644 --- a/app/code/Magento/Backend/App/AbstractAction.php +++ b/app/code/Magento/Backend/App/AbstractAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App; diff --git a/app/code/Magento/Backend/App/Action.php b/app/code/Magento/Backend/App/Action.php index fe047b51558..e4847301e3c 100644 --- a/app/code/Magento/Backend/App/Action.php +++ b/app/code/Magento/Backend/App/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/App/Action/Context.php b/app/code/Magento/Backend/App/Action/Context.php index e5ba3db47ab..8a312a9684d 100644 --- a/app/code/Magento/Backend/App/Action/Context.php +++ b/app/code/Magento/Backend/App/Action/Context.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App\Action; diff --git a/app/code/Magento/Backend/App/Action/Plugin/Authentication.php b/app/code/Magento/Backend/App/Action/Plugin/Authentication.php index 5adef734b6e..af76481cfbb 100644 --- a/app/code/Magento/Backend/App/Action/Plugin/Authentication.php +++ b/app/code/Magento/Backend/App/Action/Plugin/Authentication.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App\Action\Plugin; diff --git a/app/code/Magento/Backend/App/Action/Plugin/MassactionKey.php b/app/code/Magento/Backend/App/Action/Plugin/MassactionKey.php index 44cfe2bb17d..76daf2600b5 100644 --- a/app/code/Magento/Backend/App/Action/Plugin/MassactionKey.php +++ b/app/code/Magento/Backend/App/Action/Plugin/MassactionKey.php @@ -2,7 +2,7 @@ /** * Massaction key processor * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App\Action\Plugin; diff --git a/app/code/Magento/Backend/App/Area/FrontNameResolver.php b/app/code/Magento/Backend/App/Area/FrontNameResolver.php index 84c2a82c5be..b3dcb9390c5 100644 --- a/app/code/Magento/Backend/App/Area/FrontNameResolver.php +++ b/app/code/Magento/Backend/App/Area/FrontNameResolver.php @@ -2,7 +2,7 @@ /** * Backend area front name resolver. Reads front name from configuration * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App\Area; diff --git a/app/code/Magento/Backend/App/BackendApp.php b/app/code/Magento/Backend/App/BackendApp.php index b8a81ad7857..25b815920a7 100644 --- a/app/code/Magento/Backend/App/BackendApp.php +++ b/app/code/Magento/Backend/App/BackendApp.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/App/BackendAppList.php b/app/code/Magento/Backend/App/BackendAppList.php index afb812b8234..529610664fb 100644 --- a/app/code/Magento/Backend/App/BackendAppList.php +++ b/app/code/Magento/Backend/App/BackendAppList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/App/Config.php b/app/code/Magento/Backend/App/Config.php index f0bae2a9d3c..68f31c9f1c1 100644 --- a/app/code/Magento/Backend/App/Config.php +++ b/app/code/Magento/Backend/App/Config.php @@ -2,7 +2,7 @@ /** * Default application path for backend area * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/App/ConfigInterface.php b/app/code/Magento/Backend/App/ConfigInterface.php index 5e73225a6aa..1e183bc8fd1 100644 --- a/app/code/Magento/Backend/App/ConfigInterface.php +++ b/app/code/Magento/Backend/App/ConfigInterface.php @@ -2,7 +2,7 @@ /** * Default application path for backend area * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App; diff --git a/app/code/Magento/Backend/App/DefaultPath.php b/app/code/Magento/Backend/App/DefaultPath.php index ef3d502db8a..9a25e328bde 100644 --- a/app/code/Magento/Backend/App/DefaultPath.php +++ b/app/code/Magento/Backend/App/DefaultPath.php @@ -2,7 +2,7 @@ /** * Default application path for backend area * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App; diff --git a/app/code/Magento/Backend/App/Request/PathInfoProcessor.php b/app/code/Magento/Backend/App/Request/PathInfoProcessor.php index 08e115e9ec7..e0890ce9178 100644 --- a/app/code/Magento/Backend/App/Request/PathInfoProcessor.php +++ b/app/code/Magento/Backend/App/Request/PathInfoProcessor.php @@ -2,7 +2,7 @@ /** * Prevents path info processing for admin store * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App\Request; diff --git a/app/code/Magento/Backend/App/Response/Http/FileFactory.php b/app/code/Magento/Backend/App/Response/Http/FileFactory.php index dec52cdb646..1c67275a7fc 100644 --- a/app/code/Magento/Backend/App/Response/Http/FileFactory.php +++ b/app/code/Magento/Backend/App/Response/Http/FileFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App\Response\Http; diff --git a/app/code/Magento/Backend/App/Router.php b/app/code/Magento/Backend/App/Router.php index e9e5c48edeb..6a4a7f42157 100644 --- a/app/code/Magento/Backend/App/Router.php +++ b/app/code/Magento/Backend/App/Router.php @@ -2,7 +2,7 @@ /** * Backend router * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. * */ diff --git a/app/code/Magento/Backend/App/Router/NoRouteHandler.php b/app/code/Magento/Backend/App/Router/NoRouteHandler.php index f51b8d9c376..d4cf4a6f8ed 100644 --- a/app/code/Magento/Backend/App/Router/NoRouteHandler.php +++ b/app/code/Magento/Backend/App/Router/NoRouteHandler.php @@ -2,7 +2,7 @@ /** * Backend no route handler * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App\Router; diff --git a/app/code/Magento/Backend/App/UserConfig.php b/app/code/Magento/Backend/App/UserConfig.php index b50d7ef390e..a89069a8d07 100644 --- a/app/code/Magento/Backend/App/UserConfig.php +++ b/app/code/Magento/Backend/App/UserConfig.php @@ -2,7 +2,7 @@ /** * Application for managing user configuration * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App; diff --git a/app/code/Magento/Backend/Block/AbstractBlock.php b/app/code/Magento/Backend/Block/AbstractBlock.php index ae9aa90a11a..8edd10fb835 100644 --- a/app/code/Magento/Backend/Block/AbstractBlock.php +++ b/app/code/Magento/Backend/Block/AbstractBlock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block; diff --git a/app/code/Magento/Backend/Block/Admin/Formkey.php b/app/code/Magento/Backend/Block/Admin/Formkey.php index 110c11eb508..b7b689247c1 100644 --- a/app/code/Magento/Backend/Block/Admin/Formkey.php +++ b/app/code/Magento/Backend/Block/Admin/Formkey.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Cache.php b/app/code/Magento/Backend/Block/Cache.php index 8b538822741..b9a11fa5bb5 100644 --- a/app/code/Magento/Backend/Block/Cache.php +++ b/app/code/Magento/Backend/Block/Cache.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block; diff --git a/app/code/Magento/Backend/Block/Cache/Additional.php b/app/code/Magento/Backend/Block/Cache/Additional.php index 02490cf01a1..12ace7e734a 100644 --- a/app/code/Magento/Backend/Block/Cache/Additional.php +++ b/app/code/Magento/Backend/Block/Cache/Additional.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Cache; diff --git a/app/code/Magento/Backend/Block/Cache/Grid/Column/Statuses.php b/app/code/Magento/Backend/Block/Cache/Grid/Column/Statuses.php index 87c338aa5f0..0fef5316250 100644 --- a/app/code/Magento/Backend/Block/Cache/Grid/Column/Statuses.php +++ b/app/code/Magento/Backend/Block/Cache/Grid/Column/Statuses.php @@ -2,7 +2,7 @@ /** * Status column for Cache grid * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Cache\Grid\Column; diff --git a/app/code/Magento/Backend/Block/Cache/Grid/Massaction/ProductionModeVisibilityChecker.php b/app/code/Magento/Backend/Block/Cache/Grid/Massaction/ProductionModeVisibilityChecker.php index 70a125e399a..266fac654e6 100644 --- a/app/code/Magento/Backend/Block/Cache/Grid/Massaction/ProductionModeVisibilityChecker.php +++ b/app/code/Magento/Backend/Block/Cache/Grid/Massaction/ProductionModeVisibilityChecker.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Cache\Grid\Massaction; diff --git a/app/code/Magento/Backend/Block/Catalog/Product/Tab/Container.php b/app/code/Magento/Backend/Block/Catalog/Product/Tab/Container.php index bed5ee24434..49107a0ae4f 100644 --- a/app/code/Magento/Backend/Block/Catalog/Product/Tab/Container.php +++ b/app/code/Magento/Backend/Block/Catalog/Product/Tab/Container.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Catalog\Product\Tab; diff --git a/app/code/Magento/Backend/Block/Context.php b/app/code/Magento/Backend/Block/Context.php index 02ceb45803b..8c335a16a2e 100644 --- a/app/code/Magento/Backend/Block/Context.php +++ b/app/code/Magento/Backend/Block/Context.php @@ -2,7 +2,7 @@ /** * Backend block context * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block; diff --git a/app/code/Magento/Backend/Block/Dashboard.php b/app/code/Magento/Backend/Block/Dashboard.php index 3c160a87971..eb158e70dfc 100644 --- a/app/code/Magento/Backend/Block/Dashboard.php +++ b/app/code/Magento/Backend/Block/Dashboard.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Dashboard/AbstractDashboard.php b/app/code/Magento/Backend/Block/Dashboard/AbstractDashboard.php index 3327baa0e9d..8c9c63eb6d0 100644 --- a/app/code/Magento/Backend/Block/Dashboard/AbstractDashboard.php +++ b/app/code/Magento/Backend/Block/Dashboard/AbstractDashboard.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Dashboard/Bar.php b/app/code/Magento/Backend/Block/Dashboard/Bar.php index 4bdc94cdd6d..531ec133b3c 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Bar.php +++ b/app/code/Magento/Backend/Block/Dashboard/Bar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard; diff --git a/app/code/Magento/Backend/Block/Dashboard/Diagrams.php b/app/code/Magento/Backend/Block/Dashboard/Diagrams.php index 6a77caad35d..edfb1917421 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Diagrams.php +++ b/app/code/Magento/Backend/Block/Dashboard/Diagrams.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard; diff --git a/app/code/Magento/Backend/Block/Dashboard/Graph.php b/app/code/Magento/Backend/Block/Dashboard/Graph.php index ec6c7aa40c7..5e602de3b3e 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Graph.php +++ b/app/code/Magento/Backend/Block/Dashboard/Graph.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard; diff --git a/app/code/Magento/Backend/Block/Dashboard/Grid.php b/app/code/Magento/Backend/Block/Dashboard/Grid.php index 0f6a17cc8d9..59db71b9cf8 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Grid.php +++ b/app/code/Magento/Backend/Block/Dashboard/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard; diff --git a/app/code/Magento/Backend/Block/Dashboard/Grids.php b/app/code/Magento/Backend/Block/Dashboard/Grids.php index da272f58675..33dd109f999 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Grids.php +++ b/app/code/Magento/Backend/Block/Dashboard/Grids.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard; diff --git a/app/code/Magento/Backend/Block/Dashboard/Orders/Grid.php b/app/code/Magento/Backend/Block/Dashboard/Orders/Grid.php index b20021b5918..986cfef2f96 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Orders/Grid.php +++ b/app/code/Magento/Backend/Block/Dashboard/Orders/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard\Orders; diff --git a/app/code/Magento/Backend/Block/Dashboard/Sales.php b/app/code/Magento/Backend/Block/Dashboard/Sales.php index bb5de426c4b..e48d49d5112 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Sales.php +++ b/app/code/Magento/Backend/Block/Dashboard/Sales.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard; diff --git a/app/code/Magento/Backend/Block/Dashboard/Searches/Renderer/Searchquery.php b/app/code/Magento/Backend/Block/Dashboard/Searches/Renderer/Searchquery.php index a200e809839..ef69a12c3f7 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Searches/Renderer/Searchquery.php +++ b/app/code/Magento/Backend/Block/Dashboard/Searches/Renderer/Searchquery.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard\Searches\Renderer; diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Amounts.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Amounts.php index 350855f24ad..50e49ec55b7 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Tab/Amounts.php +++ b/app/code/Magento/Backend/Block/Dashboard/Tab/Amounts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Most.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Most.php index 6956d5329d9..559114a2dd0 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Most.php +++ b/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Most.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard\Tab\Customers; diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Newest.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Newest.php index 99a0a67f005..b0b72dc4c78 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Newest.php +++ b/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Newest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard\Tab\Customers; diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Orders.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Orders.php index 2c47c127b5c..d6079738a4b 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Tab/Orders.php +++ b/app/code/Magento/Backend/Block/Dashboard/Tab/Orders.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Ordered.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Ordered.php index 9fc881e5870..060504ab96c 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Ordered.php +++ b/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Ordered.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard\Tab\Products; diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Viewed.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Viewed.php index ebb0c7d5982..af9dded435a 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Viewed.php +++ b/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Viewed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard\Tab\Products; diff --git a/app/code/Magento/Backend/Block/Dashboard/Totals.php b/app/code/Magento/Backend/Block/Dashboard/Totals.php index 342bece9929..0e44a793c34 100644 --- a/app/code/Magento/Backend/Block/Dashboard/Totals.php +++ b/app/code/Magento/Backend/Block/Dashboard/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Denied.php b/app/code/Magento/Backend/Block/Denied.php index 7eb50043acd..79811628e5a 100644 --- a/app/code/Magento/Backend/Block/Denied.php +++ b/app/code/Magento/Backend/Block/Denied.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block; diff --git a/app/code/Magento/Backend/Block/GlobalSearch.php b/app/code/Magento/Backend/Block/GlobalSearch.php index f24e11f1591..1a49f094ef5 100644 --- a/app/code/Magento/Backend/Block/GlobalSearch.php +++ b/app/code/Magento/Backend/Block/GlobalSearch.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block; diff --git a/app/code/Magento/Backend/Block/Media/Uploader.php b/app/code/Magento/Backend/Block/Media/Uploader.php index a99deeeb40b..45afcacdd04 100644 --- a/app/code/Magento/Backend/Block/Media/Uploader.php +++ b/app/code/Magento/Backend/Block/Media/Uploader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Media; diff --git a/app/code/Magento/Backend/Block/Menu.php b/app/code/Magento/Backend/Block/Menu.php index 5af117b892b..f3b99a2c14a 100644 --- a/app/code/Magento/Backend/Block/Menu.php +++ b/app/code/Magento/Backend/Block/Menu.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Page.php b/app/code/Magento/Backend/Block/Page.php index dca6a97a588..750eaebf58d 100644 --- a/app/code/Magento/Backend/Block/Page.php +++ b/app/code/Magento/Backend/Block/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Page/Copyright.php b/app/code/Magento/Backend/Block/Page/Copyright.php index f857a0f7ef3..547ee75bfd8 100644 --- a/app/code/Magento/Backend/Block/Page/Copyright.php +++ b/app/code/Magento/Backend/Block/Page/Copyright.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Page; diff --git a/app/code/Magento/Backend/Block/Page/Footer.php b/app/code/Magento/Backend/Block/Page/Footer.php index 92c95524640..397473d5ed3 100644 --- a/app/code/Magento/Backend/Block/Page/Footer.php +++ b/app/code/Magento/Backend/Block/Page/Footer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Page; diff --git a/app/code/Magento/Backend/Block/Page/Header.php b/app/code/Magento/Backend/Block/Page/Header.php index 616fced9dea..36561c7b1e2 100644 --- a/app/code/Magento/Backend/Block/Page/Header.php +++ b/app/code/Magento/Backend/Block/Page/Header.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Page/Notices.php b/app/code/Magento/Backend/Block/Page/Notices.php index e691b81676c..d680c5e80ed 100644 --- a/app/code/Magento/Backend/Block/Page/Notices.php +++ b/app/code/Magento/Backend/Block/Page/Notices.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Page/RequireJs.php b/app/code/Magento/Backend/Block/Page/RequireJs.php index 4cfcc83c803..84c94f1f8a1 100644 --- a/app/code/Magento/Backend/Block/Page/RequireJs.php +++ b/app/code/Magento/Backend/Block/Page/RequireJs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Page/System/Config/Robots/Reset.php b/app/code/Magento/Backend/Block/Page/System/Config/Robots/Reset.php index 0ed28ca8f84..7903f2c9731 100644 --- a/app/code/Magento/Backend/Block/Page/System/Config/Robots/Reset.php +++ b/app/code/Magento/Backend/Block/Page/System/Config/Robots/Reset.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Store/Switcher.php b/app/code/Magento/Backend/Block/Store/Switcher.php index cd15704952b..382c9622982 100644 --- a/app/code/Magento/Backend/Block/Store/Switcher.php +++ b/app/code/Magento/Backend/Block/Store/Switcher.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php b/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php index 248031dc762..b8c1b7d9e10 100644 --- a/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php +++ b/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php b/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php index 2f257af3cdf..f24f31424ff 100644 --- a/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php +++ b/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Store\Switcher\Form\Renderer\Fieldset; diff --git a/app/code/Magento/Backend/Block/System/Account/Edit.php b/app/code/Magento/Backend/Block/System/Account/Edit.php index 51874c36704..3acc69c4c0f 100644 --- a/app/code/Magento/Backend/Block/System/Account/Edit.php +++ b/app/code/Magento/Backend/Block/System/Account/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Account; diff --git a/app/code/Magento/Backend/Block/System/Account/Edit/Form.php b/app/code/Magento/Backend/Block/System/Account/Edit/Form.php index b687fed3034..e620f365e74 100644 --- a/app/code/Magento/Backend/Block/System/Account/Edit/Form.php +++ b/app/code/Magento/Backend/Block/System/Account/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Account\Edit; diff --git a/app/code/Magento/Backend/Block/System/Cache/Edit.php b/app/code/Magento/Backend/Block/System/Cache/Edit.php index 4ef041b10c9..5e7b7d75c3a 100644 --- a/app/code/Magento/Backend/Block/System/Cache/Edit.php +++ b/app/code/Magento/Backend/Block/System/Cache/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Cache; diff --git a/app/code/Magento/Backend/Block/System/Cache/Form.php b/app/code/Magento/Backend/Block/System/Cache/Form.php index 197029f0de3..d38ec0dc732 100644 --- a/app/code/Magento/Backend/Block/System/Cache/Form.php +++ b/app/code/Magento/Backend/Block/System/Cache/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Cache; diff --git a/app/code/Magento/Backend/Block/System/Design.php b/app/code/Magento/Backend/Block/System/Design.php index db6418cca4a..d69f8a68b5e 100644 --- a/app/code/Magento/Backend/Block/System/Design.php +++ b/app/code/Magento/Backend/Block/System/Design.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System; diff --git a/app/code/Magento/Backend/Block/System/Design/Edit.php b/app/code/Magento/Backend/Block/System/Design/Edit.php index 728667f9bc3..d8205065faa 100644 --- a/app/code/Magento/Backend/Block/System/Design/Edit.php +++ b/app/code/Magento/Backend/Block/System/Design/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Design; diff --git a/app/code/Magento/Backend/Block/System/Design/Edit/Tab/General.php b/app/code/Magento/Backend/Block/System/Design/Edit/Tab/General.php index 07d77643573..02f7c5ad58e 100644 --- a/app/code/Magento/Backend/Block/System/Design/Edit/Tab/General.php +++ b/app/code/Magento/Backend/Block/System/Design/Edit/Tab/General.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/System/Design/Edit/Tabs.php b/app/code/Magento/Backend/Block/System/Design/Edit/Tabs.php index 6905413fb93..4a02d553fd2 100644 --- a/app/code/Magento/Backend/Block/System/Design/Edit/Tabs.php +++ b/app/code/Magento/Backend/Block/System/Design/Edit/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Design\Edit; diff --git a/app/code/Magento/Backend/Block/System/Store/Delete.php b/app/code/Magento/Backend/Block/System/Store/Delete.php index 012c810a8ba..bd6cb6d21fe 100644 --- a/app/code/Magento/Backend/Block/System/Store/Delete.php +++ b/app/code/Magento/Backend/Block/System/Store/Delete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store; diff --git a/app/code/Magento/Backend/Block/System/Store/Delete/Form.php b/app/code/Magento/Backend/Block/System/Store/Delete/Form.php index 87b26d3e8b4..543383ca155 100644 --- a/app/code/Magento/Backend/Block/System/Store/Delete/Form.php +++ b/app/code/Magento/Backend/Block/System/Store/Delete/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store\Delete; diff --git a/app/code/Magento/Backend/Block/System/Store/Delete/Group.php b/app/code/Magento/Backend/Block/System/Store/Delete/Group.php index da4b06e88d2..01fc6f0342f 100644 --- a/app/code/Magento/Backend/Block/System/Store/Delete/Group.php +++ b/app/code/Magento/Backend/Block/System/Store/Delete/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store\Delete; diff --git a/app/code/Magento/Backend/Block/System/Store/Delete/Website.php b/app/code/Magento/Backend/Block/System/Store/Delete/Website.php index fa16edd511c..792bfaed96f 100644 --- a/app/code/Magento/Backend/Block/System/Store/Delete/Website.php +++ b/app/code/Magento/Backend/Block/System/Store/Delete/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store\Delete; diff --git a/app/code/Magento/Backend/Block/System/Store/Edit.php b/app/code/Magento/Backend/Block/System/Store/Edit.php index f612e01a853..30666d62c78 100644 --- a/app/code/Magento/Backend/Block/System/Store/Edit.php +++ b/app/code/Magento/Backend/Block/System/Store/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store; diff --git a/app/code/Magento/Backend/Block/System/Store/Edit/AbstractForm.php b/app/code/Magento/Backend/Block/System/Store/Edit/AbstractForm.php index a1178c8f8aa..bbdb9e756e8 100644 --- a/app/code/Magento/Backend/Block/System/Store/Edit/AbstractForm.php +++ b/app/code/Magento/Backend/Block/System/Store/Edit/AbstractForm.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store\Edit; diff --git a/app/code/Magento/Backend/Block/System/Store/Edit/Form/Group.php b/app/code/Magento/Backend/Block/System/Store/Edit/Form/Group.php index 5f6fd72a19c..436c49d7a8d 100644 --- a/app/code/Magento/Backend/Block/System/Store/Edit/Form/Group.php +++ b/app/code/Magento/Backend/Block/System/Store/Edit/Form/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store\Edit\Form; diff --git a/app/code/Magento/Backend/Block/System/Store/Edit/Form/Store.php b/app/code/Magento/Backend/Block/System/Store/Edit/Form/Store.php index 14765a65301..c61b390117b 100644 --- a/app/code/Magento/Backend/Block/System/Store/Edit/Form/Store.php +++ b/app/code/Magento/Backend/Block/System/Store/Edit/Form/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store\Edit\Form; diff --git a/app/code/Magento/Backend/Block/System/Store/Edit/Form/Website.php b/app/code/Magento/Backend/Block/System/Store/Edit/Form/Website.php index 4e8b1c81ab4..b90cffc6533 100644 --- a/app/code/Magento/Backend/Block/System/Store/Edit/Form/Website.php +++ b/app/code/Magento/Backend/Block/System/Store/Edit/Form/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store\Edit\Form; diff --git a/app/code/Magento/Backend/Block/System/Store/Grid/Render/Group.php b/app/code/Magento/Backend/Block/System/Store/Grid/Render/Group.php index ea1de7b2be5..34fcc3c0f94 100644 --- a/app/code/Magento/Backend/Block/System/Store/Grid/Render/Group.php +++ b/app/code/Magento/Backend/Block/System/Store/Grid/Render/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store\Grid\Render; diff --git a/app/code/Magento/Backend/Block/System/Store/Grid/Render/Store.php b/app/code/Magento/Backend/Block/System/Store/Grid/Render/Store.php index 58346299c8b..b07dd055b74 100644 --- a/app/code/Magento/Backend/Block/System/Store/Grid/Render/Store.php +++ b/app/code/Magento/Backend/Block/System/Store/Grid/Render/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store\Grid\Render; diff --git a/app/code/Magento/Backend/Block/System/Store/Grid/Render/Website.php b/app/code/Magento/Backend/Block/System/Store/Grid/Render/Website.php index 6bfeb4cf933..560332692e0 100644 --- a/app/code/Magento/Backend/Block/System/Store/Grid/Render/Website.php +++ b/app/code/Magento/Backend/Block/System/Store/Grid/Render/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store\Grid\Render; diff --git a/app/code/Magento/Backend/Block/System/Store/Store.php b/app/code/Magento/Backend/Block/System/Store/Store.php index 545d6ce8bf9..ca040948901 100644 --- a/app/code/Magento/Backend/Block/System/Store/Store.php +++ b/app/code/Magento/Backend/Block/System/Store/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Store; diff --git a/app/code/Magento/Backend/Block/Template.php b/app/code/Magento/Backend/Block/Template.php index 650dea6fea7..1bcd3033035 100644 --- a/app/code/Magento/Backend/Block/Template.php +++ b/app/code/Magento/Backend/Block/Template.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block; diff --git a/app/code/Magento/Backend/Block/Template/Context.php b/app/code/Magento/Backend/Block/Template/Context.php index 2cebd1cd5e4..4f1324763f3 100644 --- a/app/code/Magento/Backend/Block/Template/Context.php +++ b/app/code/Magento/Backend/Block/Template/Context.php @@ -2,7 +2,7 @@ /** * Backend block template context * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Text/ListText.php b/app/code/Magento/Backend/Block/Text/ListText.php index 3ec68b25707..0dd8d0c05ac 100644 --- a/app/code/Magento/Backend/Block/Text/ListText.php +++ b/app/code/Magento/Backend/Block/Text/ListText.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget.php b/app/code/Magento/Backend/Block/Widget.php index 2e468ce26d7..8284b371704 100644 --- a/app/code/Magento/Backend/Block/Widget.php +++ b/app/code/Magento/Backend/Block/Widget.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block; diff --git a/app/code/Magento/Backend/Block/Widget/Accordion.php b/app/code/Magento/Backend/Block/Widget/Accordion.php index 73dc28e0d40..b0511179e41 100644 --- a/app/code/Magento/Backend/Block/Widget/Accordion.php +++ b/app/code/Magento/Backend/Block/Widget/Accordion.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget; diff --git a/app/code/Magento/Backend/Block/Widget/Accordion/Item.php b/app/code/Magento/Backend/Block/Widget/Accordion/Item.php index b7033726e6f..756189956d5 100644 --- a/app/code/Magento/Backend/Block/Widget/Accordion/Item.php +++ b/app/code/Magento/Backend/Block/Widget/Accordion/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Accordion; diff --git a/app/code/Magento/Backend/Block/Widget/Breadcrumbs.php b/app/code/Magento/Backend/Block/Widget/Breadcrumbs.php index 33954bfb517..c74a2808b8f 100644 --- a/app/code/Magento/Backend/Block/Widget/Breadcrumbs.php +++ b/app/code/Magento/Backend/Block/Widget/Breadcrumbs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget; diff --git a/app/code/Magento/Backend/Block/Widget/Button.php b/app/code/Magento/Backend/Block/Widget/Button.php index baa3aac747f..05242b42a3e 100644 --- a/app/code/Magento/Backend/Block/Widget/Button.php +++ b/app/code/Magento/Backend/Block/Widget/Button.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget; diff --git a/app/code/Magento/Backend/Block/Widget/Button/ButtonList.php b/app/code/Magento/Backend/Block/Widget/Button/ButtonList.php index ffa08e8d612..c05a047d45e 100644 --- a/app/code/Magento/Backend/Block/Widget/Button/ButtonList.php +++ b/app/code/Magento/Backend/Block/Widget/Button/ButtonList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Button/ContextInterface.php b/app/code/Magento/Backend/Block/Widget/Button/ContextInterface.php index e407528f4e6..5b7d3c4f778 100644 --- a/app/code/Magento/Backend/Block/Widget/Button/ContextInterface.php +++ b/app/code/Magento/Backend/Block/Widget/Button/ContextInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Button/Item.php b/app/code/Magento/Backend/Block/Widget/Button/Item.php index 530e07a61d5..4f76ddf1689 100644 --- a/app/code/Magento/Backend/Block/Widget/Button/Item.php +++ b/app/code/Magento/Backend/Block/Widget/Button/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Button/SplitButton.php b/app/code/Magento/Backend/Block/Widget/Button/SplitButton.php index d2603eebad6..16ce213bcbb 100644 --- a/app/code/Magento/Backend/Block/Widget/Button/SplitButton.php +++ b/app/code/Magento/Backend/Block/Widget/Button/SplitButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Button; diff --git a/app/code/Magento/Backend/Block/Widget/Button/Toolbar.php b/app/code/Magento/Backend/Block/Widget/Button/Toolbar.php index 03d1d5758a4..fb39f0e5c21 100644 --- a/app/code/Magento/Backend/Block/Widget/Button/Toolbar.php +++ b/app/code/Magento/Backend/Block/Widget/Button/Toolbar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Button/Toolbar/Container.php b/app/code/Magento/Backend/Block/Widget/Button/Toolbar/Container.php index eefaefab184..426ee8d999e 100644 --- a/app/code/Magento/Backend/Block/Widget/Button/Toolbar/Container.php +++ b/app/code/Magento/Backend/Block/Widget/Button/Toolbar/Container.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Button/ToolbarInterface.php b/app/code/Magento/Backend/Block/Widget/Button/ToolbarInterface.php index 0f4a35b9416..1f5cb1e9767 100644 --- a/app/code/Magento/Backend/Block/Widget/Button/ToolbarInterface.php +++ b/app/code/Magento/Backend/Block/Widget/Button/ToolbarInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Container.php b/app/code/Magento/Backend/Block/Widget/Container.php index 8c89485c7e3..1d823895ea0 100644 --- a/app/code/Magento/Backend/Block/Widget/Container.php +++ b/app/code/Magento/Backend/Block/Widget/Container.php @@ -2,7 +2,7 @@ /** * Backend container block * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/ContainerInterface.php b/app/code/Magento/Backend/Block/Widget/ContainerInterface.php index 4d26ab71595..430be4efe43 100644 --- a/app/code/Magento/Backend/Block/Widget/ContainerInterface.php +++ b/app/code/Magento/Backend/Block/Widget/ContainerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Context.php b/app/code/Magento/Backend/Block/Widget/Context.php index 7dd7f0f4149..e9e9ec1b813 100644 --- a/app/code/Magento/Backend/Block/Widget/Context.php +++ b/app/code/Magento/Backend/Block/Widget/Context.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Form.php b/app/code/Magento/Backend/Block/Widget/Form.php index 7a6f6f1f943..ad28c95276a 100644 --- a/app/code/Magento/Backend/Block/Widget/Form.php +++ b/app/code/Magento/Backend/Block/Widget/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget; diff --git a/app/code/Magento/Backend/Block/Widget/Form/Container.php b/app/code/Magento/Backend/Block/Widget/Form/Container.php index 282b3e69532..61019178ba4 100644 --- a/app/code/Magento/Backend/Block/Widget/Form/Container.php +++ b/app/code/Magento/Backend/Block/Widget/Form/Container.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Form; diff --git a/app/code/Magento/Backend/Block/Widget/Form/Element.php b/app/code/Magento/Backend/Block/Widget/Form/Element.php index cc701fc9dd3..ac19ef6d2b9 100644 --- a/app/code/Magento/Backend/Block/Widget/Form/Element.php +++ b/app/code/Magento/Backend/Block/Widget/Form/Element.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Form; diff --git a/app/code/Magento/Backend/Block/Widget/Form/Element/Dependence.php b/app/code/Magento/Backend/Block/Widget/Form/Element/Dependence.php index 825a021700f..4e0368916db 100644 --- a/app/code/Magento/Backend/Block/Widget/Form/Element/Dependence.php +++ b/app/code/Magento/Backend/Block/Widget/Form/Element/Dependence.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Form/Element/Gallery.php b/app/code/Magento/Backend/Block/Widget/Form/Element/Gallery.php index 5137407aa9c..07e179f330a 100644 --- a/app/code/Magento/Backend/Block/Widget/Form/Element/Gallery.php +++ b/app/code/Magento/Backend/Block/Widget/Form/Element/Gallery.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Form/Generic.php b/app/code/Magento/Backend/Block/Widget/Form/Generic.php index efc734a91d1..04bc24bb50f 100644 --- a/app/code/Magento/Backend/Block/Widget/Form/Generic.php +++ b/app/code/Magento/Backend/Block/Widget/Form/Generic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Form/Renderer/Element.php b/app/code/Magento/Backend/Block/Widget/Form/Renderer/Element.php index 5d88b7f659a..9851b9aa9e6 100644 --- a/app/code/Magento/Backend/Block/Widget/Form/Renderer/Element.php +++ b/app/code/Magento/Backend/Block/Widget/Form/Renderer/Element.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset.php b/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset.php index 24616725873..61070d54191 100644 --- a/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset.php +++ b/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset/Element.php b/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset/Element.php index d393f9c6adb..e27205148c9 100644 --- a/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset/Element.php +++ b/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset/Element.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid.php b/app/code/Magento/Backend/Block/Widget/Grid.php index 37a1398bea2..693bf2ebb44 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid.php +++ b/app/code/Magento/Backend/Block/Widget/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column.php b/app/code/Magento/Backend/Block/Widget/Grid/Column.php index 142f6931cd4..3b3118c4289 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Extended.php index b80a086e913..e7de1af633b 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Extended.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Extended.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/AbstractFilter.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/AbstractFilter.php index 9b748549db1..4af3b1ede10 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/AbstractFilter.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/AbstractFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Checkbox.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Checkbox.php index 52553751d0a..4648c75ef3c 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Checkbox.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Checkbox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Filter; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Country.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Country.php index 0e384d26928..eead186982b 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Country.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Filter; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php index 9cbb06f4e5f..2241fb0026f 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php index 1be01b2842e..8cfb90ea175 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/FilterInterface.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/FilterInterface.php index d6e7ef1627e..dc68abae354 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/FilterInterface.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/FilterInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Filter; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Massaction.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Massaction.php index 7780138a1b0..442efc8f12c 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Massaction.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Massaction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Filter; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Price.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Price.php index a32272f14db..682da842191 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Price.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Filter; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Radio.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Radio.php index e0cea977b9b..afddc1db962 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Radio.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Radio.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Filter; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Range.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Range.php index f92ff116fbc..c20aa66d139 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Range.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Range.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select.php index 887501e88e2..d4ef2521e11 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Filter; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select/Extended.php index 35d998583cb..a9b8c9b41ee 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select/Extended.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select/Extended.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Filter\Select; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/SkipList.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/SkipList.php index 53cc9be4a8c..ef87c4f2c37 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/SkipList.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/SkipList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Filter; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Store.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Store.php index af5515fd0eb..f2663290dbe 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Store.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Text.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Text.php index 0b44bbc9477..259f496040e 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Text.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Text.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Filter; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Theme.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Theme.php index 165da81c8ac..813d971a224 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Theme.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Theme.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Multistore.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Multistore.php index 8f98b5f525b..b083be40c9c 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Multistore.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Multistore.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/AbstractRenderer.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/AbstractRenderer.php index 1ad830de68b..5e1cc6cb7b2 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/AbstractRenderer.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/AbstractRenderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Action.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Action.php index 6e35ad8f4bc..05f947ef2d1 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Action.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Button.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Button.php index 3711104e324..daf6756e419 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Button.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Button.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php index 5962b2770df..ca6aa7a1a3c 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkboxes/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkboxes/Extended.php index 3ba08cdac31..26e9b60a413 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkboxes/Extended.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkboxes/Extended.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer\Checkboxes; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Concat.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Concat.php index 1569b094876..0bdf21bb54d 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Concat.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Concat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Country.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Country.php index 4affa1b103b..0871d82bf5e 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Country.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php index 3b6f134943a..329ef4b07b8 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Date.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Date.php index c788ef9996c..45d91396976 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Date.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Date.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Datetime.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Datetime.php index e525272247d..f0364eddb24 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Datetime.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Datetime.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/DraggableHandle.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/DraggableHandle.php index dd7189d24e5..08539f81775 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/DraggableHandle.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/DraggableHandle.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Input.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Input.php index ce5f586aa82..5a2e61d1a7f 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Input.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Input.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Ip.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Ip.php index 14675efd1cb..3447f2fe19a 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Ip.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Ip.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Longtext.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Longtext.php index 71528b8d90d..3493bd8e9b8 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Longtext.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Longtext.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Massaction.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Massaction.php index e85182b7d4a..50908e2fd63 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Massaction.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Massaction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Number.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Number.php index 4ebe1e564f4..2148cf367a0 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Number.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Number.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options.php index 0f7384dd462..48ab6882a6c 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Converter.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Converter.php index 13fcb3c9363..fb905a78ea9 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Converter.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer\Options; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Extended.php index 537269b520d..16f4718d33b 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Extended.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Extended.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer\Options; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Price.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Price.php index 7e341365085..033ad448713 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Price.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio.php index 73bdf85ff68..2a27199791f 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio/Extended.php index 59e66bc7b4a..61dc48ead52 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio/Extended.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio/Extended.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer\Radio; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/RendererInterface.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/RendererInterface.php index ad8d1f6b5fe..cc235eaf849 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/RendererInterface.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/RendererInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select.php index a578f5046f3..f49d053139d 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select/Extended.php index 253f48a8f18..5b65625cca4 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select/Extended.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select/Extended.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer\Select; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Store.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Store.php index f2902055aed..add94b61ba8 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Store.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Text.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Text.php index 11aa6bf8625..b0a1628505c 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Text.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Text.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php index a45584438af..b11d14be78f 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/ColumnSet.php b/app/code/Magento/Backend/Block/Widget/Grid/ColumnSet.php index dc6e931c209..b1bd0ba497b 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/ColumnSet.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/ColumnSet.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Container.php b/app/code/Magento/Backend/Block/Widget/Grid/Container.php index d7762d63618..cb262b0f1f4 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Container.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Container.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Export.php b/app/code/Magento/Backend/Block/Widget/Grid/Export.php index 48f250377f8..08cbf1acb4c 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Export.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Export.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Grid/ExportInterface.php b/app/code/Magento/Backend/Block/Widget/Grid/ExportInterface.php index 95f7414b531..9cf93782429 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/ExportInterface.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/ExportInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Extended.php index 2e4051265cf..f23b22e58d1 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Extended.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Extended.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction.php index c86907cc980..3a8f789fb2c 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Massaction.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Massaction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/AbstractMassaction.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/AbstractMassaction.php index 7f697599c70..380b2991eb0 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/AbstractMassaction.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/AbstractMassaction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Massaction; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Additional.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Additional.php index 898e2efb508..15250b3904d 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Additional.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Additional.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Massaction; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Extended.php index a9c8d72a6c5..6a4081879ee 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Extended.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Extended.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Massaction; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item.php index a3f1354573b..de424fe3cb0 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Massaction; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/AdditionalInterface.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/AdditionalInterface.php index f5dda0f83de..21c42c2b930 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/AdditionalInterface.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/AdditionalInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Massaction\Item\Additional; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/DefaultAdditional.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/DefaultAdditional.php index 1fb1c4840a0..24f0f44bbc4 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/DefaultAdditional.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/DefaultAdditional.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Massaction\Item\Additional; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/VisibilityCheckerInterface.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/VisibilityCheckerInterface.php index 934c4a84d14..964419121aa 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/VisibilityCheckerInterface.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/VisibilityCheckerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid\Massaction; diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Serializer.php b/app/code/Magento/Backend/Block/Widget/Grid/Serializer.php index 16bceea0469..3c4d671e9aa 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Serializer.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Serializer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget\Grid; diff --git a/app/code/Magento/Backend/Block/Widget/Tab.php b/app/code/Magento/Backend/Block/Widget/Tab.php index 9e8cfbd7d9c..42ec59f5c73 100644 --- a/app/code/Magento/Backend/Block/Widget/Tab.php +++ b/app/code/Magento/Backend/Block/Widget/Tab.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget; diff --git a/app/code/Magento/Backend/Block/Widget/Tab/TabInterface.php b/app/code/Magento/Backend/Block/Widget/Tab/TabInterface.php index deb3bf98226..4ae3dbf086d 100644 --- a/app/code/Magento/Backend/Block/Widget/Tab/TabInterface.php +++ b/app/code/Magento/Backend/Block/Widget/Tab/TabInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Block/Widget/Tabs.php b/app/code/Magento/Backend/Block/Widget/Tabs.php index 580e4f7de56..2efb1fe85e9 100644 --- a/app/code/Magento/Backend/Block/Widget/Tabs.php +++ b/app/code/Magento/Backend/Block/Widget/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Widget; diff --git a/app/code/Magento/Backend/Console/Command/AbstractCacheCommand.php b/app/code/Magento/Backend/Console/Command/AbstractCacheCommand.php index 5d57f141539..03a9f1c1ea7 100644 --- a/app/code/Magento/Backend/Console/Command/AbstractCacheCommand.php +++ b/app/code/Magento/Backend/Console/Command/AbstractCacheCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Console/Command/AbstractCacheManageCommand.php b/app/code/Magento/Backend/Console/Command/AbstractCacheManageCommand.php index 0a42fc4b67f..45a5dfed7fe 100644 --- a/app/code/Magento/Backend/Console/Command/AbstractCacheManageCommand.php +++ b/app/code/Magento/Backend/Console/Command/AbstractCacheManageCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Console/Command/AbstractCacheSetCommand.php b/app/code/Magento/Backend/Console/Command/AbstractCacheSetCommand.php index 50a664aa576..73ea259c9f6 100644 --- a/app/code/Magento/Backend/Console/Command/AbstractCacheSetCommand.php +++ b/app/code/Magento/Backend/Console/Command/AbstractCacheSetCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Console/Command/AbstractCacheTypeManageCommand.php b/app/code/Magento/Backend/Console/Command/AbstractCacheTypeManageCommand.php index 2b9cdc3ecfe..d1cae311b90 100644 --- a/app/code/Magento/Backend/Console/Command/AbstractCacheTypeManageCommand.php +++ b/app/code/Magento/Backend/Console/Command/AbstractCacheTypeManageCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Console/Command/CacheCleanCommand.php b/app/code/Magento/Backend/Console/Command/CacheCleanCommand.php index a195d601cd1..968f2cdabe7 100644 --- a/app/code/Magento/Backend/Console/Command/CacheCleanCommand.php +++ b/app/code/Magento/Backend/Console/Command/CacheCleanCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Console/Command/CacheDisableCommand.php b/app/code/Magento/Backend/Console/Command/CacheDisableCommand.php index ce2cecc5426..b909170ea07 100644 --- a/app/code/Magento/Backend/Console/Command/CacheDisableCommand.php +++ b/app/code/Magento/Backend/Console/Command/CacheDisableCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Console/Command/CacheEnableCommand.php b/app/code/Magento/Backend/Console/Command/CacheEnableCommand.php index 2389f436258..b828dcc2e3e 100644 --- a/app/code/Magento/Backend/Console/Command/CacheEnableCommand.php +++ b/app/code/Magento/Backend/Console/Command/CacheEnableCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Console/Command/CacheFlushCommand.php b/app/code/Magento/Backend/Console/Command/CacheFlushCommand.php index 2bf2dddad9b..90e8a6d09e9 100644 --- a/app/code/Magento/Backend/Console/Command/CacheFlushCommand.php +++ b/app/code/Magento/Backend/Console/Command/CacheFlushCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Console/Command/CacheStatusCommand.php b/app/code/Magento/Backend/Console/Command/CacheStatusCommand.php index 903f49ef0f9..ef944adfa0f 100644 --- a/app/code/Magento/Backend/Console/Command/CacheStatusCommand.php +++ b/app/code/Magento/Backend/Console/Command/CacheStatusCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Ajax/Translate.php b/app/code/Magento/Backend/Controller/Adminhtml/Ajax/Translate.php index 3f80df793a2..9c2301a8148 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Ajax/Translate.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Ajax/Translate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Ajax; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Auth.php b/app/code/Magento/Backend/Controller/Adminhtml/Auth.php index 84a40d39416..7641a4c88e3 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Auth.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Auth.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedIframe.php b/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedIframe.php index 6ae650a07be..acd4120eb7e 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedIframe.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedIframe.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Auth; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedJson.php b/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedJson.php index 7c811e6eab9..62f9c2605c4 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedJson.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedJson.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Auth; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Auth/Login.php b/app/code/Magento/Backend/Controller/Adminhtml/Auth/Login.php index ad5340078e7..8f10505e2bd 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Auth/Login.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Auth/Login.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Auth; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Auth/Logout.php b/app/code/Magento/Backend/Controller/Adminhtml/Auth/Logout.php index 95bf0f720c1..b970a974343 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Auth/Logout.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Auth/Logout.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Auth; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/BackendApp/Redirect.php b/app/code/Magento/Backend/Controller/Adminhtml/BackendApp/Redirect.php index d7646c68c3b..93c3894e2b4 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/BackendApp/Redirect.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/BackendApp/Redirect.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\BackendApp; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache.php index 62b79594b22..6fa0183fe50 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Cache.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Cache.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanImages.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanImages.php index d31b90cbbc1..7cc6a1aaae4 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanImages.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanImages.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Cache; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanMedia.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanMedia.php index eea88209e2d..1d0e27f943f 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanMedia.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanMedia.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Cache; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanStaticFiles.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanStaticFiles.php index e926576ecdc..3370b73472f 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanStaticFiles.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanStaticFiles.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Cache; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushAll.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushAll.php index 2ad52b7136f..046ce98217d 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushAll.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushAll.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Cache; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushSystem.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushSystem.php index 0a3a3df29fd..a31a0e89ddd 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushSystem.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushSystem.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Cache; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/Index.php index e92bc04b7da..226a70d7366 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Cache/Index.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Cache/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Cache; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassDisable.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassDisable.php index 42cbe229815..42ac31f693b 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassDisable.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassDisable.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Cache; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassEnable.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassEnable.php index 8c4117831e8..0cf09508c29 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassEnable.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassEnable.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Cache; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassRefresh.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassRefresh.php index 83ea91e32bf..ed546ba91ad 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassRefresh.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassRefresh.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Cache; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php index 8d4bcbfa020..587db1c9c7a 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/AjaxBlock.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/AjaxBlock.php index d78770ffd8b..5a8f02a78d6 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/AjaxBlock.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/AjaxBlock.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Dashboard; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersMost.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersMost.php index 05fb90eee08..7c0488c9e0d 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersMost.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersMost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Dashboard; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersNewest.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersNewest.php index f4b3d1e8fd9..e0958e03d16 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersNewest.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersNewest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Dashboard; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Index.php index d6c6856e15b..0215f2c77c6 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Index.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Dashboard; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/ProductsViewed.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/ProductsViewed.php index 708372194c1..009e2f0e3a3 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/ProductsViewed.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/ProductsViewed.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Dashboard; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/RefreshStatistics.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/RefreshStatistics.php index 2c5d6e0da66..addaf950cb6 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/RefreshStatistics.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/RefreshStatistics.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Tunnel.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Tunnel.php index df502ae6cdd..0c922198526 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Tunnel.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Tunnel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Dashboard; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Denied.php b/app/code/Magento/Backend/Controller/Adminhtml/Denied.php index fb279c9b762..88069826dd3 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Denied.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Denied.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/Index.php index 5b8f390704c..61ef6c744bf 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Index.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Index/ChangeLocale.php b/app/code/Magento/Backend/Controller/Adminhtml/Index/ChangeLocale.php index 061a5c211d7..3c1b8f135be 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Index/ChangeLocale.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Index/ChangeLocale.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Index/GlobalSearch.php b/app/code/Magento/Backend/Controller/Adminhtml/Index/GlobalSearch.php index 146699d8724..20a66e3cd47 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Index/GlobalSearch.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Index/GlobalSearch.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Index/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/Index/Index.php index e05d822885b..90fe815fce7 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Index/Index.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Index/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Noroute/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/Noroute/Index.php index 7fc1e1b4cda..61e7650f552 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/Noroute/Index.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/Noroute/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\Noroute; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System.php b/app/code/Magento/Backend/Controller/Adminhtml/System.php index 2a46cc56334..dff6e4e203e 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Account.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Account.php index 107392e7a9d..6b960d9db49 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Account.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Account.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Index.php index f3980d3865d..54c939be20b 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Index.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Account; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Save.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Save.php index 71079724f00..91b9ae35ec6 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Save.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Account; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design.php index c5c7c01b3ec..4f79572cd19 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Design.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Design.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Delete.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Delete.php index 6988e5ccb21..6fae1ba2f8e 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Delete.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Design; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Edit.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Edit.php index 5756cd329e4..670647a88e2 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Edit.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Design; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Grid.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Grid.php index 74cadc643ef..2861d9777b9 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Grid.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Design; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Index.php index 4f195eb2889..abd90b1b7cf 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Index.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Design; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/NewAction.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/NewAction.php index b6f685a2697..f1c7960ed52 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/NewAction.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Design; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Save.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Save.php index dab4626155c..50f877a7a09 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Save.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Design; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Index.php index 62386d3bf77..8f801fb30af 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Index.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/SetStore.php b/app/code/Magento/Backend/Controller/Adminhtml/System/SetStore.php index 242c4170d1f..d8d6afe1f13 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/SetStore.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/SetStore.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store.php index c3999c9628b..4326828ca1b 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroup.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroup.php index 9ec06c9ff49..84bea868b69 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroup.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroup.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroupPost.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroupPost.php index 1fc5ebf6618..628f4db36fe 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroupPost.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroupPost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStore.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStore.php index 1e6adf5a0d1..985ac5148e9 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStore.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStore.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStorePost.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStorePost.php index 850d04993f5..a03698d4e45 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStorePost.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStorePost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsite.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsite.php index adc719c4cfe..fe5ae9cffd0 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsite.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsite.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsitePost.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsitePost.php index 2c5f97cc44d..17502d235fc 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsitePost.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsitePost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditGroup.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditGroup.php index 5fd207fd4fe..ee70f480dd2 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditGroup.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditGroup.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditStore.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditStore.php index 4ef073a2ea7..5fea4f18837 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditStore.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditStore.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditWebsite.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditWebsite.php index 93888fbe862..82deb9d3d27 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditWebsite.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditWebsite.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Index.php index 7b8b400c4c4..8741f1b37ea 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Index.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewGroup.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewGroup.php index c9d46a1a779..40dd82dd8cd 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewGroup.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewGroup.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewStore.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewStore.php index ffe247599df..090c18d3889 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewStore.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewStore.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewWebsite.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewWebsite.php index d1dffc3a09d..06e466d4eea 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewWebsite.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewWebsite.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Save.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Save.php index eda5a5eb281..14cd6447edc 100644 --- a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Save.php +++ b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Controller\Adminhtml\System\Store; diff --git a/app/code/Magento/Backend/Cron/CleanCache.php b/app/code/Magento/Backend/Cron/CleanCache.php index 840e0dcfcfd..7dc09da13d6 100644 --- a/app/code/Magento/Backend/Cron/CleanCache.php +++ b/app/code/Magento/Backend/Cron/CleanCache.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Cron; diff --git a/app/code/Magento/Backend/Helper/Dashboard/AbstractDashboard.php b/app/code/Magento/Backend/Helper/Dashboard/AbstractDashboard.php index 7edf09e7007..61e3e3be141 100644 --- a/app/code/Magento/Backend/Helper/Dashboard/AbstractDashboard.php +++ b/app/code/Magento/Backend/Helper/Dashboard/AbstractDashboard.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Helper\Dashboard; diff --git a/app/code/Magento/Backend/Helper/Dashboard/Data.php b/app/code/Magento/Backend/Helper/Dashboard/Data.php index d21db249ee9..8844047134d 100644 --- a/app/code/Magento/Backend/Helper/Dashboard/Data.php +++ b/app/code/Magento/Backend/Helper/Dashboard/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Helper\Dashboard; diff --git a/app/code/Magento/Backend/Helper/Dashboard/Order.php b/app/code/Magento/Backend/Helper/Dashboard/Order.php index 6dc699e2c39..1b4f293d837 100644 --- a/app/code/Magento/Backend/Helper/Dashboard/Order.php +++ b/app/code/Magento/Backend/Helper/Dashboard/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Helper\Dashboard; diff --git a/app/code/Magento/Backend/Helper/Data.php b/app/code/Magento/Backend/Helper/Data.php index febeb66f49f..7c7fe4a5fa5 100644 --- a/app/code/Magento/Backend/Helper/Data.php +++ b/app/code/Magento/Backend/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Helper; diff --git a/app/code/Magento/Backend/Helper/Js.php b/app/code/Magento/Backend/Helper/Js.php index c471ea7530a..36d776f170a 100644 --- a/app/code/Magento/Backend/Helper/Js.php +++ b/app/code/Magento/Backend/Helper/Js.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Model/AdminPathConfig.php b/app/code/Magento/Backend/Model/AdminPathConfig.php index a2a90c385b9..3fdd17a9a34 100644 --- a/app/code/Magento/Backend/Model/AdminPathConfig.php +++ b/app/code/Magento/Backend/Model/AdminPathConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model; diff --git a/app/code/Magento/Backend/Model/Auth.php b/app/code/Magento/Backend/Model/Auth.php index 9335684feb4..d888c74c02b 100644 --- a/app/code/Magento/Backend/Model/Auth.php +++ b/app/code/Magento/Backend/Model/Auth.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model; diff --git a/app/code/Magento/Backend/Model/Auth/Credential/StorageInterface.php b/app/code/Magento/Backend/Model/Auth/Credential/StorageInterface.php index f27d04a163c..724ddeb6a0d 100644 --- a/app/code/Magento/Backend/Model/Auth/Credential/StorageInterface.php +++ b/app/code/Magento/Backend/Model/Auth/Credential/StorageInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Auth\Credential; diff --git a/app/code/Magento/Backend/Model/Auth/Session.php b/app/code/Magento/Backend/Model/Auth/Session.php index 88814161337..b3e6e4b0d10 100644 --- a/app/code/Magento/Backend/Model/Auth/Session.php +++ b/app/code/Magento/Backend/Model/Auth/Session.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Auth; diff --git a/app/code/Magento/Backend/Model/Auth/StorageInterface.php b/app/code/Magento/Backend/Model/Auth/StorageInterface.php index 466c2b85415..83145728335 100644 --- a/app/code/Magento/Backend/Model/Auth/StorageInterface.php +++ b/app/code/Magento/Backend/Model/Auth/StorageInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Auth; diff --git a/app/code/Magento/Backend/Model/Authorization/RoleLocator.php b/app/code/Magento/Backend/Model/Authorization/RoleLocator.php index e444aeba7cf..fb291ce71d0 100644 --- a/app/code/Magento/Backend/Model/Authorization/RoleLocator.php +++ b/app/code/Magento/Backend/Model/Authorization/RoleLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Authorization; diff --git a/app/code/Magento/Backend/Model/Cache/ResourceModel/Grid/Collection.php b/app/code/Magento/Backend/Model/Cache/ResourceModel/Grid/Collection.php index f7ad02421d0..2467fc40257 100644 --- a/app/code/Magento/Backend/Model/Cache/ResourceModel/Grid/Collection.php +++ b/app/code/Magento/Backend/Model/Cache/ResourceModel/Grid/Collection.php @@ -2,7 +2,7 @@ /** * Cache grid collection * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Cache\ResourceModel\Grid; diff --git a/app/code/Magento/Backend/Model/Config/SessionLifetime/BackendModel.php b/app/code/Magento/Backend/Model/Config/SessionLifetime/BackendModel.php index b99f5027585..2fc8eeac8c9 100644 --- a/app/code/Magento/Backend/Model/Config/SessionLifetime/BackendModel.php +++ b/app/code/Magento/Backend/Model/Config/SessionLifetime/BackendModel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Config\SessionLifetime; diff --git a/app/code/Magento/Backend/Model/Locale/Manager.php b/app/code/Magento/Backend/Model/Locale/Manager.php index c850c986c21..7f2fa2d5e5a 100644 --- a/app/code/Magento/Backend/Model/Locale/Manager.php +++ b/app/code/Magento/Backend/Model/Locale/Manager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Locale; diff --git a/app/code/Magento/Backend/Model/Locale/Resolver.php b/app/code/Magento/Backend/Model/Locale/Resolver.php index 3284ad815eb..054b49d860a 100644 --- a/app/code/Magento/Backend/Model/Locale/Resolver.php +++ b/app/code/Magento/Backend/Model/Locale/Resolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Locale; diff --git a/app/code/Magento/Backend/Model/Menu.php b/app/code/Magento/Backend/Model/Menu.php index 516319ad983..3e13ab874a2 100644 --- a/app/code/Magento/Backend/Model/Menu.php +++ b/app/code/Magento/Backend/Model/Menu.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model; diff --git a/app/code/Magento/Backend/Model/Menu/AbstractDirector.php b/app/code/Magento/Backend/Model/Menu/AbstractDirector.php index 713b45fabd9..9d08ff6a186 100644 --- a/app/code/Magento/Backend/Model/Menu/AbstractDirector.php +++ b/app/code/Magento/Backend/Model/Menu/AbstractDirector.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu; diff --git a/app/code/Magento/Backend/Model/Menu/Builder.php b/app/code/Magento/Backend/Model/Menu/Builder.php index 57205cba781..36dacf852d5 100644 --- a/app/code/Magento/Backend/Model/Menu/Builder.php +++ b/app/code/Magento/Backend/Model/Menu/Builder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu; diff --git a/app/code/Magento/Backend/Model/Menu/Builder/AbstractCommand.php b/app/code/Magento/Backend/Model/Menu/Builder/AbstractCommand.php index d66f3869bb7..eec6416c5b8 100644 --- a/app/code/Magento/Backend/Model/Menu/Builder/AbstractCommand.php +++ b/app/code/Magento/Backend/Model/Menu/Builder/AbstractCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Builder; diff --git a/app/code/Magento/Backend/Model/Menu/Builder/Command/Add.php b/app/code/Magento/Backend/Model/Menu/Builder/Command/Add.php index 6add989e3b8..2e6cd02bd75 100644 --- a/app/code/Magento/Backend/Model/Menu/Builder/Command/Add.php +++ b/app/code/Magento/Backend/Model/Menu/Builder/Command/Add.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Builder\Command; diff --git a/app/code/Magento/Backend/Model/Menu/Builder/Command/Remove.php b/app/code/Magento/Backend/Model/Menu/Builder/Command/Remove.php index 0f797c71765..67084c5e2a8 100644 --- a/app/code/Magento/Backend/Model/Menu/Builder/Command/Remove.php +++ b/app/code/Magento/Backend/Model/Menu/Builder/Command/Remove.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Builder\Command; diff --git a/app/code/Magento/Backend/Model/Menu/Builder/Command/Update.php b/app/code/Magento/Backend/Model/Menu/Builder/Command/Update.php index f7123597063..67926a34354 100644 --- a/app/code/Magento/Backend/Model/Menu/Builder/Command/Update.php +++ b/app/code/Magento/Backend/Model/Menu/Builder/Command/Update.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Builder\Command; diff --git a/app/code/Magento/Backend/Model/Menu/Builder/CommandFactory.php b/app/code/Magento/Backend/Model/Menu/Builder/CommandFactory.php index fbfc33f001f..297c151eb2d 100644 --- a/app/code/Magento/Backend/Model/Menu/Builder/CommandFactory.php +++ b/app/code/Magento/Backend/Model/Menu/Builder/CommandFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Builder; diff --git a/app/code/Magento/Backend/Model/Menu/Config.php b/app/code/Magento/Backend/Model/Menu/Config.php index efd9e94e556..5cdb211d728 100644 --- a/app/code/Magento/Backend/Model/Menu/Config.php +++ b/app/code/Magento/Backend/Model/Menu/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu; diff --git a/app/code/Magento/Backend/Model/Menu/Config/Converter.php b/app/code/Magento/Backend/Model/Menu/Config/Converter.php index 5591096101b..2c0d9905f36 100644 --- a/app/code/Magento/Backend/Model/Menu/Config/Converter.php +++ b/app/code/Magento/Backend/Model/Menu/Config/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Config; diff --git a/app/code/Magento/Backend/Model/Menu/Config/Menu/Dom.php b/app/code/Magento/Backend/Model/Menu/Config/Menu/Dom.php index 37da3a0aeaf..5d2c6dc2cbf 100644 --- a/app/code/Magento/Backend/Model/Menu/Config/Menu/Dom.php +++ b/app/code/Magento/Backend/Model/Menu/Config/Menu/Dom.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Config\Menu; diff --git a/app/code/Magento/Backend/Model/Menu/Config/Reader.php b/app/code/Magento/Backend/Model/Menu/Config/Reader.php index 38906eafad9..c8c256e0bf2 100644 --- a/app/code/Magento/Backend/Model/Menu/Config/Reader.php +++ b/app/code/Magento/Backend/Model/Menu/Config/Reader.php @@ -2,7 +2,7 @@ /** * Menu configuration files handler * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Config; diff --git a/app/code/Magento/Backend/Model/Menu/Config/SchemaLocator.php b/app/code/Magento/Backend/Model/Menu/Config/SchemaLocator.php index 408d4141d91..e99c860d464 100644 --- a/app/code/Magento/Backend/Model/Menu/Config/SchemaLocator.php +++ b/app/code/Magento/Backend/Model/Menu/Config/SchemaLocator.php @@ -2,7 +2,7 @@ /** * Menu configuration schema locator * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Config; diff --git a/app/code/Magento/Backend/Model/Menu/Director/Director.php b/app/code/Magento/Backend/Model/Menu/Director/Director.php index 76cbb3a61a8..75ba4de306c 100644 --- a/app/code/Magento/Backend/Model/Menu/Director/Director.php +++ b/app/code/Magento/Backend/Model/Menu/Director/Director.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Model/Menu/Filter/Iterator.php b/app/code/Magento/Backend/Model/Menu/Filter/Iterator.php index b8d6c208461..65fc2fd2a05 100644 --- a/app/code/Magento/Backend/Model/Menu/Filter/Iterator.php +++ b/app/code/Magento/Backend/Model/Menu/Filter/Iterator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Filter; diff --git a/app/code/Magento/Backend/Model/Menu/Item.php b/app/code/Magento/Backend/Model/Menu/Item.php index a49920a6766..98d8818f78e 100644 --- a/app/code/Magento/Backend/Model/Menu/Item.php +++ b/app/code/Magento/Backend/Model/Menu/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Model/Menu/Item/Factory.php b/app/code/Magento/Backend/Model/Menu/Item/Factory.php index aabb6fb704d..8d2a7fdf371 100644 --- a/app/code/Magento/Backend/Model/Menu/Item/Factory.php +++ b/app/code/Magento/Backend/Model/Menu/Item/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Item; diff --git a/app/code/Magento/Backend/Model/Menu/Item/Validator.php b/app/code/Magento/Backend/Model/Menu/Item/Validator.php index 6c90fa12a0b..720ef840986 100644 --- a/app/code/Magento/Backend/Model/Menu/Item/Validator.php +++ b/app/code/Magento/Backend/Model/Menu/Item/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu\Item; diff --git a/app/code/Magento/Backend/Model/Menu/Iterator.php b/app/code/Magento/Backend/Model/Menu/Iterator.php index 85a2bc6cdd1..00ea0b2267a 100644 --- a/app/code/Magento/Backend/Model/Menu/Iterator.php +++ b/app/code/Magento/Backend/Model/Menu/Iterator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Menu; diff --git a/app/code/Magento/Backend/Model/ResourceModel/Translate.php b/app/code/Magento/Backend/Model/ResourceModel/Translate.php index 09d768e629a..0cceb944c57 100644 --- a/app/code/Magento/Backend/Model/ResourceModel/Translate.php +++ b/app/code/Magento/Backend/Model/ResourceModel/Translate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\ResourceModel; diff --git a/app/code/Magento/Backend/Model/Search/Customer.php b/app/code/Magento/Backend/Model/Search/Customer.php index ffd7c79067f..8ccd7a0baf7 100644 --- a/app/code/Magento/Backend/Model/Search/Customer.php +++ b/app/code/Magento/Backend/Model/Search/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Search; diff --git a/app/code/Magento/Backend/Model/Search/Order.php b/app/code/Magento/Backend/Model/Search/Order.php index 1a40663f38c..0335c598100 100644 --- a/app/code/Magento/Backend/Model/Search/Order.php +++ b/app/code/Magento/Backend/Model/Search/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Search; diff --git a/app/code/Magento/Backend/Model/Session.php b/app/code/Magento/Backend/Model/Session.php index c3990076e8a..9ed0ab02378 100644 --- a/app/code/Magento/Backend/Model/Session.php +++ b/app/code/Magento/Backend/Model/Session.php @@ -2,7 +2,7 @@ /** * Backend user session * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model; diff --git a/app/code/Magento/Backend/Model/Session/AdminConfig.php b/app/code/Magento/Backend/Model/Session/AdminConfig.php index 8c32471118b..d72e71fa9e8 100644 --- a/app/code/Magento/Backend/Model/Session/AdminConfig.php +++ b/app/code/Magento/Backend/Model/Session/AdminConfig.php @@ -2,7 +2,7 @@ /** * Backend Session configuration object * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Session; diff --git a/app/code/Magento/Backend/Model/Session/Quote.php b/app/code/Magento/Backend/Model/Session/Quote.php index 6ca26948829..9275f3115d5 100644 --- a/app/code/Magento/Backend/Model/Session/Quote.php +++ b/app/code/Magento/Backend/Model/Session/Quote.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Session; diff --git a/app/code/Magento/Backend/Model/Setup/MenuBuilder.php b/app/code/Magento/Backend/Model/Setup/MenuBuilder.php index 70821e6ea85..fa9a49a48d8 100644 --- a/app/code/Magento/Backend/Model/Setup/MenuBuilder.php +++ b/app/code/Magento/Backend/Model/Setup/MenuBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Setup; diff --git a/app/code/Magento/Backend/Model/Translate/Inline/Config.php b/app/code/Magento/Backend/Model/Translate/Inline/Config.php index 04bd7a69299..f8fad572c75 100644 --- a/app/code/Magento/Backend/Model/Translate/Inline/Config.php +++ b/app/code/Magento/Backend/Model/Translate/Inline/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Translate\Inline; diff --git a/app/code/Magento/Backend/Model/Url.php b/app/code/Magento/Backend/Model/Url.php index f09c9c04ee6..53d350f976b 100644 --- a/app/code/Magento/Backend/Model/Url.php +++ b/app/code/Magento/Backend/Model/Url.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model; diff --git a/app/code/Magento/Backend/Model/Url/ScopeResolver.php b/app/code/Magento/Backend/Model/Url/ScopeResolver.php index 596465415d7..923341d4a30 100644 --- a/app/code/Magento/Backend/Model/Url/ScopeResolver.php +++ b/app/code/Magento/Backend/Model/Url/ScopeResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Url; diff --git a/app/code/Magento/Backend/Model/UrlInterface.php b/app/code/Magento/Backend/Model/UrlInterface.php index 778f43acbe2..778674a2ed8 100644 --- a/app/code/Magento/Backend/Model/UrlInterface.php +++ b/app/code/Magento/Backend/Model/UrlInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model; diff --git a/app/code/Magento/Backend/Model/View/Layout/Builder.php b/app/code/Magento/Backend/Model/View/Layout/Builder.php index be8887548c1..2338e7bb867 100644 --- a/app/code/Magento/Backend/Model/View/Layout/Builder.php +++ b/app/code/Magento/Backend/Model/View/Layout/Builder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\View\Layout; diff --git a/app/code/Magento/Backend/Model/View/Layout/Filter/Acl.php b/app/code/Magento/Backend/Model/View/Layout/Filter/Acl.php index 7303bccc938..4e4bc7dacaf 100644 --- a/app/code/Magento/Backend/Model/View/Layout/Filter/Acl.php +++ b/app/code/Magento/Backend/Model/View/Layout/Filter/Acl.php @@ -2,7 +2,7 @@ /** * ACL block filter * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\View\Layout\Filter; diff --git a/app/code/Magento/Backend/Model/View/Layout/GeneratorPool.php b/app/code/Magento/Backend/Model/View/Layout/GeneratorPool.php index 25b5c3cc0b6..21aaba2300f 100644 --- a/app/code/Magento/Backend/Model/View/Layout/GeneratorPool.php +++ b/app/code/Magento/Backend/Model/View/Layout/GeneratorPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\View\Layout; diff --git a/app/code/Magento/Backend/Model/View/Layout/Reader/Block.php b/app/code/Magento/Backend/Model/View/Layout/Reader/Block.php index a9ff0343477..150a0c7a821 100644 --- a/app/code/Magento/Backend/Model/View/Layout/Reader/Block.php +++ b/app/code/Magento/Backend/Model/View/Layout/Reader/Block.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\View\Layout\Reader; diff --git a/app/code/Magento/Backend/Model/View/Page/Builder.php b/app/code/Magento/Backend/Model/View/Page/Builder.php index 71d8f8241ee..8b0fe736041 100644 --- a/app/code/Magento/Backend/Model/View/Page/Builder.php +++ b/app/code/Magento/Backend/Model/View/Page/Builder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\View\Page; diff --git a/app/code/Magento/Backend/Model/View/Result/Forward.php b/app/code/Magento/Backend/Model/View/Result/Forward.php index c973432aa53..7e2c161e205 100644 --- a/app/code/Magento/Backend/Model/View/Result/Forward.php +++ b/app/code/Magento/Backend/Model/View/Result/Forward.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\View\Result; diff --git a/app/code/Magento/Backend/Model/View/Result/Page.php b/app/code/Magento/Backend/Model/View/Result/Page.php index 735db10c795..c1db0fb4dee 100644 --- a/app/code/Magento/Backend/Model/View/Result/Page.php +++ b/app/code/Magento/Backend/Model/View/Result/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\View\Result; diff --git a/app/code/Magento/Backend/Model/View/Result/Redirect.php b/app/code/Magento/Backend/Model/View/Result/Redirect.php index 239d18acfd5..eb93154f7e3 100644 --- a/app/code/Magento/Backend/Model/View/Result/Redirect.php +++ b/app/code/Magento/Backend/Model/View/Result/Redirect.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\View\Result; diff --git a/app/code/Magento/Backend/Model/View/Result/RedirectFactory.php b/app/code/Magento/Backend/Model/View/Result/RedirectFactory.php index 29c9203526b..c0e9b24e500 100644 --- a/app/code/Magento/Backend/Model/View/Result/RedirectFactory.php +++ b/app/code/Magento/Backend/Model/View/Result/RedirectFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\View\Result; diff --git a/app/code/Magento/Backend/Model/Widget/Grid/AbstractTotals.php b/app/code/Magento/Backend/Model/Widget/Grid/AbstractTotals.php index 08de9581f31..a804e3fb366 100644 --- a/app/code/Magento/Backend/Model/Widget/Grid/AbstractTotals.php +++ b/app/code/Magento/Backend/Model/Widget/Grid/AbstractTotals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Parser.php b/app/code/Magento/Backend/Model/Widget/Grid/Parser.php index c39a0cfafc8..ae26659de76 100644 --- a/app/code/Magento/Backend/Model/Widget/Grid/Parser.php +++ b/app/code/Magento/Backend/Model/Widget/Grid/Parser.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Widget\Grid; diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Row/GeneratorInterface.php b/app/code/Magento/Backend/Model/Widget/Grid/Row/GeneratorInterface.php index 34ef08672ae..f063ff5c874 100644 --- a/app/code/Magento/Backend/Model/Widget/Grid/Row/GeneratorInterface.php +++ b/app/code/Magento/Backend/Model/Widget/Grid/Row/GeneratorInterface.php @@ -2,7 +2,7 @@ /** * Row Generator Interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Widget\Grid\Row; diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGenerator.php b/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGenerator.php index d1ca1d2eef2..1a341edea8d 100644 --- a/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGenerator.php +++ b/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Widget\Grid\Row; diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php b/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php index ba7e002dbe9..67c19c7eb23 100644 --- a/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php +++ b/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Widget\Grid\Row; diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorId.php b/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorId.php index 6a1ef08ffb6..a2dfc160d28 100644 --- a/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorId.php +++ b/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorId.php @@ -2,7 +2,7 @@ /** * Grid row url generator * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Widget\Grid\Row; diff --git a/app/code/Magento/Backend/Model/Widget/Grid/SubTotals.php b/app/code/Magento/Backend/Model/Widget/Grid/SubTotals.php index eeede203d0d..d59af079e69 100644 --- a/app/code/Magento/Backend/Model/Widget/Grid/SubTotals.php +++ b/app/code/Magento/Backend/Model/Widget/Grid/SubTotals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Widget\Grid; diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Totals.php b/app/code/Magento/Backend/Model/Widget/Grid/Totals.php index eb6b23628db..036fde6fe25 100644 --- a/app/code/Magento/Backend/Model/Widget/Grid/Totals.php +++ b/app/code/Magento/Backend/Model/Widget/Grid/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Widget\Grid; diff --git a/app/code/Magento/Backend/Model/Widget/Grid/TotalsInterface.php b/app/code/Magento/Backend/Model/Widget/Grid/TotalsInterface.php index 73f3607821f..f649b2303e9 100644 --- a/app/code/Magento/Backend/Model/Widget/Grid/TotalsInterface.php +++ b/app/code/Magento/Backend/Model/Widget/Grid/TotalsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Model\Widget\Grid; diff --git a/app/code/Magento/Backend/Service/V1/ModuleService.php b/app/code/Magento/Backend/Service/V1/ModuleService.php index 1d8442c20a5..9abd4475277 100644 --- a/app/code/Magento/Backend/Service/V1/ModuleService.php +++ b/app/code/Magento/Backend/Service/V1/ModuleService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Service/V1/ModuleServiceInterface.php b/app/code/Magento/Backend/Service/V1/ModuleServiceInterface.php index 1e421f19497..ea2d427fc3b 100644 --- a/app/code/Magento/Backend/Service/V1/ModuleServiceInterface.php +++ b/app/code/Magento/Backend/Service/V1/ModuleServiceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Setup/ConfigOptionsList.php b/app/code/Magento/Backend/Setup/ConfigOptionsList.php index f909bc0e47c..39e50220ad3 100644 --- a/app/code/Magento/Backend/Setup/ConfigOptionsList.php +++ b/app/code/Magento/Backend/Setup/ConfigOptionsList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Setup; diff --git a/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/AuthenticationTest.php b/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/AuthenticationTest.php index 5d3c87cd6db..8f626dba2d0 100644 --- a/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/AuthenticationTest.php +++ b/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/AuthenticationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\App\Action\Plugin; diff --git a/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/MassactionKeyTest.php b/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/MassactionKeyTest.php index 3f4af8c3259..e27650a12ff 100644 --- a/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/MassactionKeyTest.php +++ b/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/MassactionKeyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\App\Action\Plugin; diff --git a/app/code/Magento/Backend/Test/Unit/App/Action/Stub/ActionStub.php b/app/code/Magento/Backend/Test/Unit/App/Action/Stub/ActionStub.php index 207fce92460..4b811e99a1e 100644 --- a/app/code/Magento/Backend/Test/Unit/App/Action/Stub/ActionStub.php +++ b/app/code/Magento/Backend/Test/Unit/App/Action/Stub/ActionStub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/App/Area/FrontNameResolverTest.php b/app/code/Magento/Backend/Test/Unit/App/Area/FrontNameResolverTest.php index bcd1611aa1b..7982c4d1834 100644 --- a/app/code/Magento/Backend/Test/Unit/App/Area/FrontNameResolverTest.php +++ b/app/code/Magento/Backend/Test/Unit/App/Area/FrontNameResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\App\Area; diff --git a/app/code/Magento/Backend/Test/Unit/App/Area/Request/PathInfoProcessorTest.php b/app/code/Magento/Backend/Test/Unit/App/Area/Request/PathInfoProcessorTest.php index 5f391664e06..b009bfc7375 100644 --- a/app/code/Magento/Backend/Test/Unit/App/Area/Request/PathInfoProcessorTest.php +++ b/app/code/Magento/Backend/Test/Unit/App/Area/Request/PathInfoProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\App\Area\Request; diff --git a/app/code/Magento/Backend/Test/Unit/App/ConfigTest.php b/app/code/Magento/Backend/Test/Unit/App/ConfigTest.php index 7bff61aede7..ab576762962 100644 --- a/app/code/Magento/Backend/Test/Unit/App/ConfigTest.php +++ b/app/code/Magento/Backend/Test/Unit/App/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\App; diff --git a/app/code/Magento/Backend/Test/Unit/App/Response/Http/FileFactoryTest.php b/app/code/Magento/Backend/Test/Unit/App/Response/Http/FileFactoryTest.php index 25c32fcaeec..8a4555ffa10 100644 --- a/app/code/Magento/Backend/Test/Unit/App/Response/Http/FileFactoryTest.php +++ b/app/code/Magento/Backend/Test/Unit/App/Response/Http/FileFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\App\Response\Http; diff --git a/app/code/Magento/Backend/Test/Unit/App/Router/NoRouteHandlerTest.php b/app/code/Magento/Backend/Test/Unit/App/Router/NoRouteHandlerTest.php index 03d6539cbb0..232ce2b6792 100644 --- a/app/code/Magento/Backend/Test/Unit/App/Router/NoRouteHandlerTest.php +++ b/app/code/Magento/Backend/Test/Unit/App/Router/NoRouteHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\App\Router; diff --git a/app/code/Magento/Backend/Test/Unit/App/UserConfigTest.php b/app/code/Magento/Backend/Test/Unit/App/UserConfigTest.php index cf4fe11fc38..5214c975367 100644 --- a/app/code/Magento/Backend/Test/Unit/App/UserConfigTest.php +++ b/app/code/Magento/Backend/Test/Unit/App/UserConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Cache/AdditionalTest.php b/app/code/Magento/Backend/Test/Unit/Block/Cache/AdditionalTest.php index 7b78821bff4..395620cff92 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Cache/AdditionalTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Cache/AdditionalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Page/System/Config/Robots/ResetTest.php b/app/code/Magento/Backend/Test/Unit/Block/Page/System/Config/Robots/ResetTest.php index 93ee165a541..2eba4779d91 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Page/System/Config/Robots/ResetTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Page/System/Config/Robots/ResetTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Store/SwitcherTest.php b/app/code/Magento/Backend/Test/Unit/Block/Store/SwitcherTest.php index a4ba16ea1bd..a451bff157b 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Store/SwitcherTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Store/SwitcherTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Button/SplitTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Button/SplitTest.php index 648af09935d..ada8575ae8d 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Button/SplitTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Button/SplitTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Block\Widget\Button; diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/ButtonTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/ButtonTest.php index d0cb8749932..e69d84cf362 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/ButtonTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/ButtonTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Form/ContainerTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Form/ContainerTest.php index c9413240d0a..49d3a68614d 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Form/ContainerTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Form/ContainerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Block\Widget\Form; diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/FormTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/FormTest.php index b2b29aeddad..8da86b0608d 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/FormTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Block\Widget; diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DateTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DateTest.php index e6f8e0e2b01..1b7e85787be 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DateTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DatetimeTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DatetimeTest.php index f5e860b8c0f..bf629bcb8c6 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DatetimeTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DatetimeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/StoreTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/StoreTest.php index 14fbf88f097..811bb7e6342 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/StoreTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/StoreTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/TextTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/TextTest.php index 5f63dc77ffa..211e9add6ef 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/TextTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/TextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/MultistoreTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/MultistoreTest.php index e8190af7bc2..87eeed39def 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/MultistoreTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/MultistoreTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Block\Widget\Grid\Column; diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/AbstractRendererTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/AbstractRendererTest.php index 00ac34d1022..3f32eb5f9e8 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/AbstractRendererTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/AbstractRendererTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/ConcatTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/ConcatTest.php index 8b0fa7a14cb..7da812d7a2e 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/ConcatTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/ConcatTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/CurrencyTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/CurrencyTest.php index 84493704ce5..561793ce14e 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/CurrencyTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/CurrencyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/Radio/ExtendedTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/Radio/ExtendedTest.php index 2fbbc6ad7ec..6cd4065c598 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/Radio/ExtendedTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/Radio/ExtendedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Block\Widget\Grid\Column\Renderer\Radio; diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/RadioTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/RadioTest.php index d6e8269b184..c13bc3d5a2c 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/RadioTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/RadioTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Block\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnSetTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnSetTest.php index 923c049f74e..ceb12b9fcce 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnSetTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnSetTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnTest.php index 52ddc28077c..d56a87e4ef3 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ExtendedTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ExtendedTest.php index 3216e276037..6d71914f3a2 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ExtendedTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ExtendedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Massaction/ExtendedTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Massaction/ExtendedTest.php index 11ebe40ab0d..7ff5ca9dd34 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Massaction/ExtendedTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Massaction/ExtendedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/MassactionTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/MassactionTest.php index 79ecb388873..a67e96d49b5 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/MassactionTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/MassactionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/SerializerTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/SerializerTest.php index 1d7caa432e5..627b6dbec43 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/SerializerTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/SerializerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Block\Widget\Grid; diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/TabTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/TabTest.php index efb9b89f32d..5709e2f796c 100644 --- a/app/code/Magento/Backend/Test/Unit/Block/Widget/TabTest.php +++ b/app/code/Magento/Backend/Test/Unit/Block/Widget/TabTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Block\Widget; diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheCommandTest.php index f30dc6dddf2..c881e39a3f5 100644 --- a/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheCommandTest.php +++ b/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheManageCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheManageCommandTest.php index ce5b80d111e..d3cbe050929 100644 --- a/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheManageCommandTest.php +++ b/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheManageCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheSetCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheSetCommandTest.php index 7474efc8dc2..351b2ebd8be 100644 --- a/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheSetCommandTest.php +++ b/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheSetCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheCleanCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheCleanCommandTest.php index 1c72ce9a2c9..0eb3b3abf8b 100644 --- a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheCleanCommandTest.php +++ b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheCleanCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheDisableCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheDisableCommandTest.php index feb7a192c82..af4d445ec45 100644 --- a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheDisableCommandTest.php +++ b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheDisableCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheEnableCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheEnableCommandTest.php index b11b217517c..d0db2538a93 100644 --- a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheEnableCommandTest.php +++ b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheEnableCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheFlushCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheFlushCommandTest.php index 2257228f90a..0a701fac78b 100644 --- a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheFlushCommandTest.php +++ b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheFlushCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheStatusCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheStatusCommandTest.php index 57001e04ac7..1eeb828fcef 100644 --- a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheStatusCommandTest.php +++ b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheStatusCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanMediaTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanMediaTest.php index 6f2366f72d9..6ada4deec49 100644 --- a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanMediaTest.php +++ b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanMediaTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanStaticFilesTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanStaticFilesTest.php index 28df2d63aa4..d9ea1443724 100644 --- a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanStaticFilesTest.php +++ b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanStaticFilesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassDisableTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassDisableTest.php index b2fc808b0e2..9a0a2615ca8 100644 --- a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassDisableTest.php +++ b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassDisableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Controller\Adminhtml\Cache; diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassEnableTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassEnableTest.php index 8c1b9f1718a..aff391e0332 100644 --- a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassEnableTest.php +++ b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassEnableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Controller\Adminhtml\Cache; diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/AbstractTestCase.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/AbstractTestCase.php index 43143f0587e..16e109b5164 100644 --- a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/AbstractTestCase.php +++ b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/AbstractTestCase.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersMostTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersMostTest.php index 44bbe41b055..2dd2c625e61 100644 --- a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersMostTest.php +++ b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersMostTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersNewestTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersNewestTest.php index e6fd59485d1..0d428ee54bc 100644 --- a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersNewestTest.php +++ b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersNewestTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/ProductsViewedTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/ProductsViewedTest.php index cdcfeb989e8..541884bc1e9 100644 --- a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/ProductsViewedTest.php +++ b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/ProductsViewedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Controller\Adminhtml\Dashboard; diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/RefreshStatisticsTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/RefreshStatisticsTest.php index 53a8737ca04..fcda2dca4bb 100644 --- a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/RefreshStatisticsTest.php +++ b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/RefreshStatisticsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/TunnelTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/TunnelTest.php index c76f7dfbbe3..d91c13987ec 100644 --- a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/TunnelTest.php +++ b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/TunnelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Controller\Adminhtml\Dashboard; diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/System/Account/SaveTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/System/Account/SaveTest.php index aedc535edff..adfa62701af 100644 --- a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/System/Account/SaveTest.php +++ b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/System/Account/SaveTest.php @@ -2,7 +2,7 @@ /** * Unit test for \Magento\Backend\Controller\Adminhtml\System\Account controller * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Controller\Adminhtml\System\Account; diff --git a/app/code/Magento/Backend/Test/Unit/Cron/CleanCacheTest.php b/app/code/Magento/Backend/Test/Unit/Cron/CleanCacheTest.php index 4386e7c3953..7e8fbfe197b 100644 --- a/app/code/Magento/Backend/Test/Unit/Cron/CleanCacheTest.php +++ b/app/code/Magento/Backend/Test/Unit/Cron/CleanCacheTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Cron; diff --git a/app/code/Magento/Backend/Test/Unit/Helper/DataTest.php b/app/code/Magento/Backend/Test/Unit/Helper/DataTest.php index bcbca1b5f36..c76e359df8e 100644 --- a/app/code/Magento/Backend/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Backend/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Helper; diff --git a/app/code/Magento/Backend/Test/Unit/Model/AdminPathConfigTest.php b/app/code/Magento/Backend/Test/Unit/Model/AdminPathConfigTest.php index 374d50972be..8dc5d8eafcb 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/AdminPathConfigTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/AdminPathConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Auth/SessionTest.php b/app/code/Magento/Backend/Test/Unit/Model/Auth/SessionTest.php index 2b9f47a8416..8a12dc2571a 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Auth/SessionTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Auth/SessionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Auth; diff --git a/app/code/Magento/Backend/Test/Unit/Model/AuthTest.php b/app/code/Magento/Backend/Test/Unit/Model/AuthTest.php index b120d4b3a36..36b9169c3d9 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/AuthTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/AuthTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Authorization/RoleLocatorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Authorization/RoleLocatorTest.php index c077c47bbb5..37e806c475d 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Authorization/RoleLocatorTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Authorization/RoleLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Authorization; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Config/SessionLifetime/BackendModelTest.php b/app/code/Magento/Backend/Test/Unit/Model/Config/SessionLifetime/BackendModelTest.php index cd480dd2848..1573489113a 100755 --- a/app/code/Magento/Backend/Test/Unit/Model/Config/SessionLifetime/BackendModelTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Config/SessionLifetime/BackendModelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Config\SessionLifetime; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Locale/ManagerTest.php b/app/code/Magento/Backend/Test/Unit/Model/Locale/ManagerTest.php index d10eb9a5029..e09ef22d359 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Locale/ManagerTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Locale/ManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Locale; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/AbstractCommandTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/AbstractCommandTest.php index 53e5068988d..2bfa1bf4d23 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/AbstractCommandTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/AbstractCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu\Builder; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/AddTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/AddTest.php index 4c6962c0f78..7f7d0d4fc03 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/AddTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/AddTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu\Builder\Command; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/RemoveTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/RemoveTest.php index cbbf6201dea..f42fa801f66 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/RemoveTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/RemoveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu\Builder\Command; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/UpdateTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/UpdateTest.php index 2294eb946ab..8dd2cd318b9 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/UpdateTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/UpdateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu\Builder\Command; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php index 7bda9b38a2b..23d72c25b35 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/ConverterTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/ConverterTest.php index a05526c7158..e60f3221813 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/ConverterTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu\Config; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/SchemaLocatorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/SchemaLocatorTest.php index fdde4c064d6..04bf4f75cdf 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu\Config; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/XsdTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/XsdTest.php index 4febd4246ad..c0f79644c7b 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/XsdTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu\Config; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalidMenuXmlArray.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalidMenuXmlArray.php index d9f37674177..62f4185d961 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalidMenuXmlArray.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalidMenuXmlArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalid_menu.xml b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalid_menu.xml index 78f64477259..049f44761da 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalid_menu.xml +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalid_menu.xml @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/valid_menu.xml b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/valid_menu.xml index 4627fb49a03..d60f5a0cd37 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/valid_menu.xml +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/valid_menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php index dee7518be3a..bfdbe3c5c42 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Director/DirectorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Director/DirectorTest.php index 550a0a43548..f4b40aa20fb 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Director/DirectorTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Director/DirectorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php index 19836ba7c94..a0cf5676742 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu\Filter; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Item/ValidatorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Item/ValidatorTest.php index 5d7e050d324..0391c91fa6c 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/Item/ValidatorTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/Item/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu\Item; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php index fcef1bd374c..9b6b9a247ab 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Menu; diff --git a/app/code/Magento/Backend/Test/Unit/Model/MenuBuilderTest.php b/app/code/Magento/Backend/Test/Unit/Model/MenuBuilderTest.php index fc519ded8e8..7d972aa2792 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/MenuBuilderTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/MenuBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php b/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php index c985bec9207..3f5fe2af3ab 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Session/AdminConfigTest.php b/app/code/Magento/Backend/Test/Unit/Model/Session/AdminConfigTest.php index fa5b86df391..53817fc21a9 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Session/AdminConfigTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Session/AdminConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/Test/Unit/Model/Session/QuoteTest.php b/app/code/Magento/Backend/Test/Unit/Model/Session/QuoteTest.php index 99d7fdfab21..58a6e2e5787 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Session/QuoteTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Session/QuoteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Session; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Translate/Inline/ConfigTest.php b/app/code/Magento/Backend/Test/Unit/Model/Translate/Inline/ConfigTest.php index fbffdd4fdb1..dbb03d24951 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Translate/Inline/ConfigTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Translate/Inline/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Translate\Inline; diff --git a/app/code/Magento/Backend/Test/Unit/Model/UrlTest.php b/app/code/Magento/Backend/Test/Unit/Model/UrlTest.php index 4eda145156c..0cf9cedd67b 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/UrlTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/UrlTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model; diff --git a/app/code/Magento/Backend/Test/Unit/Model/View/Layout/Filter/AclTest.php b/app/code/Magento/Backend/Test/Unit/Model/View/Layout/Filter/AclTest.php index 820704c8597..96e3b5b23a1 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/View/Layout/Filter/AclTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/View/Layout/Filter/AclTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\View\Layout\Filter; diff --git a/app/code/Magento/Backend/Test/Unit/Model/View/Result/PageTest.php b/app/code/Magento/Backend/Test/Unit/Model/View/Result/PageTest.php index f88692029c1..3f1a6834f25 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/View/Result/PageTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/View/Result/PageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\View\Result; diff --git a/app/code/Magento/Backend/Test/Unit/Model/View/Result/RedirectTest.php b/app/code/Magento/Backend/Test/Unit/Model/View/Result/RedirectTest.php index f516ea33233..a1cd6f03bad 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/View/Result/RedirectTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/View/Result/RedirectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\View\Result; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/AbstractTotalsTest.php b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/AbstractTotalsTest.php index 7400ccc641c..f069868fb29 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/AbstractTotalsTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/AbstractTotalsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Widget\Grid; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/ParserTest.php b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/ParserTest.php index c0337a49b10..0fe24603212 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/ParserTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/ParserTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Widget\Grid; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/Row/UrlGeneratorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/Row/UrlGeneratorTest.php index 6fa31294038..64890fef611 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/Row/UrlGeneratorTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/Row/UrlGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Widget\Grid\Row; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/SubTotalsTest.php b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/SubTotalsTest.php index d41758a1dbc..c3d25eee902 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/SubTotalsTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/SubTotalsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Widget\Grid; diff --git a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/TotalsTest.php b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/TotalsTest.php index 97c5d402dd6..0f11cd3f9ce 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/TotalsTest.php +++ b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/TotalsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Model\Widget\Grid; diff --git a/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.php b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.php index ad86dea88ef..c5213cdab9d 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.php +++ b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.xml b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.xml index 55ed5a90d80..e7ac5aec547 100644 --- a/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.xml +++ b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/Test/Unit/Setup/ConfigOptionsListTest.php b/app/code/Magento/Backend/Test/Unit/Setup/ConfigOptionsListTest.php index d7a8de1012b..dd90832aa38 100644 --- a/app/code/Magento/Backend/Test/Unit/Setup/ConfigOptionsListTest.php +++ b/app/code/Magento/Backend/Test/Unit/Setup/ConfigOptionsListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Test\Unit\Setup; diff --git a/app/code/Magento/Backend/etc/acl.xml b/app/code/Magento/Backend/etc/acl.xml index 0148b866a5a..f522d3a8fbd 100644 --- a/app/code/Magento/Backend/etc/acl.xml +++ b/app/code/Magento/Backend/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/etc/adminhtml/di.xml b/app/code/Magento/Backend/etc/adminhtml/di.xml index fcf2cc02e9f..c38c284f3c5 100644 --- a/app/code/Magento/Backend/etc/adminhtml/di.xml +++ b/app/code/Magento/Backend/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/etc/adminhtml/menu.xml b/app/code/Magento/Backend/etc/adminhtml/menu.xml index 1a754291cb4..d7d57b7953c 100644 --- a/app/code/Magento/Backend/etc/adminhtml/menu.xml +++ b/app/code/Magento/Backend/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/etc/adminhtml/routes.xml b/app/code/Magento/Backend/etc/adminhtml/routes.xml index 232ac5222da..2f3857c91c5 100644 --- a/app/code/Magento/Backend/etc/adminhtml/routes.xml +++ b/app/code/Magento/Backend/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Backend" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Backend/etc/adminhtml/system.xml b/app/code/Magento/Backend/etc/adminhtml/system.xml index 0eb01d6a252..813a097ea6b 100644 --- a/app/code/Magento/Backend/etc/adminhtml/system.xml +++ b/app/code/Magento/Backend/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/etc/config.xml b/app/code/Magento/Backend/etc/config.xml index 760bba1fc12..1d347c74717 100644 --- a/app/code/Magento/Backend/etc/config.xml +++ b/app/code/Magento/Backend/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/etc/crontab.xml b/app/code/Magento/Backend/etc/crontab.xml index 0c7e18e9775..4f6450a7226 100644 --- a/app/code/Magento/Backend/etc/crontab.xml +++ b/app/code/Magento/Backend/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/etc/di.xml b/app/code/Magento/Backend/etc/di.xml index c0c5a0ec5b8..dc36959237a 100644 --- a/app/code/Magento/Backend/etc/di.xml +++ b/app/code/Magento/Backend/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/etc/menu.xsd b/app/code/Magento/Backend/etc/menu.xsd index 05df67a5e2b..5c5ad89bd89 100644 --- a/app/code/Magento/Backend/etc/menu.xsd +++ b/app/code/Magento/Backend/etc/menu.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/etc/module.xml b/app/code/Magento/Backend/etc/module.xml index db6b19407c7..b7f188e78d3 100644 --- a/app/code/Magento/Backend/etc/module.xml +++ b/app/code/Magento/Backend/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/etc/webapi.xml b/app/code/Magento/Backend/etc/webapi.xml index d01bbafa8e6..14d4dccc78c 100644 --- a/app/code/Magento/Backend/etc/webapi.xml +++ b/app/code/Magento/Backend/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/registration.php b/app/code/Magento/Backend/registration.php index 5e9d9fe4dab..fac71f54515 100644 --- a/app/code/Magento/Backend/registration.php +++ b/app/code/Magento/Backend/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/layout/admin_login.xml b/app/code/Magento/Backend/view/adminhtml/layout/admin_login.xml index 2bf477307a4..fd817c5e443 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/admin_login.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/admin_login.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_auth_login.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_auth_login.xml index d8462aeedfa..bb7370b3317 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_auth_login.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_auth_login.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_block.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_block.xml index 98f9ca89ba1..e4f6fbea1cd 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_block.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_index.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_index.xml index 8edb476a2b5..77ba8f6f398 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_index.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersmost.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersmost.xml index 39b3db77d50..31b3ff2c44b 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersmost.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersmost.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersnewest.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersnewest.xml index ce83aa64faa..ce4e20140eb 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersnewest.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersnewest.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_index.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_index.xml index 8b36caac55b..b353b81aa1b 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_index.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_productsviewed.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_productsviewed.xml index d55194f4dbb..4621d83dc67 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_productsviewed.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_productsviewed.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_denied.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_denied.xml index e8754242dfd..fac9407cc32 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_denied.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_denied.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_noroute.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_noroute.xml index 4872a39a16e..598bdf490e8 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_noroute.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_noroute.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_account_index.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_account_index.xml index 581f6d2ee59..dfc27d5e6b5 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_account_index.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_account_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_edit.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_edit.xml index 4f5d3a778a1..91469c51e06 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_edit.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid.xml index 4a0c8a711f5..bda7f3883ad 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid_block.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid_block.xml index 3d2c4dff372..a39aee98132 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid_block.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_index.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_index.xml index 8ae928a3cad..7412c983cff 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_index.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_grid_block.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_grid_block.xml index 320ce474bc3..0521a878316 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_grid_block.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_index.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_index.xml index 64d7968bd17..2abd830f5fa 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_index.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/default.xml b/app/code/Magento/Backend/view/adminhtml/layout/default.xml index 9db902fb132..ea98fd70740 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/default.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/editor.xml b/app/code/Magento/Backend/view/adminhtml/layout/editor.xml index 9109e54ac35..2c34667c050 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/editor.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/editor.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/empty.xml b/app/code/Magento/Backend/view/adminhtml/layout/empty.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/empty.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/empty.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/formkey.xml b/app/code/Magento/Backend/view/adminhtml/layout/formkey.xml index 50b1784b332..6ba9743703e 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/formkey.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/formkey.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/overlay_popup.xml b/app/code/Magento/Backend/view/adminhtml/layout/overlay_popup.xml index 67304406b20..8a48fcca66c 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/overlay_popup.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/overlay_popup.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/layout/popup.xml b/app/code/Magento/Backend/view/adminhtml/layout/popup.xml index 825094937cd..dd65940af81 100644 --- a/app/code/Magento/Backend/view/adminhtml/layout/popup.xml +++ b/app/code/Magento/Backend/view/adminhtml/layout/popup.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/requirejs-config.js b/app/code/Magento/Backend/view/adminhtml/requirejs-config.js index 9c1350ea268..2703ea79738 100644 --- a/app/code/Magento/Backend/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/Backend/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*eslint no-unused-vars: 0*/ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/access_denied.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/access_denied.phtml index 7ff08dcc324..32910c9978d 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/admin/access_denied.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/admin/access_denied.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/formkey.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/formkey.phtml index f59a5943cee..7339851f240 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/admin/formkey.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/admin/formkey.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/login.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/login.phtml index 0968047053b..1716af3ec14 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/admin/login.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/admin/login.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/login_buttons.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/login_buttons.phtml index 0c1f758cc26..049018d6bd2 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/admin/login_buttons.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/admin/login_buttons.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/overlay_popup.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/overlay_popup.phtml index ab29376b3b5..e95b063599d 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/admin/overlay_popup.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/admin/overlay_popup.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/page.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/page.phtml index 79544b9dcbd..39c418b432c 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/admin/page.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/admin/page.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph.phtml index dc975232799..153852ec9d2 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph/disabled.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph/disabled.phtml index dd27a71c193..3137255f75b 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph/disabled.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph/disabled.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/grid.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/grid.phtml index 5b155b8f6b6..278db20774f 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/grid.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/grid.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/index.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/index.phtml index b37a8195114..a582b1b4f75 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/index.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/index.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/salebar.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/salebar.phtml index 24eaa104db2..891a4bcbf06 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/salebar.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/salebar.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/searches.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/searches.phtml index 5ccb8d0689f..c2d2ca1aa1d 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/searches.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/searches.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/store/switcher.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/store/switcher.phtml index 86ca94dfcc9..ae18396e620 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/store/switcher.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/store/switcher.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar.phtml index 81be10be551..f3e90a94ba9 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar/refreshstatistics.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar/refreshstatistics.phtml index 8424f56b8d1..43acec46f56 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar/refreshstatistics.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar/refreshstatistics.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Backend/view/adminhtml/templates/media/uploader.phtml b/app/code/Magento/Backend/view/adminhtml/templates/media/uploader.phtml index e93b143e039..aeac3fd3324 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/media/uploader.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/media/uploader.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/menu.phtml b/app/code/Magento/Backend/view/adminhtml/templates/menu.phtml index 564e6b1ef21..46fb40dba73 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/menu.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/menu.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/copyright.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/copyright.phtml index 56f061b6fd2..85e1340918c 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/page/copyright.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/page/copyright.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/footer.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/footer.phtml index 54f5220be16..102b80c7373 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/page/footer.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/page/footer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/header.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/header.phtml index 4730689e36c..0c03a622bf8 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/page/header.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/page/header.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/js/calendar.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/js/calendar.phtml index d7fae5232f4..571df4870ca 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/page/js/calendar.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/page/js/calendar.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // no notice of license for now diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/js/components.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/js/components.phtml index 76bd1ceef0e..21617bc9374 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/page/js/components.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/page/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/js/require_js.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/js/require_js.phtml index 130bc4501c4..81fbaa88280 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/page/js/require_js.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/page/js/require_js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/notices.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/notices.phtml index 987afc07df4..b4e7c2d7f50 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/page/notices.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/page/notices.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/report.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/report.phtml index 125620c1a00..a437c77ca48 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/page/report.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/page/report.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/pageactions.phtml b/app/code/Magento/Backend/view/adminhtml/templates/pageactions.phtml index c712eeef6db..1b0a1d9a662 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/pageactions.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/pageactions.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/store/switcher.phtml b/app/code/Magento/Backend/view/adminhtml/templates/store/switcher.phtml index 77ff2caa1ef..f85b3b61b58 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/store/switcher.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/store/switcher.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset.phtml b/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset.phtml index 2e26c2a75df..5b0d2d8cc9d 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset/element.phtml b/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset/element.phtml index 7a96513b970..8fe904062fb 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset/element.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset/element.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/autocomplete.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/autocomplete.phtml index c32c81d4bc6..b272a1096f7 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/system/autocomplete.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/system/autocomplete.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/cache/additional.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/cache/additional.phtml index eb4c56a6a2c..4ab256d3f22 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/system/cache/additional.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/system/cache/additional.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/cache/edit.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/cache/edit.phtml index 49c93d7a4e0..8b18dce789f 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/system/cache/edit.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/system/cache/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/design/edit.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/design/edit.phtml index 5878c782ad1..0559f78f0c5 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/system/design/edit.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/system/design/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/design/index.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/design/index.phtml index 3b5748da548..2cdb9f451a8 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/system/design/index.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/system/design/index.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/search.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/search.phtml index 7c96d7324ef..bd115b53094 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/system/search.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/system/search.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/shipping/applicable_country.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/shipping/applicable_country.phtml index 0a526f63ebd..c09d74d5d1d 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/system/shipping/applicable_country.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/system/shipping/applicable_country.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/accordion.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/accordion.phtml index 52e4d895c1d..060ee67e9a7 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/accordion.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/accordion.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/breadcrumbs.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/breadcrumbs.phtml index 53fd7e6286f..9fef816ed9c 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/breadcrumbs.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/breadcrumbs.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/button.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/button.phtml index a46108ee2a0..72270887697 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/button.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/button.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/button/split.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/button/split.phtml index addfe7ad30b..625bfe1f3f6 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/button/split.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/button/split.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form.phtml index f1f9699ea1b..72fc76a255c 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/form.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/container.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/container.phtml index 9e1c973f050..d7c6645965c 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/container.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/container.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element.phtml index 09e947e07fd..a270f98c5f0 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element/gallery.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element/gallery.phtml index b809299b1e1..87c69d0eba9 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element/gallery.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element/gallery.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/element.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/element.phtml index 1a9cc14c00f..852b81a4548 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/element.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/element.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset.phtml index ff794688cb3..381d71c57b5 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset/element.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset/element.phtml index 963e0c4bcde..b724ad4c561 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset/element.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset/element.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid.phtml index a593268d72d..534d2f7a2c6 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/column_set.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/column_set.phtml index 4fef052b675..feb55d24476 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/column_set.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/column_set.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container.phtml index f41502bab61..d985df6b3a3 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container/empty.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container/empty.phtml index 3e5bd2c1871..401fc9d263c 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container/empty.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container/empty.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/export.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/export.phtml index d08ce9096aa..ca3842fb13a 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/export.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/export.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -17,4 +17,4 @@ <?php endforeach; ?> </select> <?php echo $block->getExportButtonHtml() ?> -</div> \ No newline at end of file +</div> diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/extended.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/extended.phtml index 62ff8d27523..838e22f1649 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/extended.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/extended.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction.phtml index d50304740f3..b00fd185d0a 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction_extended.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction_extended.phtml index 1f473788a12..22ac2c89682 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction_extended.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction_extended.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/serializer.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/serializer.phtml index 3492adb9301..3ed7a3d022d 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/serializer.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/serializer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/tabs.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/tabs.phtml index 39e9e5c253e..8f525ce5365 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/tabs.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/tabs.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/tabshoriz.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/tabshoriz.phtml index 4a879ba882b..7ba3b683fe7 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/tabshoriz.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/tabshoriz.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/tabsleft.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/tabsleft.phtml index 22d3c91258e..0a1a01b5c1f 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/tabsleft.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/tabsleft.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/view/container.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/view/container.phtml index 6551f9c45df..0b5626f0bc0 100644 --- a/app/code/Magento/Backend/view/adminhtml/templates/widget/view/container.phtml +++ b/app/code/Magento/Backend/view/adminhtml/templates/widget/view/container.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_form.xml b/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_form.xml index f5ffbb48e97..d84b742b458 100644 --- a/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_form.xml +++ b/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_listing.xml b/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_listing.xml index c72e5f3c907..c299f217c8d 100644 --- a/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_listing.xml +++ b/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/web/js/bootstrap/editor.js b/app/code/Magento/Backend/view/adminhtml/web/js/bootstrap/editor.js index 08ff14f84f6..de003bb3b8d 100644 --- a/app/code/Magento/Backend/view/adminhtml/web/js/bootstrap/editor.js +++ b/app/code/Magento/Backend/view/adminhtml/web/js/bootstrap/editor.js @@ -1,9 +1,9 @@ /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ require([ "Magento_Variable/variables", "mage/adminhtml/browser" -]); \ No newline at end of file +]); diff --git a/app/code/Magento/Backend/view/adminhtml/web/js/media-uploader.js b/app/code/Magento/Backend/view/adminhtml/web/js/media-uploader.js index 18f44da2610..fe7c8dd7cb8 100644 --- a/app/code/Magento/Backend/view/adminhtml/web/js/media-uploader.js +++ b/app/code/Magento/Backend/view/adminhtml/web/js/media-uploader.js @@ -1,6 +1,6 @@ /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global byteConvert*/ diff --git a/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/cells/action-delete.html b/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/cells/action-delete.html index 44c460825b4..e60fc8c2c23 100644 --- a/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/cells/action-delete.html +++ b/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/cells/action-delete.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/grid.html b/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/grid.html index 3a38ced51f7..8714e443faf 100644 --- a/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/grid.html +++ b/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/grid.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backend/view/adminhtml/web/template/form/element/helper/fallback-reset-link.html b/app/code/Magento/Backend/view/adminhtml/web/template/form/element/helper/fallback-reset-link.html index 25b584f89f9..f788dbb6fbe 100644 --- a/app/code/Magento/Backend/view/adminhtml/web/template/form/element/helper/fallback-reset-link.html +++ b/app/code/Magento/Backend/view/adminhtml/web/template/form/element/helper/fallback-reset-link.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backup/Block/Adminhtml/Backup.php b/app/code/Magento/Backup/Block/Adminhtml/Backup.php index 354dca87a79..0aa4f8833e9 100644 --- a/app/code/Magento/Backup/Block/Adminhtml/Backup.php +++ b/app/code/Magento/Backup/Block/Adminhtml/Backup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Block\Adminhtml; diff --git a/app/code/Magento/Backup/Block/Adminhtml/Dialogs.php b/app/code/Magento/Backup/Block/Adminhtml/Dialogs.php index 0b532c8d6e1..cdc6cd96f72 100644 --- a/app/code/Magento/Backup/Block/Adminhtml/Dialogs.php +++ b/app/code/Magento/Backup/Block/Adminhtml/Dialogs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Block\Adminhtml; diff --git a/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Renderer/Download.php b/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Renderer/Download.php index 7f059cd9e21..661da87a631 100644 --- a/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Renderer/Download.php +++ b/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Renderer/Download.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Rollback.php b/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Rollback.php index 1a8e55eb92c..59f4bda2299 100644 --- a/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Rollback.php +++ b/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Rollback.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index.php b/app/code/Magento/Backup/Controller/Adminhtml/Index.php index 774ad8a6067..5cdd406c619 100644 --- a/app/code/Magento/Backup/Controller/Adminhtml/Index.php +++ b/app/code/Magento/Backup/Controller/Adminhtml/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Controller\Adminhtml; diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/Create.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/Create.php index 5d3774b399d..cbd9d6e50a6 100644 --- a/app/code/Magento/Backup/Controller/Adminhtml/Index/Create.php +++ b/app/code/Magento/Backup/Controller/Adminhtml/Index/Create.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/Download.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/Download.php index b03d4512cfd..7c4e4a7b43d 100644 --- a/app/code/Magento/Backup/Controller/Adminhtml/Index/Download.php +++ b/app/code/Magento/Backup/Controller/Adminhtml/Index/Download.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/Grid.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/Grid.php index 485c2184a31..e6a30b03008 100644 --- a/app/code/Magento/Backup/Controller/Adminhtml/Index/Grid.php +++ b/app/code/Magento/Backup/Controller/Adminhtml/Index/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/Index.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/Index.php index d845a28569f..f784e507e96 100644 --- a/app/code/Magento/Backup/Controller/Adminhtml/Index/Index.php +++ b/app/code/Magento/Backup/Controller/Adminhtml/Index/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/MassDelete.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/MassDelete.php index b814e3b2bad..1b96db01d76 100644 --- a/app/code/Magento/Backup/Controller/Adminhtml/Index/MassDelete.php +++ b/app/code/Magento/Backup/Controller/Adminhtml/Index/MassDelete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/Rollback.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/Rollback.php index 1b0118e8f5e..dd547393b12 100644 --- a/app/code/Magento/Backup/Controller/Adminhtml/Index/Rollback.php +++ b/app/code/Magento/Backup/Controller/Adminhtml/Index/Rollback.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Backup/Cron/SystemBackup.php b/app/code/Magento/Backup/Cron/SystemBackup.php index a6474cd8413..6673980c452 100644 --- a/app/code/Magento/Backup/Cron/SystemBackup.php +++ b/app/code/Magento/Backup/Cron/SystemBackup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Cron; diff --git a/app/code/Magento/Backup/Helper/Data.php b/app/code/Magento/Backup/Helper/Data.php index 599c6fbd6d2..4aeddd3ad71 100644 --- a/app/code/Magento/Backup/Helper/Data.php +++ b/app/code/Magento/Backup/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Helper; diff --git a/app/code/Magento/Backup/Model/Backup.php b/app/code/Magento/Backup/Model/Backup.php index 490b6655213..a5179bcffb7 100644 --- a/app/code/Magento/Backup/Model/Backup.php +++ b/app/code/Magento/Backup/Model/Backup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Model; diff --git a/app/code/Magento/Backup/Model/BackupFactory.php b/app/code/Magento/Backup/Model/BackupFactory.php index cc4c7317078..9ff32b81d59 100644 --- a/app/code/Magento/Backup/Model/BackupFactory.php +++ b/app/code/Magento/Backup/Model/BackupFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backup/Model/Config/Backend/Cron.php b/app/code/Magento/Backup/Model/Config/Backend/Cron.php index 06e8d34f066..564f07b36be 100644 --- a/app/code/Magento/Backup/Model/Config/Backend/Cron.php +++ b/app/code/Magento/Backup/Model/Config/Backend/Cron.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Model\Config\Backend; diff --git a/app/code/Magento/Backup/Model/Config/Source/Type.php b/app/code/Magento/Backup/Model/Config/Source/Type.php index 9e8ac4be2b3..3c5a39f7ccd 100644 --- a/app/code/Magento/Backup/Model/Config/Source/Type.php +++ b/app/code/Magento/Backup/Model/Config/Source/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Model\Config\Source; diff --git a/app/code/Magento/Backup/Model/Db.php b/app/code/Magento/Backup/Model/Db.php index 95d2cf53bb6..0d72d48a405 100644 --- a/app/code/Magento/Backup/Model/Db.php +++ b/app/code/Magento/Backup/Model/Db.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Model; diff --git a/app/code/Magento/Backup/Model/Fs/Collection.php b/app/code/Magento/Backup/Model/Fs/Collection.php index 4e5c009b7b0..2e26650e1e8 100644 --- a/app/code/Magento/Backup/Model/Fs/Collection.php +++ b/app/code/Magento/Backup/Model/Fs/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Model\Fs; diff --git a/app/code/Magento/Backup/Model/Grid/Options.php b/app/code/Magento/Backup/Model/Grid/Options.php index 7b4cef84e6e..2eb1f0c2593 100644 --- a/app/code/Magento/Backup/Model/Grid/Options.php +++ b/app/code/Magento/Backup/Model/Grid/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backup/Model/ResourceModel/Db.php b/app/code/Magento/Backup/Model/ResourceModel/Db.php index ddc016bbfae..0c057c18a6b 100644 --- a/app/code/Magento/Backup/Model/ResourceModel/Db.php +++ b/app/code/Magento/Backup/Model/ResourceModel/Db.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Model\ResourceModel; diff --git a/app/code/Magento/Backup/Model/ResourceModel/Helper.php b/app/code/Magento/Backup/Model/ResourceModel/Helper.php index 9fb09139c1f..a37c7514fdb 100644 --- a/app/code/Magento/Backup/Model/ResourceModel/Helper.php +++ b/app/code/Magento/Backup/Model/ResourceModel/Helper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/DownloadTest.php b/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/DownloadTest.php index 1395bcc267d..8bbbf7484a8 100644 --- a/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/DownloadTest.php +++ b/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/DownloadTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Test\Unit\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/RollbackTest.php b/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/RollbackTest.php index 4709ef03d19..c08043a6fdd 100644 --- a/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/RollbackTest.php +++ b/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/RollbackTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Test\Unit\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Backup/Test/Unit/Cron/SystemBackupTest.php b/app/code/Magento/Backup/Test/Unit/Cron/SystemBackupTest.php index dafa061d401..4622cd25c0e 100644 --- a/app/code/Magento/Backup/Test/Unit/Cron/SystemBackupTest.php +++ b/app/code/Magento/Backup/Test/Unit/Cron/SystemBackupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Test\Unit\Cron; diff --git a/app/code/Magento/Backup/Test/Unit/Helper/DataTest.php b/app/code/Magento/Backup/Test/Unit/Helper/DataTest.php index 5f87830b2b6..5e43c20f8f5 100644 --- a/app/code/Magento/Backup/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Backup/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Test\Unit\Helper; diff --git a/app/code/Magento/Backup/Test/Unit/Model/BackupFactoryTest.php b/app/code/Magento/Backup/Test/Unit/Model/BackupFactoryTest.php index 587eddad5f2..cf553349ca4 100644 --- a/app/code/Magento/Backup/Test/Unit/Model/BackupFactoryTest.php +++ b/app/code/Magento/Backup/Test/Unit/Model/BackupFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Test\Unit\Model; diff --git a/app/code/Magento/Backup/Test/Unit/Model/BackupTest.php b/app/code/Magento/Backup/Test/Unit/Model/BackupTest.php index 8fbd0475c7a..e873392e1a7 100644 --- a/app/code/Magento/Backup/Test/Unit/Model/BackupTest.php +++ b/app/code/Magento/Backup/Test/Unit/Model/BackupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Test\Unit\Model; diff --git a/app/code/Magento/Backup/Test/Unit/Model/Fs/CollectionTest.php b/app/code/Magento/Backup/Test/Unit/Model/Fs/CollectionTest.php index 897c5e8cc11..48412fc1414 100644 --- a/app/code/Magento/Backup/Test/Unit/Model/Fs/CollectionTest.php +++ b/app/code/Magento/Backup/Test/Unit/Model/Fs/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backup\Test\Unit\Model\Fs; diff --git a/app/code/Magento/Backup/etc/acl.xml b/app/code/Magento/Backup/etc/acl.xml index 2a2d6a7eb7b..baa952441a2 100644 --- a/app/code/Magento/Backup/etc/acl.xml +++ b/app/code/Magento/Backup/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backup/etc/adminhtml/menu.xml b/app/code/Magento/Backup/etc/adminhtml/menu.xml index 812b1cb9d0d..32c2936697f 100644 --- a/app/code/Magento/Backup/etc/adminhtml/menu.xml +++ b/app/code/Magento/Backup/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backup/etc/adminhtml/routes.xml b/app/code/Magento/Backup/etc/adminhtml/routes.xml index 3e0e606439e..232c0ca0f9d 100644 --- a/app/code/Magento/Backup/etc/adminhtml/routes.xml +++ b/app/code/Magento/Backup/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backup/etc/adminhtml/system.xml b/app/code/Magento/Backup/etc/adminhtml/system.xml index 69e15030ad6..325395826df 100644 --- a/app/code/Magento/Backup/etc/adminhtml/system.xml +++ b/app/code/Magento/Backup/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backup/etc/crontab.xml b/app/code/Magento/Backup/etc/crontab.xml index a0a1fdbdf2a..150751eb94a 100644 --- a/app/code/Magento/Backup/etc/crontab.xml +++ b/app/code/Magento/Backup/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backup/etc/di.xml b/app/code/Magento/Backup/etc/di.xml index f9371f4a249..fc9c5bb2ff0 100644 --- a/app/code/Magento/Backup/etc/di.xml +++ b/app/code/Magento/Backup/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backup/etc/module.xml b/app/code/Magento/Backup/etc/module.xml index 9edced27b22..9f4fe8da7ac 100644 --- a/app/code/Magento/Backup/etc/module.xml +++ b/app/code/Magento/Backup/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backup/registration.php b/app/code/Magento/Backup/registration.php index c158dddf70a..d429ad82085 100644 --- a/app/code/Magento/Backup/registration.php +++ b/app/code/Magento/Backup/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backup/view/adminhtml/layout/backup_index_block.xml b/app/code/Magento/Backup/view/adminhtml/layout/backup_index_block.xml index 580038a2a17..e90074bea36 100644 --- a/app/code/Magento/Backup/view/adminhtml/layout/backup_index_block.xml +++ b/app/code/Magento/Backup/view/adminhtml/layout/backup_index_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backup/view/adminhtml/layout/backup_index_grid.xml b/app/code/Magento/Backup/view/adminhtml/layout/backup_index_grid.xml index 1f6e1cbec7f..03b4aa4a7f4 100644 --- a/app/code/Magento/Backup/view/adminhtml/layout/backup_index_grid.xml +++ b/app/code/Magento/Backup/view/adminhtml/layout/backup_index_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backup/view/adminhtml/layout/backup_index_index.xml b/app/code/Magento/Backup/view/adminhtml/layout/backup_index_index.xml index 42c3d766b69..242534d006e 100644 --- a/app/code/Magento/Backup/view/adminhtml/layout/backup_index_index.xml +++ b/app/code/Magento/Backup/view/adminhtml/layout/backup_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Backup/view/adminhtml/templates/backup/dialogs.phtml b/app/code/Magento/Backup/view/adminhtml/templates/backup/dialogs.phtml index c3ac897edd8..597651f8329 100644 --- a/app/code/Magento/Backup/view/adminhtml/templates/backup/dialogs.phtml +++ b/app/code/Magento/Backup/view/adminhtml/templates/backup/dialogs.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Backup/view/adminhtml/templates/backup/left.phtml b/app/code/Magento/Backup/view/adminhtml/templates/backup/left.phtml index 0d0f1a65af4..b5ae53c4878 100644 --- a/app/code/Magento/Backup/view/adminhtml/templates/backup/left.phtml +++ b/app/code/Magento/Backup/view/adminhtml/templates/backup/left.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Backup/view/adminhtml/templates/backup/list.phtml b/app/code/Magento/Backup/view/adminhtml/templates/backup/list.phtml index 0fff82609ed..ace0931b604 100644 --- a/app/code/Magento/Backup/view/adminhtml/templates/backup/list.phtml +++ b/app/code/Magento/Backup/view/adminhtml/templates/backup/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CcTypes.php b/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CcTypes.php index 853d486c504..b81269b20e7 100644 --- a/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CcTypes.php +++ b/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CcTypes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Block\Adminhtml\Form\Field; diff --git a/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/Countries.php b/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/Countries.php index fb473da1f18..3483e081cf0 100644 --- a/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/Countries.php +++ b/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/Countries.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Block\Adminhtml\Form\Field; diff --git a/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CountryCreditCard.php b/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CountryCreditCard.php index d180f85aa11..c5f2ae5c73d 100644 --- a/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CountryCreditCard.php +++ b/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CountryCreditCard.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Block\Adminhtml\Form\Field; diff --git a/app/code/Magento/Braintree/Block/Customer/CardRenderer.php b/app/code/Magento/Braintree/Block/Customer/CardRenderer.php index cb658a330e3..b1dc51f6454 100644 --- a/app/code/Magento/Braintree/Block/Customer/CardRenderer.php +++ b/app/code/Magento/Braintree/Block/Customer/CardRenderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Block\Customer; diff --git a/app/code/Magento/Braintree/Block/Customer/PayPal/VaultTokenRenderer.php b/app/code/Magento/Braintree/Block/Customer/PayPal/VaultTokenRenderer.php index 0af012352a2..33458b399e7 100644 --- a/app/code/Magento/Braintree/Block/Customer/PayPal/VaultTokenRenderer.php +++ b/app/code/Magento/Braintree/Block/Customer/PayPal/VaultTokenRenderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Block\Customer\PayPal; diff --git a/app/code/Magento/Braintree/Block/Form.php b/app/code/Magento/Braintree/Block/Form.php index cefc0a84182..9b9e96baa71 100644 --- a/app/code/Magento/Braintree/Block/Form.php +++ b/app/code/Magento/Braintree/Block/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Block; diff --git a/app/code/Magento/Braintree/Block/Info.php b/app/code/Magento/Braintree/Block/Info.php index 571ada14a8f..5fdd5d6be4f 100644 --- a/app/code/Magento/Braintree/Block/Info.php +++ b/app/code/Magento/Braintree/Block/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Block; diff --git a/app/code/Magento/Braintree/Block/Payment.php b/app/code/Magento/Braintree/Block/Payment.php index d934d5cb681..32dc109a3dd 100644 --- a/app/code/Magento/Braintree/Block/Payment.php +++ b/app/code/Magento/Braintree/Block/Payment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Block; diff --git a/app/code/Magento/Braintree/Block/Paypal/Button.php b/app/code/Magento/Braintree/Block/Paypal/Button.php index cd8fde1ac17..10c76467e01 100644 --- a/app/code/Magento/Braintree/Block/Paypal/Button.php +++ b/app/code/Magento/Braintree/Block/Paypal/Button.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Block\Paypal; diff --git a/app/code/Magento/Braintree/Block/Paypal/Checkout/Review.php b/app/code/Magento/Braintree/Block/Paypal/Checkout/Review.php index 0bdeaf6fed3..7f7c5c7c2ea 100644 --- a/app/code/Magento/Braintree/Block/Paypal/Checkout/Review.php +++ b/app/code/Magento/Braintree/Block/Paypal/Checkout/Review.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Block\Paypal\Checkout; diff --git a/app/code/Magento/Braintree/Controller/Adminhtml/Payment/GetNonce.php b/app/code/Magento/Braintree/Controller/Adminhtml/Payment/GetNonce.php index b286c103a57..8117d5c31f1 100644 --- a/app/code/Magento/Braintree/Controller/Adminhtml/Payment/GetNonce.php +++ b/app/code/Magento/Braintree/Controller/Adminhtml/Payment/GetNonce.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Controller\Adminhtml\Payment; diff --git a/app/code/Magento/Braintree/Controller/Adminhtml/Report/Index.php b/app/code/Magento/Braintree/Controller/Adminhtml/Report/Index.php index d6f2c3f24c6..3546b9f7ade 100644 --- a/app/code/Magento/Braintree/Controller/Adminhtml/Report/Index.php +++ b/app/code/Magento/Braintree/Controller/Adminhtml/Report/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Controller\Adminhtml\Report; diff --git a/app/code/Magento/Braintree/Controller/Payment/GetNonce.php b/app/code/Magento/Braintree/Controller/Payment/GetNonce.php index 5e11cafc905..5d771c3189a 100644 --- a/app/code/Magento/Braintree/Controller/Payment/GetNonce.php +++ b/app/code/Magento/Braintree/Controller/Payment/GetNonce.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Controller\Payment; diff --git a/app/code/Magento/Braintree/Controller/Paypal/AbstractAction.php b/app/code/Magento/Braintree/Controller/Paypal/AbstractAction.php index ef08a34db12..751e6a3c234 100644 --- a/app/code/Magento/Braintree/Controller/Paypal/AbstractAction.php +++ b/app/code/Magento/Braintree/Controller/Paypal/AbstractAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Controller\Paypal; diff --git a/app/code/Magento/Braintree/Controller/Paypal/PlaceOrder.php b/app/code/Magento/Braintree/Controller/Paypal/PlaceOrder.php index aaec2cb1597..1bd4357ad60 100644 --- a/app/code/Magento/Braintree/Controller/Paypal/PlaceOrder.php +++ b/app/code/Magento/Braintree/Controller/Paypal/PlaceOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Controller\Paypal; diff --git a/app/code/Magento/Braintree/Controller/Paypal/Review.php b/app/code/Magento/Braintree/Controller/Paypal/Review.php index 1b6c3a3ab5a..a6d2234f26a 100644 --- a/app/code/Magento/Braintree/Controller/Paypal/Review.php +++ b/app/code/Magento/Braintree/Controller/Paypal/Review.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Controller\Paypal; diff --git a/app/code/Magento/Braintree/Controller/Paypal/SaveShippingMethod.php b/app/code/Magento/Braintree/Controller/Paypal/SaveShippingMethod.php index ef37d3b649c..ea8c09ed55c 100644 --- a/app/code/Magento/Braintree/Controller/Paypal/SaveShippingMethod.php +++ b/app/code/Magento/Braintree/Controller/Paypal/SaveShippingMethod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Controller\Paypal; diff --git a/app/code/Magento/Braintree/Gateway/Command/CaptureStrategyCommand.php b/app/code/Magento/Braintree/Gateway/Command/CaptureStrategyCommand.php index a03546b3660..c9e379d7a3d 100644 --- a/app/code/Magento/Braintree/Gateway/Command/CaptureStrategyCommand.php +++ b/app/code/Magento/Braintree/Gateway/Command/CaptureStrategyCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Command; diff --git a/app/code/Magento/Braintree/Gateway/Command/GetPaymentNonceCommand.php b/app/code/Magento/Braintree/Gateway/Command/GetPaymentNonceCommand.php index a7cdae83a96..3e77378af3a 100644 --- a/app/code/Magento/Braintree/Gateway/Command/GetPaymentNonceCommand.php +++ b/app/code/Magento/Braintree/Gateway/Command/GetPaymentNonceCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Braintree/Gateway/Config/CanVoidHandler.php b/app/code/Magento/Braintree/Gateway/Config/CanVoidHandler.php index baed854a089..c7c3e43a64a 100644 --- a/app/code/Magento/Braintree/Gateway/Config/CanVoidHandler.php +++ b/app/code/Magento/Braintree/Gateway/Config/CanVoidHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Config; diff --git a/app/code/Magento/Braintree/Gateway/Config/Config.php b/app/code/Magento/Braintree/Gateway/Config/Config.php index 774b8e36536..44814ca8245 100644 --- a/app/code/Magento/Braintree/Gateway/Config/Config.php +++ b/app/code/Magento/Braintree/Gateway/Config/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Config; diff --git a/app/code/Magento/Braintree/Gateway/Config/PayPal/Config.php b/app/code/Magento/Braintree/Gateway/Config/PayPal/Config.php index f94c6abfd77..3f34afd0717 100644 --- a/app/code/Magento/Braintree/Gateway/Config/PayPal/Config.php +++ b/app/code/Magento/Braintree/Gateway/Config/PayPal/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Config\PayPal; diff --git a/app/code/Magento/Braintree/Gateway/Helper/SubjectReader.php b/app/code/Magento/Braintree/Gateway/Helper/SubjectReader.php index e5082a5df6f..b2cc3637f6b 100644 --- a/app/code/Magento/Braintree/Gateway/Helper/SubjectReader.php +++ b/app/code/Magento/Braintree/Gateway/Helper/SubjectReader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Helper; diff --git a/app/code/Magento/Braintree/Gateway/Http/Client/AbstractTransaction.php b/app/code/Magento/Braintree/Gateway/Http/Client/AbstractTransaction.php index 01d88f95329..33e1b8b85c8 100644 --- a/app/code/Magento/Braintree/Gateway/Http/Client/AbstractTransaction.php +++ b/app/code/Magento/Braintree/Gateway/Http/Client/AbstractTransaction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionRefund.php b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionRefund.php index bf9404e8576..fbe9ab3ec5d 100644 --- a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionRefund.php +++ b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionRefund.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Http\Client; diff --git a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSale.php b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSale.php index 3ced545a8c5..9db0e3b8d90 100644 --- a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSale.php +++ b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSale.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Http\Client; diff --git a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSubmitForSettlement.php b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSubmitForSettlement.php index 769a4214a9c..e6f433b79d5 100644 --- a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSubmitForSettlement.php +++ b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSubmitForSettlement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Http\Client; diff --git a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionVoid.php b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionVoid.php index c93a3756202..a5790ba8019 100644 --- a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionVoid.php +++ b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionVoid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Http\Client; diff --git a/app/code/Magento/Braintree/Gateway/Http/TransferFactory.php b/app/code/Magento/Braintree/Gateway/Http/TransferFactory.php index 1cfe6f8d036..1ed0e330f0a 100644 --- a/app/code/Magento/Braintree/Gateway/Http/TransferFactory.php +++ b/app/code/Magento/Braintree/Gateway/Http/TransferFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Http; diff --git a/app/code/Magento/Braintree/Gateway/Request/AddressDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/AddressDataBuilder.php index 779d2addcfa..ca79ff9e5bf 100644 --- a/app/code/Magento/Braintree/Gateway/Request/AddressDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/AddressDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/CaptureDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/CaptureDataBuilder.php index 8a172351fa6..4741439ad79 100644 --- a/app/code/Magento/Braintree/Gateway/Request/CaptureDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/CaptureDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/ChannelDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/ChannelDataBuilder.php index 8d90913cb02..70746e68819 100644 --- a/app/code/Magento/Braintree/Gateway/Request/ChannelDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/ChannelDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/CustomerDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/CustomerDataBuilder.php index 69ded35fe05..2455577c2d4 100644 --- a/app/code/Magento/Braintree/Gateway/Request/CustomerDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/CustomerDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/DescriptorDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/DescriptorDataBuilder.php index f2c5515eac7..3656b564e03 100644 --- a/app/code/Magento/Braintree/Gateway/Request/DescriptorDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/DescriptorDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/KountPaymentDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/KountPaymentDataBuilder.php index 6dcbcbd266a..a50e54aa24a 100644 --- a/app/code/Magento/Braintree/Gateway/Request/KountPaymentDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/KountPaymentDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/PayPal/DeviceDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/PayPal/DeviceDataBuilder.php index bac5dc5fa0e..71c7016d7d5 100644 --- a/app/code/Magento/Braintree/Gateway/Request/PayPal/DeviceDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/PayPal/DeviceDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request\PayPal; diff --git a/app/code/Magento/Braintree/Gateway/Request/PayPal/VaultDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/PayPal/VaultDataBuilder.php index efffdbf5fef..9adbf6a7f32 100644 --- a/app/code/Magento/Braintree/Gateway/Request/PayPal/VaultDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/PayPal/VaultDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request\PayPal; diff --git a/app/code/Magento/Braintree/Gateway/Request/PaymentDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/PaymentDataBuilder.php index dd038e1f9f2..ac2eff5097f 100644 --- a/app/code/Magento/Braintree/Gateway/Request/PaymentDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/PaymentDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/RefundDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/RefundDataBuilder.php index 82679d9e921..5bf4e9b534d 100644 --- a/app/code/Magento/Braintree/Gateway/Request/RefundDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/RefundDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/SettlementDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/SettlementDataBuilder.php index eda7ab1a1a1..75bd8d91559 100644 --- a/app/code/Magento/Braintree/Gateway/Request/SettlementDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/SettlementDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/ThreeDSecureDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/ThreeDSecureDataBuilder.php index 77d4c35a8c0..269cc61298b 100644 --- a/app/code/Magento/Braintree/Gateway/Request/ThreeDSecureDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/ThreeDSecureDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/VaultCaptureDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/VaultCaptureDataBuilder.php index b66d549f82a..181562dfc10 100644 --- a/app/code/Magento/Braintree/Gateway/Request/VaultCaptureDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/VaultCaptureDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/VaultDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/VaultDataBuilder.php index 3165b67cc5c..d94988e3273 100644 --- a/app/code/Magento/Braintree/Gateway/Request/VaultDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/VaultDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Request/VoidDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/VoidDataBuilder.php index 4a862a6e909..8197479ab11 100644 --- a/app/code/Magento/Braintree/Gateway/Request/VoidDataBuilder.php +++ b/app/code/Magento/Braintree/Gateway/Request/VoidDataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Request; diff --git a/app/code/Magento/Braintree/Gateway/Response/CardDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/CardDetailsHandler.php index a6dd34fac8f..c7c8e408a93 100644 --- a/app/code/Magento/Braintree/Gateway/Response/CardDetailsHandler.php +++ b/app/code/Magento/Braintree/Gateway/Response/CardDetailsHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Response; diff --git a/app/code/Magento/Braintree/Gateway/Response/PayPal/VaultDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/PayPal/VaultDetailsHandler.php index c43f68fc608..b90132ae07d 100644 --- a/app/code/Magento/Braintree/Gateway/Response/PayPal/VaultDetailsHandler.php +++ b/app/code/Magento/Braintree/Gateway/Response/PayPal/VaultDetailsHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Response\PayPal; diff --git a/app/code/Magento/Braintree/Gateway/Response/PayPalDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/PayPalDetailsHandler.php index b58cc2839ad..77bf9305ca0 100644 --- a/app/code/Magento/Braintree/Gateway/Response/PayPalDetailsHandler.php +++ b/app/code/Magento/Braintree/Gateway/Response/PayPalDetailsHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Response; diff --git a/app/code/Magento/Braintree/Gateway/Response/PaymentDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/PaymentDetailsHandler.php index 83bd3d76e17..af50ec0af69 100644 --- a/app/code/Magento/Braintree/Gateway/Response/PaymentDetailsHandler.php +++ b/app/code/Magento/Braintree/Gateway/Response/PaymentDetailsHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Response; diff --git a/app/code/Magento/Braintree/Gateway/Response/RefundHandler.php b/app/code/Magento/Braintree/Gateway/Response/RefundHandler.php index 713ca512e20..38d4d0827ac 100644 --- a/app/code/Magento/Braintree/Gateway/Response/RefundHandler.php +++ b/app/code/Magento/Braintree/Gateway/Response/RefundHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Response; diff --git a/app/code/Magento/Braintree/Gateway/Response/RiskDataHandler.php b/app/code/Magento/Braintree/Gateway/Response/RiskDataHandler.php index 6cadf252e7a..85e1a59344b 100644 --- a/app/code/Magento/Braintree/Gateway/Response/RiskDataHandler.php +++ b/app/code/Magento/Braintree/Gateway/Response/RiskDataHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Response; diff --git a/app/code/Magento/Braintree/Gateway/Response/ThreeDSecureDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/ThreeDSecureDetailsHandler.php index 42c7e67a78b..c4aee2ca024 100644 --- a/app/code/Magento/Braintree/Gateway/Response/ThreeDSecureDetailsHandler.php +++ b/app/code/Magento/Braintree/Gateway/Response/ThreeDSecureDetailsHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Response; diff --git a/app/code/Magento/Braintree/Gateway/Response/TransactionIdHandler.php b/app/code/Magento/Braintree/Gateway/Response/TransactionIdHandler.php index 84edead4a6c..de08bce5955 100644 --- a/app/code/Magento/Braintree/Gateway/Response/TransactionIdHandler.php +++ b/app/code/Magento/Braintree/Gateway/Response/TransactionIdHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Response; diff --git a/app/code/Magento/Braintree/Gateway/Response/VaultDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/VaultDetailsHandler.php index d48443d235d..e168b3a1b32 100644 --- a/app/code/Magento/Braintree/Gateway/Response/VaultDetailsHandler.php +++ b/app/code/Magento/Braintree/Gateway/Response/VaultDetailsHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Response; diff --git a/app/code/Magento/Braintree/Gateway/Response/VoidHandler.php b/app/code/Magento/Braintree/Gateway/Response/VoidHandler.php index 5fc173af704..c3534d4a906 100644 --- a/app/code/Magento/Braintree/Gateway/Response/VoidHandler.php +++ b/app/code/Magento/Braintree/Gateway/Response/VoidHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Response; diff --git a/app/code/Magento/Braintree/Gateway/Validator/GeneralResponseValidator.php b/app/code/Magento/Braintree/Gateway/Validator/GeneralResponseValidator.php index 8b76c815591..7d32a1e645e 100644 --- a/app/code/Magento/Braintree/Gateway/Validator/GeneralResponseValidator.php +++ b/app/code/Magento/Braintree/Gateway/Validator/GeneralResponseValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Validator; diff --git a/app/code/Magento/Braintree/Gateway/Validator/PaymentNonceResponseValidator.php b/app/code/Magento/Braintree/Gateway/Validator/PaymentNonceResponseValidator.php index 47091c01bcf..339abbc44b7 100644 --- a/app/code/Magento/Braintree/Gateway/Validator/PaymentNonceResponseValidator.php +++ b/app/code/Magento/Braintree/Gateway/Validator/PaymentNonceResponseValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Validator; diff --git a/app/code/Magento/Braintree/Gateway/Validator/ResponseValidator.php b/app/code/Magento/Braintree/Gateway/Validator/ResponseValidator.php index 346d43f3312..8c934cabfd7 100644 --- a/app/code/Magento/Braintree/Gateway/Validator/ResponseValidator.php +++ b/app/code/Magento/Braintree/Gateway/Validator/ResponseValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Gateway\Validator; diff --git a/app/code/Magento/Braintree/Helper/CcType.php b/app/code/Magento/Braintree/Helper/CcType.php index 4ba887b996e..46398565abe 100644 --- a/app/code/Magento/Braintree/Helper/CcType.php +++ b/app/code/Magento/Braintree/Helper/CcType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Helper; diff --git a/app/code/Magento/Braintree/Helper/Country.php b/app/code/Magento/Braintree/Helper/Country.php index e8660b8523b..df6aaa35e3d 100644 --- a/app/code/Magento/Braintree/Helper/Country.php +++ b/app/code/Magento/Braintree/Helper/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Helper; diff --git a/app/code/Magento/Braintree/Model/Adapter/BraintreeAdapter.php b/app/code/Magento/Braintree/Model/Adapter/BraintreeAdapter.php index 12e7cd8f532..c53d9e3f5ba 100644 --- a/app/code/Magento/Braintree/Model/Adapter/BraintreeAdapter.php +++ b/app/code/Magento/Braintree/Model/Adapter/BraintreeAdapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Adapter; diff --git a/app/code/Magento/Braintree/Model/Adapter/BraintreeSearchAdapter.php b/app/code/Magento/Braintree/Model/Adapter/BraintreeSearchAdapter.php index 1b43f30380a..23430132e4e 100644 --- a/app/code/Magento/Braintree/Model/Adapter/BraintreeSearchAdapter.php +++ b/app/code/Magento/Braintree/Model/Adapter/BraintreeSearchAdapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Adapter; diff --git a/app/code/Magento/Braintree/Model/Adminhtml/Source/CcType.php b/app/code/Magento/Braintree/Model/Adminhtml/Source/CcType.php index a1a5b01ebbb..03f0c733344 100644 --- a/app/code/Magento/Braintree/Model/Adminhtml/Source/CcType.php +++ b/app/code/Magento/Braintree/Model/Adminhtml/Source/CcType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Adminhtml\Source; diff --git a/app/code/Magento/Braintree/Model/Adminhtml/Source/Environment.php b/app/code/Magento/Braintree/Model/Adminhtml/Source/Environment.php index 3b84f5d860e..2d0d0e42779 100644 --- a/app/code/Magento/Braintree/Model/Adminhtml/Source/Environment.php +++ b/app/code/Magento/Braintree/Model/Adminhtml/Source/Environment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Adminhtml\Source; diff --git a/app/code/Magento/Braintree/Model/Adminhtml/Source/PaymentAction.php b/app/code/Magento/Braintree/Model/Adminhtml/Source/PaymentAction.php index d97a4833496..7d35b00e571 100644 --- a/app/code/Magento/Braintree/Model/Adminhtml/Source/PaymentAction.php +++ b/app/code/Magento/Braintree/Model/Adminhtml/Source/PaymentAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Adminhtml\Source; diff --git a/app/code/Magento/Braintree/Model/Adminhtml/System/Config/Country.php b/app/code/Magento/Braintree/Model/Adminhtml/System/Config/Country.php index 049603b0141..d614caa6085 100644 --- a/app/code/Magento/Braintree/Model/Adminhtml/System/Config/Country.php +++ b/app/code/Magento/Braintree/Model/Adminhtml/System/Config/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Adminhtml\System\Config; diff --git a/app/code/Magento/Braintree/Model/Adminhtml/System/Config/CountryCreditCard.php b/app/code/Magento/Braintree/Model/Adminhtml/System/Config/CountryCreditCard.php index d42ca08fd32..080158bb198 100644 --- a/app/code/Magento/Braintree/Model/Adminhtml/System/Config/CountryCreditCard.php +++ b/app/code/Magento/Braintree/Model/Adminhtml/System/Config/CountryCreditCard.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Adminhtml\System\Config; diff --git a/app/code/Magento/Braintree/Model/Paypal/Helper/AbstractHelper.php b/app/code/Magento/Braintree/Model/Paypal/Helper/AbstractHelper.php index ad72fcf8a42..0a5583d465f 100644 --- a/app/code/Magento/Braintree/Model/Paypal/Helper/AbstractHelper.php +++ b/app/code/Magento/Braintree/Model/Paypal/Helper/AbstractHelper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Paypal\Helper; diff --git a/app/code/Magento/Braintree/Model/Paypal/Helper/OrderPlace.php b/app/code/Magento/Braintree/Model/Paypal/Helper/OrderPlace.php index 4df5612b4dc..ea3dadcf383 100644 --- a/app/code/Magento/Braintree/Model/Paypal/Helper/OrderPlace.php +++ b/app/code/Magento/Braintree/Model/Paypal/Helper/OrderPlace.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Paypal\Helper; diff --git a/app/code/Magento/Braintree/Model/Paypal/Helper/QuoteUpdater.php b/app/code/Magento/Braintree/Model/Paypal/Helper/QuoteUpdater.php index 9a2d1f05272..56ac9a604fe 100644 --- a/app/code/Magento/Braintree/Model/Paypal/Helper/QuoteUpdater.php +++ b/app/code/Magento/Braintree/Model/Paypal/Helper/QuoteUpdater.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Paypal\Helper; diff --git a/app/code/Magento/Braintree/Model/Paypal/Helper/ShippingMethodUpdater.php b/app/code/Magento/Braintree/Model/Paypal/Helper/ShippingMethodUpdater.php index bf82508142b..55f48c95de2 100644 --- a/app/code/Magento/Braintree/Model/Paypal/Helper/ShippingMethodUpdater.php +++ b/app/code/Magento/Braintree/Model/Paypal/Helper/ShippingMethodUpdater.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Paypal\Helper; diff --git a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/ApplierInterface.php b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/ApplierInterface.php index b2fed09c0ae..b39aa5f5b1f 100644 --- a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/ApplierInterface.php +++ b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/ApplierInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Report\ConditionAppliers; diff --git a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/AppliersPool.php b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/AppliersPool.php index 29c9e6c7b3e..51c490bca2e 100644 --- a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/AppliersPool.php +++ b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/AppliersPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Report\ConditionAppliers; diff --git a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/MultipleValue.php b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/MultipleValue.php index a80f3eac316..df4700d4c25 100644 --- a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/MultipleValue.php +++ b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/MultipleValue.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Report\ConditionAppliers; diff --git a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Range.php b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Range.php index 68b20158437..5937425ee7a 100644 --- a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Range.php +++ b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Range.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Report\ConditionAppliers; diff --git a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Text.php b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Text.php index 9d4e3217c94..fa7272be7f1 100644 --- a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Text.php +++ b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Text.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Report\ConditionAppliers; diff --git a/app/code/Magento/Braintree/Model/Report/FilterMapper.php b/app/code/Magento/Braintree/Model/Report/FilterMapper.php index 30cc22880b8..515ef2bdb4d 100644 --- a/app/code/Magento/Braintree/Model/Report/FilterMapper.php +++ b/app/code/Magento/Braintree/Model/Report/FilterMapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Report; diff --git a/app/code/Magento/Braintree/Model/Report/Row/TransactionMap.php b/app/code/Magento/Braintree/Model/Report/Row/TransactionMap.php index c914b21893e..bb9c807c530 100644 --- a/app/code/Magento/Braintree/Model/Report/Row/TransactionMap.php +++ b/app/code/Magento/Braintree/Model/Report/Row/TransactionMap.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Report\Row; diff --git a/app/code/Magento/Braintree/Model/Report/TransactionsCollection.php b/app/code/Magento/Braintree/Model/Report/TransactionsCollection.php index fdfc6674c59..d0b32b49dd7 100644 --- a/app/code/Magento/Braintree/Model/Report/TransactionsCollection.php +++ b/app/code/Magento/Braintree/Model/Report/TransactionsCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Report; diff --git a/app/code/Magento/Braintree/Model/Ui/Adminhtml/PayPal/TokenUiComponentProvider.php b/app/code/Magento/Braintree/Model/Ui/Adminhtml/PayPal/TokenUiComponentProvider.php index fd94e18e2cd..806c3a0cdaa 100644 --- a/app/code/Magento/Braintree/Model/Ui/Adminhtml/PayPal/TokenUiComponentProvider.php +++ b/app/code/Magento/Braintree/Model/Ui/Adminhtml/PayPal/TokenUiComponentProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Ui\Adminhtml\PayPal; diff --git a/app/code/Magento/Braintree/Model/Ui/Adminhtml/TokenUiComponentProvider.php b/app/code/Magento/Braintree/Model/Ui/Adminhtml/TokenUiComponentProvider.php index 420b8365b3e..b2c6b53e253 100644 --- a/app/code/Magento/Braintree/Model/Ui/Adminhtml/TokenUiComponentProvider.php +++ b/app/code/Magento/Braintree/Model/Ui/Adminhtml/TokenUiComponentProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Ui\Adminhtml; diff --git a/app/code/Magento/Braintree/Model/Ui/ConfigProvider.php b/app/code/Magento/Braintree/Model/Ui/ConfigProvider.php index 76788c3c145..d96ee2ba58e 100644 --- a/app/code/Magento/Braintree/Model/Ui/ConfigProvider.php +++ b/app/code/Magento/Braintree/Model/Ui/ConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Ui; diff --git a/app/code/Magento/Braintree/Model/Ui/PayPal/ConfigProvider.php b/app/code/Magento/Braintree/Model/Ui/PayPal/ConfigProvider.php index 65fb5370181..270e0ed6e83 100644 --- a/app/code/Magento/Braintree/Model/Ui/PayPal/ConfigProvider.php +++ b/app/code/Magento/Braintree/Model/Ui/PayPal/ConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Ui\PayPal; diff --git a/app/code/Magento/Braintree/Model/Ui/PayPal/TokenUiComponentProvider.php b/app/code/Magento/Braintree/Model/Ui/PayPal/TokenUiComponentProvider.php index 2f3e3db75cc..5cf6db8759f 100644 --- a/app/code/Magento/Braintree/Model/Ui/PayPal/TokenUiComponentProvider.php +++ b/app/code/Magento/Braintree/Model/Ui/PayPal/TokenUiComponentProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Ui\PayPal; diff --git a/app/code/Magento/Braintree/Model/Ui/TokenUiComponentProvider.php b/app/code/Magento/Braintree/Model/Ui/TokenUiComponentProvider.php index 1fe3fb24db8..84d17896e72 100644 --- a/app/code/Magento/Braintree/Model/Ui/TokenUiComponentProvider.php +++ b/app/code/Magento/Braintree/Model/Ui/TokenUiComponentProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Model\Ui; diff --git a/app/code/Magento/Braintree/Observer/AddPaypalShortcuts.php b/app/code/Magento/Braintree/Observer/AddPaypalShortcuts.php index d57c82db603..333cc154359 100644 --- a/app/code/Magento/Braintree/Observer/AddPaypalShortcuts.php +++ b/app/code/Magento/Braintree/Observer/AddPaypalShortcuts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Observer; diff --git a/app/code/Magento/Braintree/Observer/DataAssignObserver.php b/app/code/Magento/Braintree/Observer/DataAssignObserver.php index fb528e3554d..e3b1dc05393 100644 --- a/app/code/Magento/Braintree/Observer/DataAssignObserver.php +++ b/app/code/Magento/Braintree/Observer/DataAssignObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Observer; diff --git a/app/code/Magento/Braintree/Test/Unit/Block/FormTest.php b/app/code/Magento/Braintree/Test/Unit/Block/FormTest.php index e6c7ce59d0e..4d2b2cba3fa 100644 --- a/app/code/Magento/Braintree/Test/Unit/Block/FormTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Block/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Block; diff --git a/app/code/Magento/Braintree/Test/Unit/Controller/Payment/GetNonceTest.php b/app/code/Magento/Braintree/Test/Unit/Controller/Payment/GetNonceTest.php index 523a8b30141..3c2d5085466 100644 --- a/app/code/Magento/Braintree/Test/Unit/Controller/Payment/GetNonceTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Controller/Payment/GetNonceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Controller\Payment; diff --git a/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/PlaceOrderTest.php b/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/PlaceOrderTest.php index 7d1341250df..35ef40a890e 100644 --- a/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/PlaceOrderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/PlaceOrderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Controller\Paypal; diff --git a/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/ReviewTest.php b/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/ReviewTest.php index a5cdaf3e35b..88f0c4c11c8 100644 --- a/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/ReviewTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/ReviewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Controller\Paypal; diff --git a/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/SaveShippingMethodTest.php b/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/SaveShippingMethodTest.php index 2dbe164411b..c1a4b3c1250 100644 --- a/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/SaveShippingMethodTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/SaveShippingMethodTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Controller\Paypal; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Command/CaptureStrategyCommandTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Command/CaptureStrategyCommandTest.php index 9665afa1f36..67e90917f8e 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Command/CaptureStrategyCommandTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Command/CaptureStrategyCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Command; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Command/GetPaymentNonceCommandTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Command/GetPaymentNonceCommandTest.php index 9600abfcf60..004295e8133 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Command/GetPaymentNonceCommandTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Command/GetPaymentNonceCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Command; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Config/CanVoidHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Config/CanVoidHandlerTest.php index 73434230f74..18cf6fd1179 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Config/CanVoidHandlerTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Config/CanVoidHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Config; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Config/ConfigTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Config/ConfigTest.php index e4dd13985fa..b120906b572 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Config/ConfigTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Config/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Helper/SubjectReaderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Helper/SubjectReaderTest.php index 02192c819da..f4056c8abb3 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Helper/SubjectReaderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Helper/SubjectReaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Helper; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSaleTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSaleTest.php index 7f80cb044ab..c9f3c774929 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSaleTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSaleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Http\Client; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSubmitForSettlementTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSubmitForSettlementTest.php index 76723906039..4ce9d216f70 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSubmitForSettlementTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSubmitForSettlementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Http\Client; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Http/TransferFactoryTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Http/TransferFactoryTest.php index ca8b8577c39..5718c26f8f5 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Http/TransferFactoryTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Http/TransferFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Http; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/AddressDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/AddressDataBuilderTest.php index f52a3e47b0d..104ee5f3116 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/AddressDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/AddressDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CaptureDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CaptureDataBuilderTest.php index f0967a6bf97..6f4b9304e03 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CaptureDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CaptureDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ChannelDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ChannelDataBuilderTest.php index a838927d59f..8350e6bef29 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ChannelDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ChannelDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CustomerDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CustomerDataBuilderTest.php index 16bc6502d5d..9ddee724fc4 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CustomerDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CustomerDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/DescriptorDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/DescriptorDataBuilderTest.php index ffee3294917..3ab2d33090c 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/DescriptorDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/DescriptorDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/KountPaymentDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/KountPaymentDataBuilderTest.php index f1485fe192f..691fbbd8c14 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/KountPaymentDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/KountPaymentDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/DeviceDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/DeviceDataBuilderTest.php index 268f1d62511..226f9299435 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/DeviceDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/DeviceDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request\PayPal; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/VaultDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/VaultDataBuilderTest.php index bee9ae2e06d..6b5ade3ebf4 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/VaultDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/VaultDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request\PayPal; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PaymentDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PaymentDataBuilderTest.php index 7d30651c69e..40d62a64790 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PaymentDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PaymentDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/RefundDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/RefundDataBuilderTest.php index 6b1b5744fb9..bea9878966f 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/RefundDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/RefundDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/SettlementDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/SettlementDataBuilderTest.php index 571fb548b2e..e47792d6c90 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/SettlementDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/SettlementDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ThreeDSecureDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ThreeDSecureDataBuilderTest.php index b76584e9a18..2c2dda43037 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ThreeDSecureDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ThreeDSecureDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultCaptureDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultCaptureDataBuilderTest.php index 165bc94aa68..3331c084c24 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultCaptureDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultCaptureDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultDataBuilderTest.php index 0caf259627b..84c14afff23 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultDataBuilderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultDataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/CardDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/CardDetailsHandlerTest.php index f56f014df74..773d5dda6d9 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/CardDetailsHandlerTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/CardDetailsHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Response; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPal/VaultDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPal/VaultDetailsHandlerTest.php index be2239151a2..cdd2f2c2028 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPal/VaultDetailsHandlerTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPal/VaultDetailsHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Response\PayPal; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPalDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPalDetailsHandlerTest.php index b78b9ce4ff7..0726354d41b 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPalDetailsHandlerTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPalDetailsHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Response; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PaymentDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PaymentDetailsHandlerTest.php index 1a85a0279dc..b849d79bdfd 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PaymentDetailsHandlerTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PaymentDetailsHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Response; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/RiskDataHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/RiskDataHandlerTest.php index 2baf3356a00..a3b7d981f79 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/RiskDataHandlerTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/RiskDataHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Response; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/ThreeDSecureDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/ThreeDSecureDetailsHandlerTest.php index 973f67532af..835f754444a 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/ThreeDSecureDetailsHandlerTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/ThreeDSecureDetailsHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Response; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/TransactionIdHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/TransactionIdHandlerTest.php index 622f9c676cf..87a3bd80044 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/TransactionIdHandlerTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/TransactionIdHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Response; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VaultDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VaultDetailsHandlerTest.php index 4f641bbb567..fa4aa716fe5 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VaultDetailsHandlerTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VaultDetailsHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Response; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VoidHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VoidHandlerTest.php index f0ec710e138..51971e077f9 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VoidHandlerTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VoidHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Response; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/GeneralResponseValidatorTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/GeneralResponseValidatorTest.php index 8f57cd0e6f5..51b3c0aa2e9 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/GeneralResponseValidatorTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/GeneralResponseValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Validator; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/PaymentNonceResponseValidatorTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/PaymentNonceResponseValidatorTest.php index fb88dcb5f5f..3467567f7cd 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/PaymentNonceResponseValidatorTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/PaymentNonceResponseValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Validator; diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/ResponseValidatorTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/ResponseValidatorTest.php index c486783be6b..33726c763aa 100644 --- a/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/ResponseValidatorTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/ResponseValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Gateway\Validator; diff --git a/app/code/Magento/Braintree/Test/Unit/Helper/CcTypeTest.php b/app/code/Magento/Braintree/Test/Unit/Helper/CcTypeTest.php index e4f17946b2d..b82c5b9eade 100644 --- a/app/code/Magento/Braintree/Test/Unit/Helper/CcTypeTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Helper/CcTypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Helper; diff --git a/app/code/Magento/Braintree/Test/Unit/Helper/CountryTest.php b/app/code/Magento/Braintree/Test/Unit/Helper/CountryTest.php index 39df286f676..ba40a0f5438 100644 --- a/app/code/Magento/Braintree/Test/Unit/Helper/CountryTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Helper/CountryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Helper; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryCreditCardTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryCreditCardTest.php index 8520cc76ec5..82b2f892fb9 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryCreditCardTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryCreditCardTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryTest.php index 3beaf139e5b..ccb8e7e8f6e 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Adminhtml\System\Config; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/OrderPlaceTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/OrderPlaceTest.php index 4b5445f3203..a2aa134f753 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/OrderPlaceTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/OrderPlaceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Paypal\Helper; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/QuoteUpdaterTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/QuoteUpdaterTest.php index c2413517fe0..9c57e837c08 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/QuoteUpdaterTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/QuoteUpdaterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Paypal\Helper; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/ShippingMethodUpdaterTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/ShippingMethodUpdaterTest.php index b5f628e5b70..76476b3bac4 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/ShippingMethodUpdaterTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/ShippingMethodUpdaterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Paypal\Helper; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeSearchNodeStub.php b/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeSearchNodeStub.php index b16da3e4a9d..1abc2ba3c2e 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeSearchNodeStub.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeSearchNodeStub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Report; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeTransactionStub.php b/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeTransactionStub.php index e9f16f59a07..ce8b48d06d9 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeTransactionStub.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeTransactionStub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Report; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Report/FilterMapperTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Report/FilterMapperTest.php index 02f1623c955..99af9c1e9cd 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Report/FilterMapperTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Report/FilterMapperTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Report; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionMapTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionMapTest.php index 34c607c8878..98e38ed35ee 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionMapTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionMapTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Report; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionsCollectionTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionsCollectionTest.php index 6024141280a..7ceaadf40e6 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionsCollectionTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionsCollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Report; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php index bdc39cbc5b8..8902b1ee08f 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Ui\Adminhtml\PayPal; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/TokenUiComponentProviderTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/TokenUiComponentProviderTest.php index f159136cf4c..d39cd324250 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/TokenUiComponentProviderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/TokenUiComponentProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Ui\Adminhtml; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Ui/ConfigProviderTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Ui/ConfigProviderTest.php index 04846f369eb..1adc43a1ecd 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Ui/ConfigProviderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Ui/ConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Ui; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/ConfigProviderTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/ConfigProviderTest.php index 8859425eb0d..ee7fefa6d2b 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/ConfigProviderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/ConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Ui\PayPal; diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/TokenUiComponentProviderTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/TokenUiComponentProviderTest.php index d0368a22ef9..513704a14d5 100644 --- a/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/TokenUiComponentProviderTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/TokenUiComponentProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Model\Ui\PayPal; diff --git a/app/code/Magento/Braintree/Test/Unit/Observer/AddPaypalShortcutsTest.php b/app/code/Magento/Braintree/Test/Unit/Observer/AddPaypalShortcutsTest.php index c814de6468b..1d72a70a733 100644 --- a/app/code/Magento/Braintree/Test/Unit/Observer/AddPaypalShortcutsTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Observer/AddPaypalShortcutsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Observer; diff --git a/app/code/Magento/Braintree/Test/Unit/Observer/DataAssignObserverTest.php b/app/code/Magento/Braintree/Test/Unit/Observer/DataAssignObserverTest.php index c14227d73d7..3782c108221 100644 --- a/app/code/Magento/Braintree/Test/Unit/Observer/DataAssignObserverTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Observer/DataAssignObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Observer; diff --git a/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Filters/Type/DateRangeTest.php b/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Filters/Type/DateRangeTest.php index b81dbe2fb03..479651b90de 100644 --- a/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Filters/Type/DateRangeTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Filters/Type/DateRangeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Ui\Component\Report\Filters\Type; diff --git a/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Listing/Column/CheckColumnOptionSourceTest.php b/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Listing/Column/CheckColumnOptionSourceTest.php index d100473b2ce..123bf23f00a 100644 --- a/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Listing/Column/CheckColumnOptionSourceTest.php +++ b/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Listing/Column/CheckColumnOptionSourceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Test\Unit\Ui\Component\Report\Listing\Column; diff --git a/app/code/Magento/Braintree/Ui/Component/Report/Filters/Type/DateRange.php b/app/code/Magento/Braintree/Ui/Component/Report/Filters/Type/DateRange.php index adbb3b78cb6..b67c34ee7e1 100644 --- a/app/code/Magento/Braintree/Ui/Component/Report/Filters/Type/DateRange.php +++ b/app/code/Magento/Braintree/Ui/Component/Report/Filters/Type/DateRange.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Ui\Component\Report\Filters\Type; diff --git a/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/PaymentType.php b/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/PaymentType.php index 489c0d4cd1e..fe62fe23407 100644 --- a/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/PaymentType.php +++ b/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/PaymentType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Ui\Component\Report\Listing\Column; diff --git a/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/Status.php b/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/Status.php index ca6d6522990..b58bda41887 100644 --- a/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/Status.php +++ b/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Ui\Component\Report\Listing\Column; diff --git a/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/TransactionType.php b/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/TransactionType.php index 0fe752d4232..46c497c8eca 100644 --- a/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/TransactionType.php +++ b/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/TransactionType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Braintree\Ui\Component\Report\Listing\Column; diff --git a/app/code/Magento/Braintree/etc/acl.xml b/app/code/Magento/Braintree/etc/acl.xml index e926613a18e..49ab7740cb3 100644 --- a/app/code/Magento/Braintree/etc/acl.xml +++ b/app/code/Magento/Braintree/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/adminhtml/di.xml b/app/code/Magento/Braintree/etc/adminhtml/di.xml index d154aabbb01..c91b4edbd2e 100644 --- a/app/code/Magento/Braintree/etc/adminhtml/di.xml +++ b/app/code/Magento/Braintree/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/adminhtml/menu.xml b/app/code/Magento/Braintree/etc/adminhtml/menu.xml index ed73aa20cdb..43d12aa0bb9 100644 --- a/app/code/Magento/Braintree/etc/adminhtml/menu.xml +++ b/app/code/Magento/Braintree/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/adminhtml/routes.xml b/app/code/Magento/Braintree/etc/adminhtml/routes.xml index 698664f02e6..0991aef9485 100644 --- a/app/code/Magento/Braintree/etc/adminhtml/routes.xml +++ b/app/code/Magento/Braintree/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/adminhtml/system.xml b/app/code/Magento/Braintree/etc/adminhtml/system.xml index e4f4e119838..ef3cdc3f512 100644 --- a/app/code/Magento/Braintree/etc/adminhtml/system.xml +++ b/app/code/Magento/Braintree/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/config.xml b/app/code/Magento/Braintree/etc/config.xml index bf19324ae7a..eaa233da109 100644 --- a/app/code/Magento/Braintree/etc/config.xml +++ b/app/code/Magento/Braintree/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/di.xml b/app/code/Magento/Braintree/etc/di.xml index 5417c96ba67..6f596cc4a8d 100644 --- a/app/code/Magento/Braintree/etc/di.xml +++ b/app/code/Magento/Braintree/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/events.xml b/app/code/Magento/Braintree/etc/events.xml index 6d76a626d15..2bf95bdbad1 100644 --- a/app/code/Magento/Braintree/etc/events.xml +++ b/app/code/Magento/Braintree/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/frontend/di.xml b/app/code/Magento/Braintree/etc/frontend/di.xml index cdd56e236a7..781f985b4b3 100644 --- a/app/code/Magento/Braintree/etc/frontend/di.xml +++ b/app/code/Magento/Braintree/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/frontend/events.xml b/app/code/Magento/Braintree/etc/frontend/events.xml index df1db1420b5..e1bff1a20b2 100644 --- a/app/code/Magento/Braintree/etc/frontend/events.xml +++ b/app/code/Magento/Braintree/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/frontend/routes.xml b/app/code/Magento/Braintree/etc/frontend/routes.xml index 7ec5a0c1b09..ad8b484ca30 100644 --- a/app/code/Magento/Braintree/etc/frontend/routes.xml +++ b/app/code/Magento/Braintree/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/frontend/sections.xml b/app/code/Magento/Braintree/etc/frontend/sections.xml index f87695a6247..add86f4cdb5 100644 --- a/app/code/Magento/Braintree/etc/frontend/sections.xml +++ b/app/code/Magento/Braintree/etc/frontend/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/etc/module.xml b/app/code/Magento/Braintree/etc/module.xml index 2b7759fc784..56f0fa61087 100644 --- a/app/code/Magento/Braintree/etc/module.xml +++ b/app/code/Magento/Braintree/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/registration.php b/app/code/Magento/Braintree/registration.php index 33f9f68a419..d56ac32c07c 100644 --- a/app/code/Magento/Braintree/registration.php +++ b/app/code/Magento/Braintree/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ \Magento\Framework\Component\ComponentRegistrar::register( diff --git a/app/code/Magento/Braintree/view/adminhtml/layout/adminhtml_system_config_edit.xml b/app/code/Magento/Braintree/view/adminhtml/layout/adminhtml_system_config_edit.xml index d1659aeddbc..79ea5cefaa1 100644 --- a/app/code/Magento/Braintree/view/adminhtml/layout/adminhtml_system_config_edit.xml +++ b/app/code/Magento/Braintree/view/adminhtml/layout/adminhtml_system_config_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -9,4 +9,4 @@ <head> <css src="Magento_Braintree::styles.css"/> </head> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Braintree/view/adminhtml/layout/braintree_report_index.xml b/app/code/Magento/Braintree/view/adminhtml/layout/braintree_report_index.xml index 30c334cd094..396f86b903f 100644 --- a/app/code/Magento/Braintree/view/adminhtml/layout/braintree_report_index.xml +++ b/app/code/Magento/Braintree/view/adminhtml/layout/braintree_report_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -18,4 +18,4 @@ <uiComponent name="braintree_report"/> </referenceContainer> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_index.xml b/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_index.xml index 5e4f36e1c1f..b5ce1fc9c67 100644 --- a/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_index.xml +++ b/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml b/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml index 579b82c61f6..0cfa34cf020 100644 --- a/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml +++ b/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -24,4 +24,4 @@ </action> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Braintree/view/adminhtml/templates/form/cc.phtml b/app/code/Magento/Braintree/view/adminhtml/templates/form/cc.phtml index cd2fbcf3fec..50076da1a85 100644 --- a/app/code/Magento/Braintree/view/adminhtml/templates/form/cc.phtml +++ b/app/code/Magento/Braintree/view/adminhtml/templates/form/cc.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Braintree/view/adminhtml/templates/form/paypal/vault.phtml b/app/code/Magento/Braintree/view/adminhtml/templates/form/paypal/vault.phtml index 22930bbc656..ef3edc75fa5 100644 --- a/app/code/Magento/Braintree/view/adminhtml/templates/form/paypal/vault.phtml +++ b/app/code/Magento/Braintree/view/adminhtml/templates/form/paypal/vault.phtml @@ -1,7 +1,7 @@ <?php use Magento\Vault\Model\Ui\TokenUiComponentProviderInterface; /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // @codingStandardsIgnoreFile diff --git a/app/code/Magento/Braintree/view/adminhtml/templates/form/vault.phtml b/app/code/Magento/Braintree/view/adminhtml/templates/form/vault.phtml index 001422d4bf9..5414be0a571 100644 --- a/app/code/Magento/Braintree/view/adminhtml/templates/form/vault.phtml +++ b/app/code/Magento/Braintree/view/adminhtml/templates/form/vault.phtml @@ -1,7 +1,7 @@ <?php use Magento\Vault\Model\Ui\TokenUiComponentProviderInterface; /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // @codingStandardsIgnoreFile diff --git a/app/code/Magento/Braintree/view/adminhtml/templates/grid/tooltip.phtml b/app/code/Magento/Braintree/view/adminhtml/templates/grid/tooltip.phtml index 7a07fe648f3..34c109e2d69 100644 --- a/app/code/Magento/Braintree/view/adminhtml/templates/grid/tooltip.phtml +++ b/app/code/Magento/Braintree/view/adminhtml/templates/grid/tooltip.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Braintree/view/adminhtml/templates/payment/script.phtml b/app/code/Magento/Braintree/view/adminhtml/templates/payment/script.phtml index e3f2da56efc..9f32d6fc6b5 100644 --- a/app/code/Magento/Braintree/view/adminhtml/templates/payment/script.phtml +++ b/app/code/Magento/Braintree/view/adminhtml/templates/payment/script.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -25,4 +25,4 @@ $code = $block->escapeHtml($block->getCode()); payment = new Braintree(config); }); //]]> -</script> \ No newline at end of file +</script> diff --git a/app/code/Magento/Braintree/view/adminhtml/ui_component/braintree_report.xml b/app/code/Magento/Braintree/view/adminhtml/ui_component/braintree_report.xml index 031ddca7a87..7613bbcfd40 100644 --- a/app/code/Magento/Braintree/view/adminhtml/ui_component/braintree_report.xml +++ b/app/code/Magento/Braintree/view/adminhtml/ui_component/braintree_report.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/view/adminhtml/web/js/braintree.js b/app/code/Magento/Braintree/view/adminhtml/web/js/braintree.js index 93b2f9831ef..2457e3582a1 100644 --- a/app/code/Magento/Braintree/view/adminhtml/web/js/braintree.js +++ b/app/code/Magento/Braintree/view/adminhtml/web/js/braintree.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/adminhtml/web/js/grid/filters/status.html b/app/code/Magento/Braintree/view/adminhtml/web/js/grid/filters/status.html index 68c1dbcee8f..f69cbcc6198 100644 --- a/app/code/Magento/Braintree/view/adminhtml/web/js/grid/filters/status.html +++ b/app/code/Magento/Braintree/view/adminhtml/web/js/grid/filters/status.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/view/adminhtml/web/js/grid/provider.js b/app/code/Magento/Braintree/view/adminhtml/web/js/grid/provider.js index ff0f8408b40..8b1380f6029 100644 --- a/app/code/Magento/Braintree/view/adminhtml/web/js/grid/provider.js +++ b/app/code/Magento/Braintree/view/adminhtml/web/js/grid/provider.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Braintree/view/adminhtml/web/js/vault.js b/app/code/Magento/Braintree/view/adminhtml/web/js/vault.js index 14729714b4e..541542c83bc 100644 --- a/app/code/Magento/Braintree/view/adminhtml/web/js/vault.js +++ b/app/code/Magento/Braintree/view/adminhtml/web/js/vault.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/adminhtml/web/styles.css b/app/code/Magento/Braintree/view/adminhtml/web/styles.css index 81378f636eb..19a4f794fb4 100644 --- a/app/code/Magento/Braintree/view/adminhtml/web/styles.css +++ b/app/code/Magento/Braintree/view/adminhtml/web/styles.css @@ -1,8 +1,8 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ .braintree-section .heading {background: url("images/braintree_logo.png") no-repeat 0 50% / 18rem auto; padding-left: 20rem;} .braintree-section .button-container {float: right;} -.braintree-section .config-alt {background: url("images/braintree_allinone.png") no-repeat scroll 0 0 / 100% auto; height: 28px; margin: 0.5rem 0 0; width: 230px;} \ No newline at end of file +.braintree-section .config-alt {background: url("images/braintree_allinone.png") no-repeat scroll 0 0 / 100% auto; height: 28px; margin: 0.5rem 0 0; width: 230px;} diff --git a/app/code/Magento/Braintree/view/base/web/js/validator.js b/app/code/Magento/Braintree/view/base/web/js/validator.js index 8c878840ca1..931774aaffa 100644 --- a/app/code/Magento/Braintree/view/base/web/js/validator.js +++ b/app/code/Magento/Braintree/view/base/web/js/validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/frontend/layout/braintree_paypal_review.xml b/app/code/Magento/Braintree/view/frontend/layout/braintree_paypal_review.xml index 19b7a795c2d..a5125861a04 100644 --- a/app/code/Magento/Braintree/view/frontend/layout/braintree_paypal_review.xml +++ b/app/code/Magento/Braintree/view/frontend/layout/braintree_paypal_review.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Braintree/view/frontend/layout/checkout_index_index.xml index a6b5b8795c4..872cb7d51ce 100644 --- a/app/code/Magento/Braintree/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/Braintree/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/view/frontend/layout/vault_cards_listaction.xml b/app/code/Magento/Braintree/view/frontend/layout/vault_cards_listaction.xml index c8cd4e3cc40..1ab68abf197 100644 --- a/app/code/Magento/Braintree/view/frontend/layout/vault_cards_listaction.xml +++ b/app/code/Magento/Braintree/view/frontend/layout/vault_cards_listaction.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/view/frontend/requirejs-config.js b/app/code/Magento/Braintree/view/frontend/requirejs-config.js index 76391a81fe6..e12a4dd8704 100644 --- a/app/code/Magento/Braintree/view/frontend/requirejs-config.js +++ b/app/code/Magento/Braintree/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Braintree/view/frontend/templates/paypal/button.phtml b/app/code/Magento/Braintree/view/frontend/templates/paypal/button.phtml index 35cb4617ec9..5fc4bf83cab 100644 --- a/app/code/Magento/Braintree/view/frontend/templates/paypal/button.phtml +++ b/app/code/Magento/Braintree/view/frontend/templates/paypal/button.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Braintree/view/frontend/templates/paypal/vault_token.phtml b/app/code/Magento/Braintree/view/frontend/templates/paypal/vault_token.phtml index 32c2d98e7e7..80844768e22 100644 --- a/app/code/Magento/Braintree/view/frontend/templates/paypal/vault_token.phtml +++ b/app/code/Magento/Braintree/view/frontend/templates/paypal/vault_token.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Braintree/view/frontend/web/js/paypal/button.js b/app/code/Magento/Braintree/view/frontend/web/js/paypal/button.js index c2a5326aa31..0050a50a97d 100644 --- a/app/code/Magento/Braintree/view/frontend/web/js/paypal/button.js +++ b/app/code/Magento/Braintree/view/frontend/web/js/paypal/button.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Braintree/view/frontend/web/js/paypal/form-builder.js b/app/code/Magento/Braintree/view/frontend/web/js/paypal/form-builder.js index 0b199d3b479..66bee749601 100644 --- a/app/code/Magento/Braintree/view/frontend/web/js/paypal/form-builder.js +++ b/app/code/Magento/Braintree/view/frontend/web/js/paypal/form-builder.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/3d-secure.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/3d-secure.js index 83a8ee5a453..d369fc93e15 100644 --- a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/3d-secure.js +++ b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/3d-secure.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/adapter.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/adapter.js index bd73d9273a2..51f0b3f79ea 100644 --- a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/adapter.js +++ b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/adapter.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/braintree.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/braintree.js index 3cec7f1fb8c..93cdb364ba1 100644 --- a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/braintree.js +++ b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/braintree.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/cc-form.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/cc-form.js index b311ea80cc5..f37aea1b483 100644 --- a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/cc-form.js +++ b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/cc-form.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/hosted-fields.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/hosted-fields.js index ef57428acaa..c7ca993d1ca 100644 --- a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/hosted-fields.js +++ b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/hosted-fields.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal-vault.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal-vault.js index a609175fe25..d37d72d3b97 100644 --- a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal-vault.js +++ b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal-vault.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal.js index 2d5e0b3a270..5ab165a15cd 100644 --- a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal.js +++ b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/vault.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/vault.js index dc2b0bdf341..968cca60bbb 100644 --- a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/vault.js +++ b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/vault.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/validator-handler.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/validator-handler.js index d253b8e5625..57b8d96abc1 100644 --- a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/validator-handler.js +++ b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/validator-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Braintree/view/frontend/web/template/payment/form.html b/app/code/Magento/Braintree/view/frontend/web/template/payment/form.html index 5aead9e8238..ba3c5311566 100644 --- a/app/code/Magento/Braintree/view/frontend/web/template/payment/form.html +++ b/app/code/Magento/Braintree/view/frontend/web/template/payment/form.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal.html b/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal.html index 465c5acea79..8dbb2ca7194 100644 --- a/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal.html +++ b/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -76,4 +76,4 @@ </div> </div> </div> -</div> \ No newline at end of file +</div> diff --git a/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal/vault.html b/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal/vault.html index eef06f048cd..28cd3ebb2f2 100644 --- a/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal/vault.html +++ b/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal/vault.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -44,4 +44,4 @@ </div> </div> </div> -</div> \ No newline at end of file +</div> diff --git a/app/code/Magento/Bundle/Api/Data/BundleOptionInterface.php b/app/code/Magento/Bundle/Api/Data/BundleOptionInterface.php index a10d131c000..5ef6c2971b1 100644 --- a/app/code/Magento/Bundle/Api/Data/BundleOptionInterface.php +++ b/app/code/Magento/Bundle/Api/Data/BundleOptionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Api/Data/LinkInterface.php b/app/code/Magento/Bundle/Api/Data/LinkInterface.php index 0ded8ead5a4..188b2a422e8 100644 --- a/app/code/Magento/Bundle/Api/Data/LinkInterface.php +++ b/app/code/Magento/Bundle/Api/Data/LinkInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Api/Data/OptionInterface.php b/app/code/Magento/Bundle/Api/Data/OptionInterface.php index f08b375af02..93dd75bdae5 100644 --- a/app/code/Magento/Bundle/Api/Data/OptionInterface.php +++ b/app/code/Magento/Bundle/Api/Data/OptionInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Api/Data/OptionTypeInterface.php b/app/code/Magento/Bundle/Api/Data/OptionTypeInterface.php index f855bdc7e51..56775efd801 100644 --- a/app/code/Magento/Bundle/Api/Data/OptionTypeInterface.php +++ b/app/code/Magento/Bundle/Api/Data/OptionTypeInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Api\Data; diff --git a/app/code/Magento/Bundle/Api/ProductLinkManagementInterface.php b/app/code/Magento/Bundle/Api/ProductLinkManagementInterface.php index cb87e4af870..41eb14cdcff 100644 --- a/app/code/Magento/Bundle/Api/ProductLinkManagementInterface.php +++ b/app/code/Magento/Bundle/Api/ProductLinkManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Api; diff --git a/app/code/Magento/Bundle/Api/ProductOptionManagementInterface.php b/app/code/Magento/Bundle/Api/ProductOptionManagementInterface.php index f116fe998e1..cbdd6c65059 100644 --- a/app/code/Magento/Bundle/Api/ProductOptionManagementInterface.php +++ b/app/code/Magento/Bundle/Api/ProductOptionManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Api; diff --git a/app/code/Magento/Bundle/Api/ProductOptionRepositoryInterface.php b/app/code/Magento/Bundle/Api/ProductOptionRepositoryInterface.php index 3d17a065971..4c6c801c01f 100644 --- a/app/code/Magento/Bundle/Api/ProductOptionRepositoryInterface.php +++ b/app/code/Magento/Bundle/Api/ProductOptionRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Api; diff --git a/app/code/Magento/Bundle/Api/ProductOptionTypeListInterface.php b/app/code/Magento/Bundle/Api/ProductOptionTypeListInterface.php index f36e0421b1a..9bef877ad5c 100644 --- a/app/code/Magento/Bundle/Api/ProductOptionTypeListInterface.php +++ b/app/code/Magento/Bundle/Api/ProductOptionTypeListInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Api; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php index 4700c3bbab2..280f58c8a77 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Composite\Fieldset; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php index 33bbe6c6226..95ad378b0b7 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Composite\Fieldset\Options\Type; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php index 10c9294d0d4..5e3edb59bac 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Composite\Fieldset\Options\Type; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php index 683173a7c61..b1bf86dfc02 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Composite\Fieldset\Options\Type; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php index 0ba148acad3..624061850e8 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Composite\Fieldset\Options\Type; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php index 7669869d671..a25528c719e 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Extend.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Extend.php index 28e3e26b32d..8253d84f073 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Extend.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Extend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Special.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Special.php index d5ab6633b0c..800f79f56f1 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Special.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Special.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab\Attributes; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php index e1d98d03b91..70db4034474 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php index 259bb032374..23a6787bda3 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab\Bundle; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search.php index 699109e7596..0c4352155c1 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab\Bundle\Option; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php index 405e0a60e15..40820903bd6 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab\Bundle\Option\Search; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php index f9efd510726..e87bd0f92c5 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab\Bundle\Option; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php index 2de68b2412f..2d7586724b5 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Order/Create/Sidebar.php b/app/code/Magento/Bundle/Block/Adminhtml/Order/Create/Sidebar.php index 697deb6a3df..b81395ce66b 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Order/Create/Sidebar.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Order/Create/Sidebar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php index ad9a0b9bbbe..6bb4fe0060b 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Sales\Order\Items; diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php index 01e122a56b5..a41896f139d 100644 --- a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Adminhtml\Sales\Order\View\Items; diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/Price.php b/app/code/Magento/Bundle/Block/Catalog/Product/Price.php index 01521e2f06f..32bfe71786e 100644 --- a/app/code/Magento/Bundle/Block/Catalog/Product/Price.php +++ b/app/code/Magento/Bundle/Block/Catalog/Product/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Catalog\Product; diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle.php index 9fb752be81a..e192063efe1 100644 --- a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle.php +++ b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Catalog\Product\View\Type; diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php index 5f0fc28b940..af3b3d6b416 100644 --- a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php +++ b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Checkbox.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Checkbox.php index d24abf6b9df..c79b4605e84 100644 --- a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Checkbox.php +++ b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Checkbox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Catalog\Product\View\Type\Bundle\Option; diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Multi.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Multi.php index b070809e580..9fa82501200 100644 --- a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Multi.php +++ b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Multi.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Catalog\Product\View\Type\Bundle\Option; diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Radio.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Radio.php index 23825e2ccfb..a4e4dd498a6 100644 --- a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Radio.php +++ b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Radio.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Catalog\Product\View\Type\Bundle\Option; diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Select.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Select.php index 59eb1b4d08c..cebcb0a69e4 100644 --- a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Select.php +++ b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Catalog\Product\View\Type\Bundle\Option; diff --git a/app/code/Magento/Bundle/Block/Checkout/Cart/Item/Renderer.php b/app/code/Magento/Bundle/Block/Checkout/Cart/Item/Renderer.php index a7f36c08a5e..c16bea15e15 100644 --- a/app/code/Magento/Bundle/Block/Checkout/Cart/Item/Renderer.php +++ b/app/code/Magento/Bundle/Block/Checkout/Cart/Item/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Checkout\Cart\Item; diff --git a/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php b/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php index f8b243c84c0..1e7457e100c 100644 --- a/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php +++ b/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Block\Sales\Order\Items; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AddAttributeToTemplate.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AddAttributeToTemplate.php index de6ef2abfa0..d37f4ff77fd 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AddAttributeToTemplate.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AddAttributeToTemplate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsPriceGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsPriceGrid.php index 80c4139b22e..c5328c0392b 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsPriceGrid.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsPriceGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsStockGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsStockGrid.php index 15aaa5932a6..9bc83f34f7c 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsStockGrid.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsStockGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Categories.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Categories.php index 19ac05997f0..22f03f1c768 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Categories.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Categories.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Crosssell.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Crosssell.php index 98d9d490182..b5522fbb965 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Crosssell.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Crosssell.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CrosssellGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CrosssellGrid.php index efc6e2c2951..cc9face0384 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CrosssellGrid.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CrosssellGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CustomOptions.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CustomOptions.php index f211eb91b6a..9053c2e9a98 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CustomOptions.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CustomOptions.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Duplicate.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Duplicate.php index ddf7b024183..0509e3dc503 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Duplicate.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Duplicate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Edit.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Edit.php index fa4aa15b837..758dce56b4b 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Edit.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Form.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Form.php index 0e569e6dc91..19e41dda92d 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Form.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Form.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Grid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Grid.php index f444835a74f..4e8cf3773e0 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Grid.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/GridOnly.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/GridOnly.php index 7a93f413761..302fc01d420 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/GridOnly.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/GridOnly.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Index.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Index.php index d3a85acfdaa..8016488d1c6 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Index.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassDelete.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassDelete.php index fd38da72569..17fe041fdf4 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassDelete.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassDelete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassStatus.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassStatus.php index 253d3f010d3..364b0f31bb0 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassStatus.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassStatus.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/NewAction.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/NewAction.php index c31bf5b493b..a3e5ea48aa4 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/NewAction.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Options.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Options.php index cbdd0b6cfc2..11523814b7e 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Options.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Options.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/OptionsImportGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/OptionsImportGrid.php index 5cabe48edb6..d1d50e2b93f 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/OptionsImportGrid.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/OptionsImportGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Related.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Related.php index 7dc4707c74e..d7088012e5c 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Related.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Related.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/RelatedGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/RelatedGrid.php index 5e6b89dd5a0..09357a4c2f6 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/RelatedGrid.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/RelatedGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Save.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Save.php index 3c264e855d4..7a50e8f83b3 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Save.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/ShowUpdateResult.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/ShowUpdateResult.php index 35803f2de5a..ef72d7c98ba 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/ShowUpdateResult.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/ShowUpdateResult.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/SuggestAttributes.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/SuggestAttributes.php index 3728db2fa18..4522f7a37e6 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/SuggestAttributes.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/SuggestAttributes.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Upsell.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Upsell.php index dae5181b383..043fde297c6 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Upsell.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Upsell.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/UpsellGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/UpsellGrid.php index 549b84ba906..95098aa0e14 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/UpsellGrid.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/UpsellGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Validate.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Validate.php index b7b92fca5dc..80dce44ce39 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Validate.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Validate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Wysiwyg.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Wysiwyg.php index 07c6316337c..c96fd7e33d8 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Wysiwyg.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Wysiwyg.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Product\Edit; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Grid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Grid.php index ce679671dfe..ca85f971cc9 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Grid.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Selection; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Search.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Search.php index ac8107cedee..3290232336f 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Search.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Search.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Bundle\Selection; diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Bundle.php b/app/code/Magento/Bundle/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Bundle.php index 7b927815e34..3d303f98ac6 100644 --- a/app/code/Magento/Bundle/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Bundle.php +++ b/app/code/Magento/Bundle/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Bundle.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Controller\Adminhtml\Product\Initialization\Helper\Plugin; diff --git a/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php b/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php index 8305bb0137e..a3402a2b2dd 100644 --- a/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php +++ b/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Helper\Catalog\Product; diff --git a/app/code/Magento/Bundle/Helper/Data.php b/app/code/Magento/Bundle/Helper/Data.php index a12b3700f9e..051e2f913e1 100644 --- a/app/code/Magento/Bundle/Helper/Data.php +++ b/app/code/Magento/Bundle/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Helper; diff --git a/app/code/Magento/Bundle/Model/BundleOption.php b/app/code/Magento/Bundle/Model/BundleOption.php index 8e6e201967d..00c06c735ba 100644 --- a/app/code/Magento/Bundle/Model/BundleOption.php +++ b/app/code/Magento/Bundle/Model/BundleOption.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model; diff --git a/app/code/Magento/Bundle/Model/CartItemProcessor.php b/app/code/Magento/Bundle/Model/CartItemProcessor.php index 8c1352eb45a..577e8ee1e5c 100644 --- a/app/code/Magento/Bundle/Model/CartItemProcessor.php +++ b/app/code/Magento/Bundle/Model/CartItemProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model; diff --git a/app/code/Magento/Bundle/Model/Link.php b/app/code/Magento/Bundle/Model/Link.php index 2a933fbddf7..49ab21aadec 100644 --- a/app/code/Magento/Bundle/Model/Link.php +++ b/app/code/Magento/Bundle/Model/Link.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model; diff --git a/app/code/Magento/Bundle/Model/LinkManagement.php b/app/code/Magento/Bundle/Model/LinkManagement.php index 7f4693d40c9..ebc48f21476 100644 --- a/app/code/Magento/Bundle/Model/LinkManagement.php +++ b/app/code/Magento/Bundle/Model/LinkManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model; diff --git a/app/code/Magento/Bundle/Model/Option.php b/app/code/Magento/Bundle/Model/Option.php index 7a6dfa6b17a..84c5a3433e2 100644 --- a/app/code/Magento/Bundle/Model/Option.php +++ b/app/code/Magento/Bundle/Model/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model; diff --git a/app/code/Magento/Bundle/Model/Option/Validator.php b/app/code/Magento/Bundle/Model/Option/Validator.php index 7ff56d3958b..00b12ad9a7b 100644 --- a/app/code/Magento/Bundle/Model/Option/Validator.php +++ b/app/code/Magento/Bundle/Model/Option/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Option; diff --git a/app/code/Magento/Bundle/Model/OptionManagement.php b/app/code/Magento/Bundle/Model/OptionManagement.php index 336acbf894b..90be576b374 100644 --- a/app/code/Magento/Bundle/Model/OptionManagement.php +++ b/app/code/Magento/Bundle/Model/OptionManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model; diff --git a/app/code/Magento/Bundle/Model/OptionRepository.php b/app/code/Magento/Bundle/Model/OptionRepository.php index 382c81c9199..fa4a363f168 100644 --- a/app/code/Magento/Bundle/Model/OptionRepository.php +++ b/app/code/Magento/Bundle/Model/OptionRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model; diff --git a/app/code/Magento/Bundle/Model/OptionTypeList.php b/app/code/Magento/Bundle/Model/OptionTypeList.php index 8df4d9f57f6..f35f46caa24 100644 --- a/app/code/Magento/Bundle/Model/OptionTypeList.php +++ b/app/code/Magento/Bundle/Model/OptionTypeList.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model; diff --git a/app/code/Magento/Bundle/Model/Plugin/PriceBackend.php b/app/code/Magento/Bundle/Model/Plugin/PriceBackend.php index 59508dc54fb..b47f0fa9f31 100644 --- a/app/code/Magento/Bundle/Model/Plugin/PriceBackend.php +++ b/app/code/Magento/Bundle/Model/Plugin/PriceBackend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Plugin; diff --git a/app/code/Magento/Bundle/Model/Plugin/Product.php b/app/code/Magento/Bundle/Model/Plugin/Product.php index e4d9943012b..28792dbe668 100644 --- a/app/code/Magento/Bundle/Model/Plugin/Product.php +++ b/app/code/Magento/Bundle/Model/Plugin/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Plugin; diff --git a/app/code/Magento/Bundle/Model/Plugin/QuoteItem.php b/app/code/Magento/Bundle/Model/Plugin/QuoteItem.php index 4009f6e3496..680c7dcf38f 100644 --- a/app/code/Magento/Bundle/Model/Plugin/QuoteItem.php +++ b/app/code/Magento/Bundle/Model/Plugin/QuoteItem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Plugin; diff --git a/app/code/Magento/Bundle/Model/Product/Attribute/Source/Price/View.php b/app/code/Magento/Bundle/Model/Product/Attribute/Source/Price/View.php index 065f80b158c..89306df9958 100644 --- a/app/code/Magento/Bundle/Model/Product/Attribute/Source/Price/View.php +++ b/app/code/Magento/Bundle/Model/Product/Attribute/Source/Price/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Product\Attribute\Source\Price; diff --git a/app/code/Magento/Bundle/Model/Product/Attribute/Source/Shipment/Type.php b/app/code/Magento/Bundle/Model/Product/Attribute/Source/Shipment/Type.php index 221ac7f3c29..3ccff45399d 100644 --- a/app/code/Magento/Bundle/Model/Product/Attribute/Source/Shipment/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Attribute/Source/Shipment/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Product\Attribute\Source\Shipment; diff --git a/app/code/Magento/Bundle/Model/Product/CatalogPrice.php b/app/code/Magento/Bundle/Model/Product/CatalogPrice.php index 78415850b36..377db6afc06 100644 --- a/app/code/Magento/Bundle/Model/Product/CatalogPrice.php +++ b/app/code/Magento/Bundle/Model/Product/CatalogPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Product; diff --git a/app/code/Magento/Bundle/Model/Product/CopyConstructor/Bundle.php b/app/code/Magento/Bundle/Model/Product/CopyConstructor/Bundle.php index ce4cccfe1ba..0492c608478 100644 --- a/app/code/Magento/Bundle/Model/Product/CopyConstructor/Bundle.php +++ b/app/code/Magento/Bundle/Model/Product/CopyConstructor/Bundle.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Bundle/Model/Product/LinksList.php b/app/code/Magento/Bundle/Model/Product/LinksList.php index fdc59bed0ea..f9ac979c300 100644 --- a/app/code/Magento/Bundle/Model/Product/LinksList.php +++ b/app/code/Magento/Bundle/Model/Product/LinksList.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Product; diff --git a/app/code/Magento/Bundle/Model/Product/OptionList.php b/app/code/Magento/Bundle/Model/Product/OptionList.php index 7b42f1c4095..2670dc0767b 100644 --- a/app/code/Magento/Bundle/Model/Product/OptionList.php +++ b/app/code/Magento/Bundle/Model/Product/OptionList.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Product; diff --git a/app/code/Magento/Bundle/Model/Product/Price.php b/app/code/Magento/Bundle/Model/Product/Price.php index d0aee24945f..f9aa2acf28c 100644 --- a/app/code/Magento/Bundle/Model/Product/Price.php +++ b/app/code/Magento/Bundle/Model/Product/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Model/Product/ReadHandler.php b/app/code/Magento/Bundle/Model/Product/ReadHandler.php index f14300f927c..1ef5fe70607 100644 --- a/app/code/Magento/Bundle/Model/Product/ReadHandler.php +++ b/app/code/Magento/Bundle/Model/Product/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Product; diff --git a/app/code/Magento/Bundle/Model/Product/SaveHandler.php b/app/code/Magento/Bundle/Model/Product/SaveHandler.php index 1c131be94d6..665565e3791 100644 --- a/app/code/Magento/Bundle/Model/Product/SaveHandler.php +++ b/app/code/Magento/Bundle/Model/Product/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Product; diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php index 3e8ae11c4fa..4fdce5285b8 100644 --- a/app/code/Magento/Bundle/Model/Product/Type.php +++ b/app/code/Magento/Bundle/Model/Product/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Model/ProductOptionProcessor.php b/app/code/Magento/Bundle/Model/ProductOptionProcessor.php index 1221bc33510..b4c49a1a1ed 100644 --- a/app/code/Magento/Bundle/Model/ProductOptionProcessor.php +++ b/app/code/Magento/Bundle/Model/ProductOptionProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model; diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Bundle.php b/app/code/Magento/Bundle/Model/ResourceModel/Bundle.php index 18a44af1771..6da17acea95 100644 --- a/app/code/Magento/Bundle/Model/ResourceModel/Bundle.php +++ b/app/code/Magento/Bundle/Model/ResourceModel/Bundle.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\ResourceModel; diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Price.php b/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Price.php index 4059f06bccd..39db57e9443 100644 --- a/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Price.php +++ b/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\ResourceModel\Indexer; diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Stock.php b/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Stock.php index 86ed5c6a107..c05c1dc8b7f 100644 --- a/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Stock.php +++ b/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\ResourceModel\Indexer; diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Option.php b/app/code/Magento/Bundle/Model/ResourceModel/Option.php index 0efee48184a..1620d638919 100644 --- a/app/code/Magento/Bundle/Model/ResourceModel/Option.php +++ b/app/code/Magento/Bundle/Model/ResourceModel/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\ResourceModel; diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Option/Collection.php b/app/code/Magento/Bundle/Model/ResourceModel/Option/Collection.php index 2b92c64a3b7..6bc46ff8243 100644 --- a/app/code/Magento/Bundle/Model/ResourceModel/Option/Collection.php +++ b/app/code/Magento/Bundle/Model/ResourceModel/Option/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\ResourceModel\Option; diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Selection.php b/app/code/Magento/Bundle/Model/ResourceModel/Selection.php index 9928367b364..b4ad6d583de 100644 --- a/app/code/Magento/Bundle/Model/ResourceModel/Selection.php +++ b/app/code/Magento/Bundle/Model/ResourceModel/Selection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\ResourceModel; diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Selection/Collection.php b/app/code/Magento/Bundle/Model/ResourceModel/Selection/Collection.php index e5c370fd5b6..a1004cef19b 100644 --- a/app/code/Magento/Bundle/Model/ResourceModel/Selection/Collection.php +++ b/app/code/Magento/Bundle/Model/ResourceModel/Selection/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\ResourceModel\Selection; diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Selection/Plugin/Collection.php b/app/code/Magento/Bundle/Model/ResourceModel/Selection/Plugin/Collection.php index 12580eca277..296a694c5d0 100644 --- a/app/code/Magento/Bundle/Model/ResourceModel/Selection/Plugin/Collection.php +++ b/app/code/Magento/Bundle/Model/ResourceModel/Selection/Plugin/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\ResourceModel\Selection\Plugin; diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php index 2b479b4a250..6598f92a096 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php index 2ac6e484bb5..408582343e5 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php index 9b5d0b4a9c0..80bd6e0dd12 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php index fec75878c30..6a3b6349cde 100644 --- a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php +++ b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Sales\Order\Pdf\Items; diff --git a/app/code/Magento/Bundle/Model/Selection.php b/app/code/Magento/Bundle/Model/Selection.php index 9d0ee616fc6..0c79190aed8 100644 --- a/app/code/Magento/Bundle/Model/Selection.php +++ b/app/code/Magento/Bundle/Model/Selection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model; diff --git a/app/code/Magento/Bundle/Model/Source/Option/Selection/Price/Type.php b/app/code/Magento/Bundle/Model/Source/Option/Selection/Price/Type.php index 5f1a9852a8e..4f60c0ca13e 100644 --- a/app/code/Magento/Bundle/Model/Source/Option/Selection/Price/Type.php +++ b/app/code/Magento/Bundle/Model/Source/Option/Selection/Price/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Source\Option\Selection\Price; diff --git a/app/code/Magento/Bundle/Model/Source/Option/Type.php b/app/code/Magento/Bundle/Model/Source/Option/Type.php index 64f94276efe..2f5e6fe85e4 100644 --- a/app/code/Magento/Bundle/Model/Source/Option/Type.php +++ b/app/code/Magento/Bundle/Model/Source/Option/Type.php @@ -2,7 +2,7 @@ /** * Bundle Option Type Source Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Observer/AppendUpsellProductsObserver.php b/app/code/Magento/Bundle/Observer/AppendUpsellProductsObserver.php index 401e7d8bf83..724b748b3c9 100644 --- a/app/code/Magento/Bundle/Observer/AppendUpsellProductsObserver.php +++ b/app/code/Magento/Bundle/Observer/AppendUpsellProductsObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Observer; diff --git a/app/code/Magento/Bundle/Observer/InitOptionRendererObserver.php b/app/code/Magento/Bundle/Observer/InitOptionRendererObserver.php index 9c5374ebc54..d59fff132ed 100644 --- a/app/code/Magento/Bundle/Observer/InitOptionRendererObserver.php +++ b/app/code/Magento/Bundle/Observer/InitOptionRendererObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Observer; diff --git a/app/code/Magento/Bundle/Observer/LoadProductOptionsObserver.php b/app/code/Magento/Bundle/Observer/LoadProductOptionsObserver.php index e7f725be329..36f617905ae 100644 --- a/app/code/Magento/Bundle/Observer/LoadProductOptionsObserver.php +++ b/app/code/Magento/Bundle/Observer/LoadProductOptionsObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Observer; diff --git a/app/code/Magento/Bundle/Observer/SetAttributeTabBlockObserver.php b/app/code/Magento/Bundle/Observer/SetAttributeTabBlockObserver.php index 54a299ccf8f..7745357d2ca 100644 --- a/app/code/Magento/Bundle/Observer/SetAttributeTabBlockObserver.php +++ b/app/code/Magento/Bundle/Observer/SetAttributeTabBlockObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Observer; diff --git a/app/code/Magento/Bundle/Pricing/Adjustment/BundleCalculatorInterface.php b/app/code/Magento/Bundle/Pricing/Adjustment/BundleCalculatorInterface.php index 9db78ebb92d..025728dc653 100644 --- a/app/code/Magento/Bundle/Pricing/Adjustment/BundleCalculatorInterface.php +++ b/app/code/Magento/Bundle/Pricing/Adjustment/BundleCalculatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Adjustment/Calculator.php b/app/code/Magento/Bundle/Pricing/Adjustment/Calculator.php index cba123c856d..9ff2c6ef73d 100644 --- a/app/code/Magento/Bundle/Pricing/Adjustment/Calculator.php +++ b/app/code/Magento/Bundle/Pricing/Adjustment/Calculator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Adjustment/DefaultSelectionPriceListProvider.php b/app/code/Magento/Bundle/Pricing/Adjustment/DefaultSelectionPriceListProvider.php index 4c27016f3a1..10f501164e3 100644 --- a/app/code/Magento/Bundle/Pricing/Adjustment/DefaultSelectionPriceListProvider.php +++ b/app/code/Magento/Bundle/Pricing/Adjustment/DefaultSelectionPriceListProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Adjustment/SelectionPriceListProviderInterface.php b/app/code/Magento/Bundle/Pricing/Adjustment/SelectionPriceListProviderInterface.php index 4c37fc198fb..13e10ca62f4 100644 --- a/app/code/Magento/Bundle/Pricing/Adjustment/SelectionPriceListProviderInterface.php +++ b/app/code/Magento/Bundle/Pricing/Adjustment/SelectionPriceListProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Price/BundleOptionPrice.php b/app/code/Magento/Bundle/Pricing/Price/BundleOptionPrice.php index b279b742352..0ab3cbdfbe0 100644 --- a/app/code/Magento/Bundle/Pricing/Price/BundleOptionPrice.php +++ b/app/code/Magento/Bundle/Pricing/Price/BundleOptionPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Pricing\Price; diff --git a/app/code/Magento/Bundle/Pricing/Price/BundleOptionPriceInterface.php b/app/code/Magento/Bundle/Pricing/Price/BundleOptionPriceInterface.php index 2a0aac3207c..81d47d81066 100644 --- a/app/code/Magento/Bundle/Pricing/Price/BundleOptionPriceInterface.php +++ b/app/code/Magento/Bundle/Pricing/Price/BundleOptionPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Pricing\Price; diff --git a/app/code/Magento/Bundle/Pricing/Price/BundleRegularPrice.php b/app/code/Magento/Bundle/Pricing/Price/BundleRegularPrice.php index 2a1bc53991f..0d6bf3fd791 100644 --- a/app/code/Magento/Bundle/Pricing/Price/BundleRegularPrice.php +++ b/app/code/Magento/Bundle/Pricing/Price/BundleRegularPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Price/BundleSelectionFactory.php b/app/code/Magento/Bundle/Pricing/Price/BundleSelectionFactory.php index 051a89943c8..e401d9ccaf6 100644 --- a/app/code/Magento/Bundle/Pricing/Price/BundleSelectionFactory.php +++ b/app/code/Magento/Bundle/Pricing/Price/BundleSelectionFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Price/BundleSelectionPrice.php b/app/code/Magento/Bundle/Pricing/Price/BundleSelectionPrice.php index d213464336a..97230a76ba1 100644 --- a/app/code/Magento/Bundle/Pricing/Price/BundleSelectionPrice.php +++ b/app/code/Magento/Bundle/Pricing/Price/BundleSelectionPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Pricing\Price; diff --git a/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php b/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php index e6c0f90e24a..ed1c69fa5f5 100644 --- a/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php +++ b/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Price/DiscountCalculator.php b/app/code/Magento/Bundle/Pricing/Price/DiscountCalculator.php index 0f8506cf2b1..032e436239c 100644 --- a/app/code/Magento/Bundle/Pricing/Price/DiscountCalculator.php +++ b/app/code/Magento/Bundle/Pricing/Price/DiscountCalculator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Price/DiscountProviderInterface.php b/app/code/Magento/Bundle/Pricing/Price/DiscountProviderInterface.php index a2686499463..0f26af70770 100644 --- a/app/code/Magento/Bundle/Pricing/Price/DiscountProviderInterface.php +++ b/app/code/Magento/Bundle/Pricing/Price/DiscountProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Price/FinalPrice.php b/app/code/Magento/Bundle/Pricing/Price/FinalPrice.php index b6d7fc40d8c..aab61f79cd7 100644 --- a/app/code/Magento/Bundle/Pricing/Price/FinalPrice.php +++ b/app/code/Magento/Bundle/Pricing/Price/FinalPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Price/FinalPriceInterface.php b/app/code/Magento/Bundle/Pricing/Price/FinalPriceInterface.php index 92c302557b7..aeb80cb11ac 100644 --- a/app/code/Magento/Bundle/Pricing/Price/FinalPriceInterface.php +++ b/app/code/Magento/Bundle/Pricing/Price/FinalPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Price/RegularPriceInterface.php b/app/code/Magento/Bundle/Pricing/Price/RegularPriceInterface.php index db5fdf54c78..d680c2d7a5a 100644 --- a/app/code/Magento/Bundle/Pricing/Price/RegularPriceInterface.php +++ b/app/code/Magento/Bundle/Pricing/Price/RegularPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Price/SpecialPrice.php b/app/code/Magento/Bundle/Pricing/Price/SpecialPrice.php index 0fab2088b87..8153947f194 100644 --- a/app/code/Magento/Bundle/Pricing/Price/SpecialPrice.php +++ b/app/code/Magento/Bundle/Pricing/Price/SpecialPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Price/TierPrice.php b/app/code/Magento/Bundle/Pricing/Price/TierPrice.php index fab49292d9b..cc921fdd90f 100644 --- a/app/code/Magento/Bundle/Pricing/Price/TierPrice.php +++ b/app/code/Magento/Bundle/Pricing/Price/TierPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Pricing/Render/FinalPriceBox.php b/app/code/Magento/Bundle/Pricing/Render/FinalPriceBox.php index 23089108d8b..0a80dc3ede1 100644 --- a/app/code/Magento/Bundle/Pricing/Render/FinalPriceBox.php +++ b/app/code/Magento/Bundle/Pricing/Render/FinalPriceBox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Setup/InstallData.php b/app/code/Magento/Bundle/Setup/InstallData.php index 71462c591aa..b7574c55ac1 100644 --- a/app/code/Magento/Bundle/Setup/InstallData.php +++ b/app/code/Magento/Bundle/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Setup/InstallSchema.php b/app/code/Magento/Bundle/Setup/InstallSchema.php index 5c7d5a47da6..fed165e1b78 100644 --- a/app/code/Magento/Bundle/Setup/InstallSchema.php +++ b/app/code/Magento/Bundle/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Setup/Recurring.php b/app/code/Magento/Bundle/Setup/Recurring.php index fa585446a98..1eb5fd6c806 100644 --- a/app/code/Magento/Bundle/Setup/Recurring.php +++ b/app/code/Magento/Bundle/Setup/Recurring.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Setup; diff --git a/app/code/Magento/Bundle/Setup/UpgradeData.php b/app/code/Magento/Bundle/Setup/UpgradeData.php index 6da134ead88..00ab96a7746 100644 --- a/app/code/Magento/Bundle/Setup/UpgradeData.php +++ b/app/code/Magento/Bundle/Setup/UpgradeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Setup; diff --git a/app/code/Magento/Bundle/Setup/UpgradeSchema.php b/app/code/Magento/Bundle/Setup/UpgradeSchema.php index ced66a03a3a..d80a7d5837a 100755 --- a/app/code/Magento/Bundle/Setup/UpgradeSchema.php +++ b/app/code/Magento/Bundle/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/CheckboxTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/CheckboxTest.php index e8c5fa7899f..c2b78957723 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/CheckboxTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/CheckboxTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Block\Adminhtml\Catalog\Product\Composite\Fieldset\Options\Type; diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/MultiTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/MultiTest.php index a47100494ea..d0ed8846cad 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/MultiTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/MultiTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Block\Adminhtml\Catalog\Product\Composite\Fieldset\Options\Type; diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/RadioTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/RadioTest.php index 98ea289348a..540fed92fcc 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/RadioTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/RadioTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Block\Adminhtml\Catalog\Product\Composite\Fieldset\Options\Type; diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/SelectTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/SelectTest.php index d3da83e70b1..c7c2e522ea3 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/SelectTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/SelectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Block\Adminhtml\Catalog\Product\Composite\Fieldset\Options\Type; diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/ExtendTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/ExtendTest.php index 985be188e6a..32ea06b6db9 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/ExtendTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/ExtendTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Block\Adminhtml\Catalog\Product\Edit\Tab\Attributes; diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/OptionTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/OptionTest.php index dafd21013d4..6e5c9802711 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/OptionTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/OptionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Block\Adminhtml\Catalog\Product\Edit\Tab\Bundle; diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php index aee7b81edc1..7b3a72fe1b9 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Block\Adminhtml\Sales\Order\Items; diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php index 72c4a40fbbb..17284e3a1b6 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Block\Adminhtml\Sales\Order\View\Items; diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/Bundle/OptionTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/Bundle/OptionTest.php index 4e4d50a443b..39eb1d91884 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/Bundle/OptionTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/Bundle/OptionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/BundleTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/BundleTest.php index a0cad837e86..ff5abf37486 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/BundleTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/BundleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Block\Catalog\Product\View\Type; diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php index d81908bd625..778a2176483 100644 --- a/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Block\Sales\Order\Items; diff --git a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Product/Edit/FormTest.php b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Product/Edit/FormTest.php index 365cd26b9b9..bc67d862297 100644 --- a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Product/Edit/FormTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Product/Edit/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/GridTest.php b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/GridTest.php index a05bb429d4c..e6d514ede47 100644 --- a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/GridTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/GridTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/SearchTest.php b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/SearchTest.php index e03fcfc078a..0ce8378f3a5 100644 --- a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/SearchTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/SearchTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/BundleTest.php b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/BundleTest.php index a2600619b77..7cf22d8e89a 100644 --- a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/BundleTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/BundleTest.php @@ -2,7 +2,7 @@ /** * Test class for \Magento\Bundle\Controller\Adminhtml\Product\Initialization\Helper\Plugin\Bundle * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Controller\Adminhtml\Product\Initialization\Helper\Plugin; diff --git a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php index 0919e95a9a0..3f90295312c 100644 --- a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Helper\Catalog\Product; diff --git a/app/code/Magento/Bundle/Test/Unit/Helper/DataTest.php b/app/code/Magento/Bundle/Test/Unit/Helper/DataTest.php index 93b6cbc6769..a532c578375 100644 --- a/app/code/Magento/Bundle/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Helper; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/CartItemProcessorTest.php b/app/code/Magento/Bundle/Test/Unit/Model/CartItemProcessorTest.php index 249ac74a285..a1633ac979b 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/CartItemProcessorTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/CartItemProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/LinkManagementTest.php b/app/code/Magento/Bundle/Test/Unit/Model/LinkManagementTest.php index a3df0eda66e..ad0d6ee87a0 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/LinkManagementTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/LinkManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Option/ValidatorTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Option/ValidatorTest.php index a25858454f9..af78384410b 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Option/ValidatorTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Option/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model\Option; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/OptionManagementTest.php b/app/code/Magento/Bundle/Test/Unit/Model/OptionManagementTest.php index bc61bd51d0c..9343154c573 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/OptionManagementTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/OptionManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Model/OptionRepositoryTest.php b/app/code/Magento/Bundle/Test/Unit/Model/OptionRepositoryTest.php index d377ab0e905..a98f39ccde5 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/OptionRepositoryTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/OptionRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Model/OptionTest.php b/app/code/Magento/Bundle/Test/Unit/Model/OptionTest.php index 07a591cb897..051235b168b 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/OptionTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/OptionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/OptionTypeListTest.php b/app/code/Magento/Bundle/Test/Unit/Model/OptionTypeListTest.php index 2af16e0dbaf..d4e7bfef0b9 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/OptionTypeListTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/OptionTypeListTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Plugin/PriceBackendTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Plugin/PriceBackendTest.php index f5b4e2236f8..96ab1274d1e 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Plugin/PriceBackendTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Plugin/PriceBackendTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Plugin/ProductTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Plugin/ProductTest.php index 6e689ac830d..371c9e25724 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Plugin/ProductTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Plugin/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Plugin/QuoteItemTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Plugin/QuoteItemTest.php index 03bac48a71b..865ad4ac970 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Plugin/QuoteItemTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Plugin/QuoteItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/Attribute/Source/Price/ViewTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/Attribute/Source/Price/ViewTest.php index 985746dcc0f..8cf3df0561d 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/Attribute/Source/Price/ViewTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/Attribute/Source/Price/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model\Product\Attribute\Source\Price; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/CatalogPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/CatalogPriceTest.php index f25c66853dd..616e6b77c8d 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/CatalogPriceTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/CatalogPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model\Product; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/CopyConstructor/BundleTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/CopyConstructor/BundleTest.php index 3e6d7c598fb..857367a8bd9 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/CopyConstructor/BundleTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/CopyConstructor/BundleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/LinksListTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/LinksListTest.php index 9c6cae8d07c..d3523f0bfd0 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/LinksListTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/LinksListTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/OptionListTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/OptionListTest.php index 465b2c963f0..1fda3066d1e 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/OptionListTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/OptionListTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model\Product; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php index 10ca7335668..3f548ff82bd 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model\Product; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php index 2be68359909..410aa2943a9 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model\Product; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/ProductOptionProcessorTest.php b/app/code/Magento/Bundle/Test/Unit/Model/ProductOptionProcessorTest.php index d7f8e69b9db..3322e24a5bd 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/ProductOptionProcessorTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/ProductOptionProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model; diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php index 83c38d8d9ad..7c6e14dcbac 100644 --- a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Model\Sales\Order\Pdf\Items; diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Adjustment/CalculatorTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Adjustment/CalculatorTest.php index e6604997e7d..9efb71d235b 100644 --- a/app/code/Magento/Bundle/Test/Unit/Pricing/Adjustment/CalculatorTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Pricing/Adjustment/CalculatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleOptionPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleOptionPriceTest.php index 339bb532e6e..7a7ad3e317b 100644 --- a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleOptionPriceTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleOptionPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleRegularPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleRegularPriceTest.php index 7994969af78..0fff9018d57 100644 --- a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleRegularPriceTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleRegularPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionFactoryTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionFactoryTest.php index 1831154043d..79c3cba7fb0 100644 --- a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionFactoryTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionPriceTest.php index 5cb5ea550ab..5837398df76 100644 --- a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionPriceTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/DiscountCalculatorTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/DiscountCalculatorTest.php index d1acbd648e0..0322f83d35b 100644 --- a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/DiscountCalculatorTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/DiscountCalculatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/FinalPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/FinalPriceTest.php index 74cc8e3e420..d7627833a70 100644 --- a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/FinalPriceTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/FinalPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/SpecialPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/SpecialPriceTest.php index 6a46e180abb..4dbae9edcd8 100644 --- a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/SpecialPriceTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/SpecialPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Pricing\Price; diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/TierPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/TierPriceTest.php index 15bc06c2c64..a02ccf6f62f 100644 --- a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/TierPriceTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/TierPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Render/FinalPriceBoxTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Render/FinalPriceBoxTest.php index 0a30bd0a027..5649e268a2d 100644 --- a/app/code/Magento/Bundle/Test/Unit/Pricing/Render/FinalPriceBoxTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Pricing/Render/FinalPriceBoxTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Pricing\Render; diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/BundleDataProviderTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/BundleDataProviderTest.php index 2f13d5cf5d0..782295d5f52 100644 --- a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/BundleDataProviderTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/BundleDataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Ui\DataProvider\Product; diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php index 43ccda283d2..4e45c550531 100644 --- a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleQuantityTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleQuantityTest.php index 3a985071831..50b212d7c85 100644 --- a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleQuantityTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleQuantityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleSkuTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleSkuTest.php index 2eab459ff53..b65f67f81fa 100644 --- a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleSkuTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleSkuTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleWeightTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleWeightTest.php index fbd33e9583e..5ea93de7199 100644 --- a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleWeightTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleWeightTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php index fdff5bf44f9..3071e417194 100644 --- a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php +++ b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/BundleDataProvider.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/BundleDataProvider.php index a9d87f048cb..7f6c7d13f70 100644 --- a/app/code/Magento/Bundle/Ui/DataProvider/Product/BundleDataProvider.php +++ b/app/code/Magento/Bundle/Ui/DataProvider/Product/BundleDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Ui\DataProvider\Product; diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleAdvancedPricing.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleAdvancedPricing.php index a851f7a9803..a56b0ce0a87 100644 --- a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleAdvancedPricing.php +++ b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleAdvancedPricing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleCustomOptions.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleCustomOptions.php index 43aa48a9b91..a58aaef83b5 100644 --- a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleCustomOptions.php +++ b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleCustomOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php index 4012af357e2..b0d218dc2e2 100644 --- a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php +++ b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePrice.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePrice.php index 15643eaa8a7..9cfb3b99a13 100644 --- a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePrice.php +++ b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleQuantity.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleQuantity.php index c036cc5a3c7..66b2d5d1a14 100644 --- a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleQuantity.php +++ b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleQuantity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleSku.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleSku.php index 1b3abd5e37e..418d3d440f1 100644 --- a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleSku.php +++ b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleSku.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleWeight.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleWeight.php index 44294317a82..a3970c1466d 100644 --- a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleWeight.php +++ b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleWeight.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/Composite.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/Composite.php index d5383473edf..36e37a98353 100644 --- a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/Composite.php +++ b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/Composite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/StockData.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/StockData.php index 421e7b4d199..2bd00bfaa97 100644 --- a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/StockData.php +++ b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/StockData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Bundle/etc/adminhtml/di.xml b/app/code/Magento/Bundle/etc/adminhtml/di.xml index 19b683027df..b7272c839af 100644 --- a/app/code/Magento/Bundle/etc/adminhtml/di.xml +++ b/app/code/Magento/Bundle/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/adminhtml/events.xml b/app/code/Magento/Bundle/etc/adminhtml/events.xml index 3e1de66c1fd..cd8af005694 100644 --- a/app/code/Magento/Bundle/etc/adminhtml/events.xml +++ b/app/code/Magento/Bundle/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/adminhtml/routes.xml b/app/code/Magento/Bundle/etc/adminhtml/routes.xml index e140d1b6875..d2e7c9c3b20 100644 --- a/app/code/Magento/Bundle/etc/adminhtml/routes.xml +++ b/app/code/Magento/Bundle/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/catalog_attributes.xml b/app/code/Magento/Bundle/etc/catalog_attributes.xml index 832ba71237c..8c45aaab6c4 100644 --- a/app/code/Magento/Bundle/etc/catalog_attributes.xml +++ b/app/code/Magento/Bundle/etc/catalog_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/config.xml b/app/code/Magento/Bundle/etc/config.xml index abaed7a879f..0016210cd14 100644 --- a/app/code/Magento/Bundle/etc/config.xml +++ b/app/code/Magento/Bundle/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/di.xml b/app/code/Magento/Bundle/etc/di.xml index 3425b9323ed..6afd212e1b8 100644 --- a/app/code/Magento/Bundle/etc/di.xml +++ b/app/code/Magento/Bundle/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/extension_attributes.xml b/app/code/Magento/Bundle/etc/extension_attributes.xml index 3819e892e6f..d23dfc71b39 100644 --- a/app/code/Magento/Bundle/etc/extension_attributes.xml +++ b/app/code/Magento/Bundle/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/frontend/di.xml b/app/code/Magento/Bundle/etc/frontend/di.xml index acaf67ac82e..084f681df7e 100644 --- a/app/code/Magento/Bundle/etc/frontend/di.xml +++ b/app/code/Magento/Bundle/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/frontend/events.xml b/app/code/Magento/Bundle/etc/frontend/events.xml index ce21acda965..d08cdb4bcc9 100644 --- a/app/code/Magento/Bundle/etc/frontend/events.xml +++ b/app/code/Magento/Bundle/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/module.xml b/app/code/Magento/Bundle/etc/module.xml index 34a88d4447c..878af07761b 100644 --- a/app/code/Magento/Bundle/etc/module.xml +++ b/app/code/Magento/Bundle/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/pdf.xml b/app/code/Magento/Bundle/etc/pdf.xml index 085e7946cb7..912aa1426ef 100644 --- a/app/code/Magento/Bundle/etc/pdf.xml +++ b/app/code/Magento/Bundle/etc/pdf.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/product_types.xml b/app/code/Magento/Bundle/etc/product_types.xml index c3f909afbea..6168189a3b4 100644 --- a/app/code/Magento/Bundle/etc/product_types.xml +++ b/app/code/Magento/Bundle/etc/product_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/sales.xml b/app/code/Magento/Bundle/etc/sales.xml index 74e5647051d..3094eb6bfec 100644 --- a/app/code/Magento/Bundle/etc/sales.xml +++ b/app/code/Magento/Bundle/etc/sales.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/webapi.xml b/app/code/Magento/Bundle/etc/webapi.xml index 6e31986be7b..69124309687 100644 --- a/app/code/Magento/Bundle/etc/webapi.xml +++ b/app/code/Magento/Bundle/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/webapi_rest/di.xml b/app/code/Magento/Bundle/etc/webapi_rest/di.xml index acaf67ac82e..084f681df7e 100644 --- a/app/code/Magento/Bundle/etc/webapi_rest/di.xml +++ b/app/code/Magento/Bundle/etc/webapi_rest/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/etc/webapi_soap/di.xml b/app/code/Magento/Bundle/etc/webapi_soap/di.xml index acaf67ac82e..084f681df7e 100644 --- a/app/code/Magento/Bundle/etc/webapi_soap/di.xml +++ b/app/code/Magento/Bundle/etc/webapi_soap/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/registration.php b/app/code/Magento/Bundle/registration.php index 48ae2414286..53f3657ae05 100644 --- a/app/code/Magento/Bundle/registration.php +++ b/app/code/Magento/Bundle/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_new.xml b/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_new.xml index 1517cc6d7c9..b3782710813 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_new.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_view.xml b/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_view.xml index 34975692a94..6b97971a0ee 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_view.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_bundle.xml b/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_bundle.xml index 14ab43a776b..d0fdb184355 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_bundle.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_bundle.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_new.xml index 251a2ddd68a..a496ea75389 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_new.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_view_type_bundle.xml b/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_view_type_bundle.xml index 370ef3cf8af..15374cb987d 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_view_type_bundle.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_view_type_bundle.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/customer_index_wishlist.xml b/app/code/Magento/Bundle/view/adminhtml/layout/customer_index_wishlist.xml index b7a0c9d03e1..7e370701099 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/customer_index_wishlist.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/customer_index_wishlist.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_new.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_new.xml index f3962e20d44..99fdab5a7e9 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_new.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml index f3962e20d44..99fdab5a7e9 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_view.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_view.xml index 5f2c852416e..323aba1d186 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_view.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_new.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_new.xml index 9b37d8286fd..b03ce7a9cb4 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_new.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_updateqty.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_updateqty.xml index 9b37d8286fd..b03ce7a9cb4 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_updateqty.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_updateqty.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_view.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_view.xml index 75203179663..34c3470cf06 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_view.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_view.xml index 2c6a8fe93ca..62f0305194f 100644 --- a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_view.xml +++ b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/catalog/product/edit/tab/attributes/extend.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/catalog/product/edit/tab/attributes/extend.phtml index 0dff5ef3708..84e87afd481 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/catalog/product/edit/tab/attributes/extend.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/catalog/product/edit/tab/attributes/extend.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/bundle.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/bundle.phtml index 1272e13e425..e0edd5dbf1f 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/bundle.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/bundle.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/checkbox.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/checkbox.phtml index f74f4e3435c..970b1c38642 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/checkbox.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/checkbox.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/multi.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/multi.phtml index 155563341f5..c6a43e28684 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/multi.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/multi.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/radio.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/radio.phtml index a035bec93d3..b3deff232cc 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/radio.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/radio.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/select.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/select.phtml index a386fddf6c7..4831a2bbf2d 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/select.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/select.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle.phtml index 8d3c642f94f..074ab256a8b 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option.phtml index 3e13bc3cca4..65cf3a43260 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/search.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/search.phtml index 9ad8530514c..476223adfcd 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/search.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/search.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/selection.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/selection.phtml index 279c2659d29..f4236a8a137 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/selection.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/selection.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/stock/disabler.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/stock/disabler.phtml index 5da5980dd55..4ccb53293d7 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/product/stock/disabler.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/product/stock/disabler.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/create/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/create/items/renderer.phtml index 8fddd0798f7..41923c48264 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/create/items/renderer.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/create/items/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/view/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/view/items/renderer.phtml index 12364cdd253..76a4de67752 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/view/items/renderer.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/view/items/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/create/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/create/items/renderer.phtml index f3a0742b182..7da711077a2 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/create/items/renderer.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/create/items/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/view/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/view/items/renderer.phtml index 991bac03e1a..893783a6cf2 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/view/items/renderer.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/view/items/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/order/view/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/order/view/items/renderer.phtml index e5c8eba6178..e74e7eb3ce1 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/sales/order/view/items/renderer.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/sales/order/view/items/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/create/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/create/items/renderer.phtml index c5263db450e..51950b3c0e9 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/create/items/renderer.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/create/items/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/view/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/view/items/renderer.phtml index 4092f31ac11..9c4e8f6f6a9 100644 --- a/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/view/items/renderer.phtml +++ b/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/view/items/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/ui_component/bundle_product_listing.xml b/app/code/Magento/Bundle/view/adminhtml/ui_component/bundle_product_listing.xml index 187c28c3e0b..20196b4b354 100644 --- a/app/code/Magento/Bundle/view/adminhtml/ui_component/bundle_product_listing.xml +++ b/app/code/Magento/Bundle/view/adminhtml/ui_component/bundle_product_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/adminhtml/web/css/bundle-product.css b/app/code/Magento/Bundle/view/adminhtml/web/css/bundle-product.css index 3503d6050e7..d5aed8a7d65 100644 --- a/app/code/Magento/Bundle/view/adminhtml/web/css/bundle-product.css +++ b/app/code/Magento/Bundle/view/adminhtml/web/css/bundle-product.css @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-product.js b/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-product.js index a4e47177bdf..53b08e43614 100644 --- a/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-product.js +++ b/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-product.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-type-handler.js b/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-type-handler.js index 12dda7d3a14..7f4a57cb530 100644 --- a/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-type-handler.js +++ b/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-type-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true expr:true*/ diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-checkbox.js b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-checkbox.js index b7a05076ae2..9c2432bade4 100644 --- a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-checkbox.js +++ b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-checkbox.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows-grid.js b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows-grid.js index e9a924e1cff..6265394cf38 100644 --- a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows-grid.js +++ b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows-grid.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows.js b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows.js index b36d8003a39..4bbd1b3e4da 100644 --- a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows.js +++ b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-input-type.js b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-input-type.js index 14dd426ed02..cee0489cc90 100644 --- a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-input-type.js +++ b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-input-type.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-option-qty.js b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-option-qty.js index b5c1d61d41f..d5be0a19b59 100644 --- a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-option-qty.js +++ b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-option-qty.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/base/layout/catalog_product_prices.xml b/app/code/Magento/Bundle/view/base/layout/catalog_product_prices.xml index 92d76cdfaa5..5f7d22ba265 100644 --- a/app/code/Magento/Bundle/view/base/layout/catalog_product_prices.xml +++ b/app/code/Magento/Bundle/view/base/layout/catalog_product_prices.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/base/templates/product/price/final_price.phtml b/app/code/Magento/Bundle/view/base/templates/product/price/final_price.phtml index 4c11b0ba1fe..efd75677d30 100644 --- a/app/code/Magento/Bundle/view/base/templates/product/price/final_price.phtml +++ b/app/code/Magento/Bundle/view/base/templates/product/price/final_price.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/base/templates/product/price/selection/amount.phtml b/app/code/Magento/Bundle/view/base/templates/product/price/selection/amount.phtml index 8c18dc23f5a..5919818d06a 100644 --- a/app/code/Magento/Bundle/view/base/templates/product/price/selection/amount.phtml +++ b/app/code/Magento/Bundle/view/base/templates/product/price/selection/amount.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/base/templates/product/price/tier_prices.phtml b/app/code/Magento/Bundle/view/base/templates/product/price/tier_prices.phtml index 63f090acf34..208760d33fb 100644 --- a/app/code/Magento/Bundle/view/base/templates/product/price/tier_prices.phtml +++ b/app/code/Magento/Bundle/view/base/templates/product/price/tier_prices.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/base/web/js/price-bundle.js b/app/code/Magento/Bundle/view/base/web/js/price-bundle.js index 607ac6e03a7..1be9ccb6ae3 100644 --- a/app/code/Magento/Bundle/view/base/web/js/price-bundle.js +++ b/app/code/Magento/Bundle/view/base/web/js/price-bundle.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_bundle.xml b/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_bundle.xml index 5ab962f0b91..2c66156cbc7 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_bundle.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_bundle.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_simple.xml b/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_simple.xml index e31437ec639..fedd29f952b 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_simple.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_simple.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_configure_type_bundle.xml b/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_configure_type_bundle.xml index e7128e45ddc..adb1b291198 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_configure_type_bundle.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_configure_type_bundle.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_item_renderers.xml index c5d613183e6..9abf0a40189 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_item_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/checkout_onepage_review_item_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/checkout_onepage_review_item_renderers.xml index 09a27341fd5..ddede234099 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/checkout_onepage_review_item_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/checkout_onepage_review_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/default.xml b/app/code/Magento/Bundle/view/frontend/layout/default.xml index a54d4b652b6..cb14616af59 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/default.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_creditmemo_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_creditmemo_renderers.xml index 4db5f73f55b..991011db9fa 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_creditmemo_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_invoice_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_invoice_renderers.xml index 1dba5769c02..0e32c9fd9e8 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_invoice_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_renderers.xml index 6e1b90abf4d..927214fbcc1 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_shipment_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_shipment_renderers.xml index 7846245018a..7463caa7380 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_shipment_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_shipment_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_creditmemo_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_creditmemo_renderers.xml index 7896e92bd34..c94b4957d26 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_order_creditmemo_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_order_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_invoice_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_invoice_renderers.xml index 850e546a93a..d07959385bd 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_order_invoice_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_order_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_item_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_item_renderers.xml index 317b142514b..fb26de5bc2f 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_order_item_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_order_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_creditmemo_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_creditmemo_renderers.xml index dc5fb238dfd..8c328c87a5c 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_creditmemo_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_invoice_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_invoice_renderers.xml index 450f18d863a..57e39795df7 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_invoice_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_renderers.xml index c4741ad6119..510168ac55e 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_shipment_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_shipment_renderers.xml index e3c91f1da5c..f46b6260f3b 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_shipment_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_shipment_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_shipment_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_shipment_renderers.xml index ce42a5466cf..536953423a3 100644 --- a/app/code/Magento/Bundle/view/frontend/layout/sales_order_shipment_renderers.xml +++ b/app/code/Magento/Bundle/view/frontend/layout/sales_order_shipment_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Bundle/view/frontend/requirejs-config.js b/app/code/Magento/Bundle/view/frontend/requirejs-config.js index 9dd12524124..51ab4cab6bb 100644 --- a/app/code/Magento/Bundle/view/frontend/requirejs-config.js +++ b/app/code/Magento/Bundle/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -12,4 +12,4 @@ var config = { productSummary: 'Magento_Bundle/js/product-summary' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/backbutton.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/backbutton.phtml index ddb483cf022..86cd52b6dc6 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/backbutton.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/backbutton.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/customize.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/customize.phtml index e72be96db1a..e3538ebd6ca 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/customize.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/customize.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/options/notice.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/options/notice.phtml index 13de052ff8a..ff431c9189c 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/options/notice.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/options/notice.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/summary.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/summary.phtml index cb1de4e05e8..0fc7e6f9c8f 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/summary.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/summary.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle.phtml index 81d8bfd9539..9cbffd117f7 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/checkbox.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/checkbox.phtml index 96db376bc22..17e2e004035 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/checkbox.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/checkbox.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/multi.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/multi.phtml index 5341055edff..f408977ebb4 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/multi.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/multi.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/radio.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/radio.phtml index dd08e990240..c5d1ebb3432 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/radio.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/radio.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/select.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/select.phtml index 44b67e72924..9b32c4553c1 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/select.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/select.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/options.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/options.phtml index 63925142b03..7bf10d00057 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/options.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/options.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/creditmemo/default.phtml b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/creditmemo/default.phtml index 453be5e8286..d18448db29b 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/creditmemo/default.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/creditmemo/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/invoice/default.phtml b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/invoice/default.phtml index 71d35554259..77f9b111a0d 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/invoice/default.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/invoice/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/order/default.phtml b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/order/default.phtml index 51c872b3fff..a60952b0d89 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/order/default.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/order/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/shipment/default.phtml b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/shipment/default.phtml index af07420af46..0ead8262a33 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/shipment/default.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/shipment/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/js/components.phtml b/app/code/Magento/Bundle/view/frontend/templates/js/components.phtml index e490a6aa049..bdcb2e9bf77 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/sales/order/creditmemo/items/renderer.phtml b/app/code/Magento/Bundle/view/frontend/templates/sales/order/creditmemo/items/renderer.phtml index 46573c5bc34..18d989a9edc 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/sales/order/creditmemo/items/renderer.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/sales/order/creditmemo/items/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/sales/order/invoice/items/renderer.phtml b/app/code/Magento/Bundle/view/frontend/templates/sales/order/invoice/items/renderer.phtml index 9f821e42fce..072d5b61196 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/sales/order/invoice/items/renderer.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/sales/order/invoice/items/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/sales/order/items/renderer.phtml b/app/code/Magento/Bundle/view/frontend/templates/sales/order/items/renderer.phtml index 2e076699363..e3fad6ca6e3 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/sales/order/items/renderer.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/sales/order/items/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/templates/sales/order/shipment/items/renderer.phtml b/app/code/Magento/Bundle/view/frontend/templates/sales/order/shipment/items/renderer.phtml index f198aaa6f69..0ad424e7eda 100644 --- a/app/code/Magento/Bundle/view/frontend/templates/sales/order/shipment/items/renderer.phtml +++ b/app/code/Magento/Bundle/view/frontend/templates/sales/order/shipment/items/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Bundle/view/frontend/web/js/float.js b/app/code/Magento/Bundle/view/frontend/web/js/float.js index a10fbf1d26f..e0ed27914ea 100644 --- a/app/code/Magento/Bundle/view/frontend/web/js/float.js +++ b/app/code/Magento/Bundle/view/frontend/web/js/float.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true expr:true*/ @@ -48,4 +48,4 @@ define(["jquery","jquery/ui"], function($){ } } }); -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Bundle/view/frontend/web/js/product-summary.js b/app/code/Magento/Bundle/view/frontend/web/js/product-summary.js index f14f3a2dc71..fc567750a9e 100644 --- a/app/code/Magento/Bundle/view/frontend/web/js/product-summary.js +++ b/app/code/Magento/Bundle/view/frontend/web/js/product-summary.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Bundle/view/frontend/web/js/slide.js b/app/code/Magento/Bundle/view/frontend/web/js/slide.js index a48267f87e4..88f2017d388 100644 --- a/app/code/Magento/Bundle/view/frontend/web/js/slide.js +++ b/app/code/Magento/Bundle/view/frontend/web/js/slide.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true expr:true*/ @@ -84,4 +84,4 @@ define([ }); return $.mage.slide; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/BundleImportExport/Model/Export/Product/Type/Bundle.php b/app/code/Magento/BundleImportExport/Model/Export/Product/Type/Bundle.php index c9b6aa4c45a..5219de4b4a2 100644 --- a/app/code/Magento/BundleImportExport/Model/Export/Product/Type/Bundle.php +++ b/app/code/Magento/BundleImportExport/Model/Export/Product/Type/Bundle.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\BundleImportExport\Model\Export\Product\Type; diff --git a/app/code/Magento/BundleImportExport/Model/Export/RowCustomizer.php b/app/code/Magento/BundleImportExport/Model/Export/RowCustomizer.php index 59efe1ff2fc..723e07c3d5e 100644 --- a/app/code/Magento/BundleImportExport/Model/Export/RowCustomizer.php +++ b/app/code/Magento/BundleImportExport/Model/Export/RowCustomizer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\BundleImportExport\Model\Export; diff --git a/app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php b/app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php index 6a99c02af9d..d5548f61c2b 100644 --- a/app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php +++ b/app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php @@ -3,7 +3,7 @@ /** * Import entity of bundle product type * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\BundleImportExport\Model\Import\Product\Type; diff --git a/app/code/Magento/BundleImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php b/app/code/Magento/BundleImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php index d13d0fe9d8f..0e67a2bc737 100644 --- a/app/code/Magento/BundleImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php +++ b/app/code/Magento/BundleImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\BundleImportExport\Test\Unit\Model\Export\Product; diff --git a/app/code/Magento/BundleImportExport/Test/Unit/Model/Import/Product/Type/BundleTest.php b/app/code/Magento/BundleImportExport/Test/Unit/Model/Import/Product/Type/BundleTest.php index 2379ad7f107..fd25dc247c3 100644 --- a/app/code/Magento/BundleImportExport/Test/Unit/Model/Import/Product/Type/BundleTest.php +++ b/app/code/Magento/BundleImportExport/Test/Unit/Model/Import/Product/Type/BundleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/BundleImportExport/etc/di.xml b/app/code/Magento/BundleImportExport/etc/di.xml index 89420ced610..ed9357a6cc2 100644 --- a/app/code/Magento/BundleImportExport/etc/di.xml +++ b/app/code/Magento/BundleImportExport/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/BundleImportExport/etc/export.xml b/app/code/Magento/BundleImportExport/etc/export.xml index 04312d79f02..c7fd951bfab 100644 --- a/app/code/Magento/BundleImportExport/etc/export.xml +++ b/app/code/Magento/BundleImportExport/etc/export.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/BundleImportExport/etc/import.xml b/app/code/Magento/BundleImportExport/etc/import.xml index 2c23489002b..8daa5296a8c 100644 --- a/app/code/Magento/BundleImportExport/etc/import.xml +++ b/app/code/Magento/BundleImportExport/etc/import.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/BundleImportExport/etc/module.xml b/app/code/Magento/BundleImportExport/etc/module.xml index d042b3bc7eb..64f2c06b3c7 100644 --- a/app/code/Magento/BundleImportExport/etc/module.xml +++ b/app/code/Magento/BundleImportExport/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/BundleImportExport/registration.php b/app/code/Magento/BundleImportExport/registration.php index b417e7d20b7..b4f80e749f1 100644 --- a/app/code/Magento/BundleImportExport/registration.php +++ b/app/code/Magento/BundleImportExport/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CacheInvalidate/Model/PurgeCache.php b/app/code/Magento/CacheInvalidate/Model/PurgeCache.php index 22c008097f6..2325b6ac20a 100644 --- a/app/code/Magento/CacheInvalidate/Model/PurgeCache.php +++ b/app/code/Magento/CacheInvalidate/Model/PurgeCache.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CacheInvalidate\Model; diff --git a/app/code/Magento/CacheInvalidate/Model/SocketFactory.php b/app/code/Magento/CacheInvalidate/Model/SocketFactory.php index 53b2b28eded..94747a2f705 100644 --- a/app/code/Magento/CacheInvalidate/Model/SocketFactory.php +++ b/app/code/Magento/CacheInvalidate/Model/SocketFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CacheInvalidate\Model; diff --git a/app/code/Magento/CacheInvalidate/Observer/FlushAllCacheObserver.php b/app/code/Magento/CacheInvalidate/Observer/FlushAllCacheObserver.php index f289b48dfac..ae56a9c156a 100644 --- a/app/code/Magento/CacheInvalidate/Observer/FlushAllCacheObserver.php +++ b/app/code/Magento/CacheInvalidate/Observer/FlushAllCacheObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CacheInvalidate\Observer; diff --git a/app/code/Magento/CacheInvalidate/Observer/InvalidateVarnishObserver.php b/app/code/Magento/CacheInvalidate/Observer/InvalidateVarnishObserver.php index 0d4156ea782..d3b6f5451b1 100644 --- a/app/code/Magento/CacheInvalidate/Observer/InvalidateVarnishObserver.php +++ b/app/code/Magento/CacheInvalidate/Observer/InvalidateVarnishObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CacheInvalidate\Observer; diff --git a/app/code/Magento/CacheInvalidate/Test/Unit/Model/PurgeCacheTest.php b/app/code/Magento/CacheInvalidate/Test/Unit/Model/PurgeCacheTest.php index 3cb6d8a054e..d4728fac0a1 100644 --- a/app/code/Magento/CacheInvalidate/Test/Unit/Model/PurgeCacheTest.php +++ b/app/code/Magento/CacheInvalidate/Test/Unit/Model/PurgeCacheTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CacheInvalidate\Test\Unit\Model; diff --git a/app/code/Magento/CacheInvalidate/Test/Unit/Model/SocketFactoryTest.php b/app/code/Magento/CacheInvalidate/Test/Unit/Model/SocketFactoryTest.php index e8b4202508d..45729089f73 100644 --- a/app/code/Magento/CacheInvalidate/Test/Unit/Model/SocketFactoryTest.php +++ b/app/code/Magento/CacheInvalidate/Test/Unit/Model/SocketFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CacheInvalidate\Test\Unit\Model; diff --git a/app/code/Magento/CacheInvalidate/Test/Unit/Observer/FlushAllCacheObserverTest.php b/app/code/Magento/CacheInvalidate/Test/Unit/Observer/FlushAllCacheObserverTest.php index 8ceedc4190c..f3a4c898733 100644 --- a/app/code/Magento/CacheInvalidate/Test/Unit/Observer/FlushAllCacheObserverTest.php +++ b/app/code/Magento/CacheInvalidate/Test/Unit/Observer/FlushAllCacheObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CacheInvalidate\Test\Unit\Observer; diff --git a/app/code/Magento/CacheInvalidate/Test/Unit/Observer/InvalidateVarnishObserverTest.php b/app/code/Magento/CacheInvalidate/Test/Unit/Observer/InvalidateVarnishObserverTest.php index e9aefc8cee2..299ee0c142f 100644 --- a/app/code/Magento/CacheInvalidate/Test/Unit/Observer/InvalidateVarnishObserverTest.php +++ b/app/code/Magento/CacheInvalidate/Test/Unit/Observer/InvalidateVarnishObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CacheInvalidate\Test\Unit\Observer; diff --git a/app/code/Magento/CacheInvalidate/etc/events.xml b/app/code/Magento/CacheInvalidate/etc/events.xml index 58ddeb64c92..6103e661de5 100644 --- a/app/code/Magento/CacheInvalidate/etc/events.xml +++ b/app/code/Magento/CacheInvalidate/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -51,4 +51,4 @@ <event name="clean_cache_after_reindex"> <observer name="flush_varnish_pagecache" instance="Magento\CacheInvalidate\Observer\InvalidateVarnishObserver"/> </event> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/CacheInvalidate/etc/module.xml b/app/code/Magento/CacheInvalidate/etc/module.xml index 7cc9d59df59..b3277477fb6 100644 --- a/app/code/Magento/CacheInvalidate/etc/module.xml +++ b/app/code/Magento/CacheInvalidate/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CacheInvalidate/registration.php b/app/code/Magento/CacheInvalidate/registration.php index 21f5baf8f33..00ddee3f677 100644 --- a/app/code/Magento/CacheInvalidate/registration.php +++ b/app/code/Magento/CacheInvalidate/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/Block/Adminhtml/Captcha/DefaultCaptcha.php b/app/code/Magento/Captcha/Block/Adminhtml/Captcha/DefaultCaptcha.php index f60c511a7ee..c833fbd846d 100644 --- a/app/code/Magento/Captcha/Block/Adminhtml/Captcha/DefaultCaptcha.php +++ b/app/code/Magento/Captcha/Block/Adminhtml/Captcha/DefaultCaptcha.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/Block/Captcha.php b/app/code/Magento/Captcha/Block/Captcha.php index 91f63cfa786..2d0640a5890 100644 --- a/app/code/Magento/Captcha/Block/Captcha.php +++ b/app/code/Magento/Captcha/Block/Captcha.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/Block/Captcha/DefaultCaptcha.php b/app/code/Magento/Captcha/Block/Captcha/DefaultCaptcha.php index ff4915ce779..511210bbdfd 100644 --- a/app/code/Magento/Captcha/Block/Captcha/DefaultCaptcha.php +++ b/app/code/Magento/Captcha/Block/Captcha/DefaultCaptcha.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Block\Captcha; diff --git a/app/code/Magento/Captcha/Controller/Adminhtml/Refresh/Refresh.php b/app/code/Magento/Captcha/Controller/Adminhtml/Refresh/Refresh.php index 41567f38824..9c7ccc0983d 100644 --- a/app/code/Magento/Captcha/Controller/Adminhtml/Refresh/Refresh.php +++ b/app/code/Magento/Captcha/Controller/Adminhtml/Refresh/Refresh.php @@ -3,7 +3,7 @@ * Refreshes captcha and returns JSON encoded URL to image (AJAX action) * Example: {'imgSrc': 'http://example.com/media/captcha/67842gh187612ngf8s.png'} * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Controller\Adminhtml\Refresh; diff --git a/app/code/Magento/Captcha/Controller/Refresh/Index.php b/app/code/Magento/Captcha/Controller/Refresh/Index.php index eac5aef1946..0124adc348b 100644 --- a/app/code/Magento/Captcha/Controller/Refresh/Index.php +++ b/app/code/Magento/Captcha/Controller/Refresh/Index.php @@ -3,7 +3,7 @@ * Refreshes captcha and returns JSON encoded URL to image (AJAX action) * Example: {'imgSrc': 'http://example.com/media/captcha/67842gh187612ngf8s.png'} * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Controller\Refresh; diff --git a/app/code/Magento/Captcha/Cron/DeleteExpiredImages.php b/app/code/Magento/Captcha/Cron/DeleteExpiredImages.php index 11ebf3438ea..af1a6e5687d 100644 --- a/app/code/Magento/Captcha/Cron/DeleteExpiredImages.php +++ b/app/code/Magento/Captcha/Cron/DeleteExpiredImages.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Cron; diff --git a/app/code/Magento/Captcha/Cron/DeleteOldAttempts.php b/app/code/Magento/Captcha/Cron/DeleteOldAttempts.php index 64b7a92298c..f747a84b74b 100644 --- a/app/code/Magento/Captcha/Cron/DeleteOldAttempts.php +++ b/app/code/Magento/Captcha/Cron/DeleteOldAttempts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Cron; diff --git a/app/code/Magento/Captcha/Helper/Adminhtml/Data.php b/app/code/Magento/Captcha/Helper/Adminhtml/Data.php index 623bcb91eb8..cfc719ec7b6 100644 --- a/app/code/Magento/Captcha/Helper/Adminhtml/Data.php +++ b/app/code/Magento/Captcha/Helper/Adminhtml/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/Helper/Data.php b/app/code/Magento/Captcha/Helper/Data.php index 8892ddc1ed3..a347318e991 100644 --- a/app/code/Magento/Captcha/Helper/Data.php +++ b/app/code/Magento/Captcha/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Helper; diff --git a/app/code/Magento/Captcha/Model/CaptchaFactory.php b/app/code/Magento/Captcha/Model/CaptchaFactory.php index 8194af38192..3b179762f6e 100644 --- a/app/code/Magento/Captcha/Model/CaptchaFactory.php +++ b/app/code/Magento/Captcha/Model/CaptchaFactory.php @@ -2,7 +2,7 @@ /** * Captcha model factory * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Model; diff --git a/app/code/Magento/Captcha/Model/CaptchaInterface.php b/app/code/Magento/Captcha/Model/CaptchaInterface.php index 65d837e8bed..7c06658c214 100644 --- a/app/code/Magento/Captcha/Model/CaptchaInterface.php +++ b/app/code/Magento/Captcha/Model/CaptchaInterface.php @@ -2,7 +2,7 @@ /** * Captcha interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Model; diff --git a/app/code/Magento/Captcha/Model/Cart/ConfigPlugin.php b/app/code/Magento/Captcha/Model/Cart/ConfigPlugin.php index 184acf4ebf5..ccf2fef8f07 100644 --- a/app/code/Magento/Captcha/Model/Cart/ConfigPlugin.php +++ b/app/code/Magento/Captcha/Model/Cart/ConfigPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Model\Cart; diff --git a/app/code/Magento/Captcha/Model/Checkout/ConfigProvider.php b/app/code/Magento/Captcha/Model/Checkout/ConfigProvider.php index 460a2bc9e41..7b5f7442938 100644 --- a/app/code/Magento/Captcha/Model/Checkout/ConfigProvider.php +++ b/app/code/Magento/Captcha/Model/Checkout/ConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Model\Checkout; diff --git a/app/code/Magento/Captcha/Model/Config/Font.php b/app/code/Magento/Captcha/Model/Config/Font.php index db977c42d26..dae5f6eb0a9 100644 --- a/app/code/Magento/Captcha/Model/Config/Font.php +++ b/app/code/Magento/Captcha/Model/Config/Font.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/Model/Config/Form/AbstractForm.php b/app/code/Magento/Captcha/Model/Config/Form/AbstractForm.php index 3c5f13a8958..c961adaeedf 100644 --- a/app/code/Magento/Captcha/Model/Config/Form/AbstractForm.php +++ b/app/code/Magento/Captcha/Model/Config/Form/AbstractForm.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/Model/Config/Form/Backend.php b/app/code/Magento/Captcha/Model/Config/Form/Backend.php index 747d08bdee0..ce33b274ed3 100644 --- a/app/code/Magento/Captcha/Model/Config/Form/Backend.php +++ b/app/code/Magento/Captcha/Model/Config/Form/Backend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/Model/Config/Form/Frontend.php b/app/code/Magento/Captcha/Model/Config/Form/Frontend.php index da8f8ab7e45..75659c0a6eb 100644 --- a/app/code/Magento/Captcha/Model/Config/Form/Frontend.php +++ b/app/code/Magento/Captcha/Model/Config/Form/Frontend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/Model/Config/Mode.php b/app/code/Magento/Captcha/Model/Config/Mode.php index bd032cb71dc..14af6d40a98 100644 --- a/app/code/Magento/Captcha/Model/Config/Mode.php +++ b/app/code/Magento/Captcha/Model/Config/Mode.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/Model/Customer/Plugin/AjaxLogin.php b/app/code/Magento/Captcha/Model/Customer/Plugin/AjaxLogin.php index 614d342e24f..d2f3cbda170 100644 --- a/app/code/Magento/Captcha/Model/Customer/Plugin/AjaxLogin.php +++ b/app/code/Magento/Captcha/Model/Customer/Plugin/AjaxLogin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Model\Customer\Plugin; diff --git a/app/code/Magento/Captcha/Model/DefaultModel.php b/app/code/Magento/Captcha/Model/DefaultModel.php index c5a99de5ba1..fadc92ba55e 100644 --- a/app/code/Magento/Captcha/Model/DefaultModel.php +++ b/app/code/Magento/Captcha/Model/DefaultModel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Model; diff --git a/app/code/Magento/Captcha/Model/ResourceModel/Log.php b/app/code/Magento/Captcha/Model/ResourceModel/Log.php index c38e01e61e4..182a1a2b42d 100644 --- a/app/code/Magento/Captcha/Model/ResourceModel/Log.php +++ b/app/code/Magento/Captcha/Model/ResourceModel/Log.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Model\ResourceModel; diff --git a/app/code/Magento/Captcha/Observer/CaptchaStringResolver.php b/app/code/Magento/Captcha/Observer/CaptchaStringResolver.php index ff72c7d86a0..b7b8da326ef 100644 --- a/app/code/Magento/Captcha/Observer/CaptchaStringResolver.php +++ b/app/code/Magento/Captcha/Observer/CaptchaStringResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/CheckContactUsFormObserver.php b/app/code/Magento/Captcha/Observer/CheckContactUsFormObserver.php index 8c2c428e3fb..28928fd7caf 100644 --- a/app/code/Magento/Captcha/Observer/CheckContactUsFormObserver.php +++ b/app/code/Magento/Captcha/Observer/CheckContactUsFormObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/CheckForgotpasswordObserver.php b/app/code/Magento/Captcha/Observer/CheckForgotpasswordObserver.php index 13aef5b6226..c153190e61a 100644 --- a/app/code/Magento/Captcha/Observer/CheckForgotpasswordObserver.php +++ b/app/code/Magento/Captcha/Observer/CheckForgotpasswordObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/CheckGuestCheckoutObserver.php b/app/code/Magento/Captcha/Observer/CheckGuestCheckoutObserver.php index 33d2fb1bb15..045397988a4 100644 --- a/app/code/Magento/Captcha/Observer/CheckGuestCheckoutObserver.php +++ b/app/code/Magento/Captcha/Observer/CheckGuestCheckoutObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/CheckRegisterCheckoutObserver.php b/app/code/Magento/Captcha/Observer/CheckRegisterCheckoutObserver.php index 3fb0672b32c..2c9f698f835 100644 --- a/app/code/Magento/Captcha/Observer/CheckRegisterCheckoutObserver.php +++ b/app/code/Magento/Captcha/Observer/CheckRegisterCheckoutObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/CheckUserCreateObserver.php b/app/code/Magento/Captcha/Observer/CheckUserCreateObserver.php index a7b0eb7b7b7..d3f3ed8643e 100644 --- a/app/code/Magento/Captcha/Observer/CheckUserCreateObserver.php +++ b/app/code/Magento/Captcha/Observer/CheckUserCreateObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/CheckUserEditObserver.php b/app/code/Magento/Captcha/Observer/CheckUserEditObserver.php index 5f9dc879826..b19eb7ecc56 100644 --- a/app/code/Magento/Captcha/Observer/CheckUserEditObserver.php +++ b/app/code/Magento/Captcha/Observer/CheckUserEditObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/CheckUserForgotPasswordBackendObserver.php b/app/code/Magento/Captcha/Observer/CheckUserForgotPasswordBackendObserver.php index 9f993978fdc..f4e20045156 100644 --- a/app/code/Magento/Captcha/Observer/CheckUserForgotPasswordBackendObserver.php +++ b/app/code/Magento/Captcha/Observer/CheckUserForgotPasswordBackendObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/CheckUserLoginBackendObserver.php b/app/code/Magento/Captcha/Observer/CheckUserLoginBackendObserver.php index 49a0fd7a3cc..097e79bb7e5 100644 --- a/app/code/Magento/Captcha/Observer/CheckUserLoginBackendObserver.php +++ b/app/code/Magento/Captcha/Observer/CheckUserLoginBackendObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/CheckUserLoginObserver.php b/app/code/Magento/Captcha/Observer/CheckUserLoginObserver.php index bb4d3a484ee..afe4e28754c 100644 --- a/app/code/Magento/Captcha/Observer/CheckUserLoginObserver.php +++ b/app/code/Magento/Captcha/Observer/CheckUserLoginObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/ResetAttemptForBackendObserver.php b/app/code/Magento/Captcha/Observer/ResetAttemptForBackendObserver.php index 1921d1e61ee..9952180ef93 100644 --- a/app/code/Magento/Captcha/Observer/ResetAttemptForBackendObserver.php +++ b/app/code/Magento/Captcha/Observer/ResetAttemptForBackendObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendAccountEditObserver.php b/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendAccountEditObserver.php index dc0f3a8b6f5..360c1046b76 100644 --- a/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendAccountEditObserver.php +++ b/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendAccountEditObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendObserver.php b/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendObserver.php index 13fd9f68593..84b97fabc8b 100644 --- a/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendObserver.php +++ b/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Observer; diff --git a/app/code/Magento/Captcha/Setup/InstallSchema.php b/app/code/Magento/Captcha/Setup/InstallSchema.php index 47b8562f2db..9d2f843da68 100644 --- a/app/code/Magento/Captcha/Setup/InstallSchema.php +++ b/app/code/Magento/Captcha/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/Test/Unit/Controller/Refresh/IndexTest.php b/app/code/Magento/Captcha/Test/Unit/Controller/Refresh/IndexTest.php index 96021ccf810..a99ec53ab24 100644 --- a/app/code/Magento/Captcha/Test/Unit/Controller/Refresh/IndexTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Controller/Refresh/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Controller\Refresh; diff --git a/app/code/Magento/Captcha/Test/Unit/Cron/DeleteExpiredImagesTest.php b/app/code/Magento/Captcha/Test/Unit/Cron/DeleteExpiredImagesTest.php index 4bdcceef3a6..45f90452bd1 100644 --- a/app/code/Magento/Captcha/Test/Unit/Cron/DeleteExpiredImagesTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Cron/DeleteExpiredImagesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Cron; diff --git a/app/code/Magento/Captcha/Test/Unit/Helper/Adminhtml/DataTest.php b/app/code/Magento/Captcha/Test/Unit/Helper/Adminhtml/DataTest.php index ec818b05218..3410037ae91 100644 --- a/app/code/Magento/Captcha/Test/Unit/Helper/Adminhtml/DataTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Helper/Adminhtml/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Helper\Adminhtml; diff --git a/app/code/Magento/Captcha/Test/Unit/Helper/DataTest.php b/app/code/Magento/Captcha/Test/Unit/Helper/DataTest.php index 94885e6269e..40558b3cae8 100644 --- a/app/code/Magento/Captcha/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Helper; diff --git a/app/code/Magento/Captcha/Test/Unit/Model/CaptchaFactoryTest.php b/app/code/Magento/Captcha/Test/Unit/Model/CaptchaFactoryTest.php index 72957e81da8..3b6f7562b6c 100644 --- a/app/code/Magento/Captcha/Test/Unit/Model/CaptchaFactoryTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Model/CaptchaFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Model; diff --git a/app/code/Magento/Captcha/Test/Unit/Model/Cart/ConfigPluginTest.php b/app/code/Magento/Captcha/Test/Unit/Model/Cart/ConfigPluginTest.php index c99bdb86071..681fffceea0 100644 --- a/app/code/Magento/Captcha/Test/Unit/Model/Cart/ConfigPluginTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Model/Cart/ConfigPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Model\Cart; diff --git a/app/code/Magento/Captcha/Test/Unit/Model/Checkout/ConfigProviderTest.php b/app/code/Magento/Captcha/Test/Unit/Model/Checkout/ConfigProviderTest.php index dbaca099ca2..364374d6182 100644 --- a/app/code/Magento/Captcha/Test/Unit/Model/Checkout/ConfigProviderTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Model/Checkout/ConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Model\Checkout; diff --git a/app/code/Magento/Captcha/Test/Unit/Model/Customer/Plugin/AjaxLoginTest.php b/app/code/Magento/Captcha/Test/Unit/Model/Customer/Plugin/AjaxLoginTest.php index a71cfa31d65..8047138e345 100644 --- a/app/code/Magento/Captcha/Test/Unit/Model/Customer/Plugin/AjaxLoginTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Model/Customer/Plugin/AjaxLoginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Model\Customer\Plugin; diff --git a/app/code/Magento/Captcha/Test/Unit/Model/DefaultTest.php b/app/code/Magento/Captcha/Test/Unit/Model/DefaultTest.php index a85941e1135..649bce19261 100644 --- a/app/code/Magento/Captcha/Test/Unit/Model/DefaultTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Model/DefaultTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Model; diff --git a/app/code/Magento/Captcha/Test/Unit/Observer/CheckContactUsFormObserverTest.php b/app/code/Magento/Captcha/Test/Unit/Observer/CheckContactUsFormObserverTest.php index d57ef559793..9e30ee42336 100644 --- a/app/code/Magento/Captcha/Test/Unit/Observer/CheckContactUsFormObserverTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Observer/CheckContactUsFormObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Observer; diff --git a/app/code/Magento/Captcha/Test/Unit/Observer/CheckForgotpasswordObserverTest.php b/app/code/Magento/Captcha/Test/Unit/Observer/CheckForgotpasswordObserverTest.php index 0b22243d9b5..9c0ca7e7635 100644 --- a/app/code/Magento/Captcha/Test/Unit/Observer/CheckForgotpasswordObserverTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Observer/CheckForgotpasswordObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Observer; diff --git a/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserCreateObserverTest.php b/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserCreateObserverTest.php index 59db2fe5072..cc5a09eff39 100644 --- a/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserCreateObserverTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserCreateObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Observer; diff --git a/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserEditObserverTest.php b/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserEditObserverTest.php index fcbded90778..a843f1ff45a 100644 --- a/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserEditObserverTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserEditObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Observer; diff --git a/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserLoginObserverTest.php b/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserLoginObserverTest.php index 7c1c4d458db..b55ffbea57f 100644 --- a/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserLoginObserverTest.php +++ b/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserLoginObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Captcha\Test\Unit\Observer; diff --git a/app/code/Magento/Captcha/etc/adminhtml/di.xml b/app/code/Magento/Captcha/etc/adminhtml/di.xml index b064086f594..e7bce009366 100644 --- a/app/code/Magento/Captcha/etc/adminhtml/di.xml +++ b/app/code/Magento/Captcha/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/etc/adminhtml/events.xml b/app/code/Magento/Captcha/etc/adminhtml/events.xml index 984e5e9e29f..7fcadbfd8f2 100644 --- a/app/code/Magento/Captcha/etc/adminhtml/events.xml +++ b/app/code/Magento/Captcha/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/etc/adminhtml/routes.xml b/app/code/Magento/Captcha/etc/adminhtml/routes.xml index e06b87beef7..6b6b6717c48 100644 --- a/app/code/Magento/Captcha/etc/adminhtml/routes.xml +++ b/app/code/Magento/Captcha/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/etc/adminhtml/system.xml b/app/code/Magento/Captcha/etc/adminhtml/system.xml index dc4c737597c..88f0ae27f91 100644 --- a/app/code/Magento/Captcha/etc/adminhtml/system.xml +++ b/app/code/Magento/Captcha/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/etc/config.xml b/app/code/Magento/Captcha/etc/config.xml index a068485910a..d969626d731 100644 --- a/app/code/Magento/Captcha/etc/config.xml +++ b/app/code/Magento/Captcha/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/etc/crontab.xml b/app/code/Magento/Captcha/etc/crontab.xml index 846a15cbdbe..d3d6e30e1a0 100644 --- a/app/code/Magento/Captcha/etc/crontab.xml +++ b/app/code/Magento/Captcha/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/etc/crontab/di.xml b/app/code/Magento/Captcha/etc/crontab/di.xml index fd57ded2fb9..f3086b46984 100644 --- a/app/code/Magento/Captcha/etc/crontab/di.xml +++ b/app/code/Magento/Captcha/etc/crontab/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/etc/di.xml b/app/code/Magento/Captcha/etc/di.xml index 0bb7660f27a..db624420ba6 100644 --- a/app/code/Magento/Captcha/etc/di.xml +++ b/app/code/Magento/Captcha/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/etc/events.xml b/app/code/Magento/Captcha/etc/events.xml index 274058ec98e..4223c4a2a32 100644 --- a/app/code/Magento/Captcha/etc/events.xml +++ b/app/code/Magento/Captcha/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/etc/frontend/di.xml b/app/code/Magento/Captcha/etc/frontend/di.xml index d15f8d59149..209f9beb71a 100644 --- a/app/code/Magento/Captcha/etc/frontend/di.xml +++ b/app/code/Magento/Captcha/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/etc/frontend/events.xml b/app/code/Magento/Captcha/etc/frontend/events.xml index e1441f0311e..dfa0d1b4285 100644 --- a/app/code/Magento/Captcha/etc/frontend/events.xml +++ b/app/code/Magento/Captcha/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/etc/frontend/routes.xml b/app/code/Magento/Captcha/etc/frontend/routes.xml index 255f4551daf..d4bbe64821a 100644 --- a/app/code/Magento/Captcha/etc/frontend/routes.xml +++ b/app/code/Magento/Captcha/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Captcha" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Captcha/etc/module.xml b/app/code/Magento/Captcha/etc/module.xml index 1703142e541..698604928af 100644 --- a/app/code/Magento/Captcha/etc/module.xml +++ b/app/code/Magento/Captcha/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/registration.php b/app/code/Magento/Captcha/registration.php index a8fce947e66..488ac412a89 100644 --- a/app/code/Magento/Captcha/registration.php +++ b/app/code/Magento/Captcha/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_forgotpassword.xml b/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_forgotpassword.xml index 14150a86cba..3376b5886aa 100644 --- a/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_forgotpassword.xml +++ b/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_forgotpassword.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_login.xml b/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_login.xml index 3cb5ffbbf5a..8c093257f17 100644 --- a/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_login.xml +++ b/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_login.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/view/adminhtml/templates/default.phtml b/app/code/Magento/Captcha/view/adminhtml/templates/default.phtml index 1246f1f4f5d..37d2ed6fe12 100644 --- a/app/code/Magento/Captcha/view/adminhtml/templates/default.phtml +++ b/app/code/Magento/Captcha/view/adminhtml/templates/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Captcha/view/frontend/layout/checkout_index_index.xml index 9213f0db671..b4fc252bb4a 100644 --- a/app/code/Magento/Captcha/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/Captcha/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/view/frontend/layout/contact_index_index.xml b/app/code/Magento/Captcha/view/frontend/layout/contact_index_index.xml index 9e31eea8aae..1460d8fac69 100644 --- a/app/code/Magento/Captcha/view/frontend/layout/contact_index_index.xml +++ b/app/code/Magento/Captcha/view/frontend/layout/contact_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/view/frontend/layout/customer_account_create.xml b/app/code/Magento/Captcha/view/frontend/layout/customer_account_create.xml index 573af66d5bd..cd72cc5857b 100644 --- a/app/code/Magento/Captcha/view/frontend/layout/customer_account_create.xml +++ b/app/code/Magento/Captcha/view/frontend/layout/customer_account_create.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/view/frontend/layout/customer_account_edit.xml b/app/code/Magento/Captcha/view/frontend/layout/customer_account_edit.xml index 875479c4995..9700e88006f 100644 --- a/app/code/Magento/Captcha/view/frontend/layout/customer_account_edit.xml +++ b/app/code/Magento/Captcha/view/frontend/layout/customer_account_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/view/frontend/layout/customer_account_forgotpassword.xml b/app/code/Magento/Captcha/view/frontend/layout/customer_account_forgotpassword.xml index dc92c7c3548..1f25fa040b5 100644 --- a/app/code/Magento/Captcha/view/frontend/layout/customer_account_forgotpassword.xml +++ b/app/code/Magento/Captcha/view/frontend/layout/customer_account_forgotpassword.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/view/frontend/layout/customer_account_login.xml b/app/code/Magento/Captcha/view/frontend/layout/customer_account_login.xml index bcabf0adccc..3a24e44fd1a 100644 --- a/app/code/Magento/Captcha/view/frontend/layout/customer_account_login.xml +++ b/app/code/Magento/Captcha/view/frontend/layout/customer_account_login.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/view/frontend/layout/default.xml b/app/code/Magento/Captcha/view/frontend/layout/default.xml index 9d6a2345148..43a770c54c0 100644 --- a/app/code/Magento/Captcha/view/frontend/layout/default.xml +++ b/app/code/Magento/Captcha/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Captcha/view/frontend/requirejs-config.js b/app/code/Magento/Captcha/view/frontend/requirejs-config.js index 72f7d627b87..ff1d9f1acc7 100644 --- a/app/code/Magento/Captcha/view/frontend/requirejs-config.js +++ b/app/code/Magento/Captcha/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { captcha: 'Magento_Captcha/captcha' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Captcha/view/frontend/templates/default.phtml b/app/code/Magento/Captcha/view/frontend/templates/default.phtml index 92c008a0e18..e028ea19fa8 100644 --- a/app/code/Magento/Captcha/view/frontend/templates/default.phtml +++ b/app/code/Magento/Captcha/view/frontend/templates/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/view/frontend/templates/js/components.phtml b/app/code/Magento/Captcha/view/frontend/templates/js/components.phtml index e490a6aa049..bdcb2e9bf77 100644 --- a/app/code/Magento/Captcha/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/Captcha/view/frontend/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Captcha/view/frontend/web/captcha.js b/app/code/Magento/Captcha/view/frontend/web/captcha.js index f6898d33fb4..4b4e9f960ca 100644 --- a/app/code/Magento/Captcha/view/frontend/web/captcha.js +++ b/app/code/Magento/Captcha/view/frontend/web/captcha.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ @@ -59,4 +59,4 @@ define([ }); return $.mage.captcha; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Captcha/view/frontend/web/js/action/refresh.js b/app/code/Magento/Captcha/view/frontend/web/js/action/refresh.js index 4475d5ef80d..a804cfc94d2 100644 --- a/app/code/Magento/Captcha/view/frontend/web/js/action/refresh.js +++ b/app/code/Magento/Captcha/view/frontend/web/js/action/refresh.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true*/ diff --git a/app/code/Magento/Captcha/view/frontend/web/js/model/captcha.js b/app/code/Magento/Captcha/view/frontend/web/js/model/captcha.js index 426542f3a2d..97ef7c676c1 100644 --- a/app/code/Magento/Captcha/view/frontend/web/js/model/captcha.js +++ b/app/code/Magento/Captcha/view/frontend/web/js/model/captcha.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Captcha/view/frontend/web/js/model/captchaList.js b/app/code/Magento/Captcha/view/frontend/web/js/model/captchaList.js index 8ba34539058..92a677027b1 100644 --- a/app/code/Magento/Captcha/view/frontend/web/js/model/captchaList.js +++ b/app/code/Magento/Captcha/view/frontend/web/js/model/captchaList.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true*/ diff --git a/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/defaultCaptcha.js b/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/defaultCaptcha.js index 0abda9cc6e4..4acdff9b499 100644 --- a/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/defaultCaptcha.js +++ b/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/defaultCaptcha.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true jquery:true*/ diff --git a/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/loginCaptcha.js b/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/loginCaptcha.js index f235f797e90..66f980d8d3c 100644 --- a/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/loginCaptcha.js +++ b/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/loginCaptcha.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true jquery:true*/ diff --git a/app/code/Magento/Captcha/view/frontend/web/onepage.js b/app/code/Magento/Captcha/view/frontend/web/onepage.js index a3000f6e80a..0f8f0503e10 100644 --- a/app/code/Magento/Captcha/view/frontend/web/onepage.js +++ b/app/code/Magento/Captcha/view/frontend/web/onepage.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ @@ -13,4 +13,4 @@ define(["jquery"], function($){ }).on('billingSave', function() { $(".captcha-reload:visible").trigger("click"); }); -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Captcha/view/frontend/web/template/checkout/captcha.html b/app/code/Magento/Captcha/view/frontend/web/template/checkout/captcha.html index 990c397c768..64875866127 100644 --- a/app/code/Magento/Captcha/view/frontend/web/template/checkout/captcha.html +++ b/app/code/Magento/Captcha/view/frontend/web/template/checkout/captcha.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/Api/AttributeSetFinderInterface.php b/app/code/Magento/Catalog/Api/AttributeSetFinderInterface.php index 4dabce697b3..c7df36623ff 100644 --- a/app/code/Magento/Catalog/Api/AttributeSetFinderInterface.php +++ b/app/code/Magento/Catalog/Api/AttributeSetFinderInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/AttributeSetManagementInterface.php b/app/code/Magento/Catalog/Api/AttributeSetManagementInterface.php index 6f06db75cea..5642d9cc861 100644 --- a/app/code/Magento/Catalog/Api/AttributeSetManagementInterface.php +++ b/app/code/Magento/Catalog/Api/AttributeSetManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/AttributeSetRepositoryInterface.php b/app/code/Magento/Catalog/Api/AttributeSetRepositoryInterface.php index 7a4eefd06a2..5e3606495ba 100644 --- a/app/code/Magento/Catalog/Api/AttributeSetRepositoryInterface.php +++ b/app/code/Magento/Catalog/Api/AttributeSetRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/BasePriceStorageInterface.php b/app/code/Magento/Catalog/Api/BasePriceStorageInterface.php index 013ec1f9400..b669e5a1e8c 100644 --- a/app/code/Magento/Catalog/Api/BasePriceStorageInterface.php +++ b/app/code/Magento/Catalog/Api/BasePriceStorageInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/CategoryAttributeOptionManagementInterface.php b/app/code/Magento/Catalog/Api/CategoryAttributeOptionManagementInterface.php index 3feedc9536a..b92e44b3c77 100644 --- a/app/code/Magento/Catalog/Api/CategoryAttributeOptionManagementInterface.php +++ b/app/code/Magento/Catalog/Api/CategoryAttributeOptionManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/CategoryAttributeRepositoryInterface.php b/app/code/Magento/Catalog/Api/CategoryAttributeRepositoryInterface.php index 8ce6b9436b5..738d9da88f0 100644 --- a/app/code/Magento/Catalog/Api/CategoryAttributeRepositoryInterface.php +++ b/app/code/Magento/Catalog/Api/CategoryAttributeRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/CategoryLinkManagementInterface.php b/app/code/Magento/Catalog/Api/CategoryLinkManagementInterface.php index d7aca6e9eb7..31f4b509b37 100644 --- a/app/code/Magento/Catalog/Api/CategoryLinkManagementInterface.php +++ b/app/code/Magento/Catalog/Api/CategoryLinkManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/CategoryLinkRepositoryInterface.php b/app/code/Magento/Catalog/Api/CategoryLinkRepositoryInterface.php index 78b0ff0124e..3a61754210f 100644 --- a/app/code/Magento/Catalog/Api/CategoryLinkRepositoryInterface.php +++ b/app/code/Magento/Catalog/Api/CategoryLinkRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/CategoryListInterface.php b/app/code/Magento/Catalog/Api/CategoryListInterface.php index 67a4ba5db00..cbd1ba578e8 100644 --- a/app/code/Magento/Catalog/Api/CategoryListInterface.php +++ b/app/code/Magento/Catalog/Api/CategoryListInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/CategoryManagementInterface.php b/app/code/Magento/Catalog/Api/CategoryManagementInterface.php index 80daf41e5f5..9e750d645fd 100644 --- a/app/code/Magento/Catalog/Api/CategoryManagementInterface.php +++ b/app/code/Magento/Catalog/Api/CategoryManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/CategoryRepositoryInterface.php b/app/code/Magento/Catalog/Api/CategoryRepositoryInterface.php index 87939e1dbd8..2eba07e3e4d 100644 --- a/app/code/Magento/Catalog/Api/CategoryRepositoryInterface.php +++ b/app/code/Magento/Catalog/Api/CategoryRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/CostStorageInterface.php b/app/code/Magento/Catalog/Api/CostStorageInterface.php index 0c9fb4d540d..31055227ad1 100644 --- a/app/code/Magento/Catalog/Api/CostStorageInterface.php +++ b/app/code/Magento/Catalog/Api/CostStorageInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/BasePriceInterface.php b/app/code/Magento/Catalog/Api/Data/BasePriceInterface.php index 942de4a63ab..75caadc6362 100644 --- a/app/code/Magento/Catalog/Api/Data/BasePriceInterface.php +++ b/app/code/Magento/Catalog/Api/Data/BasePriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/CategoryAttributeInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryAttributeInterface.php index be38e0f31bb..8dd5a1521ff 100644 --- a/app/code/Magento/Catalog/Api/Data/CategoryAttributeInterface.php +++ b/app/code/Magento/Catalog/Api/Data/CategoryAttributeInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; diff --git a/app/code/Magento/Catalog/Api/Data/CategoryAttributeSearchResultsInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryAttributeSearchResultsInterface.php index d93a0c2b385..5036e98e29a 100644 --- a/app/code/Magento/Catalog/Api/Data/CategoryAttributeSearchResultsInterface.php +++ b/app/code/Magento/Catalog/Api/Data/CategoryAttributeSearchResultsInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; diff --git a/app/code/Magento/Catalog/Api/Data/CategoryInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryInterface.php index 2e485581802..0bda3e5eb74 100644 --- a/app/code/Magento/Catalog/Api/Data/CategoryInterface.php +++ b/app/code/Magento/Catalog/Api/Data/CategoryInterface.php @@ -2,7 +2,7 @@ /** * Category data interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/CategoryLinkInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryLinkInterface.php index 9735f9d122b..e529e0ec019 100644 --- a/app/code/Magento/Catalog/Api/Data/CategoryLinkInterface.php +++ b/app/code/Magento/Catalog/Api/Data/CategoryLinkInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/CategoryProductLinkInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryProductLinkInterface.php index 55800e3761d..5cdb0f1a2c8 100644 --- a/app/code/Magento/Catalog/Api/Data/CategoryProductLinkInterface.php +++ b/app/code/Magento/Catalog/Api/Data/CategoryProductLinkInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/CategoryProductSearchResultInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryProductSearchResultInterface.php index b261e7053f6..df63ed4f828 100644 --- a/app/code/Magento/Catalog/Api/Data/CategoryProductSearchResultInterface.php +++ b/app/code/Magento/Catalog/Api/Data/CategoryProductSearchResultInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; diff --git a/app/code/Magento/Catalog/Api/Data/CategorySearchResultsInterface.php b/app/code/Magento/Catalog/Api/Data/CategorySearchResultsInterface.php index 7d6b0bb88d8..154e8164f12 100644 --- a/app/code/Magento/Catalog/Api/Data/CategorySearchResultsInterface.php +++ b/app/code/Magento/Catalog/Api/Data/CategorySearchResultsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; diff --git a/app/code/Magento/Catalog/Api/Data/CategoryTreeInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryTreeInterface.php index 31ecbeb8f49..3c2e9fa708c 100644 --- a/app/code/Magento/Catalog/Api/Data/CategoryTreeInterface.php +++ b/app/code/Magento/Catalog/Api/Data/CategoryTreeInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/CostInterface.php b/app/code/Magento/Catalog/Api/Data/CostInterface.php index c007c81f1d7..032a670f507 100644 --- a/app/code/Magento/Catalog/Api/Data/CostInterface.php +++ b/app/code/Magento/Catalog/Api/Data/CostInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/CustomOptionInterface.php b/app/code/Magento/Catalog/Api/Data/CustomOptionInterface.php index ea507a28b26..96663b72a22 100644 --- a/app/code/Magento/Catalog/Api/Data/CustomOptionInterface.php +++ b/app/code/Magento/Catalog/Api/Data/CustomOptionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; diff --git a/app/code/Magento/Catalog/Api/Data/EavAttributeInterface.php b/app/code/Magento/Catalog/Api/Data/EavAttributeInterface.php index 48e1863129a..bb622b55b4d 100644 --- a/app/code/Magento/Catalog/Api/Data/EavAttributeInterface.php +++ b/app/code/Magento/Catalog/Api/Data/EavAttributeInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; diff --git a/app/code/Magento/Catalog/Api/Data/ProductAttributeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductAttributeInterface.php index 804f06ff667..d10927f4b04 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductAttributeInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductAttributeInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; diff --git a/app/code/Magento/Catalog/Api/Data/ProductAttributeMediaGalleryEntryInterface.php b/app/code/Magento/Catalog/Api/Data/ProductAttributeMediaGalleryEntryInterface.php index 468af9401fc..5bd1ca06ea9 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductAttributeMediaGalleryEntryInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductAttributeMediaGalleryEntryInterface.php @@ -2,7 +2,7 @@ /** * Product Media Attribute * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; diff --git a/app/code/Magento/Catalog/Api/Data/ProductAttributeSearchResultsInterface.php b/app/code/Magento/Catalog/Api/Data/ProductAttributeSearchResultsInterface.php index 9989b9ed309..1db1c4eb894 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductAttributeSearchResultsInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductAttributeSearchResultsInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; diff --git a/app/code/Magento/Catalog/Api/Data/ProductAttributeTypeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductAttributeTypeInterface.php index dc77164430e..036ee9d62c8 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductAttributeTypeInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductAttributeTypeInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/ProductCustomOptionInterface.php b/app/code/Magento/Catalog/Api/Data/ProductCustomOptionInterface.php index 88810359da7..0827352f4f9 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductCustomOptionInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductCustomOptionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/ProductCustomOptionTypeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductCustomOptionTypeInterface.php index 2917603656e..25523789b89 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductCustomOptionTypeInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductCustomOptionTypeInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/ProductCustomOptionValuesInterface.php b/app/code/Magento/Catalog/Api/Data/ProductCustomOptionValuesInterface.php index a26d427ccf9..3655c500502 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductCustomOptionValuesInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductCustomOptionValuesInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/ProductInterface.php b/app/code/Magento/Catalog/Api/Data/ProductInterface.php index 01c99b965ec..c869f10c26a 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/ProductLinkAttributeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductLinkAttributeInterface.php index f9817dadcaa..ecdfe25860f 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductLinkAttributeInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductLinkAttributeInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/ProductLinkInterface.php b/app/code/Magento/Catalog/Api/Data/ProductLinkInterface.php index a97bbe4aaa2..1ce40ce691c 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductLinkInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductLinkInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/ProductLinkTypeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductLinkTypeInterface.php index 8725d5e4070..2c2be7f41c0 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductLinkTypeInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductLinkTypeInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/ProductOptionInterface.php b/app/code/Magento/Catalog/Api/Data/ProductOptionInterface.php index b87ca533852..5aab581e3b7 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductOptionInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductOptionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; diff --git a/app/code/Magento/Catalog/Api/Data/ProductSearchResultsInterface.php b/app/code/Magento/Catalog/Api/Data/ProductSearchResultsInterface.php index 1e0f23f2227..cdcc6b719b3 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductSearchResultsInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductSearchResultsInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; diff --git a/app/code/Magento/Catalog/Api/Data/ProductTierPriceInterface.php b/app/code/Magento/Catalog/Api/Data/ProductTierPriceInterface.php index d5b354da1ea..f8543ac48b1 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductTierPriceInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductTierPriceInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/ProductTypeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductTypeInterface.php index 94b0c1ec37d..97dabd0fae3 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductTypeInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductTypeInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/ProductWebsiteLinkInterface.php b/app/code/Magento/Catalog/Api/Data/ProductWebsiteLinkInterface.php index 22017bf22d7..fa5e77c3254 100644 --- a/app/code/Magento/Catalog/Api/Data/ProductWebsiteLinkInterface.php +++ b/app/code/Magento/Catalog/Api/Data/ProductWebsiteLinkInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/Data/TierPriceInterface.php b/app/code/Magento/Catalog/Api/Data/TierPriceInterface.php index 1b708132c0d..216d27de9c9 100644 --- a/app/code/Magento/Catalog/Api/Data/TierPriceInterface.php +++ b/app/code/Magento/Catalog/Api/Data/TierPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/ProductAttributeGroupRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeGroupRepositoryInterface.php index 050c1eafd6d..106ad651c5a 100644 --- a/app/code/Magento/Catalog/Api/ProductAttributeGroupRepositoryInterface.php +++ b/app/code/Magento/Catalog/Api/ProductAttributeGroupRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/ProductAttributeManagementInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeManagementInterface.php index caa828049b8..db56a6a687b 100644 --- a/app/code/Magento/Catalog/Api/ProductAttributeManagementInterface.php +++ b/app/code/Magento/Catalog/Api/ProductAttributeManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/ProductAttributeMediaGalleryManagementInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeMediaGalleryManagementInterface.php index 4e35a1587af..894c5252ceb 100644 --- a/app/code/Magento/Catalog/Api/ProductAttributeMediaGalleryManagementInterface.php +++ b/app/code/Magento/Catalog/Api/ProductAttributeMediaGalleryManagementInterface.php @@ -2,7 +2,7 @@ /** * Product Media Attribute Write Service * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/ProductAttributeOptionManagementInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeOptionManagementInterface.php index daafa491e4c..04c6ee23e96 100644 --- a/app/code/Magento/Catalog/Api/ProductAttributeOptionManagementInterface.php +++ b/app/code/Magento/Catalog/Api/ProductAttributeOptionManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/ProductAttributeRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeRepositoryInterface.php index 648cf315d92..6f9475ff8f8 100644 --- a/app/code/Magento/Catalog/Api/ProductAttributeRepositoryInterface.php +++ b/app/code/Magento/Catalog/Api/ProductAttributeRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/ProductAttributeTypesListInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeTypesListInterface.php index 19631d37a93..75f497a988a 100644 --- a/app/code/Magento/Catalog/Api/ProductAttributeTypesListInterface.php +++ b/app/code/Magento/Catalog/Api/ProductAttributeTypesListInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/ProductCustomOptionRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductCustomOptionRepositoryInterface.php index ebc6ee2136b..8c8e3217bee 100644 --- a/app/code/Magento/Catalog/Api/ProductCustomOptionRepositoryInterface.php +++ b/app/code/Magento/Catalog/Api/ProductCustomOptionRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/ProductCustomOptionTypeListInterface.php b/app/code/Magento/Catalog/Api/ProductCustomOptionTypeListInterface.php index 2b5104d37bd..a342e18b1fe 100644 --- a/app/code/Magento/Catalog/Api/ProductCustomOptionTypeListInterface.php +++ b/app/code/Magento/Catalog/Api/ProductCustomOptionTypeListInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/ProductLinkManagementInterface.php b/app/code/Magento/Catalog/Api/ProductLinkManagementInterface.php index c6d4cdeb22f..b660dd1089f 100644 --- a/app/code/Magento/Catalog/Api/ProductLinkManagementInterface.php +++ b/app/code/Magento/Catalog/Api/ProductLinkManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/ProductLinkRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductLinkRepositoryInterface.php index 89cfd83da24..b0887d87195 100644 --- a/app/code/Magento/Catalog/Api/ProductLinkRepositoryInterface.php +++ b/app/code/Magento/Catalog/Api/ProductLinkRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/ProductLinkTypeListInterface.php b/app/code/Magento/Catalog/Api/ProductLinkTypeListInterface.php index 702d5cd1e30..3999905db59 100644 --- a/app/code/Magento/Catalog/Api/ProductLinkTypeListInterface.php +++ b/app/code/Magento/Catalog/Api/ProductLinkTypeListInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/ProductManagementInterface.php b/app/code/Magento/Catalog/Api/ProductManagementInterface.php index 7c2cba0c75e..02aa620d113 100644 --- a/app/code/Magento/Catalog/Api/ProductManagementInterface.php +++ b/app/code/Magento/Catalog/Api/ProductManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/ProductMediaAttributeManagementInterface.php b/app/code/Magento/Catalog/Api/ProductMediaAttributeManagementInterface.php index 3591d4b9049..db2ab3f8eda 100644 --- a/app/code/Magento/Catalog/Api/ProductMediaAttributeManagementInterface.php +++ b/app/code/Magento/Catalog/Api/ProductMediaAttributeManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/ProductRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductRepositoryInterface.php index 4284eb1f7ee..1e5110a2246 100644 --- a/app/code/Magento/Catalog/Api/ProductRepositoryInterface.php +++ b/app/code/Magento/Catalog/Api/ProductRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/ProductTierPriceManagementInterface.php b/app/code/Magento/Catalog/Api/ProductTierPriceManagementInterface.php index f02c3afa5ae..5fbb98ada55 100644 --- a/app/code/Magento/Catalog/Api/ProductTierPriceManagementInterface.php +++ b/app/code/Magento/Catalog/Api/ProductTierPriceManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/ProductTypeListInterface.php b/app/code/Magento/Catalog/Api/ProductTypeListInterface.php index 2f798c7babe..e7c8237952f 100644 --- a/app/code/Magento/Catalog/Api/ProductTypeListInterface.php +++ b/app/code/Magento/Catalog/Api/ProductTypeListInterface.php @@ -2,7 +2,7 @@ /** * Product type provider * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/ProductWebsiteLinkRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductWebsiteLinkRepositoryInterface.php index 51fae3e594c..1ef52b860eb 100644 --- a/app/code/Magento/Catalog/Api/ProductWebsiteLinkRepositoryInterface.php +++ b/app/code/Magento/Catalog/Api/ProductWebsiteLinkRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Api/ScopedProductTierPriceManagementInterface.php b/app/code/Magento/Catalog/Api/ScopedProductTierPriceManagementInterface.php index 8a27480b776..6e5a001e5b1 100644 --- a/app/code/Magento/Catalog/Api/ScopedProductTierPriceManagementInterface.php +++ b/app/code/Magento/Catalog/Api/ScopedProductTierPriceManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; diff --git a/app/code/Magento/Catalog/Api/TierPriceStorageInterface.php b/app/code/Magento/Catalog/Api/TierPriceStorageInterface.php index 200cdc1baa4..14eed58ef33 100644 --- a/app/code/Magento/Catalog/Api/TierPriceStorageInterface.php +++ b/app/code/Magento/Catalog/Api/TierPriceStorageInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/AbstractCategory.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/AbstractCategory.php index 4cdd461ee6a..02c1998c730 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/AbstractCategory.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/AbstractCategory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/AssignProducts.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/AssignProducts.php index dbc5591c588..42d8d692493 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/AssignProducts.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/AssignProducts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Checkboxes/Tree.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Checkboxes/Tree.php index 4f9cc9b69d5..e57785b2870 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/Checkboxes/Tree.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/Checkboxes/Tree.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit.php index bccc807cad1..df8907d0bfb 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/DeleteButton.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/DeleteButton.php index 50f10f5a773..f07540a3446 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/DeleteButton.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/DeleteButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Category\Edit; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/SaveButton.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/SaveButton.php index bc3af662c00..342ecd872dc 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/SaveButton.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/SaveButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Category\Edit; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Image.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Image.php index c3f1f2769fa..9f48b89d6db 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Image.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Pricestep.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Pricestep.php index 520fd3c5da0..32894db1b01 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Pricestep.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Pricestep.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/Available.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/Available.php index 9f7b3faefc5..4485a861edd 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/Available.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/Available.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/DefaultSortby.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/DefaultSortby.php index fea2bd8ab21..fc82b865c6d 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/DefaultSortby.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/DefaultSortby.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Tab/Product.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Tab/Product.php index 976dd4c9222..4e44435041d 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/Tab/Product.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/Tab/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php index a688d10558a..23a906733a4 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Widget/Chooser.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Widget/Chooser.php index 95541d864b8..2d355d87b61 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Category/Widget/Chooser.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Category/Widget/Chooser.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Form.php b/app/code/Magento/Catalog/Block/Adminhtml/Form.php index afde425cc2f..8ff1f5b1f31 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Form.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/DateFieldsOrder.php b/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/DateFieldsOrder.php index 563a105af93..ca2dc3b320a 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/DateFieldsOrder.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/DateFieldsOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/YearRange.php b/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/YearRange.php index 9fa76789287..2255355634b 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/YearRange.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/YearRange.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Fieldset/Element.php b/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Fieldset/Element.php index 23838b7ba46..336dffa464f 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Fieldset/Element.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Fieldset/Element.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg.php b/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg.php index a0fbf71e627..f84bb841c32 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg/Content.php b/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg/Content.php index ac8cb91222f..dda3bb7831f 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg/Content.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg/Content.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product.php b/app/code/Magento/Catalog/Block/Adminhtml/Product.php index 0c8cc28af9f..e9f364a3b94 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute.php index 5937d514484..432f84051d6 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Cancel.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Cancel.php index 7da24ff678b..4a6789df9ff 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Cancel.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Cancel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Attribute\Button; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Generic.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Generic.php index 7cbc9456355..0db37e31746 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Generic.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Generic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Attribute\Button; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Save.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Save.php index 7c6957f46ad..a5e9bba21c2 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Save.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Attribute\Button; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/SaveInNewAttributeSet.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/SaveInNewAttributeSet.php index 8592d8142f3..8265b301d46 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/SaveInNewAttributeSet.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/SaveInNewAttributeSet.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Attribute\Button; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit.php index 83c59101b92..df12a4ff18e 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Form.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Form.php index 1e6540cbf68..b2109981650 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Form.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php index 156e7a6ff64..0a81b14a798 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Front.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Front.php index 0e4112d0aad..d21ed7aeb8b 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Front.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Front.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Main.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Main.php index 96fce038a9a..695dd644441 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Main.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Main.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php index c4c37e155cd..a74aeede5d1 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/System.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/System.php index 46c096a92aa..5ac107a9806 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/System.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/System.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tabs.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tabs.php index ab05f4b5c57..ba06f56ba3e 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tabs.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Grid.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Grid.php index 45c6bf0c169..1a74cfba769 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Grid.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Attributes.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Attributes.php index ff23ae75eb9..9f6fe7eecba 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Attributes.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main.php index a5ffc845b97..3cf474f13d4 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Attribute\Set; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formattribute.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formattribute.php index 0db5855d770..79d72771c4e 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formattribute.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formattribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formgroup.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formgroup.php index b87ba8692aa..ed39b35077d 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formgroup.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formgroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formset.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formset.php index 1167c72c163..0c74bb76955 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formset.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formset.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Attribute\Set\Main; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Attribute.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Attribute.php index 24f3553d880..2305025c07b 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Attribute.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Group.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Group.php index 3f2dd6f3682..72af9e6db55 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Group.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Add.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Add.php index fb44fb0f580..bb65ef3b6da 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Add.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Add.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main.php index 6e9670142d8..e5cd18983ff 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main/Filter.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main/Filter.php index 7b86109e9f2..a5ada77b1df 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main/Filter.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main/Filter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Configure.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Configure.php index 27f3d0ad540..9f1d1cc60eb 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Configure.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Configure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Error.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Error.php index ffec1fe4927..d1224c13ec5 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Error.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Error.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset.php index 427137c4290..408efd149eb 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Options.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Options.php index a3e72ff8b06..7f6cfbf9a2b 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Options.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Qty.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Qty.php index 2ec44170bba..4df3398aef5 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Qty.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Qty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Update/Result.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Update/Result.php index be658ecbbf9..38049625040 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Update/Result.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Update/Result.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit.php index a253b2c7c7a..9e87b4fb229 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute.php index 35069f4cd4c..c3be47fa25b 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php index 133fda51408..b9ef48f8185 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Inventory.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Inventory.php index 2caefa1ec0a..e70bd1ed139 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Inventory.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Inventory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Action\Attribute\Tab; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Websites.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Websites.php index f520ea299a2..aa18df51b37 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Websites.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Websites.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tabs.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tabs.php index eae68d07438..f9cadd749a0 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tabs.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Action\Attribute; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/AttributeSet.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/AttributeSet.php index c10a1a6e15f..cb14417c12d 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/AttributeSet.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/AttributeSet.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/AddAttribute.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/AddAttribute.php index 89565f6a00e..7156d70fac2 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/AddAttribute.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/AddAttribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Back.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Back.php index 940a589210c..d5e8a7b604b 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Back.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Back.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/CreateCategory.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/CreateCategory.php index e8c11f87b8d..69093480448 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/CreateCategory.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/CreateCategory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Generic.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Generic.php index 7966ed890cd..8bea06a870c 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Generic.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Generic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Save.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Save.php index bb682454aab..00e76a7e992 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Save.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Js.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Js.php index f31d6dbb2ec..07f5946caf9 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Js.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Js.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/NewCategory.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/NewCategory.php index 34eb304eac7..f93eb87e678 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/NewCategory.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/NewCategory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Ajax/Serializer.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Ajax/Serializer.php index d094434c8c0..f93eaa19599 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Ajax/Serializer.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Ajax/Serializer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Tab\Ajax; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts.php index b6746106aea..c76835456bf 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Price.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Price.php index 357f114f4ed..5c1571992db 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Price.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Stock.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Stock.php index 94bd57553df..23492d6d16f 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Stock.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php index ad8923eb829..c9e972ca5f5 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Create.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Create.php index 2e0ae37df2a..766fa57ef9a 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Create.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Create.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Search.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Search.php index 9e857de3768..42559e8b977 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Search.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Search.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/ChildTab.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/ChildTab.php index 5448c8b9664..f34657a94b2 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/ChildTab.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/ChildTab.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Crosssell.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Crosssell.php index 8199d96fe6f..bb8f1054956 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Crosssell.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Crosssell.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Inventory.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Inventory.php index 20ef3a281d7..315f7cd63fe 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Inventory.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Inventory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Tab; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options.php index 2a758b7a95f..f6e3621de24 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Option.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Option.php index 1a5e5e219e7..859009d277e 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Option.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Popup/Grid.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Popup/Grid.php index 6386bb12df1..6257d8cee87 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Popup/Grid.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Popup/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/AbstractType.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/AbstractType.php index c5e22cd8998..7bbaadb74cc 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/AbstractType.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/AbstractType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Date.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Date.php index c19e810e424..673eaa2bded 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Date.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Date.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/File.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/File.php index ee5a562bee9..393b4dfd808 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/File.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Select.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Select.php index 599d0faadf7..478a1bde91d 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Select.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Text.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Text.php index 91305b78903..f88b60902af 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Text.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Text.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price.php index 37190924d6c..a23730aa266 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Group/AbstractGroup.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Group/AbstractGroup.php index 931bc391f0f..d863fab4ab2 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Group/AbstractGroup.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Group/AbstractGroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Tab\Price\Group; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Tier.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Tier.php index 9b5d04e0653..f69a0c4e627 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Tier.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Tier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Edit\Tab\Price; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Related.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Related.php index f87028f6d6e..b4b5d36e7b0 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Related.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Related.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Upsell.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Upsell.php index 9a9997a5efa..70770445424 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Upsell.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Upsell.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Websites.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Websites.php index a726eb6ddac..825c884377c 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Websites.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Websites.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tabs.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tabs.php index b72da44b72a..4b0a8b744b5 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tabs.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Frontend/Product/Watermark.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Frontend/Product/Watermark.php index d1c3be179ea..b2ce88782df 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Frontend/Product/Watermark.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Frontend/Product/Watermark.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Grid.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Grid.php index f04d5a436e2..7902f45ad46 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Grid.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Apply.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Apply.php index 227d08d0a04..3d70d0a94fe 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Apply.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Apply.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Boolean.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Boolean.php index 5d91d2fcd1a..d8eb5451da8 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Boolean.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Boolean.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Product\Helper\Form; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Category.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Category.php index 64ff3ec265b..cde6e6af445 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Category.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Config.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Config.php index 0746c5dead0..64a588b925a 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Config.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery.php index 4b357965622..8a6afc1c3d2 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery/Content.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery/Content.php index 041ef49ba7f..62a3f26e01f 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery/Content.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery/Content.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Image.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Image.php index 8fc1e26f0cb..03ccd413535 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Image.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Price.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Price.php index 6fb2ac1b2f4..418231954f0 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Price.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Weight.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Weight.php index c7228e9bb1f..fbc05002ebd 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Weight.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Weight.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Options/Ajax.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Options/Ajax.php index d6018252c4f..ed4183a3331 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Options/Ajax.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Options/Ajax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Price.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Price.php index 30a574ea64b..3e5aa2951c4 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Price.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser.php index ee6d75ff927..7c0f74ed7d7 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser/Container.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser/Container.php index 0aa3957783f..5c761d010f4 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser/Container.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser/Container.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Rss/Grid/Link.php b/app/code/Magento/Catalog/Block/Adminhtml/Rss/Grid/Link.php index 2b25eafa9ed..2cb5fea8eed 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Rss/Grid/Link.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Rss/Grid/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Rss\Grid; diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Rss/NotifyStock.php b/app/code/Magento/Catalog/Block/Adminhtml/Rss/NotifyStock.php index d5b577e09ec..9329f95a5e5 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Rss/NotifyStock.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Rss/NotifyStock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Adminhtml\Rss; diff --git a/app/code/Magento/Catalog/Block/Breadcrumbs.php b/app/code/Magento/Catalog/Block/Breadcrumbs.php index 2997399ec2c..beab87143f2 100644 --- a/app/code/Magento/Catalog/Block/Breadcrumbs.php +++ b/app/code/Magento/Catalog/Block/Breadcrumbs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Category/Plugin/PriceBoxTags.php b/app/code/Magento/Catalog/Block/Category/Plugin/PriceBoxTags.php index aed1624b955..e16485fc342 100644 --- a/app/code/Magento/Catalog/Block/Category/Plugin/PriceBoxTags.php +++ b/app/code/Magento/Catalog/Block/Category/Plugin/PriceBoxTags.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Category/Rss/Link.php b/app/code/Magento/Catalog/Block/Category/Rss/Link.php index 8502269a6ef..34a20ecb87a 100644 --- a/app/code/Magento/Catalog/Block/Category/Rss/Link.php +++ b/app/code/Magento/Catalog/Block/Category/Rss/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Category\Rss; diff --git a/app/code/Magento/Catalog/Block/Category/View.php b/app/code/Magento/Catalog/Block/Category/View.php index 87d2d315549..9d77fe4e696 100644 --- a/app/code/Magento/Catalog/Block/Category/View.php +++ b/app/code/Magento/Catalog/Block/Category/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Category; diff --git a/app/code/Magento/Catalog/Block/Navigation.php b/app/code/Magento/Catalog/Block/Navigation.php index 22fd41ece20..8e54e08e4ce 100644 --- a/app/code/Magento/Catalog/Block/Navigation.php +++ b/app/code/Magento/Catalog/Block/Navigation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/AbstractProduct.php b/app/code/Magento/Catalog/Block/Product/AbstractProduct.php index f1bb89d4424..c10bc32f18b 100644 --- a/app/code/Magento/Catalog/Block/Product/AbstractProduct.php +++ b/app/code/Magento/Catalog/Block/Product/AbstractProduct.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product; diff --git a/app/code/Magento/Catalog/Block/Product/AwareInterface.php b/app/code/Magento/Catalog/Block/Product/AwareInterface.php index de956407553..deec15b976b 100644 --- a/app/code/Magento/Catalog/Block/Product/AwareInterface.php +++ b/app/code/Magento/Catalog/Block/Product/AwareInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product; diff --git a/app/code/Magento/Catalog/Block/Product/Compare/ListCompare.php b/app/code/Magento/Catalog/Block/Product/Compare/ListCompare.php index 81f0f63b8b0..a693d85fbc9 100644 --- a/app/code/Magento/Catalog/Block/Product/Compare/ListCompare.php +++ b/app/code/Magento/Catalog/Block/Product/Compare/ListCompare.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/Context.php b/app/code/Magento/Catalog/Block/Product/Context.php index 1b21a065877..e8b01e4eb89 100644 --- a/app/code/Magento/Catalog/Block/Product/Context.php +++ b/app/code/Magento/Catalog/Block/Product/Context.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product; diff --git a/app/code/Magento/Catalog/Block/Product/Gallery.php b/app/code/Magento/Catalog/Block/Product/Gallery.php index a5d4cd6016c..a7b48c7254d 100644 --- a/app/code/Magento/Catalog/Block/Product/Gallery.php +++ b/app/code/Magento/Catalog/Block/Product/Gallery.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/Image.php b/app/code/Magento/Catalog/Block/Product/Image.php index ff1b29e7a78..84699549064 100644 --- a/app/code/Magento/Catalog/Block/Product/Image.php +++ b/app/code/Magento/Catalog/Block/Product/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product; diff --git a/app/code/Magento/Catalog/Block/Product/ImageBuilder.php b/app/code/Magento/Catalog/Block/Product/ImageBuilder.php index 32f07f70a13..8d2068ef254 100644 --- a/app/code/Magento/Catalog/Block/Product/ImageBuilder.php +++ b/app/code/Magento/Catalog/Block/Product/ImageBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product; diff --git a/app/code/Magento/Catalog/Block/Product/ListProduct.php b/app/code/Magento/Catalog/Block/Product/ListProduct.php index a78221cbd9a..1d0673db703 100644 --- a/app/code/Magento/Catalog/Block/Product/ListProduct.php +++ b/app/code/Magento/Catalog/Block/Product/ListProduct.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/NewProduct.php b/app/code/Magento/Catalog/Block/Product/NewProduct.php index 73a9df1bf38..11bb639ac2a 100644 --- a/app/code/Magento/Catalog/Block/Product/NewProduct.php +++ b/app/code/Magento/Catalog/Block/Product/NewProduct.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product; diff --git a/app/code/Magento/Catalog/Block/Product/Price.php b/app/code/Magento/Catalog/Block/Product/Price.php index 4186cca0210..f028a261e05 100644 --- a/app/code/Magento/Catalog/Block/Product/Price.php +++ b/app/code/Magento/Catalog/Block/Product/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Crosssell.php b/app/code/Magento/Catalog/Block/Product/ProductList/Crosssell.php index 939edaef36b..2785a33c83b 100644 --- a/app/code/Magento/Catalog/Block/Product/ProductList/Crosssell.php +++ b/app/code/Magento/Catalog/Block/Product/ProductList/Crosssell.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Item/AddTo/Compare.php b/app/code/Magento/Catalog/Block/Product/ProductList/Item/AddTo/Compare.php index cadbd8f3083..e58c38e5a36 100644 --- a/app/code/Magento/Catalog/Block/Product/ProductList/Item/AddTo/Compare.php +++ b/app/code/Magento/Catalog/Block/Product/ProductList/Item/AddTo/Compare.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product\ProductList\Item\AddTo; diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Item/Block.php b/app/code/Magento/Catalog/Block/Product/ProductList/Item/Block.php index c2fdd87aa6a..3bc2b85dff5 100644 --- a/app/code/Magento/Catalog/Block/Product/ProductList/Item/Block.php +++ b/app/code/Magento/Catalog/Block/Product/ProductList/Item/Block.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product\ProductList\Item; diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Item/Container.php b/app/code/Magento/Catalog/Block/Product/ProductList/Item/Container.php index 003e1f05ccb..3d9c72b7825 100644 --- a/app/code/Magento/Catalog/Block/Product/ProductList/Item/Container.php +++ b/app/code/Magento/Catalog/Block/Product/ProductList/Item/Container.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product\ProductList\Item; diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Promotion.php b/app/code/Magento/Catalog/Block/Product/ProductList/Promotion.php index 7f1e6f8e025..c6176bce8a0 100644 --- a/app/code/Magento/Catalog/Block/Product/ProductList/Promotion.php +++ b/app/code/Magento/Catalog/Block/Product/ProductList/Promotion.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product\ProductList; diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Random.php b/app/code/Magento/Catalog/Block/Product/ProductList/Random.php index 3fdad6c03ba..33de21dfc0b 100644 --- a/app/code/Magento/Catalog/Block/Product/ProductList/Random.php +++ b/app/code/Magento/Catalog/Block/Product/ProductList/Random.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product\ProductList; diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Related.php b/app/code/Magento/Catalog/Block/Product/ProductList/Related.php index 046596e6d5b..7228e50f964 100644 --- a/app/code/Magento/Catalog/Block/Product/ProductList/Related.php +++ b/app/code/Magento/Catalog/Block/Product/ProductList/Related.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Toolbar.php b/app/code/Magento/Catalog/Block/Product/ProductList/Toolbar.php index 857c7941501..280e1bdaa91 100644 --- a/app/code/Magento/Catalog/Block/Product/ProductList/Toolbar.php +++ b/app/code/Magento/Catalog/Block/Product/ProductList/Toolbar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product\ProductList; diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Upsell.php b/app/code/Magento/Catalog/Block/Product/ProductList/Upsell.php index 7d66100bd6a..a08b1a1bf66 100644 --- a/app/code/Magento/Catalog/Block/Product/ProductList/Upsell.php +++ b/app/code/Magento/Catalog/Block/Product/ProductList/Upsell.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/ReviewRenderer/DefaultProvider.php b/app/code/Magento/Catalog/Block/Product/ReviewRenderer/DefaultProvider.php index b90d94b88ae..9008e1b0c70 100644 --- a/app/code/Magento/Catalog/Block/Product/ReviewRenderer/DefaultProvider.php +++ b/app/code/Magento/Catalog/Block/Product/ReviewRenderer/DefaultProvider.php @@ -2,7 +2,7 @@ /** * Default implementation of product review service provider * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product\ReviewRenderer; diff --git a/app/code/Magento/Catalog/Block/Product/ReviewRendererInterface.php b/app/code/Magento/Catalog/Block/Product/ReviewRendererInterface.php index a32d52d4b3a..0e90f9d581a 100644 --- a/app/code/Magento/Catalog/Block/Product/ReviewRendererInterface.php +++ b/app/code/Magento/Catalog/Block/Product/ReviewRendererInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/TemplateSelector.php b/app/code/Magento/Catalog/Block/Product/TemplateSelector.php index f16a31fa617..b15d765e478 100644 --- a/app/code/Magento/Catalog/Block/Product/TemplateSelector.php +++ b/app/code/Magento/Catalog/Block/Product/TemplateSelector.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product; diff --git a/app/code/Magento/Catalog/Block/Product/View.php b/app/code/Magento/Catalog/Block/Product/View.php index 964a444a0ae..72f1009d115 100644 --- a/app/code/Magento/Catalog/Block/Product/View.php +++ b/app/code/Magento/Catalog/Block/Product/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product; diff --git a/app/code/Magento/Catalog/Block/Product/View/AbstractView.php b/app/code/Magento/Catalog/Block/Product/View/AbstractView.php index c8cc393c660..5daaff14ed7 100644 --- a/app/code/Magento/Catalog/Block/Product/View/AbstractView.php +++ b/app/code/Magento/Catalog/Block/Product/View/AbstractView.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/AddTo/Compare.php b/app/code/Magento/Catalog/Block/Product/View/AddTo/Compare.php index 40638734035..8d5fbb246b3 100644 --- a/app/code/Magento/Catalog/Block/Product/View/AddTo/Compare.php +++ b/app/code/Magento/Catalog/Block/Product/View/AddTo/Compare.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Additional.php b/app/code/Magento/Catalog/Block/Product/View/Additional.php index 13d68910c01..464cf55aeb4 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Additional.php +++ b/app/code/Magento/Catalog/Block/Product/View/Additional.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Attributes.php b/app/code/Magento/Catalog/Block/Product/View/Attributes.php index e029e8f1aac..4fb047d7a92 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Attributes.php +++ b/app/code/Magento/Catalog/Block/Product/View/Attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/BaseImage.php b/app/code/Magento/Catalog/Block/Product/View/BaseImage.php index 4b9470798df..6c73174d9f9 100644 --- a/app/code/Magento/Catalog/Block/Product/View/BaseImage.php +++ b/app/code/Magento/Catalog/Block/Product/View/BaseImage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product\View; diff --git a/app/code/Magento/Catalog/Block/Product/View/Description.php b/app/code/Magento/Catalog/Block/Product/View/Description.php index 3e128f16e82..f9595198ada 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Description.php +++ b/app/code/Magento/Catalog/Block/Product/View/Description.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Gallery.php b/app/code/Magento/Catalog/Block/Product/View/Gallery.php index 97909ffaa88..ca2a62c291e 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Gallery.php +++ b/app/code/Magento/Catalog/Block/Product/View/Gallery.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Options.php b/app/code/Magento/Catalog/Block/Product/View/Options.php index 349352513be..5f045fdacfc 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Options.php +++ b/app/code/Magento/Catalog/Block/Product/View/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/AbstractOptions.php b/app/code/Magento/Catalog/Block/Product/View/Options/AbstractOptions.php index 3cd9ca69cec..d48f09dfa63 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Options/AbstractOptions.php +++ b/app/code/Magento/Catalog/Block/Product/View/Options/AbstractOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/Type/Date.php b/app/code/Magento/Catalog/Block/Product/View/Options/Type/Date.php index f0e89377408..dc77ca29108 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Options/Type/Date.php +++ b/app/code/Magento/Catalog/Block/Product/View/Options/Type/Date.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product\View\Options\Type; diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/Type/DefaultType.php b/app/code/Magento/Catalog/Block/Product/View/Options/Type/DefaultType.php index 8eebc633c32..f86863b15ec 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Options/Type/DefaultType.php +++ b/app/code/Magento/Catalog/Block/Product/View/Options/Type/DefaultType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/Type/File.php b/app/code/Magento/Catalog/Block/Product/View/Options/Type/File.php index d75d47d4a54..0ddb7647741 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Options/Type/File.php +++ b/app/code/Magento/Catalog/Block/Product/View/Options/Type/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/Type/Select.php b/app/code/Magento/Catalog/Block/Product/View/Options/Type/Select.php index ca8e2daf132..ab882da3b25 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Options/Type/Select.php +++ b/app/code/Magento/Catalog/Block/Product/View/Options/Type/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/Type/Text.php b/app/code/Magento/Catalog/Block/Product/View/Options/Type/Text.php index 54663754eb5..28c234a964d 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Options/Type/Text.php +++ b/app/code/Magento/Catalog/Block/Product/View/Options/Type/Text.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Price.php b/app/code/Magento/Catalog/Block/Product/View/Price.php index 0f684c7d848..af47b6f94ba 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Price.php +++ b/app/code/Magento/Catalog/Block/Product/View/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Tabs.php b/app/code/Magento/Catalog/Block/Product/View/Tabs.php index c20d35c5834..2e2c17fd2ae 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Tabs.php +++ b/app/code/Magento/Catalog/Block/Product/View/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Type/Simple.php b/app/code/Magento/Catalog/Block/Product/View/Type/Simple.php index 952c4b47baa..56c9136c327 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Type/Simple.php +++ b/app/code/Magento/Catalog/Block/Product/View/Type/Simple.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/View/Type/Virtual.php b/app/code/Magento/Catalog/Block/Product/View/Type/Virtual.php index 1f4934aa521..ea777c2b892 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Type/Virtual.php +++ b/app/code/Magento/Catalog/Block/Product/View/Type/Virtual.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/Widget/Html/Pager.php b/app/code/Magento/Catalog/Block/Product/Widget/Html/Pager.php index f806da36211..111a650bd4c 100644 --- a/app/code/Magento/Catalog/Block/Product/Widget/Html/Pager.php +++ b/app/code/Magento/Catalog/Block/Product/Widget/Html/Pager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Block/Product/Widget/NewWidget.php b/app/code/Magento/Catalog/Block/Product/Widget/NewWidget.php index 61985c2cb1b..b8fdfbc9c9c 100644 --- a/app/code/Magento/Catalog/Block/Product/Widget/NewWidget.php +++ b/app/code/Magento/Catalog/Block/Product/Widget/NewWidget.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Product\Widget; diff --git a/app/code/Magento/Catalog/Block/Rss/Category.php b/app/code/Magento/Catalog/Block/Rss/Category.php index 4cf0962b962..90c42be1c18 100644 --- a/app/code/Magento/Catalog/Block/Rss/Category.php +++ b/app/code/Magento/Catalog/Block/Rss/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Rss; diff --git a/app/code/Magento/Catalog/Block/Rss/Product/NewProducts.php b/app/code/Magento/Catalog/Block/Rss/Product/NewProducts.php index a7ff6fadf2e..d0b61db43f1 100644 --- a/app/code/Magento/Catalog/Block/Rss/Product/NewProducts.php +++ b/app/code/Magento/Catalog/Block/Rss/Product/NewProducts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Rss\Product; diff --git a/app/code/Magento/Catalog/Block/Rss/Product/Special.php b/app/code/Magento/Catalog/Block/Rss/Product/Special.php index 3aa9f267557..df1db9fecc3 100644 --- a/app/code/Magento/Catalog/Block/Rss/Product/Special.php +++ b/app/code/Magento/Catalog/Block/Rss/Product/Special.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block\Rss\Product; diff --git a/app/code/Magento/Catalog/Block/ShortcutButtons.php b/app/code/Magento/Catalog/Block/ShortcutButtons.php index b0d299e3e84..525f154d5a1 100644 --- a/app/code/Magento/Catalog/Block/ShortcutButtons.php +++ b/app/code/Magento/Catalog/Block/ShortcutButtons.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block; diff --git a/app/code/Magento/Catalog/Block/ShortcutInterface.php b/app/code/Magento/Catalog/Block/ShortcutInterface.php index 9e6a16cbbee..0630e233350 100644 --- a/app/code/Magento/Catalog/Block/ShortcutInterface.php +++ b/app/code/Magento/Catalog/Block/ShortcutInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Block; diff --git a/app/code/Magento/Catalog/Block/Widget/Link.php b/app/code/Magento/Catalog/Block/Widget/Link.php index 0f205f0e222..f10666c1ebd 100644 --- a/app/code/Magento/Catalog/Block/Widget/Link.php +++ b/app/code/Magento/Catalog/Block/Widget/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Console/Command/ImagesResizeCommand.php b/app/code/Magento/Catalog/Console/Command/ImagesResizeCommand.php index fdddb048cb6..875801f95ca 100644 --- a/app/code/Magento/Catalog/Console/Command/ImagesResizeCommand.php +++ b/app/code/Magento/Catalog/Console/Command/ImagesResizeCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Console\Command; diff --git a/app/code/Magento/Catalog/Console/Command/ProductAttributesCleanUp.php b/app/code/Magento/Catalog/Console/Command/ProductAttributesCleanUp.php index a0667abbf46..2a20566a8e0 100644 --- a/app/code/Magento/Catalog/Console/Command/ProductAttributesCleanUp.php +++ b/app/code/Magento/Catalog/Console/Command/ProductAttributesCleanUp.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Console\Command; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category.php index 071ba902f4f..6c42a7b2870 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Add.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Add.php index 663bf6a5b09..29ffcdf1682 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Add.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Add.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/CategoriesJson.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/CategoriesJson.php index 1bad378d089..4ae7bcb1c2b 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/CategoriesJson.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/CategoriesJson.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Delete.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Delete.php index b202ed182ae..ee104411291 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Delete.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Edit.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Edit.php index 847499901cc..d97a2833787 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Edit.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Grid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Grid.php index 4b2fa125ac1..0eef32b191a 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Grid.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Image/Upload.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Image/Upload.php index 25bd24ef70b..f92c9b0c8b0 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Image/Upload.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Image/Upload.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category\Image; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Index.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Index.php index 5640873acbd..7c02a5daa5d 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Index.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Move.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Move.php index 07f84ae0a39..50d5af5b43d 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Move.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Move.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/RefreshPath.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/RefreshPath.php index 4202d210895..f8aa64e6bdc 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/RefreshPath.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/RefreshPath.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Save.php index fa29d46c615..f4f0154e0de 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Save.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/SuggestCategories.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/SuggestCategories.php index 9ab7e84cead..2e34cf244ef 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/SuggestCategories.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/SuggestCategories.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Tree.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Tree.php index 339699e5fd5..a20ff88376f 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Tree.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Tree.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Validate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Validate.php index 4b4b1738533..60dcb98c535 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Validate.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Validate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget.php index 643300cc95b..8c63f356803 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/CategoriesJson.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/CategoriesJson.php index 8e101f3a823..b3f688951cb 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/CategoriesJson.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/CategoriesJson.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category\Widget; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/Chooser.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/Chooser.php index e06d6c4fab2..cc573f1f48d 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/Chooser.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/Chooser.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category\Widget; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Wysiwyg.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Wysiwyg.php index 81e8a03b9e6..6c471fad909 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Wysiwyg.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Wysiwyg.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product.php index 46f256864c0..c001db4d979 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AbstractProductGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AbstractProductGrid.php index 72e0f6aba0d..ea927688090 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AbstractProductGrid.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AbstractProductGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute.php index 5ad7057e48f..35733ad6294 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Edit.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Edit.php index 38216ef98d2..5069c290671 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Edit.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Action\Attribute; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php index e4ad1959214..e04d71b99cb 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Action\Attribute; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Validate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Validate.php index 803e2672f42..51855cf0618 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Validate.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Validate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Action\Attribute; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AddAttributeToTemplate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AddAttributeToTemplate.php index c338937ae1b..5dcacdf35da 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AddAttributeToTemplate.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AddAttributeToTemplate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsPriceGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsPriceGrid.php index 7a0190d99db..3b370edc270 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsPriceGrid.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsPriceGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsStockGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsStockGrid.php index 2d93702e32c..b96037aa0d7 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsStockGrid.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsStockGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute.php index 5bc68860a1b..cc7aaa7289b 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Delete.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Delete.php index 76e86dc6bfd..22188360151 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Delete.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Edit.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Edit.php index e308055a441..7578f7d5a34 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Edit.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Index.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Index.php index b30d8aa3039..e80dc3ed7ac 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Index.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/NewAction.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/NewAction.php index f55c578be09..9c2dddd8387 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/NewAction.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Save.php index 79346dfc5de..acd9cb9e717 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Save.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Validate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Validate.php index ae5da4e6261..fdd53584e60 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Validate.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Validate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Builder.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Builder.php index 6915209d4d8..1eb4a15d995 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Builder.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Builder.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Categories.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Categories.php index ab402dc1850..d9a6a927997 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Categories.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Categories.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Crosssell.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Crosssell.php index 8fafe82f171..8d21f404e6c 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Crosssell.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Crosssell.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/CrosssellGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/CrosssellGrid.php index 31d12b8f978..6d0e34f2607 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/CrosssellGrid.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/CrosssellGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/CustomOptions.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/CustomOptions.php index 68d2f091f45..d137d79c0b7 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/CustomOptions.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/CustomOptions.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Datafeeds/Index.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Datafeeds/Index.php index 7defc07facc..98c3b36effb 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Datafeeds/Index.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Datafeeds/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Datafeeds; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Duplicate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Duplicate.php index 4232416e808..17c7ec9f272 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Duplicate.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Duplicate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Edit.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Edit.php index 638120a1ecc..0b1df5ec4d1 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Edit.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Gallery/Upload.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Gallery/Upload.php index f03441b2fdd..3a8b2521c50 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Gallery/Upload.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Gallery/Upload.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Gallery; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Grid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Grid.php index c5dc30147a5..4de9e1b0164 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Grid.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/GridOnly.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/GridOnly.php index 297f083a99a..07bda43edd0 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/GridOnly.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/GridOnly.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Group/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Group/Save.php index 643d00ca66d..eb0968d08ca 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Group/Save.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Group/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Group; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Index.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Index.php index 924446b7565..fbc9d0a6a4e 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Index.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php index 4eed888b3cb..4e95ae4243b 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Initialization; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactory.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactory.php index f282df484b0..d720c26a8a9 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactory.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Initialization\Helper; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerInterface.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerInterface.php index 17d8d75511a..09f31e06745 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerInterface.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Initialization\Helper; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/Composite.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/Composite.php index 228b9b145d2..6220553d861 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/Composite.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/Composite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Initialization\Helper\Plugin\Handler; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/StockDataFilter.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/StockDataFilter.php index 805800c7bc2..82ec1726794 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/StockDataFilter.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/StockDataFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Initialization; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassDelete.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassDelete.php index 438b2ca6e38..6debde1def4 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassDelete.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassDelete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassStatus.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassStatus.php index 43114cb83ad..b694bfc39a7 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassStatus.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassStatus.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/NewAction.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/NewAction.php index a5153a73426..62fc127b43a 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/NewAction.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Options.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Options.php index b7c0cb22324..60482fd1c01 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Options.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Options.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/OptionsImportGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/OptionsImportGrid.php index 71e0131fa02..f720f50e500 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/OptionsImportGrid.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/OptionsImportGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Related.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Related.php index e0c1ea2db8d..3d99c592d00 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Related.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Related.php @@ -2,7 +2,7 @@ /** * Get related products grid and serializer block * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/RelatedGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/RelatedGrid.php index e8ef6a41e17..f0828f8455c 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/RelatedGrid.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/RelatedGrid.php @@ -2,7 +2,7 @@ /** * Get related products grid * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Reload.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Reload.php index 0c8d614c67f..85a5f5f94ff 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Reload.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Reload.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Save.php index 4dfd0fdb901..53bef748d68 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Save.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set.php index a5da975c6aa..ed079058b4c 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Add.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Add.php index 48f5126f2ce..3da9e6d2520 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Add.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Add.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Set; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Delete.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Delete.php index 5e11050c6b6..46a6e608659 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Delete.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Set; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Edit.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Edit.php index 10b263bee33..ac3437cb408 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Edit.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Set; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Index.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Index.php index 53760b657a9..d5853c10685 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Index.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Set; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Save.php index 6e432447263..4f9d209de23 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Save.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Set; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/SetGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/SetGrid.php index c0f7246f334..b9226a622f5 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/SetGrid.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/SetGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Set; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/ShowUpdateResult.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/ShowUpdateResult.php index 343ebf4656b..1dec1e54815 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/ShowUpdateResult.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/ShowUpdateResult.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributeSets.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributeSets.php index 7a2e30cd58f..cbc1c0f0575 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributeSets.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributeSets.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributes.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributes.php index 08369f7642a..b142d6f39c3 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributes.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributes.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Upsell.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Upsell.php index f6275b3a813..101c664028e 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Upsell.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Upsell.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/UpsellGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/UpsellGrid.php index 820e45f933c..9e5e819b8d3 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/UpsellGrid.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/UpsellGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Validate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Validate.php index ca15faa9907..3f694e705e8 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Validate.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Validate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Widget/Chooser.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Widget/Chooser.php index b1281c8b03d..6985b694faf 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Widget/Chooser.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Widget/Chooser.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Widget; diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Wysiwyg.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Wysiwyg.php index 3abc4f43ed5..b5220026efa 100644 --- a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Wysiwyg.php +++ b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Wysiwyg.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Controller/Category/View.php b/app/code/Magento/Catalog/Controller/Category/View.php index 9cdb6cc99d3..7eafef598c0 100644 --- a/app/code/Magento/Catalog/Controller/Category/View.php +++ b/app/code/Magento/Catalog/Controller/Category/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Category; diff --git a/app/code/Magento/Catalog/Controller/Index/Index.php b/app/code/Magento/Catalog/Controller/Index/Index.php index 7512affdef3..4b83aee1a06 100644 --- a/app/code/Magento/Catalog/Controller/Index/Index.php +++ b/app/code/Magento/Catalog/Controller/Index/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Index; diff --git a/app/code/Magento/Catalog/Controller/Product.php b/app/code/Magento/Catalog/Controller/Product.php index 215976917e6..74828d001e5 100644 --- a/app/code/Magento/Catalog/Controller/Product.php +++ b/app/code/Magento/Catalog/Controller/Product.php @@ -2,7 +2,7 @@ /** * Product controller. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller; diff --git a/app/code/Magento/Catalog/Controller/Product/Compare.php b/app/code/Magento/Catalog/Controller/Product/Compare.php index 22f20d0900a..d92c3ef9047 100644 --- a/app/code/Magento/Catalog/Controller/Product/Compare.php +++ b/app/code/Magento/Catalog/Controller/Product/Compare.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Product; diff --git a/app/code/Magento/Catalog/Controller/Product/Compare/Add.php b/app/code/Magento/Catalog/Controller/Product/Compare/Add.php index d9a257273e1..5ae6f28f75d 100644 --- a/app/code/Magento/Catalog/Controller/Product/Compare/Add.php +++ b/app/code/Magento/Catalog/Controller/Product/Compare/Add.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Product\Compare; diff --git a/app/code/Magento/Catalog/Controller/Product/Compare/Clear.php b/app/code/Magento/Catalog/Controller/Product/Compare/Clear.php index 8ca75e9ba5e..d326a4385a9 100644 --- a/app/code/Magento/Catalog/Controller/Product/Compare/Clear.php +++ b/app/code/Magento/Catalog/Controller/Product/Compare/Clear.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Product\Compare; diff --git a/app/code/Magento/Catalog/Controller/Product/Compare/Index.php b/app/code/Magento/Catalog/Controller/Product/Compare/Index.php index 50ee6ec95d0..3032ba04b93 100644 --- a/app/code/Magento/Catalog/Controller/Product/Compare/Index.php +++ b/app/code/Magento/Catalog/Controller/Product/Compare/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Product\Compare; diff --git a/app/code/Magento/Catalog/Controller/Product/Compare/Remove.php b/app/code/Magento/Catalog/Controller/Product/Compare/Remove.php index fb17d7c83dd..215991def9b 100644 --- a/app/code/Magento/Catalog/Controller/Product/Compare/Remove.php +++ b/app/code/Magento/Catalog/Controller/Product/Compare/Remove.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Product\Compare; diff --git a/app/code/Magento/Catalog/Controller/Product/Gallery.php b/app/code/Magento/Catalog/Controller/Product/Gallery.php index 5582e461132..bed1130c1de 100644 --- a/app/code/Magento/Catalog/Controller/Product/Gallery.php +++ b/app/code/Magento/Catalog/Controller/Product/Gallery.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Product; diff --git a/app/code/Magento/Catalog/Controller/Product/View.php b/app/code/Magento/Catalog/Controller/Product/View.php index 4b602bd24b3..afc40c85e17 100644 --- a/app/code/Magento/Catalog/Controller/Product/View.php +++ b/app/code/Magento/Catalog/Controller/Product/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Product; diff --git a/app/code/Magento/Catalog/Controller/Product/View/ViewInterface.php b/app/code/Magento/Catalog/Controller/Product/View/ViewInterface.php index c622f991801..000dd3c999e 100644 --- a/app/code/Magento/Catalog/Controller/Product/View/ViewInterface.php +++ b/app/code/Magento/Catalog/Controller/Product/View/ViewInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Cron/DeleteAbandonedStoreFlatTables.php b/app/code/Magento/Catalog/Cron/DeleteAbandonedStoreFlatTables.php index e0f703059e4..c036c4744d3 100644 --- a/app/code/Magento/Catalog/Cron/DeleteAbandonedStoreFlatTables.php +++ b/app/code/Magento/Catalog/Cron/DeleteAbandonedStoreFlatTables.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Cron; diff --git a/app/code/Magento/Catalog/Cron/RefreshSpecialPrices.php b/app/code/Magento/Catalog/Cron/RefreshSpecialPrices.php index e3a63e03673..5e04b026db3 100644 --- a/app/code/Magento/Catalog/Cron/RefreshSpecialPrices.php +++ b/app/code/Magento/Catalog/Cron/RefreshSpecialPrices.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Cron; diff --git a/app/code/Magento/Catalog/CustomerData/CompareProducts.php b/app/code/Magento/Catalog/CustomerData/CompareProducts.php index f13c984b718..75ad558643d 100644 --- a/app/code/Magento/Catalog/CustomerData/CompareProducts.php +++ b/app/code/Magento/Catalog/CustomerData/CompareProducts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\CustomerData; diff --git a/app/code/Magento/Catalog/Helper/Catalog.php b/app/code/Magento/Catalog/Helper/Catalog.php index a0937ecd2f7..f900f45eac0 100644 --- a/app/code/Magento/Catalog/Helper/Catalog.php +++ b/app/code/Magento/Catalog/Helper/Catalog.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper; diff --git a/app/code/Magento/Catalog/Helper/Category.php b/app/code/Magento/Catalog/Helper/Category.php index 41748069e53..b143befc5a2 100644 --- a/app/code/Magento/Catalog/Helper/Category.php +++ b/app/code/Magento/Catalog/Helper/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper; diff --git a/app/code/Magento/Catalog/Helper/Data.php b/app/code/Magento/Catalog/Helper/Data.php index 57534e6566a..4d1e2117e3f 100644 --- a/app/code/Magento/Catalog/Helper/Data.php +++ b/app/code/Magento/Catalog/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper; diff --git a/app/code/Magento/Catalog/Helper/DefaultCategory.php b/app/code/Magento/Catalog/Helper/DefaultCategory.php index 09ed16455a6..8c41918d0bb 100644 --- a/app/code/Magento/Catalog/Helper/DefaultCategory.php +++ b/app/code/Magento/Catalog/Helper/DefaultCategory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Helper/Image.php b/app/code/Magento/Catalog/Helper/Image.php index 6f13e9077f4..6fa3ec2adb7 100644 --- a/app/code/Magento/Catalog/Helper/Image.php +++ b/app/code/Magento/Catalog/Helper/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper; diff --git a/app/code/Magento/Catalog/Helper/Output.php b/app/code/Magento/Catalog/Helper/Output.php index 0b4b8a0dab9..a738b3fddfa 100644 --- a/app/code/Magento/Catalog/Helper/Output.php +++ b/app/code/Magento/Catalog/Helper/Output.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper; diff --git a/app/code/Magento/Catalog/Helper/Product.php b/app/code/Magento/Catalog/Helper/Product.php index 7d44bfadc9d..7b5f7fa71ff 100644 --- a/app/code/Magento/Catalog/Helper/Product.php +++ b/app/code/Magento/Catalog/Helper/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper; diff --git a/app/code/Magento/Catalog/Helper/Product/Compare.php b/app/code/Magento/Catalog/Helper/Product/Compare.php index 69f4a613a5b..592bfac5203 100644 --- a/app/code/Magento/Catalog/Helper/Product/Compare.php +++ b/app/code/Magento/Catalog/Helper/Product/Compare.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper\Product; diff --git a/app/code/Magento/Catalog/Helper/Product/Composite.php b/app/code/Magento/Catalog/Helper/Product/Composite.php index fcd710ad1ec..5e519540c78 100644 --- a/app/code/Magento/Catalog/Helper/Product/Composite.php +++ b/app/code/Magento/Catalog/Helper/Product/Composite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper\Product; diff --git a/app/code/Magento/Catalog/Helper/Product/Configuration.php b/app/code/Magento/Catalog/Helper/Product/Configuration.php index eb9e84afa84..e8bfac2d757 100644 --- a/app/code/Magento/Catalog/Helper/Product/Configuration.php +++ b/app/code/Magento/Catalog/Helper/Product/Configuration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper\Product; diff --git a/app/code/Magento/Catalog/Helper/Product/Configuration/ConfigurationInterface.php b/app/code/Magento/Catalog/Helper/Product/Configuration/ConfigurationInterface.php index 0e47bc998e4..26b4e9e1803 100644 --- a/app/code/Magento/Catalog/Helper/Product/Configuration/ConfigurationInterface.php +++ b/app/code/Magento/Catalog/Helper/Product/Configuration/ConfigurationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Helper/Product/ConfigurationPool.php b/app/code/Magento/Catalog/Helper/Product/ConfigurationPool.php index e8bcecbd731..056ea3edd8e 100644 --- a/app/code/Magento/Catalog/Helper/Product/ConfigurationPool.php +++ b/app/code/Magento/Catalog/Helper/Product/ConfigurationPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper\Product; diff --git a/app/code/Magento/Catalog/Helper/Product/Edit/Action/Attribute.php b/app/code/Magento/Catalog/Helper/Product/Edit/Action/Attribute.php index b863ce7ae9d..69bf45b9706 100644 --- a/app/code/Magento/Catalog/Helper/Product/Edit/Action/Attribute.php +++ b/app/code/Magento/Catalog/Helper/Product/Edit/Action/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Helper/Product/Flat/Indexer.php b/app/code/Magento/Catalog/Helper/Product/Flat/Indexer.php index 04167ea65f7..810b172eb78 100644 --- a/app/code/Magento/Catalog/Helper/Product/Flat/Indexer.php +++ b/app/code/Magento/Catalog/Helper/Product/Flat/Indexer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper\Product\Flat; diff --git a/app/code/Magento/Catalog/Helper/Product/ProductList.php b/app/code/Magento/Catalog/Helper/Product/ProductList.php index 9c818969e73..c215c5a4464 100644 --- a/app/code/Magento/Catalog/Helper/Product/ProductList.php +++ b/app/code/Magento/Catalog/Helper/Product/ProductList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Helper/Product/View.php b/app/code/Magento/Catalog/Helper/Product/View.php index 2f5ad7de00d..363e228d796 100644 --- a/app/code/Magento/Catalog/Helper/Product/View.php +++ b/app/code/Magento/Catalog/Helper/Product/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/AbstractModel.php b/app/code/Magento/Catalog/Model/AbstractModel.php index 40188c4efc9..ccaa5829cd7 100644 --- a/app/code/Magento/Catalog/Model/AbstractModel.php +++ b/app/code/Magento/Catalog/Model/AbstractModel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilter.php b/app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilter.php index 91c3d894354..d70ba62c1c3 100644 --- a/app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilter.php +++ b/app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Catalog/Model/Attribute/Backend/Customlayoutupdate.php b/app/code/Magento/Catalog/Model/Attribute/Backend/Customlayoutupdate.php index 29dadc3e595..eaffd88e81c 100644 --- a/app/code/Magento/Catalog/Model/Attribute/Backend/Customlayoutupdate.php +++ b/app/code/Magento/Catalog/Model/Attribute/Backend/Customlayoutupdate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Model/Attribute/Backend/Startdate.php b/app/code/Magento/Catalog/Model/Attribute/Backend/Startdate.php index 1140b395979..7f7fa8ba62a 100644 --- a/app/code/Magento/Catalog/Model/Attribute/Backend/Startdate.php +++ b/app/code/Magento/Catalog/Model/Attribute/Backend/Startdate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Model/Attribute/Config.php b/app/code/Magento/Catalog/Model/Attribute/Config.php index 1b939c9118c..4337bcb2a47 100644 --- a/app/code/Magento/Catalog/Model/Attribute/Config.php +++ b/app/code/Magento/Catalog/Model/Attribute/Config.php @@ -2,7 +2,7 @@ /** * High-level interface for catalog attributes data that hides format from the client code * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Attribute; diff --git a/app/code/Magento/Catalog/Model/Attribute/Config/Converter.php b/app/code/Magento/Catalog/Model/Attribute/Config/Converter.php index 0c9f79d7818..04b1bf72c92 100644 --- a/app/code/Magento/Catalog/Model/Attribute/Config/Converter.php +++ b/app/code/Magento/Catalog/Model/Attribute/Config/Converter.php @@ -2,7 +2,7 @@ /** * Converter of attributes configuration from \DOMDocument to array * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Attribute\Config; diff --git a/app/code/Magento/Catalog/Model/Attribute/Config/Data.php b/app/code/Magento/Catalog/Model/Attribute/Config/Data.php index 1fac4e58c75..831b7e211a9 100644 --- a/app/code/Magento/Catalog/Model/Attribute/Config/Data.php +++ b/app/code/Magento/Catalog/Model/Attribute/Config/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Attribute\Config; diff --git a/app/code/Magento/Catalog/Model/Attribute/Config/Reader.php b/app/code/Magento/Catalog/Model/Attribute/Config/Reader.php index 96b77ae923e..d5c6588bd16 100644 --- a/app/code/Magento/Catalog/Model/Attribute/Config/Reader.php +++ b/app/code/Magento/Catalog/Model/Attribute/Config/Reader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Attribute\Config; diff --git a/app/code/Magento/Catalog/Model/Attribute/Config/SchemaLocator.php b/app/code/Magento/Catalog/Model/Attribute/Config/SchemaLocator.php index 1c732ae4f33..87fd66406a2 100644 --- a/app/code/Magento/Catalog/Model/Attribute/Config/SchemaLocator.php +++ b/app/code/Magento/Catalog/Model/Attribute/Config/SchemaLocator.php @@ -2,7 +2,7 @@ /** * Attributes config schema locator * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Attribute\Config; diff --git a/app/code/Magento/Catalog/Model/Attribute/LockValidatorComposite.php b/app/code/Magento/Catalog/Model/Attribute/LockValidatorComposite.php index 3226182590e..46283836351 100644 --- a/app/code/Magento/Catalog/Model/Attribute/LockValidatorComposite.php +++ b/app/code/Magento/Catalog/Model/Attribute/LockValidatorComposite.php @@ -2,7 +2,7 @@ /** * Attribure lock state validator * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Attribute; diff --git a/app/code/Magento/Catalog/Model/Attribute/LockValidatorInterface.php b/app/code/Magento/Catalog/Model/Attribute/LockValidatorInterface.php index ff7f1c47f9c..a93f9283dd0 100644 --- a/app/code/Magento/Catalog/Model/Attribute/LockValidatorInterface.php +++ b/app/code/Magento/Catalog/Model/Attribute/LockValidatorInterface.php @@ -2,7 +2,7 @@ /** * Attribure lock state validator interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Attribute; diff --git a/app/code/Magento/Catalog/Model/Attribute/ScopeOverriddenValue.php b/app/code/Magento/Catalog/Model/Attribute/ScopeOverriddenValue.php index 968efb26a9f..692cfa1f784 100644 --- a/app/code/Magento/Catalog/Model/Attribute/ScopeOverriddenValue.php +++ b/app/code/Magento/Catalog/Model/Attribute/ScopeOverriddenValue.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Attribute/Source/Scopes.php b/app/code/Magento/Catalog/Model/Attribute/Source/Scopes.php index 3881dcf9eae..bf769dcd48c 100644 --- a/app/code/Magento/Catalog/Model/Attribute/Source/Scopes.php +++ b/app/code/Magento/Catalog/Model/Attribute/Source/Scopes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Attribute\Source; diff --git a/app/code/Magento/Catalog/Model/Category.php b/app/code/Magento/Catalog/Model/Category.php index 906718c64c6..0b02e075d43 100644 --- a/app/code/Magento/Catalog/Model/Category.php +++ b/app/code/Magento/Catalog/Model/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/Category/Attribute.php b/app/code/Magento/Catalog/Model/Category/Attribute.php index 51c3b87937c..94a108c063f 100644 --- a/app/code/Magento/Catalog/Model/Category/Attribute.php +++ b/app/code/Magento/Catalog/Model/Category/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category; diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Image.php b/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Image.php index 5e8589428fa..455a0060989 100644 --- a/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Image.php +++ b/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Sortby.php b/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Sortby.php index 516ce756dff..d18146ebae8 100644 --- a/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Sortby.php +++ b/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Sortby.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/OptionManagement.php b/app/code/Magento/Catalog/Model/Category/Attribute/OptionManagement.php index 540fcd1a665..1e5eaa03638 100644 --- a/app/code/Magento/Catalog/Model/Category/Attribute/OptionManagement.php +++ b/app/code/Magento/Catalog/Model/Category/Attribute/OptionManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category\Attribute; diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Layout.php b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Layout.php index b91ec5b99aa..bc6f062f506 100644 --- a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Layout.php +++ b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Layout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category\Attribute\Source; diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Mode.php b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Mode.php index 9b0f084600b..0a4f1574ebc 100644 --- a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Mode.php +++ b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Mode.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category\Attribute\Source; diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Page.php b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Page.php index 6b4c5505bc7..c22b5213d94 100644 --- a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Page.php +++ b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category\Attribute\Source; diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Sortby.php b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Sortby.php index fba0ef0721b..00c357982ca 100644 --- a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Sortby.php +++ b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Sortby.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category\Attribute\Source; diff --git a/app/code/Magento/Catalog/Model/Category/AttributeRepository.php b/app/code/Magento/Catalog/Model/Category/AttributeRepository.php index 3dc939c6cfb..6ac4c3599f9 100644 --- a/app/code/Magento/Catalog/Model/Category/AttributeRepository.php +++ b/app/code/Magento/Catalog/Model/Category/AttributeRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category; diff --git a/app/code/Magento/Catalog/Model/Category/DataProvider.php b/app/code/Magento/Catalog/Model/Category/DataProvider.php index 6ce2dd98f89..3718ce85e16 100644 --- a/app/code/Magento/Catalog/Model/Category/DataProvider.php +++ b/app/code/Magento/Catalog/Model/Category/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category; diff --git a/app/code/Magento/Catalog/Model/Category/FileInfo.php b/app/code/Magento/Catalog/Model/Category/FileInfo.php index 3e4d852e579..9a4c1f9f243 100644 --- a/app/code/Magento/Catalog/Model/Category/FileInfo.php +++ b/app/code/Magento/Catalog/Model/Category/FileInfo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category; diff --git a/app/code/Magento/Catalog/Model/Category/Link/ReadHandler.php b/app/code/Magento/Catalog/Model/Category/Link/ReadHandler.php index 6ac347cc1e4..4a76f0aea15 100644 --- a/app/code/Magento/Catalog/Model/Category/Link/ReadHandler.php +++ b/app/code/Magento/Catalog/Model/Category/Link/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category\Link; diff --git a/app/code/Magento/Catalog/Model/Category/Link/SaveHandler.php b/app/code/Magento/Catalog/Model/Category/Link/SaveHandler.php index ae68786bb07..d8c905d7878 100644 --- a/app/code/Magento/Catalog/Model/Category/Link/SaveHandler.php +++ b/app/code/Magento/Catalog/Model/Category/Link/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category\Link; diff --git a/app/code/Magento/Catalog/Model/Category/Tree.php b/app/code/Magento/Catalog/Model/Category/Tree.php index 4c97bc3d9c0..26422d96855 100644 --- a/app/code/Magento/Catalog/Model/Category/Tree.php +++ b/app/code/Magento/Catalog/Model/Category/Tree.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Category; diff --git a/app/code/Magento/Catalog/Model/CategoryLink.php b/app/code/Magento/Catalog/Model/CategoryLink.php index 3f5cd8b55a5..33770348ce8 100644 --- a/app/code/Magento/Catalog/Model/CategoryLink.php +++ b/app/code/Magento/Catalog/Model/CategoryLink.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/CategoryLinkManagement.php b/app/code/Magento/Catalog/Model/CategoryLinkManagement.php index 8df6a7d5a14..82f568921c4 100644 --- a/app/code/Magento/Catalog/Model/CategoryLinkManagement.php +++ b/app/code/Magento/Catalog/Model/CategoryLinkManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/CategoryLinkRepository.php b/app/code/Magento/Catalog/Model/CategoryLinkRepository.php index 9400d8d2d06..a7f4a95301a 100644 --- a/app/code/Magento/Catalog/Model/CategoryLinkRepository.php +++ b/app/code/Magento/Catalog/Model/CategoryLinkRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/CategoryList.php b/app/code/Magento/Catalog/Model/CategoryList.php index 7e701123e99..70666551ddf 100644 --- a/app/code/Magento/Catalog/Model/CategoryList.php +++ b/app/code/Magento/Catalog/Model/CategoryList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/CategoryManagement.php b/app/code/Magento/Catalog/Model/CategoryManagement.php index a9aa261f2a6..73a3b45f07f 100644 --- a/app/code/Magento/Catalog/Model/CategoryManagement.php +++ b/app/code/Magento/Catalog/Model/CategoryManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/CategoryProductLink.php b/app/code/Magento/Catalog/Model/CategoryProductLink.php index 33b18b232a9..853dc832fbd 100644 --- a/app/code/Magento/Catalog/Model/CategoryProductLink.php +++ b/app/code/Magento/Catalog/Model/CategoryProductLink.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/CategoryRepository.php b/app/code/Magento/Catalog/Model/CategoryRepository.php index e0af51adbd8..edba9f8a8fd 100644 --- a/app/code/Magento/Catalog/Model/CategoryRepository.php +++ b/app/code/Magento/Catalog/Model/CategoryRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Config.php b/app/code/Magento/Catalog/Model/Config.php index 70d11f2e282..afd2527507b 100644 --- a/app/code/Magento/Catalog/Model/Config.php +++ b/app/code/Magento/Catalog/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Config/Backend/Category.php b/app/code/Magento/Catalog/Model/Config/Backend/Category.php index 4bb345b33d3..2e1fcc2c42a 100644 --- a/app/code/Magento/Catalog/Model/Config/Backend/Category.php +++ b/app/code/Magento/Catalog/Model/Config/Backend/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Backend; diff --git a/app/code/Magento/Catalog/Model/Config/CatalogClone/Media/Image.php b/app/code/Magento/Catalog/Model/Config/CatalogClone/Media/Image.php index 54c5176c8d1..759be8aa030 100644 --- a/app/code/Magento/Catalog/Model/Config/CatalogClone/Media/Image.php +++ b/app/code/Magento/Catalog/Model/Config/CatalogClone/Media/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\CatalogClone\Media; diff --git a/app/code/Magento/Catalog/Model/Config/Source/Category.php b/app/code/Magento/Catalog/Model/Config/Source/Category.php index 1ac118b326c..ca6bc2409a7 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/Category.php +++ b/app/code/Magento/Catalog/Model/Config/Source/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source; diff --git a/app/code/Magento/Catalog/Model/Config/Source/GridPerPage.php b/app/code/Magento/Catalog/Model/Config/Source/GridPerPage.php index 954f7171c64..0fcd2409678 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/GridPerPage.php +++ b/app/code/Magento/Catalog/Model/Config/Source/GridPerPage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source; diff --git a/app/code/Magento/Catalog/Model/Config/Source/ListMode.php b/app/code/Magento/Catalog/Model/Config/Source/ListMode.php index 3d012e4bbda..35ae1d857aa 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/ListMode.php +++ b/app/code/Magento/Catalog/Model/Config/Source/ListMode.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source; diff --git a/app/code/Magento/Catalog/Model/Config/Source/ListPerPage.php b/app/code/Magento/Catalog/Model/Config/Source/ListPerPage.php index c7ff3654083..771d7cfd16f 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/ListPerPage.php +++ b/app/code/Magento/Catalog/Model/Config/Source/ListPerPage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source; diff --git a/app/code/Magento/Catalog/Model/Config/Source/ListSort.php b/app/code/Magento/Catalog/Model/Config/Source/ListSort.php index b116bcf7568..bd9dedd7e25 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/ListSort.php +++ b/app/code/Magento/Catalog/Model/Config/Source/ListSort.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Config/Source/Price/Scope.php b/app/code/Magento/Catalog/Model/Config/Source/Price/Scope.php index cf1cd291c01..baa6c269230 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/Price/Scope.php +++ b/app/code/Magento/Catalog/Model/Config/Source/Price/Scope.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source\Price; diff --git a/app/code/Magento/Catalog/Model/Config/Source/Price/Step.php b/app/code/Magento/Catalog/Model/Config/Source/Price/Step.php index 57c30c83bb3..064258cfa51 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/Price/Step.php +++ b/app/code/Magento/Catalog/Model/Config/Source/Price/Step.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source\Price; diff --git a/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Price.php b/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Price.php index b994c787bee..fa130df0d4c 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Price.php +++ b/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source\Product\Options; diff --git a/app/code/Magento/Catalog/Model/Config/Source/Product/Options/TierPrice.php b/app/code/Magento/Catalog/Model/Config/Source/Product/Options/TierPrice.php index d630f4890fc..ae3db1895b2 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/Product/Options/TierPrice.php +++ b/app/code/Magento/Catalog/Model/Config/Source/Product/Options/TierPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source\Product\Options; diff --git a/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Type.php b/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Type.php index 15c0941655d..423bbe5ca57 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Type.php +++ b/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source\Product\Options; diff --git a/app/code/Magento/Catalog/Model/Config/Source/Product/Thumbnail.php b/app/code/Magento/Catalog/Model/Config/Source/Product/Thumbnail.php index feaec9308d4..9bd5449183a 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/Product/Thumbnail.php +++ b/app/code/Magento/Catalog/Model/Config/Source/Product/Thumbnail.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source\Product; diff --git a/app/code/Magento/Catalog/Model/Config/Source/ProductPriceOptionsInterface.php b/app/code/Magento/Catalog/Model/Config/Source/ProductPriceOptionsInterface.php index d5d5062bad7..f7cf14a9222 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/ProductPriceOptionsInterface.php +++ b/app/code/Magento/Catalog/Model/Config/Source/ProductPriceOptionsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source; diff --git a/app/code/Magento/Catalog/Model/Config/Source/TimeFormat.php b/app/code/Magento/Catalog/Model/Config/Source/TimeFormat.php index 1e2031b9339..b1a8329e44f 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/TimeFormat.php +++ b/app/code/Magento/Catalog/Model/Config/Source/TimeFormat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source; diff --git a/app/code/Magento/Catalog/Model/Config/Source/Watermark/Position.php b/app/code/Magento/Catalog/Model/Config/Source/Watermark/Position.php index 54d3ec545e0..53c922b84b3 100644 --- a/app/code/Magento/Catalog/Model/Config/Source/Watermark/Position.php +++ b/app/code/Magento/Catalog/Model/Config/Source/Watermark/Position.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/CustomOptions/CustomOption.php b/app/code/Magento/Catalog/Model/CustomOptions/CustomOption.php index e147a52f18e..7854d97798c 100644 --- a/app/code/Magento/Catalog/Model/CustomOptions/CustomOption.php +++ b/app/code/Magento/Catalog/Model/CustomOptions/CustomOption.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\CustomOptions; diff --git a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php index 5b55f9cb66c..8d7fc4ef545 100644 --- a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php +++ b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\CustomOptions; diff --git a/app/code/Magento/Catalog/Model/Design.php b/app/code/Magento/Catalog/Model/Design.php index ad5cc4ff42f..136f36a2a13 100644 --- a/app/code/Magento/Catalog/Model/Design.php +++ b/app/code/Magento/Catalog/Model/Design.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/Entity/Attribute.php b/app/code/Magento/Catalog/Model/Entity/Attribute.php index 80d7ecb4b9d..13e8ad115d8 100644 --- a/app/code/Magento/Catalog/Model/Entity/Attribute.php +++ b/app/code/Magento/Catalog/Model/Entity/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Entity; diff --git a/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php b/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php index 2659d9a97d1..6ff7905496c 100644 --- a/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php +++ b/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Entity\Product\Attribute\Design\Options; diff --git a/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapper.php b/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapper.php index 034f52970ad..f8a03ab8fdb 100644 --- a/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapper.php +++ b/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapper.php @@ -2,7 +2,7 @@ /** * Attribute mapper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Entity\Product\Attribute\Group; diff --git a/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapperInterface.php b/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapperInterface.php index a8b198aac82..b3eb8497982 100644 --- a/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapperInterface.php +++ b/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapperInterface.php @@ -2,7 +2,7 @@ /** * Attribute mapper that is used to build frontend representation of attribute * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Entity\Product\Attribute\Group; diff --git a/app/code/Magento/Catalog/Model/EntityInterface.php b/app/code/Magento/Catalog/Model/EntityInterface.php index 64c9093822e..dc8783921de 100644 --- a/app/code/Magento/Catalog/Model/EntityInterface.php +++ b/app/code/Magento/Catalog/Model/EntityInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Factory.php b/app/code/Magento/Catalog/Model/Factory.php index 24896538994..62e919e8b30 100644 --- a/app/code/Magento/Catalog/Model/Factory.php +++ b/app/code/Magento/Catalog/Model/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ImageExtractor.php b/app/code/Magento/Catalog/Model/ImageExtractor.php index c83c7106ce2..977e76509af 100644 --- a/app/code/Magento/Catalog/Model/ImageExtractor.php +++ b/app/code/Magento/Catalog/Model/ImageExtractor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/ImageUploader.php b/app/code/Magento/Catalog/Model/ImageUploader.php index 8000f75df3d..5aecd8cf9c9 100644 --- a/app/code/Magento/Catalog/Model/ImageUploader.php +++ b/app/code/Magento/Catalog/Model/ImageUploader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/Indexer/AbstractFlatState.php b/app/code/Magento/Catalog/Model/Indexer/AbstractFlatState.php index e16ae414e8d..95e3f1e8129 100644 --- a/app/code/Magento/Catalog/Model/Indexer/AbstractFlatState.php +++ b/app/code/Magento/Catalog/Model/Indexer/AbstractFlatState.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat.php index 280f53fe701..1620599793c 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Flat.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Flat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/AbstractAction.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/AbstractAction.php index b7ba3567462..5c6afd36d72 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/AbstractAction.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/AbstractAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Full.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Full.php index aae6a98af73..98219e2ee0d 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Full.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Full.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Flat\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Rows.php index 79d3a9250e6..0f39d5d9341 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Rows.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Rows.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Flat\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/IndexerConfigData.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/IndexerConfigData.php index 3b8061d2f93..18c7b486997 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/IndexerConfigData.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/IndexerConfigData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Flat\Plugin; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreGroup.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreGroup.php index 502bb8b542f..ad669f24af3 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreGroup.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreGroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Flat\Plugin; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreView.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreView.php index 550e577db88..3be061abd94 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreView.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreView.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Flat\Plugin; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/SkipStaticColumnsProvider.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/SkipStaticColumnsProvider.php index 1da141f4771..5a68bf10c8c 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/SkipStaticColumnsProvider.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/SkipStaticColumnsProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/State.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/State.php index f4ced7a3f41..2ce8779d773 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/State.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Flat; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/System/Config/Mode.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/System/Config/Mode.php index b9fd2947801..29ffa9ea27a 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/System/Config/Mode.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/System/Config/Mode.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Flat\System\Config; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product.php index ffcca0d3dfb..258aabfffcc 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Product.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/AbstractAction.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/AbstractAction.php index 9902532c91e..c4d8e4fd9be 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Product/AbstractAction.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Product/AbstractAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Full.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Full.php index 3c33c44cb0d..5a5dced86f9 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Full.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Full.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Product\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Rows.php index 987bc972b92..22ca6d57730 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Rows.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Rows.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Product\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/RowsFactory.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/RowsFactory.php index 9ec8b693362..ec931613bc2 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/RowsFactory.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/RowsFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Product\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/MviewState.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/MviewState.php index 652ea6c4846..328e3b8de91 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/MviewState.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/MviewState.php @@ -2,7 +2,7 @@ /** * Plugin for \Magento\Framework\Mview\View\StateInterface model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreGroup.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreGroup.php index f81c0165b63..c4df63a20b7 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreGroup.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreGroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Product\Plugin; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreView.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreView.php index fe3baaf8fcc..ab622f0f197 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreView.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreView.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Product\Plugin; diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Processor.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Processor.php index db1fa40396e..155dfb82946 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Processor.php +++ b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Category\Product; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Category.php b/app/code/Magento/Catalog/Model/Indexer/Product/Category.php index b272870b9f7..5ba9402a3d7 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Category.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/Rows.php index 3279a620c75..f622e7b6bb3 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/Rows.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/Rows.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Category\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/RowsFactory.php b/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/RowsFactory.php index a1540d21df8..0b96dc011d6 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/RowsFactory.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/RowsFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Category\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Category/Processor.php b/app/code/Magento/Catalog/Model/Indexer/Product/Category/Processor.php index 47f04e13e42..e7cf1afcd2b 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Category/Processor.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Category/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Category; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav.php index 0b3ccf1cc4c..c32c9e87cfd 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Eav.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Eav.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/AbstractAction.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/AbstractAction.php index 86899f74988..bd3586eff92 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/AbstractAction.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/AbstractAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Eav; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Full.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Full.php index c6d42956d08..7c2b2c137da 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Full.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Full.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Eav\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Row.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Row.php index 58514ac508b..7677e0baa63 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Row.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Row.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Eav\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Rows.php index 338f605c003..3faa4b17ede 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Rows.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Rows.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Eav\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet.php index 66251853e2b..69c88db957d 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Eav\Plugin; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilter.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilter.php index 22ba8d78d33..1efab2e3a06 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilter.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/StoreView.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/StoreView.php index 82ec9e2c9ea..d5c5395b7ad 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/StoreView.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/StoreView.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Eav\Plugin; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Processor.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Processor.php index 8c705bdffe8..1d33f9eddba 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Processor.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Eav; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat.php index e423d9553bc..357cb9154f6 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/AbstractAction.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/AbstractAction.php index dae7a1bc674..a14777d16be 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/AbstractAction.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/AbstractAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Eraser.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Eraser.php index d6af5fc50e5..448670e036a 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Eraser.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Eraser.php @@ -2,7 +2,7 @@ /** * Flat item ereaser. Used to clear items from flat table * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Full.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Full.php index cb6de481ae1..fb7c0fdad8e 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Full.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Full.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Indexer.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Indexer.php index 607c73e1ca4..fccf6235605 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Indexer.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Indexer.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Row.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Row.php index e9449404966..c89194a9c7d 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Row.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Row.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows.php index 6be815952f1..afc0722cd55 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows/TableData.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows/TableData.php index ec12281dae2..08b927b414d 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows/TableData.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows/TableData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat\Action\Rows; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/FlatTableBuilder.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/FlatTableBuilder.php index 40516e55e93..42d0468d640 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/FlatTableBuilder.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/FlatTableBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/IndexerConfigData.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/IndexerConfigData.php index 0777e9a06e3..34bcfa2e484 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/IndexerConfigData.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/IndexerConfigData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat\Plugin; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/Store.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/Store.php index 1e99b0bda44..c0a5080223a 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/Store.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/StoreGroup.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/StoreGroup.php index 757bc479292..9b218f1c25c 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/StoreGroup.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/StoreGroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Processor.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Processor.php index 16160402de2..6dca0f4473b 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Processor.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/State.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/State.php index 2ca4411ff02..88331453a95 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/State.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/System/Config/Mode.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/System/Config/Mode.php index 51d2992e456..8caf5a4cb3a 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/System/Config/Mode.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/System/Config/Mode.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat\System\Config; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/Builder.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/Builder.php index 192f411c93b..1376b748979 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/Builder.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/Builder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat\Table; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/BuilderInterface.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/BuilderInterface.php index b24db9ee743..3651821ae10 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/BuilderInterface.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/BuilderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat\Table; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableBuilder.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableBuilder.php index d00a720a91d..a105f25805b 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableBuilder.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableData.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableData.php index a5a1b7d808f..8f12fbfd358 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableData.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableDataInterface.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableDataInterface.php index 0720feb61db..7aa2e659656 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableDataInterface.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableDataInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Flat; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price.php index f8ed6cb6d2f..413aa95a78e 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Price.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/AbstractAction.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/AbstractAction.php index 464adb27686..3ba84ee11d1 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Price/AbstractAction.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Price/AbstractAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Price; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Full.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Full.php index 69aeb81cf96..8148703b177 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Full.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Full.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Price\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Row.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Row.php index 9acfb3ebe67..66b8e9404f4 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Row.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Row.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Price\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Rows.php index 7b2ed2fe258..5b11e29ae31 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Rows.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Rows.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Price\Action; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/AbstractPlugin.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/AbstractPlugin.php index 3e9e9735a10..389e5459eb4 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/AbstractPlugin.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/AbstractPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Price\Plugin; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/CustomerGroup.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/CustomerGroup.php index a328c96b6b0..5dc93c82c06 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/CustomerGroup.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/CustomerGroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Price\Plugin; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/Website.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/Website.php index 620808792b9..3db7647b2af 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/Website.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Price\Plugin; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Processor.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Processor.php index 6a076b37277..936de891b50 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Processor.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Price; diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/System/Config/PriceScope.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/System/Config/PriceScope.php index 708979c8a4a..83a2ccc58c1 100644 --- a/app/code/Magento/Catalog/Model/Indexer/Product/Price/System/Config/PriceScope.php +++ b/app/code/Magento/Catalog/Model/Indexer/Product/Price/System/Config/PriceScope.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Indexer\Product\Price\System\Config; diff --git a/app/code/Magento/Catalog/Model/Layer.php b/app/code/Magento/Catalog/Model/Layer.php index 40866673855..207fee2a272 100644 --- a/app/code/Magento/Catalog/Model/Layer.php +++ b/app/code/Magento/Catalog/Model/Layer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/Layer/AvailabilityFlagInterface.php b/app/code/Magento/Catalog/Model/Layer/AvailabilityFlagInterface.php index 815b0f89bc4..dcd3922680b 100644 --- a/app/code/Magento/Catalog/Model/Layer/AvailabilityFlagInterface.php +++ b/app/code/Magento/Catalog/Model/Layer/AvailabilityFlagInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer; diff --git a/app/code/Magento/Catalog/Model/Layer/Category.php b/app/code/Magento/Catalog/Model/Layer/Category.php index 45141cacafc..b5e411c329e 100644 --- a/app/code/Magento/Catalog/Model/Layer/Category.php +++ b/app/code/Magento/Catalog/Model/Layer/Category.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer; diff --git a/app/code/Magento/Catalog/Model/Layer/Category/AvailabilityFlag.php b/app/code/Magento/Catalog/Model/Layer/Category/AvailabilityFlag.php index 592038dcb8b..1c02c6a3541 100644 --- a/app/code/Magento/Catalog/Model/Layer/Category/AvailabilityFlag.php +++ b/app/code/Magento/Catalog/Model/Layer/Category/AvailabilityFlag.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Category/CollectionFilter.php b/app/code/Magento/Catalog/Model/Layer/Category/CollectionFilter.php index 1a4be8dc5ee..4196b0d4266 100644 --- a/app/code/Magento/Catalog/Model/Layer/Category/CollectionFilter.php +++ b/app/code/Magento/Catalog/Model/Layer/Category/CollectionFilter.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Category/FilterableAttributeList.php b/app/code/Magento/Catalog/Model/Layer/Category/FilterableAttributeList.php index 8b00012dd7d..ef02867503b 100644 --- a/app/code/Magento/Catalog/Model/Layer/Category/FilterableAttributeList.php +++ b/app/code/Magento/Catalog/Model/Layer/Category/FilterableAttributeList.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Category/ItemCollectionProvider.php b/app/code/Magento/Catalog/Model/Layer/Category/ItemCollectionProvider.php index 5fd306da398..095f46e6fdc 100644 --- a/app/code/Magento/Catalog/Model/Layer/Category/ItemCollectionProvider.php +++ b/app/code/Magento/Catalog/Model/Layer/Category/ItemCollectionProvider.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Category; diff --git a/app/code/Magento/Catalog/Model/Layer/Category/StateKey.php b/app/code/Magento/Catalog/Model/Layer/Category/StateKey.php index d5b0bb7f415..ea152afef72 100644 --- a/app/code/Magento/Catalog/Model/Layer/Category/StateKey.php +++ b/app/code/Magento/Catalog/Model/Layer/Category/StateKey.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/CollectionFilterInterface.php b/app/code/Magento/Catalog/Model/Layer/CollectionFilterInterface.php index 4eb4a2a7e7f..806b19f784c 100644 --- a/app/code/Magento/Catalog/Model/Layer/CollectionFilterInterface.php +++ b/app/code/Magento/Catalog/Model/Layer/CollectionFilterInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer; diff --git a/app/code/Magento/Catalog/Model/Layer/Context.php b/app/code/Magento/Catalog/Model/Layer/Context.php index e200883edcd..61b013525ae 100644 --- a/app/code/Magento/Catalog/Model/Layer/Context.php +++ b/app/code/Magento/Catalog/Model/Layer/Context.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer; diff --git a/app/code/Magento/Catalog/Model/Layer/ContextInterface.php b/app/code/Magento/Catalog/Model/Layer/ContextInterface.php index 564705f2d6e..76ee3eda843 100644 --- a/app/code/Magento/Catalog/Model/Layer/ContextInterface.php +++ b/app/code/Magento/Catalog/Model/Layer/ContextInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/AbstractFilter.php b/app/code/Magento/Catalog/Model/Layer/Filter/AbstractFilter.php index cbf62d9a09f..e1155083382 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/AbstractFilter.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/AbstractFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Attribute.php b/app/code/Magento/Catalog/Model/Layer/Filter/Attribute.php index 37b6e7635d9..97edb46f59c 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Attribute.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Category.php b/app/code/Magento/Catalog/Model/Layer/Filter/Category.php index b8bf9eb3c60..ca47d843006 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Category.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Category.php b/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Category.php index 901723ae13d..4a08a364081 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Category.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter\DataProvider; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Decimal.php b/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Decimal.php index 08ca2a5c8d8..a63d719cec5 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Decimal.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Decimal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter\DataProvider; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Price.php b/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Price.php index 79f975c6f52..e3a4a6ca6dc 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Price.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter\DataProvider; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Decimal.php b/app/code/Magento/Catalog/Model/Layer/Filter/Decimal.php index a3b82524d6b..5d24bcaf961 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Decimal.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Decimal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmFactory.php b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmFactory.php index c05d64d3821..eba6a3b27ee 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmFactory.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmInterface.php b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmInterface.php index 2cadfa575ac..b69336f4537 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmInterface.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter\Dynamic; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Auto.php b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Auto.php index d94aa07edd7..946e6435f96 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Auto.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Auto.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter\Dynamic; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Improved.php b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Improved.php index 38aac53fbfa..4f700c14270 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Improved.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Improved.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter\Dynamic; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Manual.php b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Manual.php index 355920dd2d3..909acbddc33 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Manual.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Manual.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter\Dynamic; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Factory.php b/app/code/Magento/Catalog/Model/Layer/Filter/Factory.php index c0a5e6db1e2..b7add10b8c0 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Factory.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/FilterInterface.php b/app/code/Magento/Catalog/Model/Layer/Filter/FilterInterface.php index 087bf1e550b..b8553973746 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/FilterInterface.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/FilterInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Item.php b/app/code/Magento/Catalog/Model/Layer/Filter/Item.php index 03a26d177dd..28af1214054 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Item.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Item/DataBuilder.php b/app/code/Magento/Catalog/Model/Layer/Filter/Item/DataBuilder.php index e810cec8afe..c7871313f00 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Item/DataBuilder.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Item/DataBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Price.php b/app/code/Magento/Catalog/Model/Layer/Filter/Price.php index de77b7ed7d4..9cd7d362594 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Price.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Price/Range.php b/app/code/Magento/Catalog/Model/Layer/Filter/Price/Range.php index 8a91154cf22..ae4d635815d 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Price/Range.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Price/Range.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter\Price; diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Price/Render.php b/app/code/Magento/Catalog/Model/Layer/Filter/Price/Render.php index eab1f9516e6..d32d03efdad 100644 --- a/app/code/Magento/Catalog/Model/Layer/Filter/Price/Render.php +++ b/app/code/Magento/Catalog/Model/Layer/Filter/Price/Render.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Filter\Price; diff --git a/app/code/Magento/Catalog/Model/Layer/FilterList.php b/app/code/Magento/Catalog/Model/Layer/FilterList.php index 04179bc19c0..19d728b04a5 100644 --- a/app/code/Magento/Catalog/Model/Layer/FilterList.php +++ b/app/code/Magento/Catalog/Model/Layer/FilterList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/FilterableAttributeListInterface.php b/app/code/Magento/Catalog/Model/Layer/FilterableAttributeListInterface.php index 3767930de8e..ebe2fc8c307 100644 --- a/app/code/Magento/Catalog/Model/Layer/FilterableAttributeListInterface.php +++ b/app/code/Magento/Catalog/Model/Layer/FilterableAttributeListInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer; diff --git a/app/code/Magento/Catalog/Model/Layer/ItemCollectionProviderInterface.php b/app/code/Magento/Catalog/Model/Layer/ItemCollectionProviderInterface.php index 37e57385b6e..b589d462e13 100644 --- a/app/code/Magento/Catalog/Model/Layer/ItemCollectionProviderInterface.php +++ b/app/code/Magento/Catalog/Model/Layer/ItemCollectionProviderInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Resolver.php b/app/code/Magento/Catalog/Model/Layer/Resolver.php index 66e4c5d6f1a..13622870b49 100644 --- a/app/code/Magento/Catalog/Model/Layer/Resolver.php +++ b/app/code/Magento/Catalog/Model/Layer/Resolver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer; diff --git a/app/code/Magento/Catalog/Model/Layer/Search.php b/app/code/Magento/Catalog/Model/Layer/Search.php index cb478b5e83b..db46372c053 100644 --- a/app/code/Magento/Catalog/Model/Layer/Search.php +++ b/app/code/Magento/Catalog/Model/Layer/Search.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer; diff --git a/app/code/Magento/Catalog/Model/Layer/Search/CollectionFilter.php b/app/code/Magento/Catalog/Model/Layer/Search/CollectionFilter.php index 616a14f921d..af04286c1fe 100644 --- a/app/code/Magento/Catalog/Model/Layer/Search/CollectionFilter.php +++ b/app/code/Magento/Catalog/Model/Layer/Search/CollectionFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Search; diff --git a/app/code/Magento/Catalog/Model/Layer/Search/Filter/Attribute.php b/app/code/Magento/Catalog/Model/Layer/Search/Filter/Attribute.php index f0c741f868f..b1542b7e77b 100644 --- a/app/code/Magento/Catalog/Model/Layer/Search/Filter/Attribute.php +++ b/app/code/Magento/Catalog/Model/Layer/Search/Filter/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Layer/Search/FilterableAttributeList.php b/app/code/Magento/Catalog/Model/Layer/Search/FilterableAttributeList.php index 36c66bfacab..de637859092 100644 --- a/app/code/Magento/Catalog/Model/Layer/Search/FilterableAttributeList.php +++ b/app/code/Magento/Catalog/Model/Layer/Search/FilterableAttributeList.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Search; diff --git a/app/code/Magento/Catalog/Model/Layer/Search/ItemCollectionProvider.php b/app/code/Magento/Catalog/Model/Layer/Search/ItemCollectionProvider.php index 231fbdb0da7..17405d6525b 100644 --- a/app/code/Magento/Catalog/Model/Layer/Search/ItemCollectionProvider.php +++ b/app/code/Magento/Catalog/Model/Layer/Search/ItemCollectionProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer\Search; diff --git a/app/code/Magento/Catalog/Model/Layer/State.php b/app/code/Magento/Catalog/Model/Layer/State.php index efbcc445b29..fddd3cef0fb 100644 --- a/app/code/Magento/Catalog/Model/Layer/State.php +++ b/app/code/Magento/Catalog/Model/Layer/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer; diff --git a/app/code/Magento/Catalog/Model/Layer/StateKeyInterface.php b/app/code/Magento/Catalog/Model/Layer/StateKeyInterface.php index 605a6fd0d17..381567894c6 100644 --- a/app/code/Magento/Catalog/Model/Layer/StateKeyInterface.php +++ b/app/code/Magento/Catalog/Model/Layer/StateKeyInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layer; diff --git a/app/code/Magento/Catalog/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/Catalog/Model/Layout/DepersonalizePlugin.php index 1487a05fc40..1d8b50fdfd4 100644 --- a/app/code/Magento/Catalog/Model/Layout/DepersonalizePlugin.php +++ b/app/code/Magento/Catalog/Model/Layout/DepersonalizePlugin.php @@ -2,7 +2,7 @@ /** * Depersonalize catalog session data * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Layout; diff --git a/app/code/Magento/Catalog/Model/Locator/LocatorInterface.php b/app/code/Magento/Catalog/Model/Locator/LocatorInterface.php index 22c0110eba4..b51857b37dc 100644 --- a/app/code/Magento/Catalog/Model/Locator/LocatorInterface.php +++ b/app/code/Magento/Catalog/Model/Locator/LocatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Locator; diff --git a/app/code/Magento/Catalog/Model/Locator/RegistryLocator.php b/app/code/Magento/Catalog/Model/Locator/RegistryLocator.php index 3b288b00b6e..f09fa1b440f 100644 --- a/app/code/Magento/Catalog/Model/Locator/RegistryLocator.php +++ b/app/code/Magento/Catalog/Model/Locator/RegistryLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Locator; diff --git a/app/code/Magento/Catalog/Model/Plugin/Log.php b/app/code/Magento/Catalog/Model/Plugin/Log.php index c27903d2c8e..c963666ecf4 100644 --- a/app/code/Magento/Catalog/Model/Plugin/Log.php +++ b/app/code/Magento/Catalog/Model/Plugin/Log.php @@ -2,7 +2,7 @@ /** * Plugin for \Magento\Customer\Model\ResourceModel\Visitor model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Plugin; diff --git a/app/code/Magento/Catalog/Model/Plugin/ProductRepository/TransactionWrapper.php b/app/code/Magento/Catalog/Model/Plugin/ProductRepository/TransactionWrapper.php index cf8798e313f..f9c2d0f3fbc 100644 --- a/app/code/Magento/Catalog/Model/Plugin/ProductRepository/TransactionWrapper.php +++ b/app/code/Magento/Catalog/Model/Plugin/ProductRepository/TransactionWrapper.php @@ -2,7 +2,7 @@ /** * Plugin for \Magento\Catalog\Api\ProductRepositoryInterface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Plugin\ProductRepository; diff --git a/app/code/Magento/Catalog/Model/Plugin/QuoteItemProductOption.php b/app/code/Magento/Catalog/Model/Plugin/QuoteItemProductOption.php index 7c8249b728c..92482c22173 100644 --- a/app/code/Magento/Catalog/Model/Plugin/QuoteItemProductOption.php +++ b/app/code/Magento/Catalog/Model/Plugin/QuoteItemProductOption.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Plugin; diff --git a/app/code/Magento/Catalog/Model/Plugin/ShowOutOfStockConfig.php b/app/code/Magento/Catalog/Model/Plugin/ShowOutOfStockConfig.php index 8d3e9825e5c..e31452cc8d2 100644 --- a/app/code/Magento/Catalog/Model/Plugin/ShowOutOfStockConfig.php +++ b/app/code/Magento/Catalog/Model/Plugin/ShowOutOfStockConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Plugin; diff --git a/app/code/Magento/Catalog/Model/Product.php b/app/code/Magento/Catalog/Model/Product.php index 0e8aa2833fb..d88f9e0c443 100644 --- a/app/code/Magento/Catalog/Model/Product.php +++ b/app/code/Magento/Catalog/Model/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/Product/Action.php b/app/code/Magento/Catalog/Model/Product/Action.php index 45194cbee02..84502202981 100644 --- a/app/code/Magento/Catalog/Model/Product/Action.php +++ b/app/code/Magento/Catalog/Model/Product/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/AttributeSetFinder.php b/app/code/Magento/Catalog/Model/Product/Attribute/AttributeSetFinder.php index bfd9827dbb9..9fb351a3198 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/AttributeSetFinder.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/AttributeSetFinder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Boolean.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Boolean.php index 82dba11e265..ac391b4c0f3 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Boolean.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Boolean.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Category.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Category.php index 6be6105f329..ef7430dcdcb 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Category.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php index 3c5cef0e6ce..43d85b800d1 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterInterface.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterInterface.php index 450961d8f62..3b9f46cfa14 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterInterface.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterPool.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterPool.php index abd57ac173f..ad587a92315 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterPool.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/ImageEntryConverter.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/ImageEntryConverter.php index 847c93a2d78..44aa02163fc 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/ImageEntryConverter.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/ImageEntryConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Price.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Price.php index 1cc512aae60..73196faf77a 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Price.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Sku.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Sku.php index 290770bd296..be98147abfc 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Sku.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Sku.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Stock.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Stock.php index 0bb468b77ee..b1b81512b53 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Stock.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Tierprice.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Tierprice.php index 460204a478d..7ec236ad4e0 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Tierprice.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Tierprice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Weight.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Weight.php index 3dfb0040fe6..495c62b4293 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Weight.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Weight.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/DataProvider.php b/app/code/Magento/Catalog/Model/Product/Attribute/DataProvider.php index 64263b8ab95..f3f36fa77ef 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/DataProvider.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/DefaultAttributes.php b/app/code/Magento/Catalog/Model/Product/Attribute/DefaultAttributes.php index 4d36d7c2694..6bdcb7f4904 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/DefaultAttributes.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/DefaultAttributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Frontend/Image.php b/app/code/Magento/Catalog/Model/Product/Attribute/Frontend/Image.php index 871f0aca79c..a13d4c3b256 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Frontend/Image.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Frontend/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Group.php b/app/code/Magento/Catalog/Model/Product/Attribute/Group.php index 3384e20786c..1c55ec9dc02 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Group.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Group.php @@ -1,7 +1,7 @@ <?php /** * @author Magento Core Team <core@magentocommerce.com> - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Management.php b/app/code/Magento/Catalog/Model/Product/Attribute/Management.php index fa9b2ddee3c..4529b611474 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Management.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Management.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/OptionManagement.php b/app/code/Magento/Catalog/Model/Product/Attribute/OptionManagement.php index 4966ef20258..afe1c7cf9cd 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/OptionManagement.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/OptionManagement.php @@ -1,7 +1,7 @@ <?php /** * @author Magento Core Team <core@magentocommerce.com> - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Repository.php b/app/code/Magento/Catalog/Model/Product/Attribute/Repository.php index 7e7234d1ebb..d3bd12f804a 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Repository.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Repository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/SetManagement.php b/app/code/Magento/Catalog/Model/Product/Attribute/SetManagement.php index d69e5a64939..e5ef94968d4 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/SetManagement.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/SetManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/SetRepository.php b/app/code/Magento/Catalog/Model/Product/Attribute/SetRepository.php index d1204fc09c7..dac53e1c407 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/SetRepository.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/SetRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Boolean.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Boolean.php index b77d673becd..b962e3bfb40 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Boolean.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Boolean.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php index 8bcf01ba3db..5353ded25ee 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Inputtype.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Inputtype.php index f43d106248e..be839be021e 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Inputtype.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Inputtype.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Layout.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Layout.php index 10865fc3173..4957fb291a3 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Layout.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Layout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute\Source; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Status.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Status.php index 9912e561b2d..c854ae969f6 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Status.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute\Source; diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Type.php b/app/code/Magento/Catalog/Model/Product/Attribute/Type.php index 2d205c6cc2a..7b81ff8d549 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/Type.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/TypesList.php b/app/code/Magento/Catalog/Model/Product/Attribute/TypesList.php index 8f18df4f82f..8eff7a68fd2 100644 --- a/app/code/Magento/Catalog/Model/Product/Attribute/TypesList.php +++ b/app/code/Magento/Catalog/Model/Product/Attribute/TypesList.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Model/Product/AttributeSet/Build.php b/app/code/Magento/Catalog/Model/Product/AttributeSet/Build.php index c40b1839357..d27862eca8d 100644 --- a/app/code/Magento/Catalog/Model/Product/AttributeSet/Build.php +++ b/app/code/Magento/Catalog/Model/Product/AttributeSet/Build.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\AttributeSet; diff --git a/app/code/Magento/Catalog/Model/Product/AttributeSet/Options.php b/app/code/Magento/Catalog/Model/Product/AttributeSet/Options.php index c02e82c2ff3..fa3714ea9eb 100644 --- a/app/code/Magento/Catalog/Model/Product/AttributeSet/Options.php +++ b/app/code/Magento/Catalog/Model/Product/AttributeSet/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\AttributeSet; diff --git a/app/code/Magento/Catalog/Model/Product/AttributeSet/SuggestedSet.php b/app/code/Magento/Catalog/Model/Product/AttributeSet/SuggestedSet.php index 956131640db..5fc8033776a 100644 --- a/app/code/Magento/Catalog/Model/Product/AttributeSet/SuggestedSet.php +++ b/app/code/Magento/Catalog/Model/Product/AttributeSet/SuggestedSet.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\AttributeSet; diff --git a/app/code/Magento/Catalog/Model/Product/CartConfiguration.php b/app/code/Magento/Catalog/Model/Product/CartConfiguration.php index e8cb4acdc06..194ff80fb74 100644 --- a/app/code/Magento/Catalog/Model/Product/CartConfiguration.php +++ b/app/code/Magento/Catalog/Model/Product/CartConfiguration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/CatalogPrice.php b/app/code/Magento/Catalog/Model/Product/CatalogPrice.php index 79674f2c1be..d589116245d 100644 --- a/app/code/Magento/Catalog/Model/Product/CatalogPrice.php +++ b/app/code/Magento/Catalog/Model/Product/CatalogPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/CatalogPriceFactory.php b/app/code/Magento/Catalog/Model/Product/CatalogPriceFactory.php index 10c0e847261..ac88a1b20e0 100644 --- a/app/code/Magento/Catalog/Model/Product/CatalogPriceFactory.php +++ b/app/code/Magento/Catalog/Model/Product/CatalogPriceFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/CatalogPriceInterface.php b/app/code/Magento/Catalog/Model/Product/CatalogPriceInterface.php index b6fb563dbd5..26db2a8881d 100644 --- a/app/code/Magento/Catalog/Model/Product/CatalogPriceInterface.php +++ b/app/code/Magento/Catalog/Model/Product/CatalogPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Compare/Item.php b/app/code/Magento/Catalog/Model/Product/Compare/Item.php index 9e3d2bcdd46..37e874d5735 100644 --- a/app/code/Magento/Catalog/Model/Product/Compare/Item.php +++ b/app/code/Magento/Catalog/Model/Product/Compare/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Compare; diff --git a/app/code/Magento/Catalog/Model/Product/Compare/ListCompare.php b/app/code/Magento/Catalog/Model/Product/Compare/ListCompare.php index 143f3d865c2..ee85b5e1324 100644 --- a/app/code/Magento/Catalog/Model/Product/Compare/ListCompare.php +++ b/app/code/Magento/Catalog/Model/Product/Compare/ListCompare.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Compare; diff --git a/app/code/Magento/Catalog/Model/Product/Condition.php b/app/code/Magento/Catalog/Model/Product/Condition.php index dd3d0478ce7..8f407d2faef 100644 --- a/app/code/Magento/Catalog/Model/Product/Condition.php +++ b/app/code/Magento/Catalog/Model/Product/Condition.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/Condition/ConditionInterface.php b/app/code/Magento/Catalog/Model/Product/Condition/ConditionInterface.php index c83cf2bd1ca..f6f43001769 100644 --- a/app/code/Magento/Catalog/Model/Product/Condition/ConditionInterface.php +++ b/app/code/Magento/Catalog/Model/Product/Condition/ConditionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Condition; diff --git a/app/code/Magento/Catalog/Model/Product/Configuration/Item/ItemInterface.php b/app/code/Magento/Catalog/Model/Product/Configuration/Item/ItemInterface.php index e955d43d233..ab7a8ddd288 100644 --- a/app/code/Magento/Catalog/Model/Product/Configuration/Item/ItemInterface.php +++ b/app/code/Magento/Catalog/Model/Product/Configuration/Item/ItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option.php b/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option.php index e29e1e8d8c4..c070af792c4 100644 --- a/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option.php +++ b/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option/OptionInterface.php b/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option/OptionInterface.php index 6c65f15e9f4..c673454c3bb 100644 --- a/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option/OptionInterface.php +++ b/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option/OptionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Copier.php b/app/code/Magento/Catalog/Model/Product/Copier.php index a4a37ad5b20..5ca2f97501e 100644 --- a/app/code/Magento/Catalog/Model/Product/Copier.php +++ b/app/code/Magento/Catalog/Model/Product/Copier.php @@ -2,7 +2,7 @@ /** * Catalog product copier. Creates product duplicate * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructor/Composite.php b/app/code/Magento/Catalog/Model/Product/CopyConstructor/Composite.php index f726f111f31..592949fa283 100644 --- a/app/code/Magento/Catalog/Model/Product/CopyConstructor/Composite.php +++ b/app/code/Magento/Catalog/Model/Product/CopyConstructor/Composite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructor/CrossSell.php b/app/code/Magento/Catalog/Model/Product/CopyConstructor/CrossSell.php index 84653f45e4e..57ca6f2b748 100644 --- a/app/code/Magento/Catalog/Model/Product/CopyConstructor/CrossSell.php +++ b/app/code/Magento/Catalog/Model/Product/CopyConstructor/CrossSell.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructor/Related.php b/app/code/Magento/Catalog/Model/Product/CopyConstructor/Related.php index 1c827ebd6a4..3dff0930cd4 100644 --- a/app/code/Magento/Catalog/Model/Product/CopyConstructor/Related.php +++ b/app/code/Magento/Catalog/Model/Product/CopyConstructor/Related.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructor/UpSell.php b/app/code/Magento/Catalog/Model/Product/CopyConstructor/UpSell.php index e55ef6b3fd2..cfcffa3a232 100644 --- a/app/code/Magento/Catalog/Model/Product/CopyConstructor/UpSell.php +++ b/app/code/Magento/Catalog/Model/Product/CopyConstructor/UpSell.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructorFactory.php b/app/code/Magento/Catalog/Model/Product/CopyConstructorFactory.php index ae32a63c0a5..be3d9e504c6 100644 --- a/app/code/Magento/Catalog/Model/Product/CopyConstructorFactory.php +++ b/app/code/Magento/Catalog/Model/Product/CopyConstructorFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructorInterface.php b/app/code/Magento/Catalog/Model/Product/CopyConstructorInterface.php index b7ea72b8474..a2b0339742d 100644 --- a/app/code/Magento/Catalog/Model/Product/CopyConstructorInterface.php +++ b/app/code/Magento/Catalog/Model/Product/CopyConstructorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/Edit/WeightResolver.php b/app/code/Magento/Catalog/Model/Product/Edit/WeightResolver.php index bf6fe991d93..5dbcba78eba 100644 --- a/app/code/Magento/Catalog/Model/Product/Edit/WeightResolver.php +++ b/app/code/Magento/Catalog/Model/Product/Edit/WeightResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Exception.php b/app/code/Magento/Catalog/Model/Product/Exception.php index 04fc0092721..95b5d9f065f 100644 --- a/app/code/Magento/Catalog/Model/Product/Exception.php +++ b/app/code/Magento/Catalog/Model/Product/Exception.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/CreateHandler.php b/app/code/Magento/Catalog/Model/Product/Gallery/CreateHandler.php index cbf0464ca36..3539227fa7b 100644 --- a/app/code/Magento/Catalog/Model/Product/Gallery/CreateHandler.php +++ b/app/code/Magento/Catalog/Model/Product/Gallery/CreateHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Gallery; diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/Entry.php b/app/code/Magento/Catalog/Model/Product/Gallery/Entry.php index cbe876561ad..8cfed263199 100644 --- a/app/code/Magento/Catalog/Model/Product/Gallery/Entry.php +++ b/app/code/Magento/Catalog/Model/Product/Gallery/Entry.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Gallery; diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/EntryResolver.php b/app/code/Magento/Catalog/Model/Product/Gallery/EntryResolver.php index 23fbe43a6b1..cff04654942 100644 --- a/app/code/Magento/Catalog/Model/Product/Gallery/EntryResolver.php +++ b/app/code/Magento/Catalog/Model/Product/Gallery/EntryResolver.php @@ -2,7 +2,7 @@ /** * Product Media Gallery Entry Resolver * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Gallery; diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/GalleryManagement.php b/app/code/Magento/Catalog/Model/Product/Gallery/GalleryManagement.php index d2a31968685..5a16695ba7d 100644 --- a/app/code/Magento/Catalog/Model/Product/Gallery/GalleryManagement.php +++ b/app/code/Magento/Catalog/Model/Product/Gallery/GalleryManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Gallery; diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/MimeTypeExtensionMap.php b/app/code/Magento/Catalog/Model/Product/Gallery/MimeTypeExtensionMap.php index e116e1b4f1c..4242539b9fe 100644 --- a/app/code/Magento/Catalog/Model/Product/Gallery/MimeTypeExtensionMap.php +++ b/app/code/Magento/Catalog/Model/Product/Gallery/MimeTypeExtensionMap.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Gallery; diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/Processor.php b/app/code/Magento/Catalog/Model/Product/Gallery/Processor.php index ec2521350d1..2b20c53cb21 100644 --- a/app/code/Magento/Catalog/Model/Product/Gallery/Processor.php +++ b/app/code/Magento/Catalog/Model/Product/Gallery/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Gallery; diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/ReadHandler.php b/app/code/Magento/Catalog/Model/Product/Gallery/ReadHandler.php index 28ecfff39c9..1ed2ef20360 100644 --- a/app/code/Magento/Catalog/Model/Product/Gallery/ReadHandler.php +++ b/app/code/Magento/Catalog/Model/Product/Gallery/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Gallery; diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/UpdateHandler.php b/app/code/Magento/Catalog/Model/Product/Gallery/UpdateHandler.php index 45a6cf3db5f..8c2d4a53a77 100644 --- a/app/code/Magento/Catalog/Model/Product/Gallery/UpdateHandler.php +++ b/app/code/Magento/Catalog/Model/Product/Gallery/UpdateHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Gallery; diff --git a/app/code/Magento/Catalog/Model/Product/Image.php b/app/code/Magento/Catalog/Model/Product/Image.php index 769faa682f4..03a3cdd0440 100644 --- a/app/code/Magento/Catalog/Model/Product/Image.php +++ b/app/code/Magento/Catalog/Model/Product/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Image/Cache.php b/app/code/Magento/Catalog/Model/Product/Image/Cache.php index 830e8be2f38..2a5316583ff 100644 --- a/app/code/Magento/Catalog/Model/Product/Image/Cache.php +++ b/app/code/Magento/Catalog/Model/Product/Image/Cache.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Image; diff --git a/app/code/Magento/Catalog/Model/Product/Initialization/Helper/ProductLinks.php b/app/code/Magento/Catalog/Model/Product/Initialization/Helper/ProductLinks.php index 171ddfc79ba..49e8925cf14 100644 --- a/app/code/Magento/Catalog/Model/Product/Initialization/Helper/ProductLinks.php +++ b/app/code/Magento/Catalog/Model/Product/Initialization/Helper/ProductLinks.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Initialization\Helper; diff --git a/app/code/Magento/Catalog/Model/Product/Link.php b/app/code/Magento/Catalog/Model/Product/Link.php index 61cde3a6f95..146ab9e975f 100644 --- a/app/code/Magento/Catalog/Model/Product/Link.php +++ b/app/code/Magento/Catalog/Model/Product/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/Link/Converter.php b/app/code/Magento/Catalog/Model/Product/Link/Converter.php index 351afe7ddec..3fc59b23234 100644 --- a/app/code/Magento/Catalog/Model/Product/Link/Converter.php +++ b/app/code/Magento/Catalog/Model/Product/Link/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Link; diff --git a/app/code/Magento/Catalog/Model/Product/Link/Resolver.php b/app/code/Magento/Catalog/Model/Product/Link/Resolver.php index 3de971b6b2a..e6b4ff3404f 100644 --- a/app/code/Magento/Catalog/Model/Product/Link/Resolver.php +++ b/app/code/Magento/Catalog/Model/Product/Link/Resolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Link; diff --git a/app/code/Magento/Catalog/Model/Product/Link/SaveHandler.php b/app/code/Magento/Catalog/Model/Product/Link/SaveHandler.php index 167dc2be15b..983bee7bfc6 100644 --- a/app/code/Magento/Catalog/Model/Product/Link/SaveHandler.php +++ b/app/code/Magento/Catalog/Model/Product/Link/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/LinkTypeProvider.php b/app/code/Magento/Catalog/Model/Product/LinkTypeProvider.php index 8a878e68957..e9f3e490bec 100644 --- a/app/code/Magento/Catalog/Model/Product/LinkTypeProvider.php +++ b/app/code/Magento/Catalog/Model/Product/LinkTypeProvider.php @@ -2,7 +2,7 @@ /** * Collection of the available product link types * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/Media/AttributeManagement.php b/app/code/Magento/Catalog/Model/Product/Media/AttributeManagement.php index 1bcc025fa2e..22f7690c8fc 100644 --- a/app/code/Magento/Catalog/Model/Product/Media/AttributeManagement.php +++ b/app/code/Magento/Catalog/Model/Product/Media/AttributeManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Media; diff --git a/app/code/Magento/Catalog/Model/Product/Media/Config.php b/app/code/Magento/Catalog/Model/Product/Media/Config.php index 75fa1094892..aa07c9f4572 100644 --- a/app/code/Magento/Catalog/Model/Product/Media/Config.php +++ b/app/code/Magento/Catalog/Model/Product/Media/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Media/ConfigInterface.php b/app/code/Magento/Catalog/Model/Product/Media/ConfigInterface.php index d4951352eb1..e8d8d462c01 100644 --- a/app/code/Magento/Catalog/Model/Product/Media/ConfigInterface.php +++ b/app/code/Magento/Catalog/Model/Product/Media/ConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option.php b/app/code/Magento/Catalog/Model/Product/Option.php index c17603460c7..50f7a20ef78 100644 --- a/app/code/Magento/Catalog/Model/Product/Option.php +++ b/app/code/Magento/Catalog/Model/Product/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Converter.php b/app/code/Magento/Catalog/Model/Product/Option/Converter.php index a21f404a543..5ba9ced8858 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Converter.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Converter.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/ReadHandler.php b/app/code/Magento/Catalog/Model/Product/Option/ReadHandler.php index cf9a254d1c5..b0c90484a1b 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/ReadHandler.php +++ b/app/code/Magento/Catalog/Model/Product/Option/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Repository.php b/app/code/Magento/Catalog/Model/Product/Option/Repository.php index 946bebd93c9..57740dd5916 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Repository.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Repository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/SaveHandler.php b/app/code/Magento/Catalog/Model/Product/Option/SaveHandler.php index 1c8c5b018dd..72241cbe6e7 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/SaveHandler.php +++ b/app/code/Magento/Catalog/Model/Product/Option/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Option; diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type.php b/app/code/Magento/Catalog/Model/Product/Option/Type.php index 4b59ca40dfd..893b91021b8 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php index afa44c42d87..1608d6d961d 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Option\Type; diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/DefaultType.php b/app/code/Magento/Catalog/Model/Product/Option/Type/DefaultType.php index 9c54207a364..b54266e17b4 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/DefaultType.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/DefaultType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Factory.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Factory.php index c5a85c05aab..1b6b65c230c 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/Factory.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File.php index 70c20a4e314..f384ecdc01f 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/File.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Option\Type; diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidateFactory.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidateFactory.php index 71011fe5507..8d12349af03 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidateFactory.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidateFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File/Validator.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File/Validator.php index 3b2f5ab7312..cbcc5155cbd 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/File/Validator.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/File/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Option\Type\File; diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFile.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFile.php index e57ab2493a4..06a95e34ada 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFile.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFile.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorInfo.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorInfo.php index abf7bd541f6..83e7c59ddb6 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorInfo.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorInfo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Select.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Select.php index 785733bb624..86ddc073006 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/Select.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Option\Type; diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Text.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Text.php index 140b897d020..1901972ce21 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Type/Text.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Type/Text.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Option\Type; diff --git a/app/code/Magento/Catalog/Model/Product/Option/UrlBuilder.php b/app/code/Magento/Catalog/Model/Product/Option/UrlBuilder.php index 0b49241bc0e..ba90a37e851 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/UrlBuilder.php +++ b/app/code/Magento/Catalog/Model/Product/Option/UrlBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Option; diff --git a/app/code/Magento/Catalog/Model/Product/Option/Validator/DefaultValidator.php b/app/code/Magento/Catalog/Model/Product/Option/Validator/DefaultValidator.php index 553a57ce860..046982f08b0 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Validator/DefaultValidator.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Validator/DefaultValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Validator/File.php b/app/code/Magento/Catalog/Model/Product/Option/Validator/File.php index d025f993734..0e5f0539202 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Validator/File.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Validator/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Validator/Pool.php b/app/code/Magento/Catalog/Model/Product/Option/Validator/Pool.php index 47c6f6264c4..a2e337b4d49 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Validator/Pool.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Validator/Pool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Validator/Select.php b/app/code/Magento/Catalog/Model/Product/Option/Validator/Select.php index d1a317be7c7..9b9dc4f2582 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Validator/Select.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Validator/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Validator/Text.php b/app/code/Magento/Catalog/Model/Product/Option/Validator/Text.php index 84d24390971..ebc7a6ba71e 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Validator/Text.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Validator/Text.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Option/Value.php b/app/code/Magento/Catalog/Model/Product/Option/Value.php index 55c7c74e9a8..eaa0e9b3864 100644 --- a/app/code/Magento/Catalog/Model/Product/Option/Value.php +++ b/app/code/Magento/Catalog/Model/Product/Option/Value.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Price/BasePrice.php b/app/code/Magento/Catalog/Model/Product/Price/BasePrice.php index b7c01141de3..0b3976b3857 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/BasePrice.php +++ b/app/code/Magento/Catalog/Model/Product/Price/BasePrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Price/BasePriceStorage.php b/app/code/Magento/Catalog/Model/Product/Price/BasePriceStorage.php index e69f89f0bb1..50cffd047cc 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/BasePriceStorage.php +++ b/app/code/Magento/Catalog/Model/Product/Price/BasePriceStorage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Price/Cost.php b/app/code/Magento/Catalog/Model/Product/Price/Cost.php index 8d52c578ea9..f3991bf1881 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/Cost.php +++ b/app/code/Magento/Catalog/Model/Product/Price/Cost.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Price/CostStorage.php b/app/code/Magento/Catalog/Model/Product/Price/CostStorage.php index e7fc682514a..ce1fa2e0e6e 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/CostStorage.php +++ b/app/code/Magento/Catalog/Model/Product/Price/CostStorage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Price/PricePersistence.php b/app/code/Magento/Catalog/Model/Product/Price/PricePersistence.php index f37fb15cd47..87effd3a58a 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/PricePersistence.php +++ b/app/code/Magento/Catalog/Model/Product/Price/PricePersistence.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Price/TierPrice.php b/app/code/Magento/Catalog/Model/Product/Price/TierPrice.php index c3c30d18fe6..0b61ae4bcbf 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/TierPrice.php +++ b/app/code/Magento/Catalog/Model/Product/Price/TierPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Price/TierPriceFactory.php b/app/code/Magento/Catalog/Model/Product/Price/TierPriceFactory.php index 1e031649ebd..1cc608f6625 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/TierPriceFactory.php +++ b/app/code/Magento/Catalog/Model/Product/Price/TierPriceFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Price/TierPricePersistence.php b/app/code/Magento/Catalog/Model/Product/Price/TierPricePersistence.php index 01293d0532f..a7149a60c41 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/TierPricePersistence.php +++ b/app/code/Magento/Catalog/Model/Product/Price/TierPricePersistence.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Price/TierPriceStorage.php b/app/code/Magento/Catalog/Model/Product/Price/TierPriceStorage.php index 83262bbfa1c..58d3804c2da 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/TierPriceStorage.php +++ b/app/code/Magento/Catalog/Model/Product/Price/TierPriceStorage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Price/TierPriceValidator.php b/app/code/Magento/Catalog/Model/Product/Price/TierPriceValidator.php index 907fd0f66bb..8a307d04fbf 100644 --- a/app/code/Magento/Catalog/Model/Product/Price/TierPriceValidator.php +++ b/app/code/Magento/Catalog/Model/Product/Price/TierPriceValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/PriceModifier.php b/app/code/Magento/Catalog/Model/Product/PriceModifier.php index 39d66054db0..2256ff3ae8d 100644 --- a/app/code/Magento/Catalog/Model/Product/PriceModifier.php +++ b/app/code/Magento/Catalog/Model/Product/PriceModifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/PriceModifier/Composite.php b/app/code/Magento/Catalog/Model/Product/PriceModifier/Composite.php index f5c42c0bacc..ea461487a38 100644 --- a/app/code/Magento/Catalog/Model/Product/PriceModifier/Composite.php +++ b/app/code/Magento/Catalog/Model/Product/PriceModifier/Composite.php @@ -3,7 +3,7 @@ * Composite price modifier can be used. * Any module can add its price modifier to extend price modification from other modules. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\PriceModifier; diff --git a/app/code/Magento/Catalog/Model/Product/PriceModifierInterface.php b/app/code/Magento/Catalog/Model/Product/PriceModifierInterface.php index 059dda1030c..6c426c464aa 100644 --- a/app/code/Magento/Catalog/Model/Product/PriceModifierInterface.php +++ b/app/code/Magento/Catalog/Model/Product/PriceModifierInterface.php @@ -2,7 +2,7 @@ /** * Price calculation extension point * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolver.php b/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolver.php index c76a5031e8c..730cd3eced4 100644 --- a/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolver.php +++ b/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolverInterface.php b/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolverInterface.php index d7701566635..f019d5621e0 100644 --- a/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolverInterface.php +++ b/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolverInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/ProductList/Toolbar.php b/app/code/Magento/Catalog/Model/Product/ProductList/Toolbar.php index 11158167a1a..c3e7d41892e 100644 --- a/app/code/Magento/Catalog/Model/Product/ProductList/Toolbar.php +++ b/app/code/Magento/Catalog/Model/Product/ProductList/Toolbar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\ProductList; diff --git a/app/code/Magento/Catalog/Model/Product/ReservedAttributeList.php b/app/code/Magento/Catalog/Model/Product/ReservedAttributeList.php index 764b732940f..5ada5ad87e6 100644 --- a/app/code/Magento/Catalog/Model/Product/ReservedAttributeList.php +++ b/app/code/Magento/Catalog/Model/Product/ReservedAttributeList.php @@ -2,7 +2,7 @@ /** * Reserved product attribute list * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/ScopedTierPriceManagement.php b/app/code/Magento/Catalog/Model/Product/ScopedTierPriceManagement.php index f08702bdd73..d8bd8a0cd82 100644 --- a/app/code/Magento/Catalog/Model/Product/ScopedTierPriceManagement.php +++ b/app/code/Magento/Catalog/Model/Product/ScopedTierPriceManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/TierPrice.php b/app/code/Magento/Catalog/Model/Product/TierPrice.php index e40b2463135..6aee62b8b26 100644 --- a/app/code/Magento/Catalog/Model/Product/TierPrice.php +++ b/app/code/Magento/Catalog/Model/Product/TierPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/TierPriceManagement.php b/app/code/Magento/Catalog/Model/Product/TierPriceManagement.php index 90dfb36409f..f7b4e0078c8 100644 --- a/app/code/Magento/Catalog/Model/Product/TierPriceManagement.php +++ b/app/code/Magento/Catalog/Model/Product/TierPriceManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Type.php b/app/code/Magento/Catalog/Model/Product/Type.php index 022822a62ae..94c0c01ec9f 100644 --- a/app/code/Magento/Catalog/Model/Product/Type.php +++ b/app/code/Magento/Catalog/Model/Product/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php index 11b8d03fc7e..71a700cc290 100644 --- a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php +++ b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Type; diff --git a/app/code/Magento/Catalog/Model/Product/Type/Pool.php b/app/code/Magento/Catalog/Model/Product/Type/Pool.php index 84058a2fed4..0139c3cdae0 100644 --- a/app/code/Magento/Catalog/Model/Product/Type/Pool.php +++ b/app/code/Magento/Catalog/Model/Product/Type/Pool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Type/Price.php b/app/code/Magento/Catalog/Model/Product/Type/Price.php index 13dfdfe6e5c..bccd5e147c8 100644 --- a/app/code/Magento/Catalog/Model/Product/Type/Price.php +++ b/app/code/Magento/Catalog/Model/Product/Type/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Type/Price/Factory.php b/app/code/Magento/Catalog/Model/Product/Type/Price/Factory.php index 257b0e8d052..6d1fc78798c 100644 --- a/app/code/Magento/Catalog/Model/Product/Type/Price/Factory.php +++ b/app/code/Magento/Catalog/Model/Product/Type/Price/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Type/Simple.php b/app/code/Magento/Catalog/Model/Product/Type/Simple.php index c40bbbca6ce..a4419f594ac 100644 --- a/app/code/Magento/Catalog/Model/Product/Type/Simple.php +++ b/app/code/Magento/Catalog/Model/Product/Type/Simple.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Type; diff --git a/app/code/Magento/Catalog/Model/Product/Type/Virtual.php b/app/code/Magento/Catalog/Model/Product/Type/Virtual.php index d2b1cb2a86c..a56304f65e4 100644 --- a/app/code/Magento/Catalog/Model/Product/Type/Virtual.php +++ b/app/code/Magento/Catalog/Model/Product/Type/Virtual.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/TypeTransitionManager.php b/app/code/Magento/Catalog/Model/Product/TypeTransitionManager.php index fe89b7eb85a..41b4fe49709 100644 --- a/app/code/Magento/Catalog/Model/Product/TypeTransitionManager.php +++ b/app/code/Magento/Catalog/Model/Product/TypeTransitionManager.php @@ -2,7 +2,7 @@ /** * Product type transition manager * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Url.php b/app/code/Magento/Catalog/Model/Product/Url.php index e87196a3634..9655ca2c2f5 100644 --- a/app/code/Magento/Catalog/Model/Product/Url.php +++ b/app/code/Magento/Catalog/Model/Product/Url.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Validator.php b/app/code/Magento/Catalog/Model/Product/Validator.php index cdc05dcff69..7ffc6e5d75a 100644 --- a/app/code/Magento/Catalog/Model/Product/Validator.php +++ b/app/code/Magento/Catalog/Model/Product/Validator.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product; diff --git a/app/code/Magento/Catalog/Model/Product/Visibility.php b/app/code/Magento/Catalog/Model/Product/Visibility.php index f1c6c854081..33afa643346 100644 --- a/app/code/Magento/Catalog/Model/Product/Visibility.php +++ b/app/code/Magento/Catalog/Model/Product/Visibility.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Website.php b/app/code/Magento/Catalog/Model/Product/Website.php index b7de6cb8658..d86f6c25ed8 100644 --- a/app/code/Magento/Catalog/Model/Product/Website.php +++ b/app/code/Magento/Catalog/Model/Product/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Product/Website/ReadHandler.php b/app/code/Magento/Catalog/Model/Product/Website/ReadHandler.php index 8d3fe1536ca..923718e7d96 100644 --- a/app/code/Magento/Catalog/Model/Product/Website/ReadHandler.php +++ b/app/code/Magento/Catalog/Model/Product/Website/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Website; diff --git a/app/code/Magento/Catalog/Model/Product/Website/SaveHandler.php b/app/code/Magento/Catalog/Model/Product/Website/SaveHandler.php index 1eaccc2f644..bd351820757 100644 --- a/app/code/Magento/Catalog/Model/Product/Website/SaveHandler.php +++ b/app/code/Magento/Catalog/Model/Product/Website/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Website; diff --git a/app/code/Magento/Catalog/Model/ProductAttributeGroupRepository.php b/app/code/Magento/Catalog/Model/ProductAttributeGroupRepository.php index cb46f5d17e0..d42fab94df2 100644 --- a/app/code/Magento/Catalog/Model/ProductAttributeGroupRepository.php +++ b/app/code/Magento/Catalog/Model/ProductAttributeGroupRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/ProductIdLocator.php b/app/code/Magento/Catalog/Model/ProductIdLocator.php index 1678ecd23c9..3cc6f931ec4 100644 --- a/app/code/Magento/Catalog/Model/ProductIdLocator.php +++ b/app/code/Magento/Catalog/Model/ProductIdLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductIdLocatorInterface.php b/app/code/Magento/Catalog/Model/ProductIdLocatorInterface.php index f9a0d88df2e..e296666e86c 100644 --- a/app/code/Magento/Catalog/Model/ProductIdLocatorInterface.php +++ b/app/code/Magento/Catalog/Model/ProductIdLocatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/ProductLink/Attribute.php b/app/code/Magento/Catalog/Model/ProductLink/Attribute.php index 2acecffa8c2..ab76d6102c6 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/Attribute.php +++ b/app/code/Magento/Catalog/Model/ProductLink/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider.php b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider.php index 4b23ab5ffa3..917a47b637c 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider.php +++ b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Crosssell.php b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Crosssell.php index f1955166901..4140e18fb13 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Crosssell.php +++ b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Crosssell.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Related.php b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Related.php index 0ffd728ac8a..2dbe9cc9df9 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Related.php +++ b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Related.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Upsell.php b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Upsell.php index c3870f6e7f7..7e2663cc3e0 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Upsell.php +++ b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Upsell.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/CollectionProviderInterface.php b/app/code/Magento/Catalog/Model/ProductLink/CollectionProviderInterface.php index 5f1082c8c46..81f67cf58d1 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/CollectionProviderInterface.php +++ b/app/code/Magento/Catalog/Model/ProductLink/CollectionProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterInterface.php b/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterInterface.php index 4a12974e1ba..7c47f11d9fc 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterInterface.php +++ b/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterPool.php b/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterPool.php index c0697d2df37..a12c0585cb0 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterPool.php +++ b/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/Converter/DefaultConverter.php b/app/code/Magento/Catalog/Model/ProductLink/Converter/DefaultConverter.php index 1d2c402414d..73f81b1edca 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/Converter/DefaultConverter.php +++ b/app/code/Magento/Catalog/Model/ProductLink/Converter/DefaultConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/Link.php b/app/code/Magento/Catalog/Model/ProductLink/Link.php index f1953d3e614..98043de3349 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/Link.php +++ b/app/code/Magento/Catalog/Model/ProductLink/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/Management.php b/app/code/Magento/Catalog/Model/ProductLink/Management.php index 58c2068f1a9..4582bbd9f40 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/Management.php +++ b/app/code/Magento/Catalog/Model/ProductLink/Management.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/Repository.php b/app/code/Magento/Catalog/Model/ProductLink/Repository.php index 3af7485169a..e6832a4ff2f 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/Repository.php +++ b/app/code/Magento/Catalog/Model/ProductLink/Repository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductLink/Type.php b/app/code/Magento/Catalog/Model/ProductLink/Type.php index e947f478c4f..a45589204fd 100644 --- a/app/code/Magento/Catalog/Model/ProductLink/Type.php +++ b/app/code/Magento/Catalog/Model/ProductLink/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductManagement.php b/app/code/Magento/Catalog/Model/ProductManagement.php index 4c746ae6b05..790b43b3002 100644 --- a/app/code/Magento/Catalog/Model/ProductManagement.php +++ b/app/code/Magento/Catalog/Model/ProductManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/ProductOption.php b/app/code/Magento/Catalog/Model/ProductOption.php index 32a98aa7ec1..cc1e74eeff6 100644 --- a/app/code/Magento/Catalog/Model/ProductOption.php +++ b/app/code/Magento/Catalog/Model/ProductOption.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/ProductOptionProcessor.php b/app/code/Magento/Catalog/Model/ProductOptionProcessor.php index 4514eeb51bf..e179e40608a 100644 --- a/app/code/Magento/Catalog/Model/ProductOptionProcessor.php +++ b/app/code/Magento/Catalog/Model/ProductOptionProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/ProductOptionProcessorInterface.php b/app/code/Magento/Catalog/Model/ProductOptionProcessorInterface.php index f97f06a1985..16b9cac6bcc 100644 --- a/app/code/Magento/Catalog/Model/ProductOptionProcessorInterface.php +++ b/app/code/Magento/Catalog/Model/ProductOptionProcessorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/ProductOptions/Config.php b/app/code/Magento/Catalog/Model/ProductOptions/Config.php index fa828832bf4..49c0d1ce215 100644 --- a/app/code/Magento/Catalog/Model/ProductOptions/Config.php +++ b/app/code/Magento/Catalog/Model/ProductOptions/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ProductOptions; diff --git a/app/code/Magento/Catalog/Model/ProductOptions/Config/Converter.php b/app/code/Magento/Catalog/Model/ProductOptions/Config/Converter.php index c5e19f2efdc..7b478a1a129 100644 --- a/app/code/Magento/Catalog/Model/ProductOptions/Config/Converter.php +++ b/app/code/Magento/Catalog/Model/ProductOptions/Config/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ProductOptions\Config; diff --git a/app/code/Magento/Catalog/Model/ProductOptions/Config/Reader.php b/app/code/Magento/Catalog/Model/ProductOptions/Config/Reader.php index e67fe845b25..25086cc86e4 100644 --- a/app/code/Magento/Catalog/Model/ProductOptions/Config/Reader.php +++ b/app/code/Magento/Catalog/Model/ProductOptions/Config/Reader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ProductOptions\Config; diff --git a/app/code/Magento/Catalog/Model/ProductOptions/Config/SchemaLocator.php b/app/code/Magento/Catalog/Model/ProductOptions/Config/SchemaLocator.php index 84381643040..4b5ea298cfb 100644 --- a/app/code/Magento/Catalog/Model/ProductOptions/Config/SchemaLocator.php +++ b/app/code/Magento/Catalog/Model/ProductOptions/Config/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ProductOptions\Config; diff --git a/app/code/Magento/Catalog/Model/ProductOptions/ConfigInterface.php b/app/code/Magento/Catalog/Model/ProductOptions/ConfigInterface.php index ffbfee1079e..84fb0d21b75 100644 --- a/app/code/Magento/Catalog/Model/ProductOptions/ConfigInterface.php +++ b/app/code/Magento/Catalog/Model/ProductOptions/ConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ProductOptions; diff --git a/app/code/Magento/Catalog/Model/ProductOptions/TypeList.php b/app/code/Magento/Catalog/Model/ProductOptions/TypeList.php index ad1deb421fd..afeb581b23f 100644 --- a/app/code/Magento/Catalog/Model/ProductOptions/TypeList.php +++ b/app/code/Magento/Catalog/Model/ProductOptions/TypeList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductRepository.php b/app/code/Magento/Catalog/Model/ProductRepository.php index 27796e1cda2..20c6eec2128 100644 --- a/app/code/Magento/Catalog/Model/ProductRepository.php +++ b/app/code/Magento/Catalog/Model/ProductRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/ProductType.php b/app/code/Magento/Catalog/Model/ProductType.php index 30119223ef7..c1c0ecc82c4 100644 --- a/app/code/Magento/Catalog/Model/ProductType.php +++ b/app/code/Magento/Catalog/Model/ProductType.php @@ -2,7 +2,7 @@ /** * Product type * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/ProductTypeList.php b/app/code/Magento/Catalog/Model/ProductTypeList.php index ad36a7736de..3e9946f43ea 100644 --- a/app/code/Magento/Catalog/Model/ProductTypeList.php +++ b/app/code/Magento/Catalog/Model/ProductTypeList.php @@ -2,7 +2,7 @@ /** * Product type provider * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/ProductTypes/Config.php b/app/code/Magento/Catalog/Model/ProductTypes/Config.php index f691e08a34b..2db4b59878e 100644 --- a/app/code/Magento/Catalog/Model/ProductTypes/Config.php +++ b/app/code/Magento/Catalog/Model/ProductTypes/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ProductTypes; diff --git a/app/code/Magento/Catalog/Model/ProductTypes/Config/Converter.php b/app/code/Magento/Catalog/Model/ProductTypes/Config/Converter.php index cad807292e8..2fc446143ec 100644 --- a/app/code/Magento/Catalog/Model/ProductTypes/Config/Converter.php +++ b/app/code/Magento/Catalog/Model/ProductTypes/Config/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ProductTypes\Config; diff --git a/app/code/Magento/Catalog/Model/ProductTypes/Config/Reader.php b/app/code/Magento/Catalog/Model/ProductTypes/Config/Reader.php index 2fad0ea8cb7..6ce74fbf90a 100644 --- a/app/code/Magento/Catalog/Model/ProductTypes/Config/Reader.php +++ b/app/code/Magento/Catalog/Model/ProductTypes/Config/Reader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ProductTypes\Config; diff --git a/app/code/Magento/Catalog/Model/ProductTypes/Config/SchemaLocator.php b/app/code/Magento/Catalog/Model/ProductTypes/Config/SchemaLocator.php index c46b3a027ea..02f33636483 100644 --- a/app/code/Magento/Catalog/Model/ProductTypes/Config/SchemaLocator.php +++ b/app/code/Magento/Catalog/Model/ProductTypes/Config/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ProductTypes\Config; diff --git a/app/code/Magento/Catalog/Model/ProductTypes/ConfigInterface.php b/app/code/Magento/Catalog/Model/ProductTypes/ConfigInterface.php index 7240585d413..9d6fb5bd907 100644 --- a/app/code/Magento/Catalog/Model/ProductTypes/ConfigInterface.php +++ b/app/code/Magento/Catalog/Model/ProductTypes/ConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ProductTypes; diff --git a/app/code/Magento/Catalog/Model/ProductWebsiteLink.php b/app/code/Magento/Catalog/Model/ProductWebsiteLink.php index 128290ffe38..4cd11b922f0 100644 --- a/app/code/Magento/Catalog/Model/ProductWebsiteLink.php +++ b/app/code/Magento/Catalog/Model/ProductWebsiteLink.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ProductWebsiteLinkRepository.php b/app/code/Magento/Catalog/Model/ProductWebsiteLinkRepository.php index 8c0b395b39f..55469ccf038 100644 --- a/app/code/Magento/Catalog/Model/ProductWebsiteLinkRepository.php +++ b/app/code/Magento/Catalog/Model/ProductWebsiteLinkRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ResourceModel/AbstractCollection.php b/app/code/Magento/Catalog/Model/ResourceModel/AbstractCollection.php index e026d6540ac..05e8e0a14e8 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/AbstractCollection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/AbstractResource.php b/app/code/Magento/Catalog/Model/ResourceModel/AbstractResource.php index d21b6fd9a2f..b1348697ee9 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/AbstractResource.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/AbstractResource.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Attribute.php b/app/code/Magento/Catalog/Model/ResourceModel/Attribute.php index 90807e691c6..ce3cc01a583 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Attribute.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/AttributePersistor.php b/app/code/Magento/Catalog/Model/ResourceModel/AttributePersistor.php index 4e848b0f0eb..659eb2ab9a2 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/AttributePersistor.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/AttributePersistor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category.php b/app/code/Magento/Catalog/Model/ResourceModel/Category.php index e743c5d384b..6353e2207cb 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Category.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/AggregateCount.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/AggregateCount.php index 4599fc4a842..7d55ebc3e9f 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Category/AggregateCount.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Category/AggregateCount.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Category; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Collection.php index 73dd760ac7a..f9dd1a2af99 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Collection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Category\Attribute; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Frontend/Image.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Frontend/Image.php index 93a3ab7e8eb..eaffc77b244 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Frontend/Image.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Frontend/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Category\Attribute\Frontend; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Layout.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Layout.php index d237166c713..696a3a67ab6 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Layout.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Layout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Category\Attribute\Source; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Page.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Page.php index 8bf7cc4c5b0..8679cc91b99 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Page.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Category\Attribute\Source; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection.php index dc24154a983..f53faca284c 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Category; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection/Factory.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection/Factory.php index 25b3b4573ee..9aee6f89993 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection/Factory.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Category\Collection; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat.php index 6740f6bc407..fd4333abd5f 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Category; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat/Collection.php index 2688267c2f4..e0810c5c1f5 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat/Collection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Category\Flat; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Tree.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Tree.php index 876d27e4f94..942a34b8e38 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Category/Tree.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Category/Tree.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Category; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/CategoryProduct.php b/app/code/Magento/Catalog/Model/ResourceModel/CategoryProduct.php index b3ce16d1349..572a6634421 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/CategoryProduct.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/CategoryProduct.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Collection/AbstractCollection.php b/app/code/Magento/Catalog/Model/ResourceModel/Collection/AbstractCollection.php index 5098fef9977..21324e0d761 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Collection/AbstractCollection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Collection/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Collection; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Config.php b/app/code/Magento/Catalog/Model/ResourceModel/Config.php index 4805837c707..9c5d04cc077 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Config.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Eav/Attribute.php b/app/code/Magento/Catalog/Model/ResourceModel/Eav/Attribute.php index 8fdb867c9db..8d61a8f46ab 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Eav/Attribute.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Eav/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Helper.php b/app/code/Magento/Catalog/Model/ResourceModel/Helper.php index 36dbf0b9739..d9490b418c3 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Helper.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Helper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Attribute.php b/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Attribute.php index 80e2049c875..1ce80c559f1 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Attribute.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Layer\Filter; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Decimal.php b/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Decimal.php index b6e6ded78ec..eaf0ba3c514 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Decimal.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Decimal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Layer\Filter; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Price.php b/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Price.php index 5609610fa08..a8b7bf29601 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Price.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Layer\Filter; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/MaxHeapTableSizeProcessor.php b/app/code/Magento/Catalog/Model/ResourceModel/MaxHeapTableSizeProcessor.php index 2e599c2af3d..29b4326816a 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/MaxHeapTableSizeProcessor.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/MaxHeapTableSizeProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product.php b/app/code/Magento/Catalog/Model/ResourceModel/Product.php index a3be4a2f98a..f534b80de1b 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Action.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Action.php index 7075e1e11d4..46ecffcb6f4 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Action.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php index 717056ddde0..0f09f20ee2d 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Image.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Image.php index b2448d1fa20..b068b2c4567 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Image.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Tierprice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Tierprice.php index 0f17ecbf98e..6b9453e84e9 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Tierprice.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Tierprice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Collection.php index ad229b45578..ef752c5e451 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Collection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Attribute; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/BaseSelectProcessorInterface.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/BaseSelectProcessorInterface.php index e6a995b6547..37558dbee4d 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/BaseSelectProcessorInterface.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/BaseSelectProcessorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/CategoryLink.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/CategoryLink.php index 42b2b9ca20c..6b481c95583 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/CategoryLink.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/CategoryLink.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection.php index 1cf18fc998e..4ffa5782b7b 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection/ProductLimitation.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection/ProductLimitation.php index aba330bea06..28fcb4ab5c4 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection/ProductLimitation.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection/ProductLimitation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Collection; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item.php index 74e90b35fcb..37077d54903 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Compare; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item/Collection.php index 9b1985407da..a5ef1baa7d9 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item/Collection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Compare\Item; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/CompositeBaseSelectProcessor.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/CompositeBaseSelectProcessor.php index 86f5a237084..5183b333c6c 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/CompositeBaseSelectProcessor.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/CompositeBaseSelectProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Flat.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Flat.php index 56f14d4c125..2dd445377d6 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Flat.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Flat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Gallery.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Gallery.php index 9c9eec852fa..aaac6b3cae1 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Gallery.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Gallery.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/AbstractIndexer.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/AbstractIndexer.php index 44d9b1c0304..378a3ddf099 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/AbstractIndexer.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/AbstractIndexer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Indexer; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/AbstractEav.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/AbstractEav.php index 432bc696ef7..137ecc4bb85 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/AbstractEav.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/AbstractEav.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Indexer\Eav; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Decimal.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Decimal.php index a45d4f13a1a..76127b02d5f 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Decimal.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Decimal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Indexer\Eav; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Source.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Source.php index 1d37c57aa8b..7a698ae595d 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Source.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Source.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Indexer\Eav; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/LinkedProductSelectBuilderByIndexPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/LinkedProductSelectBuilderByIndexPrice.php index 3aa6642c82d..ffaf8a5d100 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/LinkedProductSelectBuilderByIndexPrice.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/LinkedProductSelectBuilderByIndexPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Indexer; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/DefaultPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/DefaultPrice.php index 2b979ff79fe..fbf2ea6eada 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/DefaultPrice.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/DefaultPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Indexer\Price; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/Factory.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/Factory.php index ddaf7adef8c..bacf79408ca 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/Factory.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/PriceInterface.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/PriceInterface.php index db2b16b9de7..25f22083ac9 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/PriceInterface.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/PriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Indexer\Price; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link.php index 17bfa90e884..7b0567d92f2 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Collection.php index 999d70d8081..da9a46c9e10 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Collection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Link; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/DeleteHandler.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/DeleteHandler.php index 4e60bcc51eb..a1525d8f355 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/DeleteHandler.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/DeleteHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Product/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Product/Collection.php index 116f454cd5e..2b32c66986c 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Product/Collection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Product/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Link\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/SaveHandler.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/SaveHandler.php index ad987c6c8b4..24a7210d8ff 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/SaveHandler.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByBasePrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByBasePrice.php index 7caa72b3679..52e9d83f40d 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByBasePrice.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByBasePrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderBySpecialPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderBySpecialPrice.php index 68eaf206e29..e202a6846ed 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderBySpecialPrice.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderBySpecialPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByTierPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByTierPrice.php index 25bf83f837d..bd6f9ff198b 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByTierPrice.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByTierPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderComposite.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderComposite.php index f3dc2256859..377a4d6429e 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderComposite.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderComposite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderInterface.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderInterface.php index e437791fd3d..94bdaeaedf5 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderInterface.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option.php index 8dcdf441d7b..da3227da750 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Collection.php index 68280d5a1d5..8f434995de9 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Collection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Option; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value.php index 4f3d65800d9..2dad5d0a441 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Option; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value/Collection.php index 0924808a7dc..1f65ec334de 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value/Collection.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Option\Value; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Relation.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Relation.php index c057ff91e69..013adfcb18f 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Relation.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Relation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/StatusBaseSelectProcessor.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/StatusBaseSelectProcessor.php index b4293a39895..a1feab66229 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/StatusBaseSelectProcessor.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/StatusBaseSelectProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Website.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Website.php index 69d58ddefb7..b355c9e6374 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Website.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Website/Link.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Website/Link.php index d5a9249d085..4a9c80ec440 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Product/Website/Link.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Product/Website/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Product\Website; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Setup/PropertyMapper.php b/app/code/Magento/Catalog/Model/ResourceModel/Setup/PropertyMapper.php index 01f0238a03b..9afc57845e1 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Setup/PropertyMapper.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Setup/PropertyMapper.php @@ -2,7 +2,7 @@ /** * Catalog attribute property mapper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel\Setup; diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Url.php b/app/code/Magento/Catalog/Model/ResourceModel/Url.php index cc7daa73ea2..89443b0fbe8 100644 --- a/app/code/Magento/Catalog/Model/ResourceModel/Url.php +++ b/app/code/Magento/Catalog/Model/ResourceModel/Url.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\ResourceModel; diff --git a/app/code/Magento/Catalog/Model/Rss/Category.php b/app/code/Magento/Catalog/Model/Rss/Category.php index a3695f5d74f..372a9c523af 100644 --- a/app/code/Magento/Catalog/Model/Rss/Category.php +++ b/app/code/Magento/Catalog/Model/Rss/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Rss; diff --git a/app/code/Magento/Catalog/Model/Rss/Product/NewProducts.php b/app/code/Magento/Catalog/Model/Rss/Product/NewProducts.php index b8f91976e6d..2d19da4e73b 100644 --- a/app/code/Magento/Catalog/Model/Rss/Product/NewProducts.php +++ b/app/code/Magento/Catalog/Model/Rss/Product/NewProducts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Rss\Product; diff --git a/app/code/Magento/Catalog/Model/Rss/Product/NotifyStock.php b/app/code/Magento/Catalog/Model/Rss/Product/NotifyStock.php index c5ef02c0601..b913277e823 100644 --- a/app/code/Magento/Catalog/Model/Rss/Product/NotifyStock.php +++ b/app/code/Magento/Catalog/Model/Rss/Product/NotifyStock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Rss\Product; diff --git a/app/code/Magento/Catalog/Model/Rss/Product/Special.php b/app/code/Magento/Catalog/Model/Rss/Product/Special.php index 0c756c9b0e3..1ae42c995c9 100644 --- a/app/code/Magento/Catalog/Model/Rss/Product/Special.php +++ b/app/code/Magento/Catalog/Model/Rss/Product/Special.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Rss\Product; diff --git a/app/code/Magento/Catalog/Model/Session.php b/app/code/Magento/Catalog/Model/Session.php index 675ac092f21..eaab0fdf794 100644 --- a/app/code/Magento/Catalog/Model/Session.php +++ b/app/code/Magento/Catalog/Model/Session.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model; diff --git a/app/code/Magento/Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite/Suffix.php b/app/code/Magento/Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite/Suffix.php index e441d703dcd..428b5d5d408 100644 --- a/app/code/Magento/Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite/Suffix.php +++ b/app/code/Magento/Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite/Suffix.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/System/Config/Source/Inputtype.php b/app/code/Magento/Catalog/Model/System/Config/Source/Inputtype.php index 6202ffc1a4b..d4cc7488d92 100644 --- a/app/code/Magento/Catalog/Model/System/Config/Source/Inputtype.php +++ b/app/code/Magento/Catalog/Model/System/Config/Source/Inputtype.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\System\Config\Source; diff --git a/app/code/Magento/Catalog/Model/Template/Filter.php b/app/code/Magento/Catalog/Model/Template/Filter.php index 3d9695c183f..dbac05ff786 100644 --- a/app/code/Magento/Catalog/Model/Template/Filter.php +++ b/app/code/Magento/Catalog/Model/Template/Filter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Template/Filter/Factory.php b/app/code/Magento/Catalog/Model/Template/Filter/Factory.php index e14e715e81b..d671bf135c9 100644 --- a/app/code/Magento/Catalog/Model/Template/Filter/Factory.php +++ b/app/code/Magento/Catalog/Model/Template/Filter/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/View/Asset/Image.php b/app/code/Magento/Catalog/Model/View/Asset/Image.php index 31129d7d892..75349ed380b 100644 --- a/app/code/Magento/Catalog/Model/View/Asset/Image.php +++ b/app/code/Magento/Catalog/Model/View/Asset/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/View/Asset/Image/Context.php b/app/code/Magento/Catalog/Model/View/Asset/Image/Context.php index 33f0adb70c9..f72447c6ca2 100644 --- a/app/code/Magento/Catalog/Model/View/Asset/Image/Context.php +++ b/app/code/Magento/Catalog/Model/View/Asset/Image/Context.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/View/Asset/Placeholder.php b/app/code/Magento/Catalog/Model/View/Asset/Placeholder.php index fd7dcd1c469..7fa55b27a4b 100644 --- a/app/code/Magento/Catalog/Model/View/Asset/Placeholder.php +++ b/app/code/Magento/Catalog/Model/View/Asset/Placeholder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/Date.php b/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/Date.php index 779c725bd90..aeeaf049556 100644 --- a/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/Date.php +++ b/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/Date.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Webapi\Product\Option\Type; diff --git a/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/File/Processor.php b/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/File/Processor.php index 96e8b492b4e..a2b64439c8e 100644 --- a/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/File/Processor.php +++ b/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/File/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Webapi\Product\Option\Type\File; diff --git a/app/code/Magento/Catalog/Observer/CatalogCheckIsUsingStaticUrlsAllowedObserver.php b/app/code/Magento/Catalog/Observer/CatalogCheckIsUsingStaticUrlsAllowedObserver.php index 3286d26e216..6d9e8638019 100644 --- a/app/code/Magento/Catalog/Observer/CatalogCheckIsUsingStaticUrlsAllowedObserver.php +++ b/app/code/Magento/Catalog/Observer/CatalogCheckIsUsingStaticUrlsAllowedObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Observer; diff --git a/app/code/Magento/Catalog/Observer/Compare/BindCustomerLoginObserver.php b/app/code/Magento/Catalog/Observer/Compare/BindCustomerLoginObserver.php index a899b6dbc2f..39bf265d66d 100644 --- a/app/code/Magento/Catalog/Observer/Compare/BindCustomerLoginObserver.php +++ b/app/code/Magento/Catalog/Observer/Compare/BindCustomerLoginObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Observer\Compare; diff --git a/app/code/Magento/Catalog/Observer/Compare/BindCustomerLogoutObserver.php b/app/code/Magento/Catalog/Observer/Compare/BindCustomerLogoutObserver.php index 148ea8b44ec..ef3a4b865a0 100644 --- a/app/code/Magento/Catalog/Observer/Compare/BindCustomerLogoutObserver.php +++ b/app/code/Magento/Catalog/Observer/Compare/BindCustomerLogoutObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Observer\Compare; diff --git a/app/code/Magento/Catalog/Observer/MenuCategoryData.php b/app/code/Magento/Catalog/Observer/MenuCategoryData.php index 941eadcea57..05819a93d9d 100644 --- a/app/code/Magento/Catalog/Observer/MenuCategoryData.php +++ b/app/code/Magento/Catalog/Observer/MenuCategoryData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Observer; diff --git a/app/code/Magento/Catalog/Plugin/Block/Topmenu.php b/app/code/Magento/Catalog/Plugin/Block/Topmenu.php index 72bf4468080..04b2dadf3b6 100644 --- a/app/code/Magento/Catalog/Plugin/Block/Topmenu.php +++ b/app/code/Magento/Catalog/Plugin/Block/Topmenu.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Plugin\Block; diff --git a/app/code/Magento/Catalog/Plugin/Model/Attribute/Backend/AttributeValidation.php b/app/code/Magento/Catalog/Plugin/Model/Attribute/Backend/AttributeValidation.php index 170bc50dac3..ed490f51bfb 100644 --- a/app/code/Magento/Catalog/Plugin/Model/Attribute/Backend/AttributeValidation.php +++ b/app/code/Magento/Catalog/Plugin/Model/Attribute/Backend/AttributeValidation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Plugin\Model\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/Execute.php b/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/Execute.php index 896609e3a30..5d312060726 100644 --- a/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/Execute.php +++ b/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/Execute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/MaxHeapTableSizeProcessorOnFullReindex.php b/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/MaxHeapTableSizeProcessorOnFullReindex.php index f14156c7f09..153a60d9880 100644 --- a/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/MaxHeapTableSizeProcessorOnFullReindex.php +++ b/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/MaxHeapTableSizeProcessorOnFullReindex.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Plugin/Model/Product/Action/UpdateAttributesFlushCache.php b/app/code/Magento/Catalog/Plugin/Model/Product/Action/UpdateAttributesFlushCache.php index 010c5f4d0e2..7e69bbe0cc2 100644 --- a/app/code/Magento/Catalog/Plugin/Model/Product/Action/UpdateAttributesFlushCache.php +++ b/app/code/Magento/Catalog/Plugin/Model/Product/Action/UpdateAttributesFlushCache.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Plugin\Model\Product\Action; diff --git a/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Attribute/Save.php b/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Attribute/Save.php index b7d77f40f68..6d2b94ed7ec 100644 --- a/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Attribute/Save.php +++ b/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Attribute/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Config.php b/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Config.php index 69c693f4fd0..1b2da15276d 100644 --- a/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Config.php +++ b/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Plugin\Model\ResourceModel; diff --git a/app/code/Magento/Catalog/Pricing/Price/BasePrice.php b/app/code/Magento/Catalog/Pricing/Price/BasePrice.php index b32d3f14517..82bee56cd9e 100644 --- a/app/code/Magento/Catalog/Pricing/Price/BasePrice.php +++ b/app/code/Magento/Catalog/Pricing/Price/BasePrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Price/ConfiguredPrice.php b/app/code/Magento/Catalog/Pricing/Price/ConfiguredPrice.php index 9da1173295c..3daba2a63cd 100644 --- a/app/code/Magento/Catalog/Pricing/Price/ConfiguredPrice.php +++ b/app/code/Magento/Catalog/Pricing/Price/ConfiguredPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Price/ConfiguredPriceInterface.php b/app/code/Magento/Catalog/Pricing/Price/ConfiguredPriceInterface.php index c9a747aef1e..02155cb907e 100644 --- a/app/code/Magento/Catalog/Pricing/Price/ConfiguredPriceInterface.php +++ b/app/code/Magento/Catalog/Pricing/Price/ConfiguredPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Price/CustomOptionPrice.php b/app/code/Magento/Catalog/Pricing/Price/CustomOptionPrice.php index 016b596b0a1..bb18fdbf4b4 100644 --- a/app/code/Magento/Catalog/Pricing/Price/CustomOptionPrice.php +++ b/app/code/Magento/Catalog/Pricing/Price/CustomOptionPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Pricing\Price; diff --git a/app/code/Magento/Catalog/Pricing/Price/CustomOptionPriceInterface.php b/app/code/Magento/Catalog/Pricing/Price/CustomOptionPriceInterface.php index b42b3f4e21b..463568993fd 100644 --- a/app/code/Magento/Catalog/Pricing/Price/CustomOptionPriceInterface.php +++ b/app/code/Magento/Catalog/Pricing/Price/CustomOptionPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Pricing\Price; diff --git a/app/code/Magento/Catalog/Pricing/Price/FinalPrice.php b/app/code/Magento/Catalog/Pricing/Price/FinalPrice.php index f52d859ac91..019ba97188e 100644 --- a/app/code/Magento/Catalog/Pricing/Price/FinalPrice.php +++ b/app/code/Magento/Catalog/Pricing/Price/FinalPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Price/FinalPriceInterface.php b/app/code/Magento/Catalog/Pricing/Price/FinalPriceInterface.php index b0a5d546801..c804ba8649c 100644 --- a/app/code/Magento/Catalog/Pricing/Price/FinalPriceInterface.php +++ b/app/code/Magento/Catalog/Pricing/Price/FinalPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Price/RegularPrice.php b/app/code/Magento/Catalog/Pricing/Price/RegularPrice.php index bac187bb820..4187a9a208b 100644 --- a/app/code/Magento/Catalog/Pricing/Price/RegularPrice.php +++ b/app/code/Magento/Catalog/Pricing/Price/RegularPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Price/SpecialPrice.php b/app/code/Magento/Catalog/Pricing/Price/SpecialPrice.php index 4bd15c5dbe8..d7d14bca550 100644 --- a/app/code/Magento/Catalog/Pricing/Price/SpecialPrice.php +++ b/app/code/Magento/Catalog/Pricing/Price/SpecialPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Price/SpecialPriceInterface.php b/app/code/Magento/Catalog/Pricing/Price/SpecialPriceInterface.php index 555fcd207a3..ac65ed0f0c8 100644 --- a/app/code/Magento/Catalog/Pricing/Price/SpecialPriceInterface.php +++ b/app/code/Magento/Catalog/Pricing/Price/SpecialPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Price/TierPrice.php b/app/code/Magento/Catalog/Pricing/Price/TierPrice.php index 6c4820d5184..bb7a4649f43 100644 --- a/app/code/Magento/Catalog/Pricing/Price/TierPrice.php +++ b/app/code/Magento/Catalog/Pricing/Price/TierPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Price/TierPriceInterface.php b/app/code/Magento/Catalog/Pricing/Price/TierPriceInterface.php index 46ab05362b3..02e355eeba6 100644 --- a/app/code/Magento/Catalog/Pricing/Price/TierPriceInterface.php +++ b/app/code/Magento/Catalog/Pricing/Price/TierPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Render.php b/app/code/Magento/Catalog/Pricing/Render.php index b6f41c6c5f5..b2315dac524 100644 --- a/app/code/Magento/Catalog/Pricing/Render.php +++ b/app/code/Magento/Catalog/Pricing/Render.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Render/ConfiguredPriceBox.php b/app/code/Magento/Catalog/Pricing/Render/ConfiguredPriceBox.php index 1f117d6ffd3..177780b332b 100644 --- a/app/code/Magento/Catalog/Pricing/Render/ConfiguredPriceBox.php +++ b/app/code/Magento/Catalog/Pricing/Render/ConfiguredPriceBox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Render/FinalPriceBox.php b/app/code/Magento/Catalog/Pricing/Render/FinalPriceBox.php index 05c1e3a79ce..43fb609a781 100644 --- a/app/code/Magento/Catalog/Pricing/Render/FinalPriceBox.php +++ b/app/code/Magento/Catalog/Pricing/Render/FinalPriceBox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Pricing/Render/PriceBox.php b/app/code/Magento/Catalog/Pricing/Render/PriceBox.php index 92ff22decb1..156fbb86336 100644 --- a/app/code/Magento/Catalog/Pricing/Render/PriceBox.php +++ b/app/code/Magento/Catalog/Pricing/Render/PriceBox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Pricing\Render; diff --git a/app/code/Magento/Catalog/Setup/CategorySetup.php b/app/code/Magento/Catalog/Setup/CategorySetup.php index ac97130dc04..e16bb2c5f82 100644 --- a/app/code/Magento/Catalog/Setup/CategorySetup.php +++ b/app/code/Magento/Catalog/Setup/CategorySetup.php @@ -2,7 +2,7 @@ /** * Catalog entity setup * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Setup; diff --git a/app/code/Magento/Catalog/Setup/InstallData.php b/app/code/Magento/Catalog/Setup/InstallData.php index de7e6238ff8..0a5123fac03 100644 --- a/app/code/Magento/Catalog/Setup/InstallData.php +++ b/app/code/Magento/Catalog/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Setup/InstallSchema.php b/app/code/Magento/Catalog/Setup/InstallSchema.php index a2ba6aa283f..31cb143396d 100644 --- a/app/code/Magento/Catalog/Setup/InstallSchema.php +++ b/app/code/Magento/Catalog/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Setup/Recurring.php b/app/code/Magento/Catalog/Setup/Recurring.php index 85484cdddb2..e6cb3027479 100644 --- a/app/code/Magento/Catalog/Setup/Recurring.php +++ b/app/code/Magento/Catalog/Setup/Recurring.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Setup; diff --git a/app/code/Magento/Catalog/Setup/UpgradeData.php b/app/code/Magento/Catalog/Setup/UpgradeData.php index d5f426496e0..17ff2689780 100644 --- a/app/code/Magento/Catalog/Setup/UpgradeData.php +++ b/app/code/Magento/Catalog/Setup/UpgradeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Setup; diff --git a/app/code/Magento/Catalog/Setup/UpgradeSchema.php b/app/code/Magento/Catalog/Setup/UpgradeSchema.php index 7fc2ef7d219..6e7b10a44ba 100755 --- a/app/code/Magento/Catalog/Setup/UpgradeSchema.php +++ b/app/code/Magento/Catalog/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Category/AbstractCategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Category/AbstractCategoryTest.php index cb7d1c20b33..f22f7f50859 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Category/AbstractCategoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Category/AbstractCategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/CancelTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/CancelTest.php index bf1f4adeeae..3565d4024cb 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/CancelTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/CancelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Attribute\Button; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/GenericTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/GenericTest.php index 151d68f45ce..fd37209f000 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/GenericTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/GenericTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Attribute\Button; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/SaveTest.php index 71560c43b45..0bb08f64622 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/SaveTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Attribute\Button; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/Tab/AdvancedTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/Tab/AdvancedTest.php index f2ccd157dca..023f5648a81 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/Tab/AdvancedTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/Tab/AdvancedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Attribute\Edit\Tab; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/GridTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/GridTest.php index 8ea68bee3fd..6941790291c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/GridTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/GridTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/OptionsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/OptionsTest.php index 4d575c5bab9..050dabb9b02 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/OptionsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/OptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Composite\Fieldset; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/InventoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/InventoryTest.php index 11a63ad462d..da36550cd2a 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/InventoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/InventoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Edit\Action\Attribute\Tab; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/AddAttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/AddAttributeTest.php index be8eb9039fd..aaef70fcb7e 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/AddAttributeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/AddAttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/BackTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/BackTest.php index dbdf35cc4d5..66d17fd8da6 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/BackTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/BackTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/CreateCategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/CreateCategoryTest.php index cabcbb5c3e0..0baa0c8e714 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/CreateCategoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/CreateCategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/GenericTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/GenericTest.php index 138dd7ea11a..83aa08d4948 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/GenericTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/GenericTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php index 120cfc03418..23e6208db12 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/AlertsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/AlertsTest.php index 10bc4bed16c..1b28e3d9c75 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/AlertsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/AlertsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Edit\Tab; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/InventoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/InventoryTest.php index 632e46d9537..0bb49f49dc3 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/InventoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/InventoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Edit\Tab; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/CategoryTest.php index c4f600b74d9..ad492829ee0 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/CategoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Helper\Form; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/Gallery/ContentTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/Gallery/ContentTest.php index 1488890f753..0f0a63f4106 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/Gallery/ContentTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/Gallery/ContentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Helper\Form\Gallery; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/GalleryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/GalleryTest.php index 03e6c36a14a..19814f95694 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/GalleryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/GalleryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Helper\Form; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/WeightTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/WeightTest.php index e1b5c2a780c..686799f24e9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/WeightTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/WeightTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Product\Helper\Form; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Options/AjaxTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Options/AjaxTest.php index 42f588eb47c..0c6f680df48 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Options/AjaxTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Options/AjaxTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php index 8bc66759337..11efb045a1c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Rss\Grid; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/NotifyStockTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/NotifyStockTest.php index dd98b3e37ca..6f26351c933 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/NotifyStockTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/NotifyStockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Adminhtml\Rss; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Category/Plugin/PriceBoxTagsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Category/Plugin/PriceBoxTagsTest.php index 60c7b5eada1..ccee0d2a081 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Category/Plugin/PriceBoxTagsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Category/Plugin/PriceBoxTagsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Category/Rss/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Category/Rss/LinkTest.php index 11505323e30..c9932747c3b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Category/Rss/LinkTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Category/Rss/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Category\Rss; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Category/ViewTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Category/ViewTest.php index b5c1f46dccd..5875dda91b2 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Category/ViewTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Category/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Category; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/NavigationTest.php b/app/code/Magento/Catalog/Test/Unit/Block/NavigationTest.php index c2d0eb47227..df14740e7c9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/NavigationTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/NavigationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/AbstractProductTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/AbstractProductTest.php index 548915160de..c3b22236386 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/AbstractProductTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/AbstractProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/Compare/ListCompareTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/Compare/ListCompareTest.php index 327f387f24a..7944f39968c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/Compare/ListCompareTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/Compare/ListCompareTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product\Compare; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ContextTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ContextTest.php index 26c89c1e0f3..4a337d0ea58 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/ContextTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/ContextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ImageBuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ImageBuilderTest.php index df70cbfcea9..dbfbafd8766 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/ImageBuilderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/ImageBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ListProductTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ListProductTest.php index 39e3263722a..d4de92e38fc 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/ListProductTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/ListProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ListTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ListTest.php index 786185e60e9..de0e3d5f0d5 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/ListTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/ListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/NewProductTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/NewProductTest.php index 7a5c1726d16..7c41d06b57e 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/NewProductTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/NewProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/PriceTest.php index 5c8c3eef33e..cbf1d162706 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/PriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/RelatedTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/RelatedTest.php index 441daed2ee7..66e6bc5701b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/RelatedTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/RelatedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product\ProductList; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/ToolbarTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/ToolbarTest.php index 4e17fb15e2d..1149f6b9d8b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/ToolbarTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/ToolbarTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/UpsellTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/UpsellTest.php index 8f40db9bd73..871aebbacf6 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/UpsellTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/UpsellTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product\ProductList; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/View/GalleryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/View/GalleryTest.php index 3aee622b5e3..b3b6c0503bd 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/View/GalleryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/View/GalleryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product\View; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/View/OptionsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/View/OptionsTest.php index 0e8d5523222..9bafb60fc5b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/View/OptionsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/View/OptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product\View; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/View/TabsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/View/TabsTest.php index dffdce644d8..291b3c8d2b9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/View/TabsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/View/TabsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product\View; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ViewTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ViewTest.php index f0287e05a4b..726a3e0efdd 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/ViewTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/ViewTest.php @@ -2,7 +2,7 @@ /** * Test class for \Magento\Catalog\Block\Product\View * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/Widget/NewWidgetTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/Widget/NewWidgetTest.php index a42f3354f98..9c153fb9202 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Product/Widget/NewWidgetTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Product/Widget/NewWidgetTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Product\Widget; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Rss/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Rss/CategoryTest.php index e7e8171868f..7a58617b90d 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Rss/CategoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Rss/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Rss; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/NewProductsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/NewProductsTest.php index 83195fd0af2..43078bb284d 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/NewProductsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/NewProductsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Rss\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/SpecialTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/SpecialTest.php index 426a052dfbf..65f42e09ad2 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/SpecialTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/SpecialTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Rss\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Widget/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Widget/LinkTest.php index 38ef73e42b0..a2f4afb9fd3 100644 --- a/app/code/Magento/Catalog/Test/Unit/Block/Widget/LinkTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Block/Widget/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Block\Widget; diff --git a/app/code/Magento/Catalog/Test/Unit/Console/Command/ImagesResizeCommandTest.php b/app/code/Magento/Catalog/Test/Unit/Console/Command/ImagesResizeCommandTest.php index d87837bebac..e5537d8eeff 100644 --- a/app/code/Magento/Catalog/Test/Unit/Console/Command/ImagesResizeCommandTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Console/Command/ImagesResizeCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Console\Command; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/DeleteTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/DeleteTest.php index 4a4c68b6426..282fb99a24d 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/DeleteTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/DeleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/EditTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/EditTest.php index 12869f7c6f4..d96d6e99ad9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/EditTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/EditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Image/UploadTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Image/UploadTest.php index 387e9a8a6a8..6f71fc99fef 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Image/UploadTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Image/UploadTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Category\Image; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/SaveTest.php index 745d4671005..6c6fa4c3a10 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/SaveTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Category; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/CategoriesJsonTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/CategoriesJsonTest.php index 824d1c7bf23..59b2238aacd 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/CategoriesJsonTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/CategoriesJsonTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/ChooserTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/ChooserTest.php index 6872c8a0193..dd1afb1c058 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/ChooserTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/ChooserTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/EditTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/EditTest.php index 9b8a85eee6e..7d8abc59392 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/EditTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/EditTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product\Action\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/SaveTest.php index 4e3ace63e9d..b02b8818f7f 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/SaveTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/SaveTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product\Action\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AddAttributeToTemplateTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AddAttributeToTemplateTest.php index a55766f895b..fbb12317cbe 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AddAttributeToTemplateTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AddAttributeToTemplateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/EditTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/EditTest.php index be6cd557299..b2eb887f04b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/EditTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/EditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/SaveTest.php index 4a2893620b1..be9ee494920 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/SaveTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/ValidateTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/ValidateTest.php index a32513bea94..85578dbe410 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/ValidateTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/ValidateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AttributeTest.php index e64b8e06a2f..2dd1a0ab3b6 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AttributeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/BuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/BuilderTest.php index fa2e0271d9c..83d58aa817f 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/BuilderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/BuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactoryTest.php index f5a3bdbb27c..2311edf1166 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product\Initialization\Helper; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/CompositeTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/CompositeTest.php index 588c4c8c860..42c67ab81cd 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/CompositeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/CompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product\Initialization\Helper\Plugin\Handler; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/HelperTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/HelperTest.php index c67ed25d9c6..a5715d474c4 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/HelperTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/HelperTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product\Initialization; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/StockDataFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/StockDataFilterTest.php index a226ce91b24..384db2dcb72 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/StockDataFilterTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/StockDataFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product\Initialization; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/MassStatusTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/MassStatusTest.php index 6f7809d89e5..d944ccc2468 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/MassStatusTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/MassStatusTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/NewActionTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/NewActionTest.php index f8754ce00e5..71f729ffec9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/NewActionTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/NewActionTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ReloadTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ReloadTest.php index 1ec5d73df54..4c3bc5df346 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ReloadTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ReloadTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/SaveTest.php index 4cd4ce02cad..82c1bce8ebf 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/SaveTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ShowUpdateResultTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ShowUpdateResultTest.php index 2d2c2f1ca2c..fed8541a11c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ShowUpdateResultTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ShowUpdateResultTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ValidateTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ValidateTest.php index cbd38352387..e50870d9610 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ValidateTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ValidateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/ProductTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/ProductTest.php index 524bdceae10..f970e30726c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/ProductTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Adminhtml; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Category/MoveTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Category/MoveTest.php index 7196074ab03..035218ee579 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Category/MoveTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Category/MoveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Category; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Category/ViewTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Category/ViewTest.php index d8c18300a31..de475da82d2 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Category/ViewTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Category/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Controller\Category; diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Product/Compare/IndexTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Product/Compare/IndexTest.php index 30939e7c519..b96de53e2b2 100644 --- a/app/code/Magento/Catalog/Test/Unit/Controller/Product/Compare/IndexTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Controller/Product/Compare/IndexTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Cron/RefreshSpecialPricesTest.php b/app/code/Magento/Catalog/Test/Unit/Cron/RefreshSpecialPricesTest.php index 98c9cd775c6..e9c00269867 100644 --- a/app/code/Magento/Catalog/Test/Unit/Cron/RefreshSpecialPricesTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Cron/RefreshSpecialPricesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Cron; diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/ImageTest.php index 4ed3495f9e3..25de9e40440 100644 --- a/app/code/Magento/Catalog/Test/Unit/Helper/ImageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Helper/ImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Helper; diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/CompareTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/CompareTest.php index 51388c3725b..997db3a409b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Helper/Product/CompareTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Helper/Product/CompareTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationPoolTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationPoolTest.php index f7ef5095529..a852d5ab3e8 100644 --- a/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationPoolTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationPoolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Helper\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/Edit/Action/AttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/Edit/Action/AttributeTest.php index a6b11d79939..04faa6bdf03 100644 --- a/app/code/Magento/Catalog/Test/Unit/Helper/Product/Edit/Action/AttributeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Helper/Product/Edit/Action/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Helper\Product\Edit\Action; diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/Flat/IndexerTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/Flat/IndexerTest.php index 1e31d494fa4..f257effdbd7 100644 --- a/app/code/Magento/Catalog/Test/Unit/Helper/Product/Flat/IndexerTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Helper/Product/Flat/IndexerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Helper\Product\Flat; diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/ProductTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/ProductTest.php index 53285abb510..ed216e70e57 100644 --- a/app/code/Magento/Catalog/Test/Unit/Helper/ProductTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Helper/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Helper; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilterTest.php index 86555f628a2..0642114c114 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilterTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Backend/CustomlayoutupdateTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Backend/CustomlayoutupdateTest.php index 0f389224fef..da29c3d8ca1 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Backend/CustomlayoutupdateTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Backend/CustomlayoutupdateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ConverterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ConverterTest.php index 15991c7a0b9..b64d9e01883 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ConverterTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Attribute\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ReaderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ReaderTest.php index 6a843c17910..92297195481 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ReaderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ReaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Attribute\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/SchemaLocatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/SchemaLocatorTest.php index 470faa23de5..8e54ae56a1a 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Attribute\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/XsdTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/XsdTest.php index bdc897ebc00..596c102d992 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/XsdTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/XsdTest.php @@ -2,7 +2,7 @@ /** * Test for validation rules implemented by XSD schema for catalog attributes configuration * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Attribute\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.php index c7522eb44b3..9fdfd6f4b1c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return ['group_one' => ['test_attribute'], 'group_two' => ['attribute_one', 'attribute_two']]; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.xml b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.xml index 131fe397f2e..813e9d64af7 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.xml +++ b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_one.xml b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_one.xml index 3e11d226e6a..3fe4cc449c5 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_one.xml +++ b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_one.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_two.xml b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_two.xml index 772a85eafe9..718895e7117 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_two.xml +++ b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_two.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/ConfigTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/ConfigTest.php index 358a5ed67e6..64a26b7cd86 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/ConfigTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/LockValidatorCompositeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/LockValidatorCompositeTest.php index 7545fbd44d0..8282315a6aa 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/LockValidatorCompositeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/LockValidatorCompositeTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/ImageTest.php index aa78fea8966..22782a014f4 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/ImageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/ImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Category\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/SortbyTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/SortbyTest.php index b720856d855..62c0fc6d9f5 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/SortbyTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/SortbyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/LayoutTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/LayoutTest.php index 7b2e1d8416d..872310452f9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/LayoutTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/LayoutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Category\Attribute\Source; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/PageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/PageTest.php index 3da32485004..1cafc3913e2 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/PageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/PageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Category\Attribute\Source; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/SortbyTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/SortbyTest.php index 9769c20686e..1fc6edd99bc 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/SortbyTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/SortbyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Category\Attribute\Source; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/AttributeRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/AttributeRepositoryTest.php index c7805f0fa8d..f0247a90be4 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Category/AttributeRepositoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Category/AttributeRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/DataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/DataProviderTest.php index 4a7971afbbb..ece3d1a117d 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Category/DataProviderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Category/DataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Category; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/FileInfoTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/FileInfoTest.php index abc07425a07..973fa855526 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Category/FileInfoTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Category/FileInfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Category; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/ReadHandlerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/ReadHandlerTest.php index 8be5ca3dba1..8d1068fb517 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/ReadHandlerTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/ReadHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Category\Link; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/SaveHandlerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/SaveHandlerTest.php index 6ff59e61b25..ba708d0f73e 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/SaveHandlerTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/SaveHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Category\Link; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/TreeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/TreeTest.php index adf78761d5e..703c9f3bf5c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Category/TreeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Category/TreeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkManagementTest.php index 75fce898388..3b8b3645125 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkManagementTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkRepositoryTest.php index d0c0e2ff2fa..00fccc8a868 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkRepositoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryListTest.php index 5703f6fe2df..a8cb9446acd 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/CategoryListTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/CategoryListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryManagementTest.php index 45e3e51a6df..9202a430693 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/CategoryManagementTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/CategoryManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryRepositoryTest.php index e8c3fc2047d..2d44e7fd068 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/CategoryRepositoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/CategoryRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryTest.php index 37d0751a81b..d2dfb99a696 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/CategoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/CatalogClone/Media/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/CatalogClone/Media/ImageTest.php index 6a0d695d71f..fb648ba0325 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Config/CatalogClone/Media/ImageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Config/CatalogClone/Media/ImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Config\CatalogClone\Media; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/CategoryTest.php index eec82c1b640..11507cf766a 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/CategoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/GridPerPageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/GridPerPageTest.php index c39b3a47cef..836e170a830 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/GridPerPageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/GridPerPageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListPerPageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListPerPageTest.php index 1cbbe87613f..5738ca7415b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListPerPageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListPerPageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListSortTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListSortTest.php index e95a33c4ee2..4807ca2437b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListSortTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListSortTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/Product/Options/TypeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/Product/Options/TypeTest.php index a87b8df7c0b..94c58b55606 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/Product/Options/TypeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/Product/Options/TypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Config\Source\Product\Options; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ConfigTest.php index 1e1af69fcea..52bbdffaa84 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ConfigTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ConfigTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php index e3bdffbf5ae..1fc5741fae9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\CustomOptions; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionTest.php index d7a0fdb778d..f6fbbab61f8 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\CustomOptions; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Entity/AttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Entity/AttributeTest.php index 9bde3cc0511..28b5aed1969 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Entity/AttributeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Entity/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/FactoryTest.php index 531a67adb16..bae8ad1ce13 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/FactoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ImageExtractorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ImageExtractorTest.php index fe255ea63ca..23b17ed8b53 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ImageExtractorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ImageExtractorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/IndexerConfigDataTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/IndexerConfigDataTest.php index cde2365e21b..5eef945b7c8 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/IndexerConfigDataTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/IndexerConfigDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Category\Flat\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreGroupTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreGroupTest.php index 9757f0aef26..c39c161897b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreGroupTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreGroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Category\Flat\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreViewTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreViewTest.php index 88d2d7c3e39..94a07b8d022 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreViewTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Category\Flat\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/StateTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/StateTest.php index a618ea9ea97..7a40a2ceb9c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/StateTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/StateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Category\Flat; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/System/Config/ModeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/System/Config/ModeTest.php index c8cde1d0025..e610bb86321 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/System/Config/ModeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/System/Config/ModeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Category\Flat\System\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/FlatTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/FlatTest.php index feda0d0cb9e..c182489c4c8 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/FlatTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/FlatTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Category; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/ImportTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/ImportTest.php index c57406df15e..3c8f5621450 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/ImportTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/ImportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Category\Product\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/MviewStateTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/MviewStateTest.php index 523b932e2d8..0106d5d4aea 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/MviewStateTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/MviewStateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Category\Product\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreGroupTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreGroupTest.php index da2f90b313f..363bd8b6fa8 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreGroupTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreGroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Category\Product\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreViewTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreViewTest.php index f27d2b14f31..ff153be640d 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreViewTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Category\Product\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/ProductTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/ProductTest.php index f748b48eba1..c276ee0ffc4 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/ProductTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Category; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Category/Plugin/ImportTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Category/Plugin/ImportTest.php index d1d47068b90..58ebfe68f76 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Category/Plugin/ImportTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Category/Plugin/ImportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Category\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/CategoryTest.php index 3417f2588f4..d8abc6e757e 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/CategoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/AbstractActionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/AbstractActionTest.php index 8705ba643bf..c67604f4b96 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/AbstractActionTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/AbstractActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Eav; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/FullTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/FullTest.php index 13155413a2b..ed7b4114ef4 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/FullTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/FullTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Eav\Action; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowTest.php index ea2c35c161b..2dfc4079b20 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Eav\Action; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowsTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowsTest.php index 90a537fffc4..344456d88cc 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Eav\Action; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilterTest.php index 7afe91d4f35..c2fe30a566f 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilterTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Eav\Plugin\AttributeSet; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSetTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSetTest.php index 48410da7465..3041542ae99 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSetTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSetTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Eav\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/ImportTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/ImportTest.php index d7c845d6cdb..5b50c4df994 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/ImportTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/ImportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Eav\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/StoreViewTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/StoreViewTest.php index a8ab5acb0c7..ad82989acb7 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/StoreViewTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/StoreViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Eav\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/EavTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/EavTest.php index 94c85aab095..285ff41e035 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/EavTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/EavTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/EraserTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/EraserTest.php index 57b33c9aed8..05d9dca1658 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/EraserTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/EraserTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowTest.php index f30ffbe6b2e..7ad6e149938 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/Rows/TableDataTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/Rows/TableDataTest.php index aa1543cf1ee..35c16ba70dd 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/Rows/TableDataTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/Rows/TableDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Flat\Action\Rows; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowsTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowsTest.php index bcfabfb9f7d..5fe871f77fd 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/FlatTableBuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/FlatTableBuilderTest.php index d90261f068f..1795762b040 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/FlatTableBuilderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/FlatTableBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Flat; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/IndexerConfigDataTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/IndexerConfigDataTest.php index 53d1a8fd004..097d70a5cf7 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/IndexerConfigDataTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/IndexerConfigDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Flat\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreGroupTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreGroupTest.php index 3615fd25e2f..4b78e9cd19c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreGroupTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreGroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Flat\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreTest.php index e207533a9a9..a6966a29a24 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Flat\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/ProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/ProcessorTest.php index 5e65fb2e4b4..279baa51f2d 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/ProcessorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/ProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Flat; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/StateTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/StateTest.php index 31dde2ed819..06973aab27a 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/StateTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/StateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Flat; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/System/Config/ModeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/System/Config/ModeTest.php index ed46d7e0528..c98178eba36 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/System/Config/ModeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/System/Config/ModeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Flat\System\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Table/BuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Table/BuilderTest.php index 0a80250fbdf..826ceb516c5 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Table/BuilderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Table/BuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Flat\Table; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/TableDataTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/TableDataTest.php index 0f47a675c82..544bd865a50 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/TableDataTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/TableDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Flat; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/FlatTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/FlatTest.php index 186441dbd91..f5ff4165f9c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/FlatTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/FlatTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowTest.php index 2c0304421a9..a89fc77aedf 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Price\Action; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowsTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowsTest.php index a9e37d97035..11b5a5a182d 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Price\Action; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Plugin/CustomerGroupTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Plugin/CustomerGroupTest.php index 81110030ef6..ce9fd36b2c1 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Plugin/CustomerGroupTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Plugin/CustomerGroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Plugin/WebsiteTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Plugin/WebsiteTest.php index f00ce8652a9..d1a5242a7d9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Plugin/WebsiteTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Plugin/WebsiteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Price\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/System/Config/PriceScopeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/System/Config/PriceScopeTest.php index 96277f32d82..3ecbf919cc4 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/System/Config/PriceScopeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/System/Config/PriceScopeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Indexer\Product\Price\System\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/AvailabilityFlagTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/AvailabilityFlagTest.php index f97ff76f336..3d89ad14f90 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/AvailabilityFlagTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/AvailabilityFlagTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/CollectionFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/CollectionFilterTest.php index 4aada9146c4..bc601080948 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/CollectionFilterTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/CollectionFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/FilterableAttributeListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/FilterableAttributeListTest.php index ff2be85e770..7a2471dd592 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/FilterableAttributeListTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/FilterableAttributeListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/StateKeyTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/StateKeyTest.php index 0889a13f1c4..29dea4b1df3 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/StateKeyTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/StateKeyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/AttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/AttributeTest.php index ebfdd9a562c..067cc355127 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/AttributeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/CategoryTest.php index 15581b42320..3b46825993f 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/CategoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Layer\Filter; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/CategoryTest.php index 30a1d6c37b3..ecc435ef8f9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/CategoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/DecimalTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/DecimalTest.php index 80bf2983251..3d68bf96f99 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/DecimalTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/DecimalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/PriceTest.php index e27f6b29d8f..d9664af35f8 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/PriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DecimalTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DecimalTest.php index 40bf8f17221..ab720770caf 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DecimalTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DecimalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Layer\Filter; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/FactoryTest.php index f356b0176a5..ed610cdb035 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/FactoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Layer\Filter; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/Item/DataBuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/Item/DataBuilderTest.php index d556327378a..d5d00f47cf7 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/Item/DataBuilderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/Item/DataBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/PriceTest.php index 2ebbbf9e465..bc0d48cb541 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/PriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/FilterListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/FilterListTest.php index 09ef52e74d7..5238dc20232 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/FilterListTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/FilterListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/CollectionFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/CollectionFilterTest.php index 2f65473a7cb..7efd7f0cfdb 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/CollectionFilterTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/CollectionFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/FilterableAttributeListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/FilterableAttributeListTest.php index 373ad5e3cc2..736f3f70495 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/FilterableAttributeListTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/FilterableAttributeListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/StateKeyTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/StateKeyTest.php index 5dcc3ffdc86..ed19d1e7738 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/StateKeyTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/StateKeyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/StateTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/StateTest.php index c0c4f5f572f..4fb3d3f6c61 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layer/StateTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layer/StateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Layer; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/LayerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/LayerTest.php index aeac5187a78..db4a836220b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/LayerTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/LayerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layout/DepersonalizePluginTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layout/DepersonalizePluginTest.php index 9ebd5b9fa93..ab9131e2106 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Layout/DepersonalizePluginTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Layout/DepersonalizePluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Locator/RegistryLocatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Locator/RegistryLocatorTest.php index d66bb4192a6..4f59529d6f5 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Locator/RegistryLocatorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Locator/RegistryLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Locator; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Plugin/LogTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Plugin/LogTest.php index 7fb54153858..b5860d91e88 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Plugin/LogTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Plugin/LogTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Plugin/ProductRepository/TransactionWrapperTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Plugin/ProductRepository/TransactionWrapperTest.php index c3644c5460d..e55ab478626 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Plugin/ProductRepository/TransactionWrapperTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Plugin/ProductRepository/TransactionWrapperTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Plugin\ProductRepository; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Plugin/QuoteItemProductOptionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Plugin/QuoteItemProductOptionTest.php index 13e9ef8b327..5c136e647ba 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Plugin/QuoteItemProductOptionTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Plugin/QuoteItemProductOptionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ActionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ActionTest.php index 6058f382341..2f067219ee2 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/ActionTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/ActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/AttributeSetFinderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/AttributeSetFinderTest.php index fab42fb92d8..48338c1a6e9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/AttributeSetFinderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/AttributeSetFinderTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/BooleanTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/BooleanTest.php index 8970903e326..2d554c6faf7 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/BooleanTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/BooleanTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/CategoryTest.php index 87d35586ae0..f406fa16d85 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/CategoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/GroupPrice/AbstractTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/GroupPrice/AbstractTest.php index 19d5ac7d7f6..84e63075d06 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/GroupPrice/AbstractTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/GroupPrice/AbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute\Backend\GroupPrice; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/EntryConverterPoolTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/EntryConverterPoolTest.php index 07b4b10834c..827fe62fd60 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/EntryConverterPoolTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/EntryConverterPoolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/ImageEntryConverterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/ImageEntryConverterTest.php index ecb87ec436a..fecb0f6b620 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/ImageEntryConverterTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/ImageEntryConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/PriceTest.php index 05a5b8ebe53..9679fc47551 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/PriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/StockTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/StockTest.php index 32d62fd7a99..74a42fa2cc8 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/StockTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/StockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/WeightTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/WeightTest.php index 0ca0cdf7818..7d1bf213b7e 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/WeightTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/WeightTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute\Backend; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Frontend/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Frontend/ImageTest.php index d5f52f95c67..2532a1680d3 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Frontend/ImageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Frontend/ImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute\Frontend; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/GroupTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/GroupTest.php index 4a10c3194a5..0bbd2e4814c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/GroupTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/GroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/ManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/ManagementTest.php index 7b51a2738eb..3a4720a7ed6 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/ManagementTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/ManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/OptionManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/OptionManagementTest.php index e6624c5a90d..349b15a0dd1 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/OptionManagementTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/OptionManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/RepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/RepositoryTest.php index 87159b4e2d6..dbf83645f1a 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/RepositoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/RepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetManagementTest.php index 25553562d2a..6d70c1611cd 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetManagementTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetRepositoryTest.php index c4cd38e4956..84bf65ce94c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetRepositoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/BooleanTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/BooleanTest.php index a2f32d92f02..42f43aaa5b4 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/BooleanTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/BooleanTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute\Source; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/CountryofmanufactureTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/CountryofmanufactureTest.php index 9ae3f949248..6581037f06d 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/CountryofmanufactureTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/CountryofmanufactureTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Attribute\Source; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/InputtypeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/InputtypeTest.php index 8362fc8a761..2e9ea0f6985 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/InputtypeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/InputtypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/LayoutTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/LayoutTest.php index a6b1b274070..d0051f83ae0 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/LayoutTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/LayoutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/StatusTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/StatusTest.php index b37ae395059..62de602a3f2 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/StatusTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/StatusTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/TypesListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/TypesListTest.php index fad630534ff..603cac1dd6b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/TypesListTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/TypesListTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CartConfigurationTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CartConfigurationTest.php index 1208065acad..28321d181a6 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/CartConfigurationTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/CartConfigurationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CatalogPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CatalogPriceTest.php index 0725045c68f..8aad10fa26c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/CatalogPriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/CatalogPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Compare/ItemTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Compare/ItemTest.php index 631100656ec..212b7f67c16 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Compare/ItemTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Compare/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Compare; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ConditionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ConditionTest.php index c292cd99c48..c46c207b53a 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/ConditionTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/ConditionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopierTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopierTest.php index 7f4fcd93e0a..13f66bcf007 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopierTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CompositeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CompositeTest.php index 7d39f9e8e63..98ed448fef1 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CompositeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CrossSellTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CrossSellTest.php index 8dd12a93c04..49ea4990346 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CrossSellTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CrossSellTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/RelatedTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/RelatedTest.php index b76cc977ca7..4c1b24bc790 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/RelatedTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/RelatedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/UpSellTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/UpSellTest.php index 640d36c28e4..6366ae25060 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/UpSellTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/UpSellTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructorFactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructorFactoryTest.php index e55286af1fb..a0ca15a2305 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructorFactoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructorFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/GalleryManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/GalleryManagementTest.php index e3845a2b51c..b6d1f8fae31 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/GalleryManagementTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/GalleryManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/MimeTypeExtensionMapTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/MimeTypeExtensionMapTest.php index ebf351da741..8ec55bcec09 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/MimeTypeExtensionMapTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/MimeTypeExtensionMapTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/ProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/ProcessorTest.php index 50c3c4ad012..d67a8827217 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/ProcessorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/ProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Gallery; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Image/CacheTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Image/CacheTest.php index de60264c331..f12638ac40c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Image/CacheTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Image/CacheTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Image; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ImageTest.php index 8ee875dad17..39863dd869c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/ImageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/ImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Initialization/Helper/ProductLinksTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Initialization/Helper/ProductLinksTest.php index 34cb5c81a12..681e662c69c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Initialization/Helper/ProductLinksTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Initialization/Helper/ProductLinksTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Initialization\Helper; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ConverterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ConverterTest.php index 07e0e6467ce..6040d2ec246 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ConverterTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Link; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ResolverTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ResolverTest.php index 58b5a5968be..9ce3ca80453 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ResolverTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Link; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTest.php index 0e02fa327a2..bb2389aa872 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTypeProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTypeProviderTest.php index 13a2f578c12..6feadffc8f6 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTypeProviderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTypeProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Media/AttributeManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Media/AttributeManagementTest.php index 8ea2a8262c7..bba25985314 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Media/AttributeManagementTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Media/AttributeManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Media; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/RepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/RepositoryTest.php index 89459634272..f3823212daa 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/RepositoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/RepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/SaveHandlerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/SaveHandlerTest.php index 222abadd9fe..cf29f44550f 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/SaveHandlerTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/SaveHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FactoryTest.php index 1b66800ca8c..d9b381ec3a3 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FactoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Option\Type; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php index 6682b295476..832e9e204f8 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Option\Type; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/UrlBuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/UrlBuilderTest.php index 9b0e1e16274..0d543d16286 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/UrlBuilderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/UrlBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Option; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/DefaultValidatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/DefaultValidatorTest.php index 686bee92bc9..61f8e14e2b3 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/DefaultValidatorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/DefaultValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/FileTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/FileTest.php index 27ee4d09e71..d0ef623781a 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/FileTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/FileTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/PoolTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/PoolTest.php index b2243e213c8..d4be987fdf5 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/PoolTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/PoolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/SelectTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/SelectTest.php index 4d26d2ce914..0ecc00e18cc 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/SelectTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/SelectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/TextTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/TextTest.php index 769ad05837b..878b163a782 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/TextTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/TextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/ValueTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/ValueTest.php index 960dda45e2c..e83682b75bc 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/ValueTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/ValueTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Option; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/OptionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/OptionTest.php index 50ab88f7df4..99652d66519 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/OptionTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/OptionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/BasePriceStorageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/BasePriceStorageTest.php index ef99e550cdc..61ea55228df 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/BasePriceStorageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/BasePriceStorageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/CostStorageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/CostStorageTest.php index b1dea66928f..16a7a2407c3 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/CostStorageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/CostStorageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/PricePersistenceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/PricePersistenceTest.php index e9f422245d9..b1a08900b58 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/PricePersistenceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/PricePersistenceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceStorageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceStorageTest.php index 2a885dd8b83..b440ee21f41 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceStorageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceStorageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceValidatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceValidatorTest.php index 1f44c2a75d1..83730985936 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceValidatorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifier/CompositeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifier/CompositeTest.php index 35aad844475..7b27d3b0759 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifier/CompositeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifier/CompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\PriceModifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifierTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifierTest.php index 371ecc61033..5c3743b731c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifierTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Pricing/Renderer/SalableResolverTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Pricing/Renderer/SalableResolverTest.php index 7ef15b07819..007ede7fa3e 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Pricing/Renderer/SalableResolverTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Pricing/Renderer/SalableResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ProductList/ToolbarTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ProductList/ToolbarTest.php index 7bafd7a5b56..a7eb5069d02 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/ProductList/ToolbarTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/ProductList/ToolbarTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ReservedAttributeListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ReservedAttributeListTest.php index 5661b828865..187f6bca7d9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/ReservedAttributeListTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/ReservedAttributeListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/TierPriceManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/TierPriceManagementTest.php index 13eb33e72d4..8ed93f9d32c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/TierPriceManagementTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/TierPriceManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/AbstractTypeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/AbstractTypeTest.php index 6b66704fcdc..21d59b4f803 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/AbstractTypeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/AbstractTypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Type; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/PriceTest.php index 5868e749446..a18c2aee1ef 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/PriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/SimpleTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/SimpleTest.php index 01f33a5d5e9..eed4950221f 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/SimpleTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/SimpleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Type; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/VirtualTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/VirtualTest.php index da4547ad77e..974f46b86d3 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/VirtualTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/VirtualTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product\Type; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTest.php index b04c718f57e..16605ea6043 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTransitionManagerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTransitionManagerTest.php index c930063c5a9..d48fe37fc35 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTransitionManagerTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTransitionManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/UrlTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/UrlTest.php index 6d106b478fb..46c9acaf025 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/UrlTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/UrlTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ValidatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ValidatorTest.php index 97245c06965..b72479ab435 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/ValidatorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/VisibilityTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/VisibilityTest.php index eb4d746a454..b13906ff2f7 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/VisibilityTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/VisibilityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/ReadHandlerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/ReadHandlerTest.php index aa1a3d7e5a3..2b0709edb1a 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/ReadHandlerTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/ReadHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/SaveHandlerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/SaveHandlerTest.php index b574e9b6c6e..24c71dde02a 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/SaveHandlerTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/SaveHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductAttributeGroupRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductAttributeGroupRepositoryTest.php index 4209871ffb8..afbef7b524f 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductAttributeGroupRepositoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductAttributeGroupRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductIdLocatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductIdLocatorTest.php index 75f81195f02..25340c90468 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductIdLocatorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductIdLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/ManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/ManagementTest.php index d5ff3f580b4..4fb25b59273 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/ManagementTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/ManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/RepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/RepositoryTest.php index 913b47ce0b7..14e72452450 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/RepositoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/RepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductManagementTest.php index 6da34786a45..8d2f2363dd7 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductManagementTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptionProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptionProcessorTest.php index b8a274afa38..6ff5053f977 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptionProcessorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptionProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/XsdTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/XsdTest.php index 6b76780c8a5..8c82003559f 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/XsdTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ProductOptions\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsMergedXmlArray.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsMergedXmlArray.php index b8040330bb1..cac6c7468ca 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsMergedXmlArray.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsMergedXmlArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsXmlArray.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsXmlArray.php index a299416c5f1..d5dcb3cd010 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsXmlArray.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsXmlArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_merged_valid.xml b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_merged_valid.xml index 323f903d193..3e13df9061c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_merged_valid.xml +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_merged_valid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_valid.xml b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_valid.xml index 093521a0b7a..5f418c4b177 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_valid.xml +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_valid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductRepositoryTest.php index 8c08d0c63bc..a3f2372d485 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductRepositoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTest.php index f8e162dff45..2c44e0a50f9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypeListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypeListTest.php index 63254a653ab..6b0bea2c191 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypeListTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypeListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/ConverterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/ConverterTest.php index 2cea1a949be..9c28dd79d5c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/ConverterTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ProductTypes\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/SchemaLocatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/SchemaLocatorTest.php index e5e7c01c360..f212a3b4f59 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ProductTypes\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdMergedTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdMergedTest.php index 39daf53ca72..8a691323fed 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdMergedTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdMergedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ProductTypes\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdTest.php index 20620351a80..deee8a71fd2 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ProductTypes\Config; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesMergedXmlArray.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesMergedXmlArray.php index 8b75bcb59a1..c77fbc61c91 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesMergedXmlArray.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesMergedXmlArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesXmlArray.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesXmlArray.php index aaa09a96f06..dbc40e1ac5f 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesXmlArray.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesXmlArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.php index 8d61248768d..c564b1f36f9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.xml b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.xml index 3a1baf492d6..fdad9b5dc5b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.xml +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types.xml b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types.xml index 525beaf93c6..dc5284d1e54 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types.xml +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types_merged.xml b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types_merged.xml index 96a8c06c1db..72420327262 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types_merged.xml +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types_merged.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/ConfigTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/ConfigTest.php index 852eb11c5cf..64b8b05b575 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/ConfigTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ProductTypes; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/AbstractTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/AbstractTest.php index 044bb6cfc90..e7b7926edc5 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/AbstractTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/AbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/Collection/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/Collection/FactoryTest.php index 4d641aebd78..d4a937261f3 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/Collection/FactoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/Collection/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Category\Collection; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/FlatTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/FlatTest.php index c93a1f86868..d1e8570c9c3 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/FlatTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/FlatTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/TreeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/TreeTest.php index a1bcb88669e..d80090c0535 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/TreeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/TreeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Eav/AttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Eav/AttributeTest.php index 5701ff70c20..be203a2ffd7 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Eav/AttributeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Eav/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CategoryLinkTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CategoryLinkTest.php index e6e4a92e75a..2e59dacd044 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CategoryLinkTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CategoryLinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Collection/ProductLimitationTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Collection/ProductLimitationTest.php index 9e2bb4b113c..63426415306 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Collection/ProductLimitationTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Collection/ProductLimitationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Product\Collection; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CollectionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CollectionTest.php index f19b2c15c8a..8ecfe142a00 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CollectionTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CompositeBaseSelectProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CompositeBaseSelectProcessorTest.php index d296474c202..30060c81883 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CompositeBaseSelectProcessorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CompositeBaseSelectProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/FlatTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/FlatTest.php index a05a6276932..8fed73a4d00 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/FlatTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/FlatTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/GalleryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/GalleryTest.php index 9b4654be637..d59024efdc7 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/GalleryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/GalleryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Link/Product/CollectionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Link/Product/CollectionTest.php index fe244d01eea..bb7250a904f 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Link/Product/CollectionTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Link/Product/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Product\Link\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/LinkTest.php index 50f14246ed9..b9fb5a717c8 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/LinkTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Option/CollectionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Option/CollectionTest.php index 36afda6287f..23b05b03d09 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Option/CollectionTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Option/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Product\Option; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/StatusBaseSelectProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/StatusBaseSelectProcessorTest.php index 1fada997913..0a828a9106d 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/StatusBaseSelectProcessorTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/StatusBaseSelectProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Website/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Website/LinkTest.php index bedeba40eef..a01fbc4d2e3 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Website/LinkTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Website/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\ResourceModel\Product\Website; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/ProductTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/ProductTest.php index 8a75e27bcac..1b3ba19e753 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/ProductTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Rss/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Rss/CategoryTest.php index 9350c695a9a..8c643ffcb1b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Rss/CategoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Rss/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Rss; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NewProductsTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NewProductsTest.php index 874fe018ae2..efb18782b3e 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NewProductsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NewProductsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Rss\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NotifyStockTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NotifyStockTest.php index 52f276b9147..02d04de0ff1 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NotifyStockTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NotifyStockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Rss\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/SpecialTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/SpecialTest.php index 235829d69e7..b356300e87b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/SpecialTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/SpecialTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Rss\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Backend/Catalog/Url/Rewrite/SuffixTest.php b/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Backend/Catalog/Url/Rewrite/SuffixTest.php index c793cc60098..fb5d6bb21c2 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Backend/Catalog/Url/Rewrite/SuffixTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Backend/Catalog/Url/Rewrite/SuffixTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\System\Config\Backend\Catalog\Url\Rewrite; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Source/InputtypeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Source/InputtypeTest.php index 70ac3e08072..588a0eb1444 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Source/InputtypeTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Source/InputtypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\System\Config\Source; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Template/Filter/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Template/Filter/FactoryTest.php index 44c1d3159be..555c6c50c62 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/Template/Filter/FactoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/Template/Filter/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\Template\Filter; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/Image/ContextTest.php b/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/Image/ContextTest.php index cdc1296486e..25387b559ed 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/Image/ContextTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/Image/ContextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\View\Asset\Image; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/ImageTest.php index 5e96cdb1c33..1459a9c2f49 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/ImageTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/ImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\View\Asset; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/PlaceholderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/PlaceholderTest.php index 38d5ceb16e6..ec45cd6f721 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/PlaceholderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/PlaceholderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Model\View\Asset; diff --git a/app/code/Magento/Catalog/Test/Unit/Model/_files/converted_view.php b/app/code/Magento/Catalog/Test/Unit/Model/_files/converted_view.php index 49d865253ce..d173b9dc05a 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/_files/converted_view.php +++ b/app/code/Magento/Catalog/Test/Unit/Model/_files/converted_view.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Catalog/Test/Unit/Model/_files/valid_view.xml b/app/code/Magento/Catalog/Test/Unit/Model/_files/valid_view.xml index c6a1aec333f..c9ec9d283ee 100644 --- a/app/code/Magento/Catalog/Test/Unit/Model/_files/valid_view.xml +++ b/app/code/Magento/Catalog/Test/Unit/Model/_files/valid_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/Test/Unit/Observer/MenuCategoryDataTest.php b/app/code/Magento/Catalog/Test/Unit/Observer/MenuCategoryDataTest.php index fde1c74bc5a..a935861a263 100644 --- a/app/code/Magento/Catalog/Test/Unit/Observer/MenuCategoryDataTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Observer/MenuCategoryDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Plugin/Block/TopmenuTest.php b/app/code/Magento/Catalog/Test/Unit/Plugin/Block/TopmenuTest.php index 1f805016b7f..3a17233deb2 100644 --- a/app/code/Magento/Catalog/Test/Unit/Plugin/Block/TopmenuTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Plugin/Block/TopmenuTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Indexer/Category/Product/ExecuteTest.php b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Indexer/Category/Product/ExecuteTest.php index 9d72efbc15b..7569b23ee75 100644 --- a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Indexer/Category/Product/ExecuteTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Indexer/Category/Product/ExecuteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Product/Action/UpdateAttributesFlushCacheTest.php b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Product/Action/UpdateAttributesFlushCacheTest.php index ff3e3d2b7ce..5fcfb8b75d0 100644 --- a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Product/Action/UpdateAttributesFlushCacheTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Product/Action/UpdateAttributesFlushCacheTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Plugin\Model\Product\Action; diff --git a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/Attribute/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/Attribute/SaveTest.php index 58e88952de2..66f2dc8d555 100644 --- a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/Attribute/SaveTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/Attribute/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/ConfigTest.php b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/ConfigTest.php index b6f0dcf52bb..27abe437d78 100644 --- a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/ConfigTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/BasePriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/BasePriceTest.php index 3cb1749dc4a..11ff04d0aa0 100644 --- a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/BasePriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/BasePriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/ConfiguredPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/ConfiguredPriceTest.php index 9f28d07cfdc..6b8acf42a4c 100644 --- a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/ConfiguredPriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/ConfiguredPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/CustomOptionPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/CustomOptionPriceTest.php index bd50f02ad82..76edb3ce936 100644 --- a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/CustomOptionPriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/CustomOptionPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Pricing\Price; diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/FinalPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/FinalPriceTest.php index 5ad3be93e55..e8ebb1b89af 100644 --- a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/FinalPriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/FinalPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Pricing\Price; diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/RegularPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/RegularPriceTest.php index 09988088c16..54259101469 100644 --- a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/RegularPriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/RegularPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/SpecialPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/SpecialPriceTest.php index b46b589856e..6ff3a7a53bd 100644 --- a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/SpecialPriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/SpecialPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/TierPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/TierPriceTest.php index 09c6aa1d612..30f1ea777c2 100644 --- a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/TierPriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/TierPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Render/FinalPriceBoxTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Render/FinalPriceBoxTest.php index 015a641a0df..4ef7dbc39d8 100644 --- a/app/code/Magento/Catalog/Test/Unit/Pricing/Render/FinalPriceBoxTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Pricing/Render/FinalPriceBoxTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Render/PriceBoxTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Render/PriceBoxTest.php index 1e8b930a0c4..1b7cc7926da 100644 --- a/app/code/Magento/Catalog/Test/Unit/Pricing/Render/PriceBoxTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Pricing/Render/PriceBoxTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/RenderTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/RenderTest.php index 3713bae7d37..77c6dbe87d8 100644 --- a/app/code/Magento/Catalog/Test/Unit/Pricing/RenderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Pricing/RenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Test/Unit/Setup/CategorySetupTest.php b/app/code/Magento/Catalog/Test/Unit/Setup/CategorySetupTest.php index 7b72b391e76..aa1d6a8354b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Setup/CategorySetupTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Setup/CategorySetupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Setup; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/AllowedProductTypesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/AllowedProductTypesTest.php index 2c33c629358..c78854e2674 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/AllowedProductTypesTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/AllowedProductTypesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AbstractColumnTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AbstractColumnTest.php index 47cbd1b6ff5..fbcf536a60f 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AbstractColumnTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AbstractColumnTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AttributeSetTextTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AttributeSetTextTest.php index c8e5e2e9f57..b9f67a72ac6 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AttributeSetTextTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AttributeSetTextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/StatusTextTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/StatusTextTest.php index fd33fba7747..d17118f5f31 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/StatusTextTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/StatusTextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Product/Form/Categories/OptionsTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Product/Form/Categories/OptionsTest.php index f317f86d47b..bf463db90a5 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Product/Form/Categories/OptionsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Product/Form/Categories/OptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\Component\Product\Form\Categories; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/CatalogEavValidationRulesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/CatalogEavValidationRulesTest.php index 8f15fa87e8f..d1c01ff6d20 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/CatalogEavValidationRulesTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/CatalogEavValidationRulesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php index 84c5040fc2a..88a86bc0486 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedPricingTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedPricingTest.php index cd566285153..0a0dd2a5627 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedPricingTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedPricingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributeSetTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributeSetTest.php index 5fb20a44ef3..b46b7d89acd 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributeSetTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributeSetTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributesTest.php index a40648d4063..61afce28abb 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributesTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CategoriesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CategoriesTest.php index 2070a64884b..2a49178c072 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CategoriesTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CategoriesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php index 75a2b7c27b4..5b663363921 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/EavTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/EavTest.php index 2deb4800bd0..c92424fbebb 100755 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/EavTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/EavTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/FactoryTest.php index 5ec8f0c1fcf..37db9eb71ee 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/FactoryTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GeneralTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GeneralTest.php index adfb57ad7d7..ee19fda6432 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GeneralTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GeneralTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ImagesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ImagesTest.php index 7a55bd31e3d..52ebbd83247 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ImagesTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ImagesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/RelatedTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/RelatedTest.php index b0b2365c4f1..8bfcc0edd19 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/RelatedTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/RelatedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdateTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdateTest.php index be6f351e4ab..f11f17c8bb9 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdateTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SystemTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SystemTest.php index 1c62a04417a..afc42b70ade 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SystemTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SystemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/TierPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/TierPriceTest.php index 9dccb8eef45..f86fb2b00a4 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/TierPriceTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/TierPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/WebsitesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/WebsitesTest.php index deaadb0f12f..a6b2b82fe6b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/WebsitesTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/WebsitesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/NewCategoryDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/NewCategoryDataProviderTest.php index 14e7dc614a3..dde14027d5d 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/NewCategoryDataProviderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/NewCategoryDataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/ProductDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/ProductDataProviderTest.php index c8375fa2a15..56f172a57cf 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/ProductDataProviderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/ProductDataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Form; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/ProductCustomOptionsDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/ProductCustomOptionsDataProviderTest.php index 04c1075e27a..e225815bc58 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/ProductCustomOptionsDataProviderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/ProductCustomOptionsDataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/AbstractDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/AbstractDataProviderTest.php index 1fa562cbcc3..0a67e8ed13e 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/AbstractDataProviderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/AbstractDataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Related; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/CrossSellDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/CrossSellDataProviderTest.php index df7f56d775b..cc010750124 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/CrossSellDataProviderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/CrossSellDataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Related; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/RelatedDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/RelatedDataProviderTest.php index 0ae79377bcd..66fdb019b65 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/RelatedDataProviderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/RelatedDataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Related; diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/UpSellDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/UpSellDataProviderTest.php index 32c1fa8162f..68f438ff23b 100644 --- a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/UpSellDataProviderTest.php +++ b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/UpSellDataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Test\Unit\Ui\DataProvider\Product\Related; diff --git a/app/code/Magento/Catalog/Ui/AllowedProductTypes.php b/app/code/Magento/Catalog/Ui/AllowedProductTypes.php index b1e2647bd23..35a316551c4 100644 --- a/app/code/Magento/Catalog/Ui/AllowedProductTypes.php +++ b/app/code/Magento/Catalog/Ui/AllowedProductTypes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui; diff --git a/app/code/Magento/Catalog/Ui/Component/Category/Form/Element/Wysiwyg.php b/app/code/Magento/Catalog/Ui/Component/Category/Form/Element/Wysiwyg.php index c51c5048ef5..7e62817706b 100644 --- a/app/code/Magento/Catalog/Ui/Component/Category/Form/Element/Wysiwyg.php +++ b/app/code/Magento/Catalog/Ui/Component/Category/Form/Element/Wysiwyg.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Category\Form\Element; diff --git a/app/code/Magento/Catalog/Ui/Component/ColumnFactory.php b/app/code/Magento/Catalog/Ui/Component/ColumnFactory.php index 3e5486507cb..57793b522dc 100644 --- a/app/code/Magento/Catalog/Ui/Component/ColumnFactory.php +++ b/app/code/Magento/Catalog/Ui/Component/ColumnFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component; diff --git a/app/code/Magento/Catalog/Ui/Component/FilterFactory.php b/app/code/Magento/Catalog/Ui/Component/FilterFactory.php index 5b5abe8e900..c005f7850e8 100644 --- a/app/code/Magento/Catalog/Ui/Component/FilterFactory.php +++ b/app/code/Magento/Catalog/Ui/Component/FilterFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component; diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/AbstractRepository.php b/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/AbstractRepository.php index aae39e2ad1a..5245b446c77 100644 --- a/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/AbstractRepository.php +++ b/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/AbstractRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Listing\Attribute; diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/Repository.php b/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/Repository.php index d34fb23f56f..dc835b4303a 100644 --- a/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/Repository.php +++ b/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/Repository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Listing\Attribute; diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/RepositoryInterface.php b/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/RepositoryInterface.php index ed3104b669d..20a4e84fec4 100644 --- a/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/RepositoryInterface.php +++ b/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/RepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Listing\Attribute; diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns.php index 1c4dfe57828..6667907057e 100644 --- a/app/code/Magento/Catalog/Ui/Component/Listing/Columns.php +++ b/app/code/Magento/Catalog/Ui/Component/Listing/Columns.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Listing; diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/AttributeSetText.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/AttributeSetText.php index 2fe8f7bd5ed..980763b486d 100644 --- a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/AttributeSetText.php +++ b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/AttributeSetText.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Price.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Price.php index 630ca353985..a847b02dbee 100644 --- a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Price.php +++ b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/ProductActions.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/ProductActions.php index e646b95a765..89de4ab22fa 100644 --- a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/ProductActions.php +++ b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/ProductActions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/StatusText.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/StatusText.php index f855f98cc03..96f558bdd46 100644 --- a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/StatusText.php +++ b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/StatusText.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Thumbnail.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Thumbnail.php index 9fcb754af16..0e6abda255f 100644 --- a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Thumbnail.php +++ b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Thumbnail.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Websites.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Websites.php index f3c441f1aec..c58207b9e5d 100644 --- a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Websites.php +++ b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Websites.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Filters.php b/app/code/Magento/Catalog/Ui/Component/Listing/Filters.php index a63746d4929..67eeb527db5 100644 --- a/app/code/Magento/Catalog/Ui/Component/Listing/Filters.php +++ b/app/code/Magento/Catalog/Ui/Component/Listing/Filters.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Listing; diff --git a/app/code/Magento/Catalog/Ui/Component/Product/Form/Categories/Options.php b/app/code/Magento/Catalog/Ui/Component/Product/Form/Categories/Options.php index e5749b3a19a..0ce022d8b03 100644 --- a/app/code/Magento/Catalog/Ui/Component/Product/Form/Categories/Options.php +++ b/app/code/Magento/Catalog/Ui/Component/Product/Form/Categories/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\Component\Product\Form\Categories; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/CatalogEavValidationRules.php b/app/code/Magento/Catalog/Ui/DataProvider/CatalogEavValidationRules.php index 8dc7c78ff97..8277ecbf8a2 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/CatalogEavValidationRules.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/CatalogEavValidationRules.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/AddStoreFieldToCollection.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/AddStoreFieldToCollection.php index 98155697f8e..565ec369038 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/AddStoreFieldToCollection.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/AddStoreFieldToCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/AddWebsitesFieldToCollection.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/AddWebsitesFieldToCollection.php index 5a90b1ece01..50ffc538bb0 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/AddWebsitesFieldToCollection.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/AddWebsitesFieldToCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Attributes/Listing.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Attributes/Listing.php index c7785a0e1c3..c2fc471a4b6 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Attributes/Listing.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Attributes/Listing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AbstractModifier.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AbstractModifier.php index e88bcd7b9cb..f568c0909b7 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AbstractModifier.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AbstractModifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AdvancedPricing.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AdvancedPricing.php index 326e9241767..720b17f913f 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AdvancedPricing.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AdvancedPricing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AttributeSet.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AttributeSet.php index 9ca34ff764d..d5aab5340f7 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AttributeSet.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AttributeSet.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Attributes.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Attributes.php index 6568ada6130..ae760e7d719 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Attributes.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Categories.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Categories.php index 0ee76164661..c381a2b5a93 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Categories.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Categories.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php index 780cdbbb00e..9041dcc0380 100755 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Eav.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Eav.php index e1680ab5a40..687f6349146 100755 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Eav.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Eav.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/General.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/General.php index 886c7a070ad..8c4dac63e21 100755 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/General.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/General.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Images.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Images.php index a8536cacc79..e7b3e86083a 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Images.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Images.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Related.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Related.php index 9c488cbebe1..a9f14444a6b 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Related.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Related.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdate.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdate.php index 6109f7a3b22..f9421b5154b 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdate.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/System.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/System.php index 7eb9bad9838..8f2f27c3b73 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/System.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/System.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/TierPrice.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/TierPrice.php index 9b382464e8e..3b74ad533a7 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/TierPrice.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/TierPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Websites.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Websites.php index b8f13d899be..6329c338e7c 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Websites.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Websites.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/NewCategoryDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/NewCategoryDataProvider.php index 9a51ae1d214..a52aad25f12 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/NewCategoryDataProvider.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/NewCategoryDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/ProductDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/ProductDataProvider.php index a390bb6e9a9..2a9a8bf2e3d 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/ProductDataProvider.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/ProductDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Form; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductCustomOptionsDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductCustomOptionsDataProvider.php index 6fb4bb5e390..bdf7283e555 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductCustomOptionsDataProvider.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductCustomOptionsDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductDataProvider.php index b862c2c6564..bcff1a31231 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductDataProvider.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/AbstractDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/AbstractDataProvider.php index 467f1bb2c4a..28d27c5e4b1 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/AbstractDataProvider.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/AbstractDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Related; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/CrossSellDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/CrossSellDataProvider.php index ec394de04d1..6079bac48e4 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/CrossSellDataProvider.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/CrossSellDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Related; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/RelatedDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/RelatedDataProvider.php index f5cb57f9001..05c87a60ea9 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/RelatedDataProvider.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/RelatedDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Related; diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/UpSellDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/UpSellDataProvider.php index 2bc4fd946f6..39ce24f01da 100644 --- a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/UpSellDataProvider.php +++ b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/UpSellDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Ui\DataProvider\Product\Related; diff --git a/app/code/Magento/Catalog/etc/acl.xml b/app/code/Magento/Catalog/etc/acl.xml index d9348a29cac..15192890e84 100644 --- a/app/code/Magento/Catalog/etc/acl.xml +++ b/app/code/Magento/Catalog/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/adminhtml/di.xml b/app/code/Magento/Catalog/etc/adminhtml/di.xml index d6ecaa7c403..fc59b5bbe6c 100644 --- a/app/code/Magento/Catalog/etc/adminhtml/di.xml +++ b/app/code/Magento/Catalog/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/adminhtml/events.xml b/app/code/Magento/Catalog/etc/adminhtml/events.xml index a77e1e741a4..034204feff5 100644 --- a/app/code/Magento/Catalog/etc/adminhtml/events.xml +++ b/app/code/Magento/Catalog/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/adminhtml/menu.xml b/app/code/Magento/Catalog/etc/adminhtml/menu.xml index d0f15c930e6..ee0d1ec5c41 100644 --- a/app/code/Magento/Catalog/etc/adminhtml/menu.xml +++ b/app/code/Magento/Catalog/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/adminhtml/routes.xml b/app/code/Magento/Catalog/etc/adminhtml/routes.xml index 8dac88c2a22..5deeddb3bb4 100644 --- a/app/code/Magento/Catalog/etc/adminhtml/routes.xml +++ b/app/code/Magento/Catalog/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/adminhtml/system.xml b/app/code/Magento/Catalog/etc/adminhtml/system.xml index 85949a953fc..c5a1b3686fb 100644 --- a/app/code/Magento/Catalog/etc/adminhtml/system.xml +++ b/app/code/Magento/Catalog/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/catalog_attributes.xml b/app/code/Magento/Catalog/etc/catalog_attributes.xml index d822d36eabf..650652aa945 100644 --- a/app/code/Magento/Catalog/etc/catalog_attributes.xml +++ b/app/code/Magento/Catalog/etc/catalog_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/catalog_attributes.xsd b/app/code/Magento/Catalog/etc/catalog_attributes.xsd index 00384d783ef..d95d5a17c25 100644 --- a/app/code/Magento/Catalog/etc/catalog_attributes.xsd +++ b/app/code/Magento/Catalog/etc/catalog_attributes.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/config.xml b/app/code/Magento/Catalog/etc/config.xml index a86b005be28..4a8a523e0d5 100644 --- a/app/code/Magento/Catalog/etc/config.xml +++ b/app/code/Magento/Catalog/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/crontab.xml b/app/code/Magento/Catalog/etc/crontab.xml index 2288ed4ebd8..b3fd1d2f561 100644 --- a/app/code/Magento/Catalog/etc/crontab.xml +++ b/app/code/Magento/Catalog/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/di.xml b/app/code/Magento/Catalog/etc/di.xml index 0142f7c2f26..83f194bc9a2 100644 --- a/app/code/Magento/Catalog/etc/di.xml +++ b/app/code/Magento/Catalog/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/eav_attributes.xml b/app/code/Magento/Catalog/etc/eav_attributes.xml index c480ea4dd23..133849a28e0 100644 --- a/app/code/Magento/Catalog/etc/eav_attributes.xml +++ b/app/code/Magento/Catalog/etc/eav_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/events.xml b/app/code/Magento/Catalog/etc/events.xml index 544abf6b9e0..a495a47fe9d 100644 --- a/app/code/Magento/Catalog/etc/events.xml +++ b/app/code/Magento/Catalog/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/extension_attributes.xml b/app/code/Magento/Catalog/etc/extension_attributes.xml index 509c3240bb6..3136b3df672 100644 --- a/app/code/Magento/Catalog/etc/extension_attributes.xml +++ b/app/code/Magento/Catalog/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/frontend/di.xml b/app/code/Magento/Catalog/etc/frontend/di.xml index ac8c3693e8f..ca1e1e244f4 100644 --- a/app/code/Magento/Catalog/etc/frontend/di.xml +++ b/app/code/Magento/Catalog/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/frontend/events.xml b/app/code/Magento/Catalog/etc/frontend/events.xml index 5ef8c724683..dd225750f73 100644 --- a/app/code/Magento/Catalog/etc/frontend/events.xml +++ b/app/code/Magento/Catalog/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/frontend/page_types.xml b/app/code/Magento/Catalog/etc/frontend/page_types.xml index 2557d79a1a4..8f929046afe 100644 --- a/app/code/Magento/Catalog/etc/frontend/page_types.xml +++ b/app/code/Magento/Catalog/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/frontend/routes.xml b/app/code/Magento/Catalog/etc/frontend/routes.xml index 5adaf604c51..d4d52559673 100644 --- a/app/code/Magento/Catalog/etc/frontend/routes.xml +++ b/app/code/Magento/Catalog/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Catalog" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Catalog/etc/frontend/sections.xml b/app/code/Magento/Catalog/etc/frontend/sections.xml index 7c365942836..0bc9c63494b 100644 --- a/app/code/Magento/Catalog/etc/frontend/sections.xml +++ b/app/code/Magento/Catalog/etc/frontend/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/indexer.xml b/app/code/Magento/Catalog/etc/indexer.xml index 88e6da345c3..5c2ca91e525 100644 --- a/app/code/Magento/Catalog/etc/indexer.xml +++ b/app/code/Magento/Catalog/etc/indexer.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/module.xml b/app/code/Magento/Catalog/etc/module.xml index 0c9e6bb356f..fc5225bc350 100644 --- a/app/code/Magento/Catalog/etc/module.xml +++ b/app/code/Magento/Catalog/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/mview.xml b/app/code/Magento/Catalog/etc/mview.xml index d6614e837dd..4600bb7fad3 100644 --- a/app/code/Magento/Catalog/etc/mview.xml +++ b/app/code/Magento/Catalog/etc/mview.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/product_options.xml b/app/code/Magento/Catalog/etc/product_options.xml index 48d62d0c2c0..43bf4865cb4 100644 --- a/app/code/Magento/Catalog/etc/product_options.xml +++ b/app/code/Magento/Catalog/etc/product_options.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/product_options.xsd b/app/code/Magento/Catalog/etc/product_options.xsd index a6bcb74ac28..18b5934c141 100644 --- a/app/code/Magento/Catalog/etc/product_options.xsd +++ b/app/code/Magento/Catalog/etc/product_options.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/product_options_merged.xsd b/app/code/Magento/Catalog/etc/product_options_merged.xsd index 2a5951c5778..7b9e6fa2650 100644 --- a/app/code/Magento/Catalog/etc/product_options_merged.xsd +++ b/app/code/Magento/Catalog/etc/product_options_merged.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/product_types.xml b/app/code/Magento/Catalog/etc/product_types.xml index a1516fee38e..513f0905b13 100644 --- a/app/code/Magento/Catalog/etc/product_types.xml +++ b/app/code/Magento/Catalog/etc/product_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/product_types.xsd b/app/code/Magento/Catalog/etc/product_types.xsd index e0cb3380285..06999fbeddc 100644 --- a/app/code/Magento/Catalog/etc/product_types.xsd +++ b/app/code/Magento/Catalog/etc/product_types.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/product_types_base.xsd b/app/code/Magento/Catalog/etc/product_types_base.xsd index 94d8b87d167..eddd7a68454 100644 --- a/app/code/Magento/Catalog/etc/product_types_base.xsd +++ b/app/code/Magento/Catalog/etc/product_types_base.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/product_types_merged.xsd b/app/code/Magento/Catalog/etc/product_types_merged.xsd index 1a1a9bfd821..1b1d92c1639 100644 --- a/app/code/Magento/Catalog/etc/product_types_merged.xsd +++ b/app/code/Magento/Catalog/etc/product_types_merged.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/view.xml b/app/code/Magento/Catalog/etc/view.xml index 756888e3b68..8c7500d9c13 100644 --- a/app/code/Magento/Catalog/etc/view.xml +++ b/app/code/Magento/Catalog/etc/view.xml @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/webapi.xml b/app/code/Magento/Catalog/etc/webapi.xml index b53f11b1ff2..eb1167b6467 100644 --- a/app/code/Magento/Catalog/etc/webapi.xml +++ b/app/code/Magento/Catalog/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/webapi_rest/di.xml b/app/code/Magento/Catalog/etc/webapi_rest/di.xml index 8606cd8de11..67e74dfbfd4 100644 --- a/app/code/Magento/Catalog/etc/webapi_rest/di.xml +++ b/app/code/Magento/Catalog/etc/webapi_rest/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/webapi_soap/di.xml b/app/code/Magento/Catalog/etc/webapi_soap/di.xml index 9d2f4abfa5b..cb5273e4aea 100644 --- a/app/code/Magento/Catalog/etc/webapi_soap/di.xml +++ b/app/code/Magento/Catalog/etc/webapi_soap/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/etc/widget.xml b/app/code/Magento/Catalog/etc/widget.xml index e9907e5b177..f54d4af816c 100644 --- a/app/code/Magento/Catalog/etc/widget.xml +++ b/app/code/Magento/Catalog/etc/widget.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/registration.php b/app/code/Magento/Catalog/registration.php index 96b9df94d39..fada27f08c1 100644 --- a/app/code/Magento/Catalog/registration.php +++ b/app/code/Magento/Catalog/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE.xml b/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE.xml index 2c1463953a0..bc432a0046e 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE_ERROR.xml b/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE_ERROR.xml index 2809386e4f9..30add348f7d 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE_ERROR.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE_ERROR.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_UPDATE_RESULT.xml b/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_UPDATE_RESULT.xml index a71dd55d3df..ec97c796102 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_UPDATE_RESULT.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_UPDATE_RESULT.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_add.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_add.xml index 5f376149e96..d9c70ae4879 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_add.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_add.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_create.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_create.xml index 0a8b4e2509c..02734a67418 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_create.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_create.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_edit.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_edit.xml index 1f975b4a701..799c50dfc47 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_edit.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_action_attribute_edit.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_action_attribute_edit.xml index be147a42708..3a073f75eef 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_action_attribute_edit.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_action_attribute_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertspricegrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertspricegrid.xml index 39b7f82b2e7..0cd56d13814 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertspricegrid.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertspricegrid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertsstockgrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertsstockgrid.xml index 74e558c34cc..d098da96d3e 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertsstockgrid.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertsstockgrid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit.xml index ad6d9f5d4ef..ddf02a7cdb9 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit_form.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit_form.xml index 59c5d5cff31..8f4780d34b1 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit_form.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit_popup.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit_popup.xml index 5049f5ac8e3..a19d29a9872 100755 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit_popup.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit_popup.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_change_attribute_set.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_change_attribute_set.xml index 82007f77497..422cf537c30 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_change_attribute_set.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_change_attribute_set.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssell.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssell.xml index 6f95ce72a20..9c1280a2500 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssell.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssell.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssellgrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssellgrid.xml index 808e95a8856..96c66485f21 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssellgrid.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssellgrid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_customoptions.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_customoptions.xml index 064463bd0d6..39781cc8adc 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_customoptions.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_customoptions.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_edit.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_edit.xml index d8b0ce7c957..3375f5b8233 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_edit.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_form.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_form.xml index bdcd5da65bb..194c745e6a6 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_form.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_grid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_grid.xml index 7343969a40b..e214ccad3dc 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_grid.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_index.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_index.xml index 7ee21e21805..bad6a5d1655 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_index.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_new.xml index 0d6dae0c99a..cb993bc892e 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_new.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_options.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_options.xml index e52d7e7ec1a..7d88ff2a043 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_options.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_options.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_optionsimportgrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_optionsimportgrid.xml index 699b6084c31..7f6f62943bb 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_optionsimportgrid.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_optionsimportgrid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_related.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_related.xml index e1f2eb04035..6b688eeec20 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_related.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_related.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_relatedgrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_relatedgrid.xml index 8d2fb11dc18..4a306dd725b 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_relatedgrid.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_relatedgrid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_reload.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_reload.xml index 82007f77497..422cf537c30 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_reload.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_reload.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_block.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_block.xml index 1dc0de6498c..bbbc1e21669 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_block.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_edit.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_edit.xml index d61a2c344d6..7caf3911191 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_edit.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_index.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_index.xml index 23b859d526e..b25eecbbc25 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_index.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsell.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsell.xml index f7ec295f154..ce0b1521d82 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsell.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsell.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsellgrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsellgrid.xml index 097649c8c0a..83c19659b51 100644 --- a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsellgrid.xml +++ b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsellgrid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/requirejs-config.js b/app/code/Magento/Catalog/view/adminhtml/requirejs-config.js index d2e45cbfb42..848d1f1da90 100644 --- a/app/code/Magento/Catalog/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/Catalog/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -17,4 +17,4 @@ var config = { deps: [ 'Magento_Catalog/catalog/product' ] -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/checkboxes/tree.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/checkboxes/tree.phtml index b1f8197650f..eaeed5b12eb 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/checkboxes/tree.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/checkboxes/tree.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit.phtml index 5ff7b550f3e..b030d19ba5b 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit/assign_products.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit/assign_products.phtml index f255051eb82..9a5a233f44b 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit/assign_products.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit/assign_products.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/tree.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/tree.phtml index 135864e957a..7bdc0aae50e 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/tree.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/tree.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/widget/tree.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/widget/tree.phtml index 6363d23e7e8..18d1f8f1d3c 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/widget/tree.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/widget/tree.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/form/renderer/fieldset/element.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/form/renderer/fieldset/element.phtml index 22f43857732..548d9c56847 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/form/renderer/fieldset/element.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/form/renderer/fieldset/element.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product.phtml index 90360ac3ce8..e7f9f98c3cb 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/form.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/form.phtml index a54b12b6262..fa320f53b88 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/form.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/js.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/js.phtml index 2af1f34e91b..25e72201068 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/js.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/labels.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/labels.phtml index 712db49e530..a4ce77aa0db 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/labels.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/labels.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/options.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/options.phtml index 500126c24b5..932d3dc50dc 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/options.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/options.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main.phtml index 5b8034e87fe..d73e4c6095d 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/attribute.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/attribute.phtml index 526d2f98ead..2928eff384d 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/attribute.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/attribute.phtml @@ -1,5 +1,5 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */; diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/group.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/group.phtml index 8a52f62a644..4fdbe3e6844 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/group.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/group.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/add.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/add.phtml index 536e840249b..cf40ee6d78a 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/add.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/add.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/main.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/main.phtml index 3b5748da548..2cdb9f451a8 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/main.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/main.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/configure.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/configure.phtml index 03fb38da6b5..a502417c2aa 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/configure.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/configure.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options.phtml index d409065c96f..1abbe349995 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/js.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/js.phtml index 295b015b14a..21614188c0d 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/js.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/date.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/date.phtml index 0a2fcb84c99..767b54e0fda 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/date.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/date.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/default.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/default.phtml index 9f20d0755fd..835a383cb04 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/default.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/file.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/file.phtml index 5d35a9e8be1..cb60254d4d8 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/file.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/file.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/select.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/select.phtml index 0d71586e3ec..d7dc15a595a 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/select.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/select.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/text.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/text.phtml index aebcc0a0454..a636616566a 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/text.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/text.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/qty.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/qty.phtml index 9cbc7ac2b3f..2ec5f55594f 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/qty.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/qty.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit.phtml index fb657c3ba72..ec1a686d773 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/attribute.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/attribute.phtml index 7bfac1299ee..58ad5f2c4eb 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/attribute.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/attribute.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/inventory.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/inventory.phtml index bed5615f0c4..070c485d511 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/inventory.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/inventory.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/websites.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/websites.phtml index 461cc441303..c9876309ff3 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/websites.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/websites.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/attribute_set.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/attribute_set.phtml index f6385aef479..7b22d98acd9 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/attribute_set.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/attribute_set.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/category/new/form.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/category/new/form.phtml index 3e42ebbd6dd..0a331ae7fc3 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/category/new/form.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/category/new/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /* @var $block \Magento\Catalog\Block\Adminhtml\Product\Edit\NewCategory */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options.phtml index 01bde173b99..ee619adc7fc 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/option.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/option.phtml index 752c06587bd..5f43abccb1e 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/option.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/option.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/date.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/date.phtml index 694a6841be7..36be7d5fe3e 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/date.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/date.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/file.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/file.phtml index aaba1487d21..e3709958b67 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/file.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/file.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/select.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/select.phtml index 509aa9f972d..0788d1449d7 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/select.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/select.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/text.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/text.phtml index 723b55c5a2c..637b73b08df 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/text.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/text.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/price/tier.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/price/tier.phtml index 265ba1ad68f..db266a4b37f 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/price/tier.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/price/tier.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/serializer.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/serializer.phtml index 7966ed77249..0343da0bfc2 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/serializer.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/serializer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/websites.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/websites.phtml index 44ed289b1c2..4fd9a7fa856 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/websites.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/websites.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/helper/gallery.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/helper/gallery.phtml index 2be22b660cd..d917f323d3c 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/helper/gallery.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/helper/gallery.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/js.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/js.phtml index 31df37479e2..97752e7d4d5 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/js.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/alert.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/alert.phtml index 7100ebe4147..8008d073544 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/alert.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/alert.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/inventory.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/inventory.phtml index c51a8314a2a..6ee7ae94fa8 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/inventory.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/inventory.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/widget/chooser/container.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/widget/chooser/container.phtml index f5e7893f457..893dcbd58b7 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/widget/chooser/container.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/widget/chooser/container.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/wysiwyg/js.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/wysiwyg/js.phtml index 5ffacc462ac..82d2111b986 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/wysiwyg/js.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/wysiwyg/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/attribute/search.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/attribute/search.phtml index 65302151009..d44d4473e37 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/attribute/search.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/attribute/search.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs.phtml index 88408930025..f6994f61ac0 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs/child_tab.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs/child_tab.phtml index b5fafa1d366..2c30cfe0557 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs/child_tab.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs/child_tab.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/product/grid/massaction_extended.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/product/grid/massaction_extended.phtml index 62a129fb486..6dec25e19d9 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/product/grid/massaction_extended.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/product/grid/massaction_extended.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/rss/grid/link.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/rss/grid/link.phtml index 0645cfdf972..66edb1888b5 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/rss/grid/link.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/rss/grid/link.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/category_form.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/category_form.xml index 4b99707b85f..9686633c693 100644 --- a/app/code/Magento/Catalog/view/adminhtml/ui_component/category_form.xml +++ b/app/code/Magento/Catalog/view/adminhtml/ui_component/category_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/crosssell_product_listing.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/crosssell_product_listing.xml index 965694d7f94..c562cf1096f 100644 --- a/app/code/Magento/Catalog/view/adminhtml/ui_component/crosssell_product_listing.xml +++ b/app/code/Magento/Catalog/view/adminhtml/ui_component/crosssell_product_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/design_config_form.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/design_config_form.xml index 9852ad74121..28522ca5c2b 100644 --- a/app/code/Magento/Catalog/view/adminhtml/ui_component/design_config_form.xml +++ b/app/code/Magento/Catalog/view/adminhtml/ui_component/design_config_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/new_category_form.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/new_category_form.xml index dbe6aa9eb7d..a0307886770 100644 --- a/app/code/Magento/Catalog/view/adminhtml/ui_component/new_category_form.xml +++ b/app/code/Magento/Catalog/view/adminhtml/ui_component/new_category_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attribute_add_form.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attribute_add_form.xml index 870304c8816..ab5ab6e288e 100644 --- a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attribute_add_form.xml +++ b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attribute_add_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attributes_grid.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attributes_grid.xml index 4067cd062de..b4b625dbdac 100644 --- a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attributes_grid.xml +++ b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attributes_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_custom_options_listing.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_custom_options_listing.xml index 5c729263712..2b6db7050d0 100644 --- a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_custom_options_listing.xml +++ b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_custom_options_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_form.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_form.xml index 2db3d337822..b99e01147c0 100644 --- a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_form.xml +++ b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_listing.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_listing.xml index ec88952af50..f7475d0bb81 100644 --- a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_listing.xml +++ b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/related_product_listing.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/related_product_listing.xml index 25350158c52..55863e0a21c 100644 --- a/app/code/Magento/Catalog/view/adminhtml/ui_component/related_product_listing.xml +++ b/app/code/Magento/Catalog/view/adminhtml/ui_component/related_product_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/upsell_product_listing.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/upsell_product_listing.xml index fc03f128f46..26703ba03c9 100644 --- a/app/code/Magento/Catalog/view/adminhtml/ui_component/upsell_product_listing.xml +++ b/app/code/Magento/Catalog/view/adminhtml/ui_component/upsell_product_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/apply-to-type-switcher.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/apply-to-type-switcher.js index 595638d8ca6..13543ade8f7 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/catalog/apply-to-type-switcher.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/catalog/apply-to-type-switcher.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/base-image-uploader.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/base-image-uploader.js index 9c0d986c7e9..4ba2d110ffb 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/catalog/base-image-uploader.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/catalog/base-image-uploader.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global alert:true*/ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/assign-products.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/assign-products.js index ad5f52095f3..1da9c2c379c 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/assign-products.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/assign-products.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/edit.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/edit.js index 28bc0734ef0..66eb039790f 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/edit.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/edit.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** @@ -75,4 +75,4 @@ define([ categorySubmit(config.url, config.ajax); }); }; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/form.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/form.js index f64111a2f0e..9f413832537 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/form.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/form.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product-attributes.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product-attributes.js index c2f16d82959..78f48b0bafa 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product-attributes.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product-attributes.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product.js index 27fdd1b2018..11a18662841 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ require([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/attribute/unique-validate.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/attribute/unique-validate.js index c2aa604d11e..2af880f4d04 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/attribute/unique-validate.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/attribute/unique-validate.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/composite/configure.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/composite/configure.js index 28bcd7011ab..0f45dda8043 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/composite/configure.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/composite/configure.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/type-events.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/type-events.js index 55a4599ce85..9de0ff75fa8 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/catalog/type-events.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/catalog/type-events.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/file-type-field.js b/app/code/Magento/Catalog/view/adminhtml/web/component/file-type-field.js index 491d765740b..bed32eb5746 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/component/file-type-field.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/component/file-type-field.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/image-size-field.js b/app/code/Magento/Catalog/view/adminhtml/web/component/image-size-field.js index a2e05dcc1c6..13a759e5347 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/component/image-size-field.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/component/image-size-field.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/select-type-grid.js b/app/code/Magento/Catalog/view/adminhtml/web/component/select-type-grid.js index ba5307da4cd..57d35424268 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/component/select-type-grid.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/component/select-type-grid.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-container.js b/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-container.js index 5105271769d..b3ef035402c 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-container.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-container.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-input.js b/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-input.js index 694eb016346..d520758d456 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-input.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-input.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-select.js b/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-select.js index 555024e026a..6b61b5e49c9 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-select.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-select.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/text-type-field.js b/app/code/Magento/Catalog/view/adminhtml/web/component/text-type-field.js index d09110f41d3..72d97b7aebc 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/component/text-type-field.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/component/text-type-field.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/bundle-proxy-button.js b/app/code/Magento/Catalog/view/adminhtml/web/js/bundle-proxy-button.js index 60141a71380..42543656f21 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/bundle-proxy-button.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/bundle-proxy-button.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/category-tree.js b/app/code/Magento/Catalog/view/adminhtml/web/js/category-tree.js index 0cb4932a012..5453b760e2f 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/category-tree.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/category-tree.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ @@ -94,4 +94,4 @@ define([ }); return $.mage.categoryTree; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attribute-set-select.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attribute-set-select.js index 3fa5d6a6790..baefa1ae2e4 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attribute-set-select.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attribute-set-select.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-fieldset.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-fieldset.js index 8b2d64353f7..1e363ef2a1a 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-fieldset.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-fieldset.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-grid-paging.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-grid-paging.js index f698de4a538..641dfaf2951 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-grid-paging.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-grid-paging.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-insert-listing.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-insert-listing.js index 5d9234b76d5..10be9f2ffc9 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-insert-listing.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-insert-listing.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/checkbox.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/checkbox.js index 944ef4f7b4d..b371efca26f 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/checkbox.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/checkbox.js @@ -1,4 +1,4 @@ -/* Copyright © 2016 Magento. All rights reserved. +/* Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-hide-select.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-hide-select.js index fd36504b5a7..4bf54406e35 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-hide-select.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-hide-select.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/input.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/input.js index 4dd196da992..1961bc5fde6 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/input.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/input.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/select.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/select.js index ad6090cdd8e..2dc21fc11cf 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/select.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/select.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/strategy.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/strategy.js index 6a31b28df2c..e8b276c171c 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/strategy.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/strategy.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define(function () { diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/yesno.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/yesno.js index 3c40951499f..7362acbe63e 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/yesno.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/yesno.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-import-custom-options.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-import-custom-options.js index 10e498ff474..d15c7b48dc4 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-import-custom-options.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-import-custom-options.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-tier-price.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-tier-price.js index 6dc4c747a44..c8b66f23abc 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-tier-price.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-tier-price.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/import-handler.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/import-handler.js index a0aec918ccd..a616978f8d3 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/import-handler.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/import-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/input-handle-required.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/input-handle-required.js index 9d2154656b0..c342e961fa9 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/input-handle-required.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/input-handle-required.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/messages.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/messages.js index 78956749be6..7e3696ba24b 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/messages.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/messages.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/multiselect-handle-required.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/multiselect-handle-required.js index 3e26f693456..b7146137c6b 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/multiselect-handle-required.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/multiselect-handle-required.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-form.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-form.js index 96d3f0accec..360349f8c61 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-form.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-form.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-insert-form.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-insert-form.js index 4c646b1de8e..f3624de9cbd 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-insert-form.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-insert-form.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-category.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-category.js index 8037d1c6ac3..7a16067b372 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-category.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-category.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/product-status.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/product-status.js index c02af7c6369..3e3c8115849 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/product-status.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/product-status.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-handle-required.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-handle-required.js index dc7b4dee30b..08ed325c82a 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-handle-required.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-handle-required.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-to-checkbox.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-to-checkbox.js index 4232c54e7b6..281ef42a9e5 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-to-checkbox.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-to-checkbox.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/url-key-handle-changes.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/url-key-handle-changes.js index 2305a79fa7e..b12f73c1712 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/url-key-handle-changes.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/url-key-handle-changes.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/date.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/date.js index 1f1aa3a4a5d..ecdb3a66006 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/date.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/date.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/fieldset.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/fieldset.js index 2ddd6566cb0..581153832d3 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/fieldset.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/fieldset.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/input.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/input.js index 950ab4aa4eb..bd832632f75 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/input.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/input.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/select.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/select.js index c63e79316b3..05453dc19bf 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/select.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/select.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/strategy.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/strategy.js index 7d1f0557108..2e59efeab1b 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/strategy.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/strategy.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define(function () { diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/textarea.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/textarea.js index 0c0860e1b71..7446174982a 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/textarea.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/textarea.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/yesno.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/yesno.js index 5f64db1ee6d..9f8a9e43dac 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/yesno.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/yesno.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options-type.js b/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options-type.js index e4c65f543ed..878e8e14296 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options-type.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options-type.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options.js b/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options.js index 9de11667b9d..0611c4fae92 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true*/ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/edit-tree.js b/app/code/Magento/Catalog/view/adminhtml/web/js/edit-tree.js index 9d84efd42c7..74205950780 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/edit-tree.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/edit-tree.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/action-delete.js b/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/action-delete.js index d809ecc74fa..1ecfddac7ab 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/action-delete.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/action-delete.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/checkbox.js b/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/checkbox.js index cffa4dff895..57d45551d18 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/checkbox.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/checkbox.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/input.js b/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/input.js index 688dc39692d..84be3a4f878 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/input.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/input.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/new-category-dialog.js b/app/code/Magento/Catalog/view/adminhtml/web/js/new-category-dialog.js index 41c29880de8..e20d3f3e0c5 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/new-category-dialog.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/new-category-dialog.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/options.js b/app/code/Magento/Catalog/view/adminhtml/web/js/options.js index b366f61ba49..75d768dae7b 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/options.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/options.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/product-gallery.js b/app/code/Magento/Catalog/view/adminhtml/web/js/product-gallery.js index eba8ef201ea..2cfde92d6a7 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/product-gallery.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/product-gallery.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint jquery:true*/ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/product/weight-handler.js b/app/code/Magento/Catalog/view/adminhtml/web/js/product/weight-handler.js index 176cc9bd5c8..a2ae5b794f6 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/product/weight-handler.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/product/weight-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/percentage-processor.js b/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/percentage-processor.js index afc0bab3f7f..85d6f07763b 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/percentage-processor.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/percentage-processor.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/value-type-select.js b/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/value-type-select.js index 216a767d393..17e5037dc50 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/value-type-select.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/value-type-select.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/utils/percentage-price-calculator.js b/app/code/Magento/Catalog/view/adminhtml/web/js/utils/percentage-price-calculator.js index b7c18d5332f..9697cb6bf12 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/js/utils/percentage-price-calculator.js +++ b/app/code/Magento/Catalog/view/adminhtml/web/js/utils/percentage-price-calculator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/attributes/grid/paging.html b/app/code/Magento/Catalog/view/adminhtml/web/template/attributes/grid/paging.html index 6ad88dd64d9..bf03ffb1049 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/template/attributes/grid/paging.html +++ b/app/code/Magento/Catalog/view/adminhtml/web/template/attributes/grid/paging.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/checkbox.html b/app/code/Magento/Catalog/view/adminhtml/web/template/checkbox.html index 9b737a457f3..7a2c8e42364 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/template/checkbox.html +++ b/app/code/Magento/Catalog/view/adminhtml/web/template/checkbox.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/action-delete.html b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/action-delete.html index 13445314101..687420c9ef1 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/action-delete.html +++ b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/action-delete.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -13,4 +13,4 @@ } "> <span translate="$parent.deleteButtonLabel"></span> -</button> \ No newline at end of file +</button> diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-service.html b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-service.html index 9b1a3936b9f..ad83bc14461 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-service.html +++ b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-service.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-type-service.html b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-type-service.html index 442d96b5ae4..3c3cbbde2ab 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-type-service.html +++ b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-type-service.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/input.html b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/input.html index 70b1b6033f7..560bc90ea6d 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/input.html +++ b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/input.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/image-preview.html b/app/code/Magento/Catalog/view/adminhtml/web/template/image-preview.html index 3bc6e0a359c..22f7237c6cd 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/template/image-preview.html +++ b/app/code/Magento/Catalog/view/adminhtml/web/template/image-preview.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/base/layout/catalog_product_prices.xml b/app/code/Magento/Catalog/view/base/layout/catalog_product_prices.xml index aeb647660af..b47a6a3e69d 100644 --- a/app/code/Magento/Catalog/view/base/layout/catalog_product_prices.xml +++ b/app/code/Magento/Catalog/view/base/layout/catalog_product_prices.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/base/layout/default.xml b/app/code/Magento/Catalog/view/base/layout/default.xml index 25a23d2be7d..776dbc4b646 100644 --- a/app/code/Magento/Catalog/view/base/layout/default.xml +++ b/app/code/Magento/Catalog/view/base/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/base/layout/empty.xml b/app/code/Magento/Catalog/view/base/layout/empty.xml index 25a23d2be7d..776dbc4b646 100644 --- a/app/code/Magento/Catalog/view/base/layout/empty.xml +++ b/app/code/Magento/Catalog/view/base/layout/empty.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/base/templates/js/components.phtml b/app/code/Magento/Catalog/view/base/templates/js/components.phtml index e490a6aa049..bdcb2e9bf77 100644 --- a/app/code/Magento/Catalog/view/base/templates/js/components.phtml +++ b/app/code/Magento/Catalog/view/base/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/base/templates/product/price/amount/default.phtml b/app/code/Magento/Catalog/view/base/templates/product/price/amount/default.phtml index 1fe0e1748e7..999a01e6ad2 100644 --- a/app/code/Magento/Catalog/view/base/templates/product/price/amount/default.phtml +++ b/app/code/Magento/Catalog/view/base/templates/product/price/amount/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/base/templates/product/price/configured_price.phtml b/app/code/Magento/Catalog/view/base/templates/product/price/configured_price.phtml index f6c1faec2eb..1bfa7ab73c7 100644 --- a/app/code/Magento/Catalog/view/base/templates/product/price/configured_price.phtml +++ b/app/code/Magento/Catalog/view/base/templates/product/price/configured_price.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Catalog/view/base/templates/product/price/default.phtml b/app/code/Magento/Catalog/view/base/templates/product/price/default.phtml index a72cbcf8e89..01d82db69d2 100644 --- a/app/code/Magento/Catalog/view/base/templates/product/price/default.phtml +++ b/app/code/Magento/Catalog/view/base/templates/product/price/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/base/templates/product/price/final_price.phtml b/app/code/Magento/Catalog/view/base/templates/product/price/final_price.phtml index 2db820a557b..f6d8de54e29 100644 --- a/app/code/Magento/Catalog/view/base/templates/product/price/final_price.phtml +++ b/app/code/Magento/Catalog/view/base/templates/product/price/final_price.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/base/templates/product/price/tier_prices.phtml b/app/code/Magento/Catalog/view/base/templates/product/price/tier_prices.phtml index 3862b447b0c..56a4fa17a6f 100644 --- a/app/code/Magento/Catalog/view/base/templates/product/price/tier_prices.phtml +++ b/app/code/Magento/Catalog/view/base/templates/product/price/tier_prices.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/base/web/js/price-box.js b/app/code/Magento/Catalog/view/base/web/js/price-box.js index 8d1bec72a23..e8f8bdc0919 100644 --- a/app/code/Magento/Catalog/view/base/web/js/price-box.js +++ b/app/code/Magento/Catalog/view/base/web/js/price-box.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/base/web/js/price-option-date.js b/app/code/Magento/Catalog/view/base/web/js/price-option-date.js index 4237274bd08..32b2817feb9 100644 --- a/app/code/Magento/Catalog/view/base/web/js/price-option-date.js +++ b/app/code/Magento/Catalog/view/base/web/js/price-option-date.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/base/web/js/price-option-file.js b/app/code/Magento/Catalog/view/base/web/js/price-option-file.js index 281983f95d2..e4954edcf9b 100644 --- a/app/code/Magento/Catalog/view/base/web/js/price-option-file.js +++ b/app/code/Magento/Catalog/view/base/web/js/price-option-file.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ @@ -66,4 +66,4 @@ define([ }); return $.mage.priceOptionFile; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Catalog/view/base/web/js/price-options.js b/app/code/Magento/Catalog/view/base/web/js/price-options.js index 04a34288e4c..c8939660462 100644 --- a/app/code/Magento/Catalog/view/base/web/js/price-options.js +++ b/app/code/Magento/Catalog/view/base/web/js/price-options.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/base/web/js/price-utils.js b/app/code/Magento/Catalog/view/base/web/js/price-utils.js index b442d52ae4a..2b867658f05 100644 --- a/app/code/Magento/Catalog/view/base/web/js/price-utils.js +++ b/app/code/Magento/Catalog/view/base/web/js/price-utils.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view.xml index 298cdcc29e9..1488edb4ebc 100644 --- a/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view.xml +++ b/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default.xml index a9cfdf8f834..d6788f3d4ee 100644 --- a/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default.xml +++ b/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default_without_children.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default_without_children.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default_without_children.xml +++ b/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default_without_children.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_compare_index.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_compare_index.xml index 3e16064e573..c6f02a8acb1 100644 --- a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_compare_index.xml +++ b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_compare_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_gallery.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_gallery.xml index 837d34157a6..7e39fd35d6c 100755 --- a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_gallery.xml +++ b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_gallery.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_opengraph.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_opengraph.xml index 6bb8a789490..661ec52df3d 100644 --- a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_opengraph.xml +++ b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_opengraph.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml index 2f8feb52db5..6e17705f4c4 100644 --- a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml +++ b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_simple.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_simple.xml index bc1959a36cb..6703d18deac 100644 --- a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_simple.xml +++ b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_simple.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_virtual.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_virtual.xml index 6155df2f606..dd93e8064e6 100644 --- a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_virtual.xml +++ b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_virtual.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/Catalog/view/frontend/layout/checkout_cart_item_renderers.xml index 2ad9ebb874e..ee16e638b64 100644 --- a/app/code/Magento/Catalog/view/frontend/layout/checkout_cart_item_renderers.xml +++ b/app/code/Magento/Catalog/view/frontend/layout/checkout_cart_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/layout/default.xml b/app/code/Magento/Catalog/view/frontend/layout/default.xml index ab424810401..f267c2a5ae6 100644 --- a/app/code/Magento/Catalog/view/frontend/layout/default.xml +++ b/app/code/Magento/Catalog/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/requirejs-config.js b/app/code/Magento/Catalog/view/frontend/requirejs-config.js index 6c7a8d3a969..a26e53e9620 100644 --- a/app/code/Magento/Catalog/view/frontend/requirejs-config.js +++ b/app/code/Magento/Catalog/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/cms.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/cms.phtml index 06d1fc56b6f..818456d2272 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/category/cms.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/category/cms.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/description.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/description.phtml index 701728f7f01..b69e87fe8d1 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/category/description.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/category/description.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/image.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/image.phtml index 71e99e39804..7abe2905e5a 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/category/image.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/category/image.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/products.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/products.phtml index 1ddd5ff19e5..acfaaa373ad 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/category/products.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/category/products.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/rss.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/rss.phtml index 1910842aa32..5ac4c3d0f07 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/category/rss.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/category/rss.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_block.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_block.phtml index 53552bb3efc..ea686db24a1 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_block.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_block.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_inline.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_inline.phtml index 6822bcf312b..1d0de62ec43 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_inline.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_inline.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/navigation/left.phtml b/app/code/Magento/Catalog/view/frontend/templates/navigation/left.phtml index 79143129ae2..2e8a832f77c 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/navigation/left.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/navigation/left.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/compare/link.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/compare/link.phtml index 94d53461479..0fb2622254d 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/compare/link.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/compare/link.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/compare/list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/compare/list.phtml index 1f95041f2f5..849f6abf745 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/compare/list.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/compare/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/compare/sidebar.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/compare/sidebar.phtml index d9d6dd27ed6..779e012d225 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/compare/sidebar.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/compare/sidebar.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/gallery.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/gallery.phtml index a55dd99b699..e15155c9675 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/gallery.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/gallery.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/image.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/image.phtml index e72e70598ac..7165ae9920a 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/image.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/image.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/image_with_borders.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/image_with_borders.phtml index f78631f32a8..c3280c563fe 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/image_with_borders.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/image_with_borders.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list.phtml index 578a58fb4d4..bcbd2882e02 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/list.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ use Magento\Framework\App\Action\Action; diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/addto/compare.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/addto/compare.phtml index 5cd2eb6922b..518944dfb23 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/list/addto/compare.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/list/addto/compare.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/items.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/items.phtml index 0b013839fdc..db299487d17 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/list/items.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/list/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar.phtml index 7feb2b077de..89386162ae8 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/amount.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/amount.phtml index 953b9cae79d..f432c959904 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/amount.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/amount.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/limiter.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/limiter.phtml index 994f153505f..00ac272adb8 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/limiter.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/limiter.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/sorter.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/sorter.phtml index bc9b1aa5542..8407c5809ec 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/sorter.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/sorter.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/viewmode.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/viewmode.phtml index 72b99942c86..8e16098bd90 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/viewmode.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/viewmode.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/listing.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/listing.phtml index 195750429b8..2f5bb0211a1 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/listing.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/listing.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/additional.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/additional.phtml index 35a9d9c99ff..fb7477ee41a 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/additional.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/additional.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/addto.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/addto.phtml index 2fc3c9dc78f..c174fd3e160 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/addto.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/addto.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/addto/compare.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/addto/compare.phtml index 3b6da83b344..512b91015d7 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/addto/compare.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/addto/compare.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/addtocart.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/addtocart.phtml index ea3e8077d0d..f0d8ffc2dc4 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/addtocart.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/addtocart.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/attribute.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/attribute.phtml index eae8197f723..cb99796f661 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/attribute.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/attribute.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/attributes.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/attributes.phtml index ee2ff6c9c8d..431b0229ef6 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/attributes.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/attributes.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/description.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/description.phtml index 9f7a0ed952c..a074e83d776 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/description.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/description.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/details.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/details.phtml index b28ee68f4e8..4facd458d57 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/details.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/details.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/form.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/form.phtml index 41f0684a431..9c01ca5434b 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/form.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/gallery.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/gallery.phtml index 600902bec5d..c5e9fc9f604 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/gallery.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/gallery.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/mailto.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/mailto.phtml index eae1732f35d..4d12665c0d1 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/mailto.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/mailto.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/currency.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/currency.phtml index 4baaef303fd..8be3034649a 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/currency.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/currency.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/general.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/general.phtml index 39170817ec7..746822aa6a2 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/general.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/general.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options.phtml index 9da72303f06..de1b0ec1707 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/options.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/options.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/date.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/date.phtml index f3067c352f2..64b18321126 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/date.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/date.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/default.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/default.phtml index f33484b6f29..31a58051296 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/default.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/file.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/file.phtml index c6c6420cffe..30edad5d3af 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/file.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/file.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/select.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/select.phtml index 7af6c20ee5f..fe6ca3974c6 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/select.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/select.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/text.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/text.phtml index 82822e28875..74d6c6ff6bf 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/text.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/text.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper.phtml index 4b9b1525272..c2857ef849d 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper/bottom.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper/bottom.phtml index ccf71739471..08642bc7925 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper/bottom.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper/bottom.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/price_clone.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/price_clone.phtml index 0ba4ead7f55..8c7376ea1ce 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/price_clone.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/price_clone.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/review.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/review.phtml index 380550fd931..49140ade8ea 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/review.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/review.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/type/default.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/type/default.phtml index 978b9d3ee1e..ae61aa0bb95 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/view/type/default.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/view/type/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_block.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_block.phtml index 09690f9ab3c..b01ac26028d 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_block.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_block.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_inline.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_inline.phtml index 386400d7b90..6231b9e3325 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_inline.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_inline.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_default_list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_default_list.phtml index c123c7a1cf5..e2f3c1888c3 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_default_list.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_default_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_images_list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_images_list.phtml index 39ec8af20fa..56130d29d40 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_images_list.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_images_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_names_list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_names_list.phtml index 2d54c1d286c..4a6dfedcfff 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_names_list.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_names_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_grid.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_grid.phtml index 74106a97755..897d70c23ac 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_grid.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_grid.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_list.phtml index 3523f66b95d..567ccb2d115 100644 --- a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_list.phtml +++ b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/web/js/catalog-add-to-cart.js b/app/code/Magento/Catalog/view/frontend/web/js/catalog-add-to-cart.js index 7db4f5d7456..7e007e5fdfa 100644 --- a/app/code/Magento/Catalog/view/frontend/web/js/catalog-add-to-cart.js +++ b/app/code/Magento/Catalog/view/frontend/web/js/catalog-add-to-cart.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/frontend/web/js/gallery.js b/app/code/Magento/Catalog/view/frontend/web/js/gallery.js index 49f0438115d..584a69e76ed 100644 --- a/app/code/Magento/Catalog/view/frontend/web/js/gallery.js +++ b/app/code/Magento/Catalog/view/frontend/web/js/gallery.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true, jquery:true*/ @@ -44,4 +44,4 @@ }); return $.mage.gallery; -})); \ No newline at end of file +})); diff --git a/app/code/Magento/Catalog/view/frontend/web/js/list.js b/app/code/Magento/Catalog/view/frontend/web/js/list.js index 432e3ec32d9..58fc6c4b53f 100644 --- a/app/code/Magento/Catalog/view/frontend/web/js/list.js +++ b/app/code/Magento/Catalog/view/frontend/web/js/list.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ @@ -46,4 +46,4 @@ define([ }); return $.mage.compareList; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Catalog/view/frontend/web/js/product/list/toolbar.js b/app/code/Magento/Catalog/view/frontend/web/js/product/list/toolbar.js index 043a78a5b7a..82e52c9ff80 100644 --- a/app/code/Magento/Catalog/view/frontend/web/js/product/list/toolbar.js +++ b/app/code/Magento/Catalog/view/frontend/web/js/product/list/toolbar.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/frontend/web/js/related-products.js b/app/code/Magento/Catalog/view/frontend/web/js/related-products.js index 764f380e81a..5a3d2d6a264 100644 --- a/app/code/Magento/Catalog/view/frontend/web/js/related-products.js +++ b/app/code/Magento/Catalog/view/frontend/web/js/related-products.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint jquery:true*/ @@ -96,4 +96,4 @@ define([ }); return $.mage.relatedProducts; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Catalog/view/frontend/web/js/upsell-products.js b/app/code/Magento/Catalog/view/frontend/web/js/upsell-products.js index 6bbe986156b..bfae6c0480e 100644 --- a/app/code/Magento/Catalog/view/frontend/web/js/upsell-products.js +++ b/app/code/Magento/Catalog/view/frontend/web/js/upsell-products.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint jquery:true*/ @@ -57,4 +57,4 @@ define([ }); return $.mage.upsellProducts; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Catalog/view/frontend/web/js/validate-product.js b/app/code/Magento/Catalog/view/frontend/web/js/validate-product.js index 34b0e05a9e9..78cebf3cd43 100644 --- a/app/code/Magento/Catalog/view/frontend/web/js/validate-product.js +++ b/app/code/Magento/Catalog/view/frontend/web/js/validate-product.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Catalog/view/frontend/web/js/view/compare-products.js b/app/code/Magento/Catalog/view/frontend/web/js/view/compare-products.js index 9662b3fc726..270c9168e9d 100644 --- a/app/code/Magento/Catalog/view/frontend/web/js/view/compare-products.js +++ b/app/code/Magento/Catalog/view/frontend/web/js/view/compare-products.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/web/js/view/image.js b/app/code/Magento/Catalog/view/frontend/web/js/view/image.js index 421b9bf3d35..cf2b92519fb 100644 --- a/app/code/Magento/Catalog/view/frontend/web/js/view/image.js +++ b/app/code/Magento/Catalog/view/frontend/web/js/view/image.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Catalog/view/frontend/web/js/zoom.js b/app/code/Magento/Catalog/view/frontend/web/js/zoom.js index 649b5d6e1d9..cea47e46f1e 100644 --- a/app/code/Magento/Catalog/view/frontend/web/js/zoom.js +++ b/app/code/Magento/Catalog/view/frontend/web/js/zoom.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true expr:true*/ @@ -192,4 +192,4 @@ define([ this._draggableImage(); } }); -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Catalog/view/frontend/web/product/view/validation.js b/app/code/Magento/Catalog/view/frontend/web/product/view/validation.js index 0fe8494c3bc..25d856f3fe6 100644 --- a/app/code/Magento/Catalog/view/frontend/web/product/view/validation.js +++ b/app/code/Magento/Catalog/view/frontend/web/product/view/validation.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ (function (factory) { @@ -78,4 +78,4 @@ }); return $.mage.validation; -})); \ No newline at end of file +})); diff --git a/app/code/Magento/Catalog/view/frontend/web/template/product/image.html b/app/code/Magento/Catalog/view/frontend/web/template/product/image.html index 4fb960847de..2cdf8cb10cf 100644 --- a/app/code/Magento/Catalog/view/frontend/web/template/product/image.html +++ b/app/code/Magento/Catalog/view/frontend/web/template/product/image.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Catalog/view/frontend/web/template/product/image_with_borders.html b/app/code/Magento/Catalog/view/frontend/web/template/product/image_with_borders.html index b9ffd320308..88886989b19 100644 --- a/app/code/Magento/Catalog/view/frontend/web/template/product/image_with_borders.html +++ b/app/code/Magento/Catalog/view/frontend/web/template/product/image_with_borders.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogImportExport/Model/Export/Product.php b/app/code/Magento/CatalogImportExport/Model/Export/Product.php index fa704272962..59bb01b7e35 100644 --- a/app/code/Magento/CatalogImportExport/Model/Export/Product.php +++ b/app/code/Magento/CatalogImportExport/Model/Export/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Export; diff --git a/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/AbstractType.php b/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/AbstractType.php index 8a37ae4aedc..ea20bdfc0be 100644 --- a/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/AbstractType.php +++ b/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/AbstractType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Export\Product\Type; diff --git a/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Factory.php b/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Factory.php index f8fa4a513ee..b21e232f89b 100644 --- a/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Factory.php +++ b/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Simple.php b/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Simple.php index b3f2a0873b6..61ac6c78e85 100644 --- a/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Simple.php +++ b/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Simple.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Export\Product\Type; diff --git a/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizer/Composite.php b/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizer/Composite.php index fb4ebe0d875..11e6bea8dc3 100644 --- a/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizer/Composite.php +++ b/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizer/Composite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Export\RowCustomizer; diff --git a/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizerInterface.php b/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizerInterface.php index cc065a850c6..517b8e457f3 100644 --- a/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizerInterface.php +++ b/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Export; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product.php b/app/code/Magento/CatalogImportExport/Model/Import/Product.php index ceb5580307c..d1e13648a37 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/CategoryProcessor.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/CategoryProcessor.php index df2be0592ef..42fde247a39 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/CategoryProcessor.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/CategoryProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Option.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Option.php index d78376e2d14..ddea24eacdc 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Option.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/RowValidatorInterface.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/RowValidatorInterface.php index 3f9e157c571..83cf3052251 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/RowValidatorInterface.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/RowValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/SkuProcessor.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/SkuProcessor.php index e3fd9eda4c7..009a1ea8a50 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/SkuProcessor.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/SkuProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/StoreResolver.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/StoreResolver.php index 1ad3e993be3..108ab592dbc 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/StoreResolver.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/StoreResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/TaxClassProcessor.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/TaxClassProcessor.php index 25337dfeda2..0516f6d9208 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/TaxClassProcessor.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/TaxClassProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractType.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractType.php index ac39cea10cb..6f682d03788 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractType.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Type; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Factory.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Factory.php index c364e768bec..ac8717e1272 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Factory.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Type; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Simple.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Simple.php index 8a47ab095ca..7166d02791f 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Simple.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Simple.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Type; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Virtual.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Virtual.php index d2cbab86dfa..53f0494227a 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Virtual.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Virtual.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Type; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator.php index 0ca40e916c8..0416a564033 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractImportValidator.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractImportValidator.php index 5791e44c05d..8cacc00bc5f 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractImportValidator.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractImportValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Validator; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractPrice.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractPrice.php index 69677420392..ef94600bac2 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractPrice.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Validator; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Media.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Media.php index 3067aa3c2b2..da86dd8f07d 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Media.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Media.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Validator; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Quantity.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Quantity.php index 4a84b5b9626..06b93b02dce 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Quantity.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Quantity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Validator; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/SuperProductsSku.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/SuperProductsSku.php index 825fa355764..54275e86136 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/SuperProductsSku.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/SuperProductsSku.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Validator; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/TierPrice.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/TierPrice.php index f87bd15a647..cd360f1f873 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/TierPrice.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/TierPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Validator; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Website.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Website.php index 90c2714f501..518e3dccd42 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Website.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Validator; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Weight.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Weight.php index 979bd020377..bef1fd660d9 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Weight.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Weight.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product\Validator; diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product.php b/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product.php index d939690bc1a..fb94d1a7e97 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product/ResourceModel.php b/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product/ResourceModel.php index d09c43d76e3..235a022126d 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product/ResourceModel.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product/ResourceModel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Uploader.php b/app/code/Magento/CatalogImportExport/Model/Import/Uploader.php index fcc544f4cb8..a95c5c86408 100644 --- a/app/code/Magento/CatalogImportExport/Model/Import/Uploader.php +++ b/app/code/Magento/CatalogImportExport/Model/Import/Uploader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import; diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Category/Product/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Category/Product/Plugin/Import.php index d2efd45e8a9..413359a6085 100644 --- a/app/code/Magento/CatalogImportExport/Model/Indexer/Category/Product/Plugin/Import.php +++ b/app/code/Magento/CatalogImportExport/Model/Indexer/Category/Product/Plugin/Import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Category/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Category/Plugin/Import.php index 80357522ab8..db651ff7daf 100644 --- a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Category/Plugin/Import.php +++ b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Category/Plugin/Import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Eav/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Eav/Plugin/Import.php index 490d5ad7f31..001c82f2c26 100644 --- a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Eav/Plugin/Import.php +++ b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Eav/Plugin/Import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Indexer\Product\Eav\Plugin; diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Flat/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Flat/Plugin/Import.php index f36be84ec3f..45f47585c7d 100644 --- a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Flat/Plugin/Import.php +++ b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Flat/Plugin/Import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Indexer\Product\Flat\Plugin; diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Price/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Price/Plugin/Import.php index d47dcf88320..ba3f4c66894 100644 --- a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Price/Plugin/Import.php +++ b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Price/Plugin/Import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Indexer\Product\Price\Plugin; diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Stock/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Stock/Plugin/Import.php index 0ae177df3d6..af0755609f7 100644 --- a/app/code/Magento/CatalogImportExport/Model/Indexer/Stock/Plugin/Import.php +++ b/app/code/Magento/CatalogImportExport/Model/Indexer/Stock/Plugin/Import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Indexer\Stock\Plugin; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/ProductTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/ProductTest.php index 5e68a7d80bb..4144d6d644f 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/ProductTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Export; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/StubProduct.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/StubProduct.php index f28f38f4d03..d9e4c068b02 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/StubProduct.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/StubProduct.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Export; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/CategoryProcessorTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/CategoryProcessorTest.php index 69846b9e0e2..f7abb2d7888 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/CategoryProcessorTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/CategoryProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Import\Product; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/SkuProcessorTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/SkuProcessorTest.php index 338a400d980..c568bfa29b3 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/SkuProcessorTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/SkuProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Import\Product; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/TaxClassProcessorTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/TaxClassProcessorTest.php index a7859f46d41..7e51bb6046f 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/TaxClassProcessorTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/TaxClassProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Import\Product; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/AbstractTypeTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/AbstractTypeTest.php index 93cf1757838..7c10a4ce649 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/AbstractTypeTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/AbstractTypeTest.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Import\Product\Type; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/OptionTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/OptionTest.php index c69eb40c7df..224483f25e8 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/OptionTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/OptionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Import\Product\Type; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/VirtualTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/VirtualTest.php index afb9081560c..751978d1c0d 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/VirtualTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/VirtualTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_different_type.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_different_type.php index b06880a778f..6215f431e8c 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_different_type.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_different_type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_several_db_rows.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_several_db_rows.php index fda79e1f156..94b743cd04b 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_several_db_rows.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_several_db_rows.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_empty_title.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_empty_title.php index e8b166cd0bf..8a64ce4ada3 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_empty_title.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_empty_title.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_incorrect_type.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_incorrect_type.php index c30cf407e74..8a0d5ac3d1a 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_incorrect_type.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_incorrect_type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_max_characters.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_max_characters.php index 06b10a62f77..ae2a9fd4879 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_max_characters.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_max_characters.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_price.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_price.php index be2422009b3..e34561b970b 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_price.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_sort_order.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_sort_order.php index 4163be2364c..b14838bf44d 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_sort_order.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_sort_order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_store.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_store.php index 8ca79f31c59..6000a0a1594 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_store.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_max_characters_less_zero.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_max_characters_less_zero.php index 38966e0bee1..3354b3cb6b6 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_max_characters_less_zero.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_max_characters_less_zero.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_no_title.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_no_title.php index 9326aaf1b0e..8b9f1d1c83c 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_no_title.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_no_title.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_sort_order_less_zero.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_sort_order_less_zero.php index 86b479dcdd7..d8f1a5f0a05 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_sort_order_less_zero.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_sort_order_less_zero.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_valid.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_valid.php index edd464128d6..d5285082da3 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_valid.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_valid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_no_custom_option.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_no_custom_option.php index 7281b3eeb3c..6c63bdd3a12 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_no_custom_option.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_no_custom_option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_price.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_price.php index 8d38e598c10..fe22fcc3a6a 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_price.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_row_sort.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_row_sort.php index 7b04af57708..7faff790318 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_row_sort.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_row_sort.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_invalid_store.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_invalid_store.php index 5619a270ae5..e6ee095b4c6 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_invalid_store.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_invalid_store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_row_sort_less_zero.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_row_sort_less_zero.php index 00e119dcb2f..c4b580634b8 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_row_sort_less_zero.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_row_sort_less_zero.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_valid.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_valid.php index c1bf4121878..d212d61d988 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_valid.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_valid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/MediaTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/MediaTest.php index df7b33c7299..f1cf520ea90 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/MediaTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/MediaTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/QuantityTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/QuantityTest.php index 04654936912..825fe06d6b1 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/QuantityTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/QuantityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Import\Product\Validator; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/TierPriceTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/TierPriceTest.php index d24dcff5769..8ccddf783f3 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/TierPriceTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/TierPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/ValidatorTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/ValidatorTest.php index 719bf813eee..35b1d1ee6c6 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/ValidatorTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Import\Product; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/ProductTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/ProductTest.php index cd1fedf82fe..82cf9387a59 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/ProductTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Import; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/UploaderTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/UploaderTest.php index e8623283e16..d56044894c9 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/UploaderTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/UploaderTest.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Import; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Flat/Plugin/ImportTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Flat/Plugin/ImportTest.php index 196f555ddda..e47d4ece197 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Flat/Plugin/ImportTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Flat/Plugin/ImportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Indexer\Product\Flat\Plugin; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php index ba680df1419..255fb905358 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Indexer\Product\Price\Plugin; diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Stock/Plugin/ImportTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Stock/Plugin/ImportTest.php index ffa885c0b15..e782218f218 100644 --- a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Stock/Plugin/ImportTest.php +++ b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Stock/Plugin/ImportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Test\Unit\Model\Indexer\Stock\Plugin; diff --git a/app/code/Magento/CatalogImportExport/etc/config.xml b/app/code/Magento/CatalogImportExport/etc/config.xml index 0463a68f923..fd8bdbaaf23 100644 --- a/app/code/Magento/CatalogImportExport/etc/config.xml +++ b/app/code/Magento/CatalogImportExport/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogImportExport/etc/di.xml b/app/code/Magento/CatalogImportExport/etc/di.xml index 5b1c6b287ee..dca2159fbdc 100644 --- a/app/code/Magento/CatalogImportExport/etc/di.xml +++ b/app/code/Magento/CatalogImportExport/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogImportExport/etc/export.xml b/app/code/Magento/CatalogImportExport/etc/export.xml index 5902f03cfe7..824b7defdae 100644 --- a/app/code/Magento/CatalogImportExport/etc/export.xml +++ b/app/code/Magento/CatalogImportExport/etc/export.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogImportExport/etc/import.xml b/app/code/Magento/CatalogImportExport/etc/import.xml index a1ad8e411d0..e4ff1c28256 100644 --- a/app/code/Magento/CatalogImportExport/etc/import.xml +++ b/app/code/Magento/CatalogImportExport/etc/import.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogImportExport/etc/module.xml b/app/code/Magento/CatalogImportExport/etc/module.xml index d4f27fb1f8d..c63a6dd5291 100644 --- a/app/code/Magento/CatalogImportExport/etc/module.xml +++ b/app/code/Magento/CatalogImportExport/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogImportExport/registration.php b/app/code/Magento/CatalogImportExport/registration.php index 6be2ae769ce..5b1c90ca644 100644 --- a/app/code/Magento/CatalogImportExport/registration.php +++ b/app/code/Magento/CatalogImportExport/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockCollectionInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockCollectionInterface.php index 64920895894..fd4ae217825 100644 --- a/app/code/Magento/CatalogInventory/Api/Data/StockCollectionInterface.php +++ b/app/code/Magento/CatalogInventory/Api/Data/StockCollectionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockInterface.php index 37011b7ab45..e21fa742606 100644 --- a/app/code/Magento/CatalogInventory/Api/Data/StockInterface.php +++ b/app/code/Magento/CatalogInventory/Api/Data/StockInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api\Data; diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockItemCollectionInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockItemCollectionInterface.php index d717cc30eb2..ed4c07c595e 100644 --- a/app/code/Magento/CatalogInventory/Api/Data/StockItemCollectionInterface.php +++ b/app/code/Magento/CatalogInventory/Api/Data/StockItemCollectionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockItemInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockItemInterface.php index 1f29f019b5b..273c10370f6 100644 --- a/app/code/Magento/CatalogInventory/Api/Data/StockItemInterface.php +++ b/app/code/Magento/CatalogInventory/Api/Data/StockItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api\Data; diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockStatusCollectionInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockStatusCollectionInterface.php index 39516b92c18..3594013ff3c 100644 --- a/app/code/Magento/CatalogInventory/Api/Data/StockStatusCollectionInterface.php +++ b/app/code/Magento/CatalogInventory/Api/Data/StockStatusCollectionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api\Data; diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockStatusInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockStatusInterface.php index 524eda44025..4af46166500 100644 --- a/app/code/Magento/CatalogInventory/Api/Data/StockStatusInterface.php +++ b/app/code/Magento/CatalogInventory/Api/Data/StockStatusInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api\Data; diff --git a/app/code/Magento/CatalogInventory/Api/StockConfigurationInterface.php b/app/code/Magento/CatalogInventory/Api/StockConfigurationInterface.php index 3c01c215c0d..2269ba266e3 100644 --- a/app/code/Magento/CatalogInventory/Api/StockConfigurationInterface.php +++ b/app/code/Magento/CatalogInventory/Api/StockConfigurationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api; diff --git a/app/code/Magento/CatalogInventory/Api/StockCriteriaInterface.php b/app/code/Magento/CatalogInventory/Api/StockCriteriaInterface.php index 99eac595697..6f0fdc253e0 100644 --- a/app/code/Magento/CatalogInventory/Api/StockCriteriaInterface.php +++ b/app/code/Magento/CatalogInventory/Api/StockCriteriaInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api; diff --git a/app/code/Magento/CatalogInventory/Api/StockIndexInterface.php b/app/code/Magento/CatalogInventory/Api/StockIndexInterface.php index caa1ffaeb14..940b58cf08b 100644 --- a/app/code/Magento/CatalogInventory/Api/StockIndexInterface.php +++ b/app/code/Magento/CatalogInventory/Api/StockIndexInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api; diff --git a/app/code/Magento/CatalogInventory/Api/StockItemCriteriaInterface.php b/app/code/Magento/CatalogInventory/Api/StockItemCriteriaInterface.php index 3a98f188df2..dbc73984f21 100644 --- a/app/code/Magento/CatalogInventory/Api/StockItemCriteriaInterface.php +++ b/app/code/Magento/CatalogInventory/Api/StockItemCriteriaInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api; diff --git a/app/code/Magento/CatalogInventory/Api/StockItemRepositoryInterface.php b/app/code/Magento/CatalogInventory/Api/StockItemRepositoryInterface.php index cf27f737744..e1f3a282fc5 100644 --- a/app/code/Magento/CatalogInventory/Api/StockItemRepositoryInterface.php +++ b/app/code/Magento/CatalogInventory/Api/StockItemRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api; diff --git a/app/code/Magento/CatalogInventory/Api/StockManagementInterface.php b/app/code/Magento/CatalogInventory/Api/StockManagementInterface.php index 25b4cf586a9..f182d80d482 100644 --- a/app/code/Magento/CatalogInventory/Api/StockManagementInterface.php +++ b/app/code/Magento/CatalogInventory/Api/StockManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api; diff --git a/app/code/Magento/CatalogInventory/Api/StockRegistryInterface.php b/app/code/Magento/CatalogInventory/Api/StockRegistryInterface.php index 781ece456d6..a8407ba9fbb 100644 --- a/app/code/Magento/CatalogInventory/Api/StockRegistryInterface.php +++ b/app/code/Magento/CatalogInventory/Api/StockRegistryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api; diff --git a/app/code/Magento/CatalogInventory/Api/StockRepositoryInterface.php b/app/code/Magento/CatalogInventory/Api/StockRepositoryInterface.php index 253f9f4c6f7..443df44e517 100644 --- a/app/code/Magento/CatalogInventory/Api/StockRepositoryInterface.php +++ b/app/code/Magento/CatalogInventory/Api/StockRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api; diff --git a/app/code/Magento/CatalogInventory/Api/StockStateInterface.php b/app/code/Magento/CatalogInventory/Api/StockStateInterface.php index abb9eaa9746..69590c92ec0 100644 --- a/app/code/Magento/CatalogInventory/Api/StockStateInterface.php +++ b/app/code/Magento/CatalogInventory/Api/StockStateInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api; diff --git a/app/code/Magento/CatalogInventory/Api/StockStatusCriteriaInterface.php b/app/code/Magento/CatalogInventory/Api/StockStatusCriteriaInterface.php index 2f9305857d2..c028535578e 100644 --- a/app/code/Magento/CatalogInventory/Api/StockStatusCriteriaInterface.php +++ b/app/code/Magento/CatalogInventory/Api/StockStatusCriteriaInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api; diff --git a/app/code/Magento/CatalogInventory/Api/StockStatusRepositoryInterface.php b/app/code/Magento/CatalogInventory/Api/StockStatusRepositoryInterface.php index 960950af884..8a8bb3a9f38 100644 --- a/app/code/Magento/CatalogInventory/Api/StockStatusRepositoryInterface.php +++ b/app/code/Magento/CatalogInventory/Api/StockStatusRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Api; diff --git a/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php b/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php index ecfb6abbef1..0677104302b 100644 --- a/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php +++ b/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php b/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php index 6e83a84a16e..623375a52e5 100644 --- a/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php +++ b/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php b/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php index c338d9a07f5..dbf11b39987 100644 --- a/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php +++ b/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Block/Plugin/ProductView.php b/app/code/Magento/CatalogInventory/Block/Plugin/ProductView.php index 50a79f86c73..e9ca9c5ca64 100644 --- a/app/code/Magento/CatalogInventory/Block/Plugin/ProductView.php +++ b/app/code/Magento/CatalogInventory/Block/Plugin/ProductView.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Block\Plugin; diff --git a/app/code/Magento/CatalogInventory/Block/Qtyincrements.php b/app/code/Magento/CatalogInventory/Block/Qtyincrements.php index b7b84e7e272..b7bec61c7eb 100644 --- a/app/code/Magento/CatalogInventory/Block/Qtyincrements.php +++ b/app/code/Magento/CatalogInventory/Block/Qtyincrements.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Block/Stockqty/AbstractStockqty.php b/app/code/Magento/CatalogInventory/Block/Stockqty/AbstractStockqty.php index 7f5d69754f4..2f2b5de5ee7 100644 --- a/app/code/Magento/CatalogInventory/Block/Stockqty/AbstractStockqty.php +++ b/app/code/Magento/CatalogInventory/Block/Stockqty/AbstractStockqty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Block/Stockqty/Composite.php b/app/code/Magento/CatalogInventory/Block/Stockqty/Composite.php index 3c587d172ec..b507a9307e2 100644 --- a/app/code/Magento/CatalogInventory/Block/Stockqty/Composite.php +++ b/app/code/Magento/CatalogInventory/Block/Stockqty/Composite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Block/Stockqty/DefaultStockqty.php b/app/code/Magento/CatalogInventory/Block/Stockqty/DefaultStockqty.php index 3af305161af..786234b017a 100644 --- a/app/code/Magento/CatalogInventory/Block/Stockqty/DefaultStockqty.php +++ b/app/code/Magento/CatalogInventory/Block/Stockqty/DefaultStockqty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Block/Stockqty/Type/Grouped.php b/app/code/Magento/CatalogInventory/Block/Stockqty/Type/Grouped.php index cdf4a7951ea..2593a2bb707 100644 --- a/app/code/Magento/CatalogInventory/Block/Stockqty/Type/Grouped.php +++ b/app/code/Magento/CatalogInventory/Block/Stockqty/Type/Grouped.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Helper/Data.php b/app/code/Magento/CatalogInventory/Helper/Data.php index 5daf1ba7573..d86fb97026f 100644 --- a/app/code/Magento/CatalogInventory/Helper/Data.php +++ b/app/code/Magento/CatalogInventory/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Helper/Minsaleqty.php b/app/code/Magento/CatalogInventory/Helper/Minsaleqty.php index bad202303e8..0e35643be70 100644 --- a/app/code/Magento/CatalogInventory/Helper/Minsaleqty.php +++ b/app/code/Magento/CatalogInventory/Helper/Minsaleqty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Helper/Stock.php b/app/code/Magento/CatalogInventory/Helper/Stock.php index 4c177c09d4b..fd0a29d038d 100644 --- a/app/code/Magento/CatalogInventory/Helper/Stock.php +++ b/app/code/Magento/CatalogInventory/Helper/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Helper; diff --git a/app/code/Magento/CatalogInventory/Model/AddStockStatusToCollection.php b/app/code/Magento/CatalogInventory/Model/AddStockStatusToCollection.php index 21ccaaf9791..90e6ed16b77 100644 --- a/app/code/Magento/CatalogInventory/Model/AddStockStatusToCollection.php +++ b/app/code/Magento/CatalogInventory/Model/AddStockStatusToCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Adminhtml/Stock/Item.php b/app/code/Magento/CatalogInventory/Model/Adminhtml/Stock/Item.php index e5477b012e4..a7529e2f5b8 100644 --- a/app/code/Magento/CatalogInventory/Model/Adminhtml/Stock/Item.php +++ b/app/code/Magento/CatalogInventory/Model/Adminhtml/Stock/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Adminhtml\Stock; diff --git a/app/code/Magento/CatalogInventory/Model/Config/Backend/AbstractValue.php b/app/code/Magento/CatalogInventory/Model/Config/Backend/AbstractValue.php index 994b59391ec..2e4a49620b4 100644 --- a/app/code/Magento/CatalogInventory/Model/Config/Backend/AbstractValue.php +++ b/app/code/Magento/CatalogInventory/Model/Config/Backend/AbstractValue.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Config/Backend/Backorders.php b/app/code/Magento/CatalogInventory/Model/Config/Backend/Backorders.php index 1915a576939..59ee73a8d4b 100644 --- a/app/code/Magento/CatalogInventory/Model/Config/Backend/Backorders.php +++ b/app/code/Magento/CatalogInventory/Model/Config/Backend/Backorders.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Config/Backend/Managestock.php b/app/code/Magento/CatalogInventory/Model/Config/Backend/Managestock.php index 6edab6f3d4e..7d8be4792f6 100644 --- a/app/code/Magento/CatalogInventory/Model/Config/Backend/Managestock.php +++ b/app/code/Magento/CatalogInventory/Model/Config/Backend/Managestock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Config/Backend/ShowOutOfStock.php b/app/code/Magento/CatalogInventory/Model/Config/Backend/ShowOutOfStock.php index 9c05dd3552f..df31255a200 100644 --- a/app/code/Magento/CatalogInventory/Model/Config/Backend/ShowOutOfStock.php +++ b/app/code/Magento/CatalogInventory/Model/Config/Backend/ShowOutOfStock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Configuration.php b/app/code/Magento/CatalogInventory/Model/Configuration.php index e660543e556..68a0fd60d25 100644 --- a/app/code/Magento/CatalogInventory/Model/Configuration.php +++ b/app/code/Magento/CatalogInventory/Model/Configuration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model; diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock.php index 0e86e0ac793..19f347c7126 100644 --- a/app/code/Magento/CatalogInventory/Model/Indexer/Stock.php +++ b/app/code/Magento/CatalogInventory/Model/Indexer/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Indexer; diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/AbstractAction.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/AbstractAction.php index 1aa9fb8ac6d..69e9e4310f3 100644 --- a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/AbstractAction.php +++ b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/AbstractAction.php @@ -2,7 +2,7 @@ /** * @category Magento * @package Magento_CatalogInventory - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Full.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Full.php index 1ca29e5cd68..2f545417a07 100644 --- a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Full.php +++ b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Full.php @@ -2,7 +2,7 @@ /** * @category Magento * @package Magento_CatalogInventory - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Row.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Row.php index 3612c7c86f8..fda012eec3f 100644 --- a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Row.php +++ b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Row.php @@ -2,7 +2,7 @@ /** * @category Magento * @package Magento_CatalogInventory - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Rows.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Rows.php index 91919009636..b2fd2aadf28 100644 --- a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Rows.php +++ b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Rows.php @@ -2,7 +2,7 @@ /** * @category Magento * @package Magento_CatalogInventory - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/CacheCleaner.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/CacheCleaner.php index 59380822e61..44b86de7974 100644 --- a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/CacheCleaner.php +++ b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/CacheCleaner.php @@ -2,7 +2,7 @@ /** * @category Magento * @package Magento_CatalogInventory - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Plugin/StoreGroup.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Plugin/StoreGroup.php index 6ea48d75db7..8ef156ad4e2 100644 --- a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Plugin/StoreGroup.php +++ b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Plugin/StoreGroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Indexer\Stock\Plugin; diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Processor.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Processor.php index 80db3f6ecf7..21e1ac27506 100644 --- a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Processor.php +++ b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Processor.php @@ -2,7 +2,7 @@ /** * @category Magento * @package Magento_CatalogInventory - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Plugin/AfterProductLoad.php b/app/code/Magento/CatalogInventory/Model/Plugin/AfterProductLoad.php index 5f718da55cf..e9f54f71c6e 100644 --- a/app/code/Magento/CatalogInventory/Model/Plugin/AfterProductLoad.php +++ b/app/code/Magento/CatalogInventory/Model/Plugin/AfterProductLoad.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Plugin/AroundProductRepositorySave.php b/app/code/Magento/CatalogInventory/Model/Plugin/AroundProductRepositorySave.php index 14b7207a1e4..e70c33ce32d 100644 --- a/app/code/Magento/CatalogInventory/Model/Plugin/AroundProductRepositorySave.php +++ b/app/code/Magento/CatalogInventory/Model/Plugin/AroundProductRepositorySave.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Plugin/FilterCustomAttribute.php b/app/code/Magento/CatalogInventory/Model/Plugin/FilterCustomAttribute.php index 6e4f6f6727c..05240781211 100644 --- a/app/code/Magento/CatalogInventory/Model/Plugin/FilterCustomAttribute.php +++ b/app/code/Magento/CatalogInventory/Model/Plugin/FilterCustomAttribute.php @@ -2,7 +2,7 @@ /** * Plugin for \Magento\Catalog\Model\Product\Attribute\Repository * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Plugin; diff --git a/app/code/Magento/CatalogInventory/Model/Plugin/Layer.php b/app/code/Magento/CatalogInventory/Model/Plugin/Layer.php index bfeaf20d8f0..43791b48650 100644 --- a/app/code/Magento/CatalogInventory/Model/Plugin/Layer.php +++ b/app/code/Magento/CatalogInventory/Model/Plugin/Layer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Plugin; diff --git a/app/code/Magento/CatalogInventory/Model/Plugin/ProductLinks.php b/app/code/Magento/CatalogInventory/Model/Plugin/ProductLinks.php index aafd13c0a6e..1971c021584 100644 --- a/app/code/Magento/CatalogInventory/Model/Plugin/ProductLinks.php +++ b/app/code/Magento/CatalogInventory/Model/Plugin/ProductLinks.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Product/CopyConstructor/CatalogInventory.php b/app/code/Magento/CatalogInventory/Model/Product/CopyConstructor/CatalogInventory.php index 1a037d2bf59..2268579efcc 100644 --- a/app/code/Magento/CatalogInventory/Model/Product/CopyConstructor/CatalogInventory.php +++ b/app/code/Magento/CatalogInventory/Model/Product/CopyConstructor/CatalogInventory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Product\CopyConstructor; diff --git a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator.php b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator.php index 5921a24122b..8fb6d816e6c 100644 --- a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator.php +++ b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator.php @@ -2,7 +2,7 @@ /** * Product inventory data validator * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Quote\Item; diff --git a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/Option.php b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/Option.php index ef69379f25f..384d16b99dc 100644 --- a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/Option.php +++ b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Quote\Item\QuantityValidator\Initializer; diff --git a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessor.php b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessor.php index 69054f6e268..99eb46c3df1 100644 --- a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessor.php +++ b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Quote\Item\QuantityValidator\Initializer; diff --git a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/StockItem.php b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/StockItem.php index e3957dbb914..f22face0732 100644 --- a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/StockItem.php +++ b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/StockItem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Quote\Item\QuantityValidator\Initializer; diff --git a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/QuoteItemQtyList.php b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/QuoteItemQtyList.php index e2b7a2e7fd4..26228142bb0 100644 --- a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/QuoteItemQtyList.php +++ b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/QuoteItemQtyList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Quote\Item\QuantityValidator; diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/DefaultStock.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/DefaultStock.php index d946cec1625..b03041da438 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/DefaultStock.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/DefaultStock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorComposite.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorComposite.php index 066e2be51b3..ea8e1b468cf 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorComposite.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorComposite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorInterface.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorInterface.php index 5227ae43fdc..c61c503742c 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorInterface.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/StockInterface.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/StockInterface.php index 147ee742f5b..6cb311c31a8 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/StockInterface.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/StockInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\ResourceModel\Indexer\Stock; diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/StockFactory.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/StockFactory.php index fb9f52038c5..ba36915127d 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/StockFactory.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/StockFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Product/StockStatusBaseSelectProcessor.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Product/StockStatusBaseSelectProcessor.php index 829fa8decda..cb817bea054 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Product/StockStatusBaseSelectProcessor.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Product/StockStatusBaseSelectProcessor.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\ResourceModel\Product; diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/QtyCounterInterface.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/QtyCounterInterface.php index 9a73a354689..f1af79b177b 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/QtyCounterInterface.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/QtyCounterInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\ResourceModel; diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock.php index 17a3e0c9a99..b78b9f79905 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Collection.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Collection.php index 5841ae99fff..dd0d442236e 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Collection.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item.php index 32d21f388f0..0b2bec9c66b 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\ResourceModel\Stock; diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/Collection.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/Collection.php index 8b4fc1f157f..bb15356a2c7 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/Collection.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteria.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteria.php index 7cdd136cc31..d9dd9f9e481 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteria.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteria.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteriaMapper.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteriaMapper.php index 309afa376b8..adce745bf26 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteriaMapper.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteriaMapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status.php index 04a5c43ddfa..ad674fb5a17 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\ResourceModel\Stock; diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/Collection.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/Collection.php index d253ac51d87..e3098f3118d 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/Collection.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteria.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteria.php index 94c2fc6d313..56329a2937b 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteria.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteria.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteriaMapper.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteriaMapper.php index 1a4c964c989..40348eade54 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteriaMapper.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteriaMapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteria.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteria.php index 83f0f0af078..70eeb38a773 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteria.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteria.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\ResourceModel\Stock; diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteriaMapper.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteriaMapper.php index 422169e9129..35623edda7f 100644 --- a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteriaMapper.php +++ b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteriaMapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/Source/Backorders.php b/app/code/Magento/CatalogInventory/Model/Source/Backorders.php index 697c5fddaae..5b0f3bfad7c 100644 --- a/app/code/Magento/CatalogInventory/Model/Source/Backorders.php +++ b/app/code/Magento/CatalogInventory/Model/Source/Backorders.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Source; diff --git a/app/code/Magento/CatalogInventory/Model/Source/Stock.php b/app/code/Magento/CatalogInventory/Model/Source/Stock.php index ed4b49e7a1c..741136d8a0f 100644 --- a/app/code/Magento/CatalogInventory/Model/Source/Stock.php +++ b/app/code/Magento/CatalogInventory/Model/Source/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Source; diff --git a/app/code/Magento/CatalogInventory/Model/Source/StockConfiguration.php b/app/code/Magento/CatalogInventory/Model/Source/StockConfiguration.php index 4a22fce5bd2..8df0ebc4105 100644 --- a/app/code/Magento/CatalogInventory/Model/Source/StockConfiguration.php +++ b/app/code/Magento/CatalogInventory/Model/Source/StockConfiguration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Source; diff --git a/app/code/Magento/CatalogInventory/Model/Spi/StockRegistryProviderInterface.php b/app/code/Magento/CatalogInventory/Model/Spi/StockRegistryProviderInterface.php index 75811a74733..6e0950d25a6 100644 --- a/app/code/Magento/CatalogInventory/Model/Spi/StockRegistryProviderInterface.php +++ b/app/code/Magento/CatalogInventory/Model/Spi/StockRegistryProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Spi; diff --git a/app/code/Magento/CatalogInventory/Model/Spi/StockStateProviderInterface.php b/app/code/Magento/CatalogInventory/Model/Spi/StockStateProviderInterface.php index 4d90c76d9dd..8f51141ae57 100644 --- a/app/code/Magento/CatalogInventory/Model/Spi/StockStateProviderInterface.php +++ b/app/code/Magento/CatalogInventory/Model/Spi/StockStateProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Spi; diff --git a/app/code/Magento/CatalogInventory/Model/Stock.php b/app/code/Magento/CatalogInventory/Model/Stock.php index 2b0ddc2e1c5..5961c6681e9 100644 --- a/app/code/Magento/CatalogInventory/Model/Stock.php +++ b/app/code/Magento/CatalogInventory/Model/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model; diff --git a/app/code/Magento/CatalogInventory/Model/Stock/Item.php b/app/code/Magento/CatalogInventory/Model/Stock/Item.php index 7ffe1bb711c..3203c8b681b 100644 --- a/app/code/Magento/CatalogInventory/Model/Stock/Item.php +++ b/app/code/Magento/CatalogInventory/Model/Stock/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Stock; diff --git a/app/code/Magento/CatalogInventory/Model/Stock/Status.php b/app/code/Magento/CatalogInventory/Model/Stock/Status.php index b375da3434e..0c5f571a05b 100644 --- a/app/code/Magento/CatalogInventory/Model/Stock/Status.php +++ b/app/code/Magento/CatalogInventory/Model/Stock/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Stock; diff --git a/app/code/Magento/CatalogInventory/Model/Stock/StockItemRepository.php b/app/code/Magento/CatalogInventory/Model/Stock/StockItemRepository.php index 58e364920bb..1bd3f9ffaa4 100644 --- a/app/code/Magento/CatalogInventory/Model/Stock/StockItemRepository.php +++ b/app/code/Magento/CatalogInventory/Model/Stock/StockItemRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Stock; diff --git a/app/code/Magento/CatalogInventory/Model/Stock/StockRepository.php b/app/code/Magento/CatalogInventory/Model/Stock/StockRepository.php index 4fc7640fd19..5b459bcf427 100644 --- a/app/code/Magento/CatalogInventory/Model/Stock/StockRepository.php +++ b/app/code/Magento/CatalogInventory/Model/Stock/StockRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Stock; diff --git a/app/code/Magento/CatalogInventory/Model/Stock/StockStatusRepository.php b/app/code/Magento/CatalogInventory/Model/Stock/StockStatusRepository.php index f667e7c3da9..e5f9d477833 100644 --- a/app/code/Magento/CatalogInventory/Model/Stock/StockStatusRepository.php +++ b/app/code/Magento/CatalogInventory/Model/Stock/StockStatusRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\Stock; diff --git a/app/code/Magento/CatalogInventory/Model/StockIndex.php b/app/code/Magento/CatalogInventory/Model/StockIndex.php index 94639ab51a1..610f67e16fb 100644 --- a/app/code/Magento/CatalogInventory/Model/StockIndex.php +++ b/app/code/Magento/CatalogInventory/Model/StockIndex.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/StockManagement.php b/app/code/Magento/CatalogInventory/Model/StockManagement.php index cce3f60cccd..3055c1873b1 100644 --- a/app/code/Magento/CatalogInventory/Model/StockManagement.php +++ b/app/code/Magento/CatalogInventory/Model/StockManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model; diff --git a/app/code/Magento/CatalogInventory/Model/StockRegistry.php b/app/code/Magento/CatalogInventory/Model/StockRegistry.php index eee32de431c..9797f3039da 100644 --- a/app/code/Magento/CatalogInventory/Model/StockRegistry.php +++ b/app/code/Magento/CatalogInventory/Model/StockRegistry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model; diff --git a/app/code/Magento/CatalogInventory/Model/StockRegistryProvider.php b/app/code/Magento/CatalogInventory/Model/StockRegistryProvider.php index ee6ac70a26b..1fb5735e88f 100644 --- a/app/code/Magento/CatalogInventory/Model/StockRegistryProvider.php +++ b/app/code/Magento/CatalogInventory/Model/StockRegistryProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model; diff --git a/app/code/Magento/CatalogInventory/Model/StockRegistryStorage.php b/app/code/Magento/CatalogInventory/Model/StockRegistryStorage.php index 470acdb6040..eb20b9449fe 100644 --- a/app/code/Magento/CatalogInventory/Model/StockRegistryStorage.php +++ b/app/code/Magento/CatalogInventory/Model/StockRegistryStorage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model; diff --git a/app/code/Magento/CatalogInventory/Model/StockState.php b/app/code/Magento/CatalogInventory/Model/StockState.php index 0c8b84d473e..ebe052e4da3 100644 --- a/app/code/Magento/CatalogInventory/Model/StockState.php +++ b/app/code/Magento/CatalogInventory/Model/StockState.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model; diff --git a/app/code/Magento/CatalogInventory/Model/StockStateProvider.php b/app/code/Magento/CatalogInventory/Model/StockStateProvider.php index 139f73c72b9..a95be379580 100644 --- a/app/code/Magento/CatalogInventory/Model/StockStateProvider.php +++ b/app/code/Magento/CatalogInventory/Model/StockStateProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minqty.php b/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minqty.php index 16a92b63774..7ada47cea39 100644 --- a/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minqty.php +++ b/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minqty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minsaleqty.php b/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minsaleqty.php index 1a146a30d14..02e64c2be9d 100644 --- a/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minsaleqty.php +++ b/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minsaleqty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\System\Config\Backend; diff --git a/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Qtyincrements.php b/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Qtyincrements.php index a8e337a4f70..badb758a754 100644 --- a/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Qtyincrements.php +++ b/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Qtyincrements.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Model\System\Config\Backend; diff --git a/app/code/Magento/CatalogInventory/Observer/AddInventoryDataObserver.php b/app/code/Magento/CatalogInventory/Observer/AddInventoryDataObserver.php index b664b5a8078..fa2959a3b33 100644 --- a/app/code/Magento/CatalogInventory/Observer/AddInventoryDataObserver.php +++ b/app/code/Magento/CatalogInventory/Observer/AddInventoryDataObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Observer/CancelOrderItemObserver.php b/app/code/Magento/CatalogInventory/Observer/CancelOrderItemObserver.php index 1b845f7dead..397815f658b 100644 --- a/app/code/Magento/CatalogInventory/Observer/CancelOrderItemObserver.php +++ b/app/code/Magento/CatalogInventory/Observer/CancelOrderItemObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Observer/CheckoutAllSubmitAfterObserver.php b/app/code/Magento/CatalogInventory/Observer/CheckoutAllSubmitAfterObserver.php index 36073d67df3..97c99a30d60 100644 --- a/app/code/Magento/CatalogInventory/Observer/CheckoutAllSubmitAfterObserver.php +++ b/app/code/Magento/CatalogInventory/Observer/CheckoutAllSubmitAfterObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Observer/DisplayProductStatusInfoObserver.php b/app/code/Magento/CatalogInventory/Observer/DisplayProductStatusInfoObserver.php index 4373e592e97..20827a0a502 100644 --- a/app/code/Magento/CatalogInventory/Observer/DisplayProductStatusInfoObserver.php +++ b/app/code/Magento/CatalogInventory/Observer/DisplayProductStatusInfoObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Observer/ItemsForReindex.php b/app/code/Magento/CatalogInventory/Observer/ItemsForReindex.php index 48f0ae1662f..3b326d44ba1 100644 --- a/app/code/Magento/CatalogInventory/Observer/ItemsForReindex.php +++ b/app/code/Magento/CatalogInventory/Observer/ItemsForReindex.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Observer/ProductQty.php b/app/code/Magento/CatalogInventory/Observer/ProductQty.php index a2fb8b8947a..61e5e6443d3 100644 --- a/app/code/Magento/CatalogInventory/Observer/ProductQty.php +++ b/app/code/Magento/CatalogInventory/Observer/ProductQty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Observer/QuantityValidatorObserver.php b/app/code/Magento/CatalogInventory/Observer/QuantityValidatorObserver.php index 9edc317618b..eca732d59c8 100644 --- a/app/code/Magento/CatalogInventory/Observer/QuantityValidatorObserver.php +++ b/app/code/Magento/CatalogInventory/Observer/QuantityValidatorObserver.php @@ -2,7 +2,7 @@ /** * Product inventory data validator * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Observer; diff --git a/app/code/Magento/CatalogInventory/Observer/ReindexQuoteInventoryObserver.php b/app/code/Magento/CatalogInventory/Observer/ReindexQuoteInventoryObserver.php index 96118566249..020294c28c6 100644 --- a/app/code/Magento/CatalogInventory/Observer/ReindexQuoteInventoryObserver.php +++ b/app/code/Magento/CatalogInventory/Observer/ReindexQuoteInventoryObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Observer/RevertQuoteInventoryObserver.php b/app/code/Magento/CatalogInventory/Observer/RevertQuoteInventoryObserver.php index 6266a9ddc4a..257b1fffb6b 100644 --- a/app/code/Magento/CatalogInventory/Observer/RevertQuoteInventoryObserver.php +++ b/app/code/Magento/CatalogInventory/Observer/RevertQuoteInventoryObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Observer/SaveInventoryDataObserver.php b/app/code/Magento/CatalogInventory/Observer/SaveInventoryDataObserver.php index 72c9b353947..8560a9a6d76 100644 --- a/app/code/Magento/CatalogInventory/Observer/SaveInventoryDataObserver.php +++ b/app/code/Magento/CatalogInventory/Observer/SaveInventoryDataObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Observer/SubtractQuoteInventoryObserver.php b/app/code/Magento/CatalogInventory/Observer/SubtractQuoteInventoryObserver.php index 74467f7388b..3067aed3fbf 100644 --- a/app/code/Magento/CatalogInventory/Observer/SubtractQuoteInventoryObserver.php +++ b/app/code/Magento/CatalogInventory/Observer/SubtractQuoteInventoryObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Observer/UpdateItemsStockUponConfigChangeObserver.php b/app/code/Magento/CatalogInventory/Observer/UpdateItemsStockUponConfigChangeObserver.php index 502672851fc..2415e5fc9e1 100644 --- a/app/code/Magento/CatalogInventory/Observer/UpdateItemsStockUponConfigChangeObserver.php +++ b/app/code/Magento/CatalogInventory/Observer/UpdateItemsStockUponConfigChangeObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Setup/InstallData.php b/app/code/Magento/CatalogInventory/Setup/InstallData.php index b496becbe40..496ce29ef71 100644 --- a/app/code/Magento/CatalogInventory/Setup/InstallData.php +++ b/app/code/Magento/CatalogInventory/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Setup/InstallSchema.php b/app/code/Magento/CatalogInventory/Setup/InstallSchema.php index cbe1aa3d066..3a343e9029c 100644 --- a/app/code/Magento/CatalogInventory/Setup/InstallSchema.php +++ b/app/code/Magento/CatalogInventory/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Setup/Recurring.php b/app/code/Magento/CatalogInventory/Setup/Recurring.php index 4500bc7842d..706162f9049 100644 --- a/app/code/Magento/CatalogInventory/Setup/Recurring.php +++ b/app/code/Magento/CatalogInventory/Setup/Recurring.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Setup; diff --git a/app/code/Magento/CatalogInventory/Setup/UpgradeData.php b/app/code/Magento/CatalogInventory/Setup/UpgradeData.php index 1741ffce9cd..5ad0dc57f68 100644 --- a/app/code/Magento/CatalogInventory/Setup/UpgradeData.php +++ b/app/code/Magento/CatalogInventory/Setup/UpgradeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Setup; diff --git a/app/code/Magento/CatalogInventory/Setup/UpgradeSchema.php b/app/code/Magento/CatalogInventory/Setup/UpgradeSchema.php index 8fd3d264ee6..8cc0912ef2c 100644 --- a/app/code/Magento/CatalogInventory/Setup/UpgradeSchema.php +++ b/app/code/Magento/CatalogInventory/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Api/StockConfigurationTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Api/StockConfigurationTest.php index 48f818501a2..ecccffbca15 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Api/StockConfigurationTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Api/StockConfigurationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Api/StockRegistryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Api/StockRegistryTest.php index 7c52fd123f4..da8475a5b3c 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Api/StockRegistryTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Api/StockRegistryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Api; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Api/StockStateTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Api/StockStateTest.php index 1abeb6f4767..24c5f6f2624 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Api/StockStateTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Api/StockStateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Api; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Block/Adminhtml/Form/Field/StockTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Block/Adminhtml/Form/Field/StockTest.php index 6e2498f20ae..e64e65ca34f 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Block/Adminhtml/Form/Field/StockTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Block/Adminhtml/Form/Field/StockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Block\Adminhtml\Form\Field; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Block/Plugin/ProductViewTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Block/Plugin/ProductViewTest.php index 601198249ed..c0ba42d1981 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Block/Plugin/ProductViewTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Block/Plugin/ProductViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Block\Plugin; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Block/QtyincrementsTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Block/QtyincrementsTest.php index ed1b0686027..2a342c912f8 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Block/QtyincrementsTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Block/QtyincrementsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Block; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Block/Stockqty/DefaultStockqtyTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Block/Stockqty/DefaultStockqtyTest.php index 241989ef4dc..a76697098a9 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Block/Stockqty/DefaultStockqtyTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Block/Stockqty/DefaultStockqtyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Block\Stockqty; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Helper/MinsaleqtyTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Helper/MinsaleqtyTest.php index a740fd4c31c..c08f9730e76 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Helper/MinsaleqtyTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Helper/MinsaleqtyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Helper/StockTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Helper/StockTest.php index 6d9ec21969d..000eb10b048 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Helper/StockTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Helper/StockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Helper; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/AddStockStatusToCollectionTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/AddStockStatusToCollectionTest.php index 65674b2e13a..5dfb4c4d89e 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/AddStockStatusToCollectionTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/AddStockStatusToCollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Adminhtml/Stock/ItemTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Adminhtml/Stock/ItemTest.php index dfb8073e718..64601d8c5e7 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Adminhtml/Stock/ItemTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Adminhtml/Stock/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Adminhtml\Stock; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Config/Backend/ManagestockTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Config/Backend/ManagestockTest.php index 2bdebe69263..80e6530cbe7 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Config/Backend/ManagestockTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Config/Backend/ManagestockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Config\Backend; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/ConfigurationTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/ConfigurationTest.php index d1508aa0d84..f346e694f55 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/ConfigurationTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/ConfigurationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/FullTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/FullTest.php index b3193ef27c2..0a90081ba6d 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/FullTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/FullTest.php @@ -3,7 +3,7 @@ * @category Magento * @package Magento_CatalogInventory * @subpackage unit_tests - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowTest.php index d8263aed65d..db9939d70a6 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowTest.php @@ -3,7 +3,7 @@ * @category Magento * @package Magento_CatalogInventory * @subpackage unit_tests - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowsTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowsTest.php index d524718d3b4..3c7a00e1ec9 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowsTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowsTest.php @@ -3,7 +3,7 @@ * @category Magento * @package Magento_CatalogInventory * @subpackage unit_tests - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/CacheCleanerTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/CacheCleanerTest.php index 690b20f4e97..f6466096635 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/CacheCleanerTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/CacheCleanerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Plugin/StoreGroupTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Plugin/StoreGroupTest.php index 55ca6334381..861027feeee 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Plugin/StoreGroupTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Plugin/StoreGroupTest.php @@ -3,7 +3,7 @@ * @category Magento * @package Magento_CatalogInventory * @subpackage unit_tests - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/AfterProductLoadTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/AfterProductLoadTest.php index 0c51b8adf34..cf6ca57487a 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/AfterProductLoadTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/AfterProductLoadTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/AroundProductRepositorySaveTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/AroundProductRepositorySaveTest.php index 2d997c92f26..6f6a2eb31ac 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/AroundProductRepositorySaveTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/AroundProductRepositorySaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/LayerTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/LayerTest.php index 3fbd0335c65..c7f7a3a0315 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/LayerTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/LayerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/ProductLinksTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/ProductLinksTest.php index dda666425a3..04e53618867 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/ProductLinksTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/ProductLinksTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Product/CopyConstructor/CatalogInventoryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Product/CopyConstructor/CatalogInventoryTest.php index 8b08acf8a64..99e4952c49b 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Product/CopyConstructor/CatalogInventoryTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Product/CopyConstructor/CatalogInventoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Product\CopyConstructor; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/OptionTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/OptionTest.php index a55540c5c4b..662760f5904 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/OptionTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/OptionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Quote\Item\QuantityValidator\Initializer; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessorTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessorTest.php index 1080f770781..d5c0ca94972 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessorTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Quote\Item\QuantityValidator\Initializer; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QuantityValidatorTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QuantityValidatorTest.php index 7fd886f3815..d5ca0e2f064 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QuantityValidatorTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QuantityValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/StockItemTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/StockItemTest.php index 8c987c5fae2..a81e9566f9c 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/StockItemTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/StockItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Quote\Item\QuantityValidator\Initializer; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/ResourceModel/Product/StockStatusBaseSelectProcessorTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/ResourceModel/Product/StockStatusBaseSelectProcessorTest.php index 4756e42ffe6..57aca1edf8b 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/ResourceModel/Product/StockStatusBaseSelectProcessorTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/ResourceModel/Product/StockStatusBaseSelectProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\ResourceModel\Product; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockRegistryProviderTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockRegistryProviderTest.php index b9c9179221a..62025c8e01e 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockRegistryProviderTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockRegistryProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Spi; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockStateProviderTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockStateProviderTest.php index a2c72ccce89..69820757f9b 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockStateProviderTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockStateProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Spi; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/ItemTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/ItemTest.php index e7ca99198fa..4853f7dac48 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/ItemTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Stock; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockItemRepositoryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockItemRepositoryTest.php index 23b7805e622..4c820465374 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockItemRepositoryTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockItemRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Stock; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockRepositoryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockRepositoryTest.php index 7238c607ea3..34156a69412 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockRepositoryTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Stock; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockStatusRepositoryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockStatusRepositoryTest.php index 11aac7e7c5a..ac2a374dc97 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockStatusRepositoryTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockStatusRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model\Stock; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/StockRegistryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/StockRegistryTest.php index b8000d8dd36..ba32eee2f30 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/StockRegistryTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/StockRegistryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/StockTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/StockTest.php index 2cefb6e8a8e..a1500a1d954 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Model/StockTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Model/StockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Model; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Observer/AddInventoryDataObserverTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Observer/AddInventoryDataObserverTest.php index f8b8c7e94dd..6b8fc647e07 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Observer/AddInventoryDataObserverTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Observer/AddInventoryDataObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Observer; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Observer/CheckoutAllSubmitAfterObserverTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Observer/CheckoutAllSubmitAfterObserverTest.php index 2c27082cf18..75242a712ca 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Observer/CheckoutAllSubmitAfterObserverTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Observer/CheckoutAllSubmitAfterObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Observer; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Observer/UpdateItemsStockUponConfigChangeObserverTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Observer/UpdateItemsStockUponConfigChangeObserverTest.php index c3109a76d1c..d43bb489b14 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Observer/UpdateItemsStockUponConfigChangeObserverTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Observer/UpdateItemsStockUponConfigChangeObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Observer; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Ui/Component/Product/Form/Element/UseConfigSettingsTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Ui/Component/Product/Form/Element/UseConfigSettingsTest.php index 50e79256bb8..bf453a351c8 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Ui/Component/Product/Form/Element/UseConfigSettingsTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Ui/Component/Product/Form/Element/UseConfigSettingsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Ui\Component\Product\Form\Element; diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedInventoryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedInventoryTest.php index 18463ab5f86..63e6ceb55bc 100644 --- a/app/code/Magento/CatalogInventory/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedInventoryTest.php +++ b/app/code/Magento/CatalogInventory/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedInventoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/CatalogInventory/Ui/Component/Product/Form/Element/UseConfigSettings.php b/app/code/Magento/CatalogInventory/Ui/Component/Product/Form/Element/UseConfigSettings.php index 1867821ef99..9e510ff1e7b 100644 --- a/app/code/Magento/CatalogInventory/Ui/Component/Product/Form/Element/UseConfigSettings.php +++ b/app/code/Magento/CatalogInventory/Ui/Component/Product/Form/Element/UseConfigSettings.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Ui\Component\Product\Form\Element; diff --git a/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFieldToCollection.php b/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFieldToCollection.php index c598b7c90c5..9125fd2c264 100644 --- a/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFieldToCollection.php +++ b/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFieldToCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Ui\DataProvider\Product; diff --git a/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFilterToCollection.php b/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFilterToCollection.php index 5c4cdcc568f..ed3b62c9b64 100644 --- a/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFilterToCollection.php +++ b/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFilterToCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Ui\DataProvider\Product; diff --git a/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/Form/Modifier/AdvancedInventory.php b/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/Form/Modifier/AdvancedInventory.php index 546483a660b..051dbbc1d87 100644 --- a/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/Form/Modifier/AdvancedInventory.php +++ b/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/Form/Modifier/AdvancedInventory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogInventory\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/CatalogInventory/etc/acl.xml b/app/code/Magento/CatalogInventory/etc/acl.xml index a197681eb64..22d6a5016be 100644 --- a/app/code/Magento/CatalogInventory/etc/acl.xml +++ b/app/code/Magento/CatalogInventory/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/etc/adminhtml/di.xml b/app/code/Magento/CatalogInventory/etc/adminhtml/di.xml index 1af3b65eeb4..9356f15cd7f 100644 --- a/app/code/Magento/CatalogInventory/etc/adminhtml/di.xml +++ b/app/code/Magento/CatalogInventory/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/etc/adminhtml/system.xml b/app/code/Magento/CatalogInventory/etc/adminhtml/system.xml index e32d794a9e0..c403bb3c627 100644 --- a/app/code/Magento/CatalogInventory/etc/adminhtml/system.xml +++ b/app/code/Magento/CatalogInventory/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/etc/config.xml b/app/code/Magento/CatalogInventory/etc/config.xml index ba0a059168d..b4da95f4829 100644 --- a/app/code/Magento/CatalogInventory/etc/config.xml +++ b/app/code/Magento/CatalogInventory/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/etc/di.xml b/app/code/Magento/CatalogInventory/etc/di.xml index e3ca5c01ced..54f2e4dccf3 100644 --- a/app/code/Magento/CatalogInventory/etc/di.xml +++ b/app/code/Magento/CatalogInventory/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/etc/events.xml b/app/code/Magento/CatalogInventory/etc/events.xml index d9db59b7a17..1c5c1109695 100644 --- a/app/code/Magento/CatalogInventory/etc/events.xml +++ b/app/code/Magento/CatalogInventory/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/etc/extension_attributes.xml b/app/code/Magento/CatalogInventory/etc/extension_attributes.xml index 5be0207e107..43495ebf2e6 100644 --- a/app/code/Magento/CatalogInventory/etc/extension_attributes.xml +++ b/app/code/Magento/CatalogInventory/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -13,4 +13,4 @@ </resources> </attribute> </extension_attributes> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/CatalogInventory/etc/frontend/di.xml b/app/code/Magento/CatalogInventory/etc/frontend/di.xml index 009d6b7a3f4..66591baa416 100644 --- a/app/code/Magento/CatalogInventory/etc/frontend/di.xml +++ b/app/code/Magento/CatalogInventory/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/etc/indexer.xml b/app/code/Magento/CatalogInventory/etc/indexer.xml index cb611286408..e3fc5e845c4 100644 --- a/app/code/Magento/CatalogInventory/etc/indexer.xml +++ b/app/code/Magento/CatalogInventory/etc/indexer.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/etc/module.xml b/app/code/Magento/CatalogInventory/etc/module.xml index 7aff70e2258..56cc38b7d0d 100644 --- a/app/code/Magento/CatalogInventory/etc/module.xml +++ b/app/code/Magento/CatalogInventory/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/etc/mview.xml b/app/code/Magento/CatalogInventory/etc/mview.xml index 5737fea2150..58a051a3d0e 100644 --- a/app/code/Magento/CatalogInventory/etc/mview.xml +++ b/app/code/Magento/CatalogInventory/etc/mview.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/etc/product_types.xml b/app/code/Magento/CatalogInventory/etc/product_types.xml index 57ae2a962d2..206a4969b3f 100644 --- a/app/code/Magento/CatalogInventory/etc/product_types.xml +++ b/app/code/Magento/CatalogInventory/etc/product_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/etc/webapi.xml b/app/code/Magento/CatalogInventory/etc/webapi.xml index ef2d2c89b3f..09753ed6d7c 100644 --- a/app/code/Magento/CatalogInventory/etc/webapi.xml +++ b/app/code/Magento/CatalogInventory/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/registration.php b/app/code/Magento/CatalogInventory/registration.php index f9ba272c2f4..c39a8159f90 100644 --- a/app/code/Magento/CatalogInventory/registration.php +++ b/app/code/Magento/CatalogInventory/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_form.xml b/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_form.xml index 64e0d2ec59d..31a5dcea3a1 100644 --- a/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_form.xml +++ b/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_listing.xml b/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_listing.xml index 3d993257b8d..51587e07328 100644 --- a/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_listing.xml +++ b/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/qty-validator-changer.js b/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/qty-validator-changer.js index f45d32d6482..3123784e64e 100644 --- a/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/qty-validator-changer.js +++ b/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/qty-validator-changer.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-min-sale-qty.js b/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-min-sale-qty.js index d0dffe5da87..9bce6ced314 100644 --- a/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-min-sale-qty.js +++ b/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-min-sale-qty.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-settings.js b/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-settings.js index dbcb852ad66..877f2b44b4f 100644 --- a/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-settings.js +++ b/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-settings.js @@ -1,9 +1,9 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view.xml index d2b7d7df1e2..e6e9e8b3098 100644 --- a/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view.xml +++ b/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_simple.xml b/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_simple.xml index aa702435eb8..bfd59283750 100644 --- a/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_simple.xml +++ b/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_simple.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_virtual.xml b/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_virtual.xml index 00145048125..c83b8b6fc47 100644 --- a/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_virtual.xml +++ b/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_virtual.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogInventory/view/frontend/templates/qtyincrements.phtml b/app/code/Magento/CatalogInventory/view/frontend/templates/qtyincrements.phtml index 08ed9910200..544b82ccd06 100644 --- a/app/code/Magento/CatalogInventory/view/frontend/templates/qtyincrements.phtml +++ b/app/code/Magento/CatalogInventory/view/frontend/templates/qtyincrements.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/composite.phtml b/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/composite.phtml index 06c770c9464..09e99685409 100644 --- a/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/composite.phtml +++ b/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/composite.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/default.phtml b/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/default.phtml index 1314999d19b..9d41a490efd 100644 --- a/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/default.phtml +++ b/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Api/CatalogRuleRepositoryInterface.php b/app/code/Magento/CatalogRule/Api/CatalogRuleRepositoryInterface.php index 01bdd321ec2..1722cdc89bd 100644 --- a/app/code/Magento/CatalogRule/Api/CatalogRuleRepositoryInterface.php +++ b/app/code/Magento/CatalogRule/Api/CatalogRuleRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Api; diff --git a/app/code/Magento/CatalogRule/Api/Data/ConditionInterface.php b/app/code/Magento/CatalogRule/Api/Data/ConditionInterface.php index 26591065f4c..d7ebd045470 100644 --- a/app/code/Magento/CatalogRule/Api/Data/ConditionInterface.php +++ b/app/code/Magento/CatalogRule/Api/Data/ConditionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Api\Data; diff --git a/app/code/Magento/CatalogRule/Api/Data/RuleInterface.php b/app/code/Magento/CatalogRule/Api/Data/RuleInterface.php index 18b2d1d6c35..3ae5b5545db 100644 --- a/app/code/Magento/CatalogRule/Api/Data/RuleInterface.php +++ b/app/code/Magento/CatalogRule/Api/Data/RuleInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Api\Data; diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/DeleteButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/DeleteButton.php index 0bbfba46795..bdce161fea2 100644 --- a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/DeleteButton.php +++ b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/DeleteButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Block\Adminhtml\Edit; diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/GenericButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/GenericButton.php index 003376bacd1..f8e40953f01 100644 --- a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/GenericButton.php +++ b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/GenericButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/ResetButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/ResetButton.php index e961ebc0796..d94bca68771 100644 --- a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/ResetButton.php +++ b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/ResetButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndApplyButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndApplyButton.php index cee70a251aa..e11a429a261 100644 --- a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndApplyButton.php +++ b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndApplyButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndContinueButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndContinueButton.php index f1d0be72164..03a16882c34 100644 --- a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndContinueButton.php +++ b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndContinueButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveButton.php index a39aca7136d..4306e45ffca 100644 --- a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveButton.php +++ b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog.php index c969e56d720..cb64f4e70c4 100644 --- a/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog.php +++ b/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog/Edit/Tab/Conditions.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog/Edit/Tab/Conditions.php index a74cbc2f732..1bb9a793fc0 100644 --- a/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog/Edit/Tab/Conditions.php +++ b/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog/Edit/Tab/Conditions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Block\Adminhtml\Promo\Catalog\Edit\Tab; diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Widget/Chooser/Sku.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Widget/Chooser/Sku.php index 706ac6fca79..56847f971aa 100644 --- a/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Widget/Chooser/Sku.php +++ b/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Widget/Chooser/Sku.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog.php index 6f34a95b713..9160971d8a7 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/ApplyRules.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/ApplyRules.php index 9707080553f..208c547ce8b 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/ApplyRules.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/ApplyRules.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo\Catalog; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Chooser.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Chooser.php index a897362c060..f4e6cf0f143 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Chooser.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Chooser.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo\Catalog; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Delete.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Delete.php index 76181f8f793..81fbd3c1bda 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Delete.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo\Catalog; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Edit.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Edit.php index aa21bd3be7a..16fd621225e 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Edit.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo\Catalog; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Index.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Index.php index e15b1b7375b..30f85927bdd 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Index.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo\Catalog; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewAction.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewAction.php index 22b24ef20f3..3de11729579 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewAction.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo\Catalog; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewActionHtml.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewActionHtml.php index 2bb0a288383..f46c5264df6 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewActionHtml.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewActionHtml.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo\Catalog; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewConditionHtml.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewConditionHtml.php index d32157319e2..8559cd437b2 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewConditionHtml.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewConditionHtml.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo\Catalog; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Save.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Save.php index 8f2102047f8..2961081131c 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Save.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo\Catalog; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Index.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Index.php index d619b5a2b28..8e473850e68 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Index.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget.php index 30e37f3517e..60b375ad42c 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/CategoriesJson.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/CategoriesJson.php index bed163b8c63..3f6baee00b1 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/CategoriesJson.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/CategoriesJson.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo\Widget; diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/Chooser.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/Chooser.php index 5babaa344cd..6c6ea71c094 100644 --- a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/Chooser.php +++ b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/Chooser.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo\Widget; diff --git a/app/code/Magento/CatalogRule/Controller/RegistryConstants.php b/app/code/Magento/CatalogRule/Controller/RegistryConstants.php index 55d3931b90f..60e981e32b0 100644 --- a/app/code/Magento/CatalogRule/Controller/RegistryConstants.php +++ b/app/code/Magento/CatalogRule/Controller/RegistryConstants.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Cron/DailyCatalogUpdate.php b/app/code/Magento/CatalogRule/Cron/DailyCatalogUpdate.php index 55a8a8412db..4bfb42a988a 100644 --- a/app/code/Magento/CatalogRule/Cron/DailyCatalogUpdate.php +++ b/app/code/Magento/CatalogRule/Cron/DailyCatalogUpdate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Helper/Data.php b/app/code/Magento/CatalogRule/Helper/Data.php index e7c19e46bcf..82156d768e7 100644 --- a/app/code/Magento/CatalogRule/Helper/Data.php +++ b/app/code/Magento/CatalogRule/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Model/CatalogRuleRepository.php b/app/code/Magento/CatalogRule/Model/CatalogRuleRepository.php index 66d622e512c..70bab6f0dee 100644 --- a/app/code/Magento/CatalogRule/Model/CatalogRuleRepository.php +++ b/app/code/Magento/CatalogRule/Model/CatalogRuleRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model; diff --git a/app/code/Magento/CatalogRule/Model/Data/Condition.php b/app/code/Magento/CatalogRule/Model/Data/Condition.php index 72891cf0b5c..bbfdb1f3805 100644 --- a/app/code/Magento/CatalogRule/Model/Data/Condition.php +++ b/app/code/Magento/CatalogRule/Model/Data/Condition.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Data; diff --git a/app/code/Magento/CatalogRule/Model/Data/Condition/Converter.php b/app/code/Magento/CatalogRule/Model/Data/Condition/Converter.php index eb620a51b24..91899469391 100644 --- a/app/code/Magento/CatalogRule/Model/Data/Condition/Converter.php +++ b/app/code/Magento/CatalogRule/Model/Data/Condition/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Data\Condition; diff --git a/app/code/Magento/CatalogRule/Model/Flag.php b/app/code/Magento/CatalogRule/Model/Flag.php index fe78ea6cebc..4693f573ca4 100644 --- a/app/code/Magento/CatalogRule/Model/Flag.php +++ b/app/code/Magento/CatalogRule/Model/Flag.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Model/Indexer/AbstractIndexer.php b/app/code/Magento/CatalogRule/Model/Indexer/AbstractIndexer.php index 409c4feb35a..1a5f5deba56 100644 --- a/app/code/Magento/CatalogRule/Model/Indexer/AbstractIndexer.php +++ b/app/code/Magento/CatalogRule/Model/Indexer/AbstractIndexer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Indexer; diff --git a/app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder.php b/app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder.php index e716f3c1011..9fc43530890 100644 --- a/app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder.php +++ b/app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleIndexer.php b/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleIndexer.php index 696f3c6ec80..45c1b870486 100644 --- a/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleIndexer.php +++ b/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleIndexer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Indexer\Product; diff --git a/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleProcessor.php b/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleProcessor.php index 542e873e71a..3a674602cfc 100644 --- a/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleProcessor.php +++ b/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Indexer\Product; diff --git a/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductIndexer.php b/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductIndexer.php index b5125501571..0699d0868b4 100644 --- a/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductIndexer.php +++ b/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductIndexer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Indexer\Rule; diff --git a/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductProcessor.php b/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductProcessor.php index cea5d3cfb91..f2b9d955be7 100644 --- a/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductProcessor.php +++ b/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Indexer\Rule; diff --git a/app/code/Magento/CatalogRule/Model/Product/PriceModifier.php b/app/code/Magento/CatalogRule/Model/Product/PriceModifier.php index 893414d011d..53b2eb8df53 100644 --- a/app/code/Magento/CatalogRule/Model/Product/PriceModifier.php +++ b/app/code/Magento/CatalogRule/Model/Product/PriceModifier.php @@ -2,7 +2,7 @@ /** * Catalog rule product price modifier. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Product; diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Grid/Collection.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Grid/Collection.php index 743857a4097..786d96f1589 100644 --- a/app/code/Magento/CatalogRule/Model/ResourceModel/Grid/Collection.php +++ b/app/code/Magento/CatalogRule/Model/ResourceModel/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\ResourceModel\Grid; diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Product/CollectionProcessor.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Product/CollectionProcessor.php index 686fc3de623..0d8d4d3182b 100644 --- a/app/code/Magento/CatalogRule/Model/ResourceModel/Product/CollectionProcessor.php +++ b/app/code/Magento/CatalogRule/Model/ResourceModel/Product/CollectionProcessor.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\ResourceModel\Product; diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Product/LinkedProductSelectBuilderByCatalogRulePrice.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Product/LinkedProductSelectBuilderByCatalogRulePrice.php index 55b76eb2250..6b835aaf3cc 100644 --- a/app/code/Magento/CatalogRule/Model/ResourceModel/Product/LinkedProductSelectBuilderByCatalogRulePrice.php +++ b/app/code/Magento/CatalogRule/Model/ResourceModel/Product/LinkedProductSelectBuilderByCatalogRulePrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\ResourceModel\Product; diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/ReadHandler.php b/app/code/Magento/CatalogRule/Model/ResourceModel/ReadHandler.php index 87b758466e9..59b7e676545 100644 --- a/app/code/Magento/CatalogRule/Model/ResourceModel/ReadHandler.php +++ b/app/code/Magento/CatalogRule/Model/ResourceModel/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\ResourceModel; diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule.php index 5fdaf912e5f..fd75fa22f49 100644 --- a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule.php +++ b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Collection.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Collection.php index 4ff2a9d538f..67feaa71c6b 100644 --- a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Collection.php +++ b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\ResourceModel\Rule; diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price.php index dc0de83b4a5..9108d9f60cc 100644 --- a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price.php +++ b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price/Collection.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price/Collection.php index 90294f8102d..8dbc11c0762 100644 --- a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price/Collection.php +++ b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\ResourceModel\Rule\Product\Price; diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/SaveHandler.php b/app/code/Magento/CatalogRule/Model/ResourceModel/SaveHandler.php index 3cfbc477095..7444aad779c 100644 --- a/app/code/Magento/CatalogRule/Model/ResourceModel/SaveHandler.php +++ b/app/code/Magento/CatalogRule/Model/ResourceModel/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\ResourceModel; diff --git a/app/code/Magento/CatalogRule/Model/Rule.php b/app/code/Magento/CatalogRule/Model/Rule.php index 8a820fd5846..cf8ba21c2a4 100644 --- a/app/code/Magento/CatalogRule/Model/Rule.php +++ b/app/code/Magento/CatalogRule/Model/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model; diff --git a/app/code/Magento/CatalogRule/Model/Rule/Action/Collection.php b/app/code/Magento/CatalogRule/Model/Rule/Action/Collection.php index e3259e9164e..5e2a6176df5 100644 --- a/app/code/Magento/CatalogRule/Model/Rule/Action/Collection.php +++ b/app/code/Magento/CatalogRule/Model/Rule/Action/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Rule\Action; diff --git a/app/code/Magento/CatalogRule/Model/Rule/Action/Product.php b/app/code/Magento/CatalogRule/Model/Rule/Action/Product.php index 91ce2f1df6c..23ca21f3324 100644 --- a/app/code/Magento/CatalogRule/Model/Rule/Action/Product.php +++ b/app/code/Magento/CatalogRule/Model/Rule/Action/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Rule\Action; diff --git a/app/code/Magento/CatalogRule/Model/Rule/Action/SimpleActionOptionsProvider.php b/app/code/Magento/CatalogRule/Model/Rule/Action/SimpleActionOptionsProvider.php index 4f1f23f32dc..5872564a4d6 100644 --- a/app/code/Magento/CatalogRule/Model/Rule/Action/SimpleActionOptionsProvider.php +++ b/app/code/Magento/CatalogRule/Model/Rule/Action/SimpleActionOptionsProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Rule\Action; diff --git a/app/code/Magento/CatalogRule/Model/Rule/Condition/Combine.php b/app/code/Magento/CatalogRule/Model/Rule/Condition/Combine.php index c21ad4b9c88..7085ca9d024 100644 --- a/app/code/Magento/CatalogRule/Model/Rule/Condition/Combine.php +++ b/app/code/Magento/CatalogRule/Model/Rule/Condition/Combine.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Model/Rule/Condition/Product.php b/app/code/Magento/CatalogRule/Model/Rule/Condition/Product.php index 7f9ab932e18..1688ff9c270 100644 --- a/app/code/Magento/CatalogRule/Model/Rule/Condition/Product.php +++ b/app/code/Magento/CatalogRule/Model/Rule/Condition/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Model/Rule/CustomerGroupsOptionsProvider.php b/app/code/Magento/CatalogRule/Model/Rule/CustomerGroupsOptionsProvider.php index ebc0747d83a..2ea0814394a 100644 --- a/app/code/Magento/CatalogRule/Model/Rule/CustomerGroupsOptionsProvider.php +++ b/app/code/Magento/CatalogRule/Model/Rule/CustomerGroupsOptionsProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Rule; diff --git a/app/code/Magento/CatalogRule/Model/Rule/DataProvider.php b/app/code/Magento/CatalogRule/Model/Rule/DataProvider.php index 962c691efaa..e91e83ebe55 100644 --- a/app/code/Magento/CatalogRule/Model/Rule/DataProvider.php +++ b/app/code/Magento/CatalogRule/Model/Rule/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Rule; diff --git a/app/code/Magento/CatalogRule/Model/Rule/Job.php b/app/code/Magento/CatalogRule/Model/Rule/Job.php index 51a1835bd6e..7cb6b63a4c5 100644 --- a/app/code/Magento/CatalogRule/Model/Rule/Job.php +++ b/app/code/Magento/CatalogRule/Model/Rule/Job.php @@ -4,7 +4,7 @@ * * Uses for encapsulate some logic of rule model and for having ability change behavior (for example, in controller) * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Model/Rule/Product/Price.php b/app/code/Magento/CatalogRule/Model/Rule/Product/Price.php index eda062af7df..451b39ff51a 100644 --- a/app/code/Magento/CatalogRule/Model/Rule/Product/Price.php +++ b/app/code/Magento/CatalogRule/Model/Rule/Product/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Model/Rule/WebsitesOptionsProvider.php b/app/code/Magento/CatalogRule/Model/Rule/WebsitesOptionsProvider.php index 5fcb87125c2..86916af049f 100644 --- a/app/code/Magento/CatalogRule/Model/Rule/WebsitesOptionsProvider.php +++ b/app/code/Magento/CatalogRule/Model/Rule/WebsitesOptionsProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Model\Rule; diff --git a/app/code/Magento/CatalogRule/Observer/AddDirtyRulesNotice.php b/app/code/Magento/CatalogRule/Observer/AddDirtyRulesNotice.php index f179f59d231..f6d4bee5918 100644 --- a/app/code/Magento/CatalogRule/Observer/AddDirtyRulesNotice.php +++ b/app/code/Magento/CatalogRule/Observer/AddDirtyRulesNotice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Observer; diff --git a/app/code/Magento/CatalogRule/Observer/PrepareCatalogProductCollectionPricesObserver.php b/app/code/Magento/CatalogRule/Observer/PrepareCatalogProductCollectionPricesObserver.php index 8aa9ffb2bfa..a91e9d8ccda 100644 --- a/app/code/Magento/CatalogRule/Observer/PrepareCatalogProductCollectionPricesObserver.php +++ b/app/code/Magento/CatalogRule/Observer/PrepareCatalogProductCollectionPricesObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Observer/ProcessAdminFinalPriceObserver.php b/app/code/Magento/CatalogRule/Observer/ProcessAdminFinalPriceObserver.php index e14bce080ba..63eea5a00ff 100644 --- a/app/code/Magento/CatalogRule/Observer/ProcessAdminFinalPriceObserver.php +++ b/app/code/Magento/CatalogRule/Observer/ProcessAdminFinalPriceObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Observer/ProcessFrontFinalPriceObserver.php b/app/code/Magento/CatalogRule/Observer/ProcessFrontFinalPriceObserver.php index f4e5cf0db42..5088fb9b12f 100644 --- a/app/code/Magento/CatalogRule/Observer/ProcessFrontFinalPriceObserver.php +++ b/app/code/Magento/CatalogRule/Observer/ProcessFrontFinalPriceObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Observer/RulePricesStorage.php b/app/code/Magento/CatalogRule/Observer/RulePricesStorage.php index 070b990f1c5..c487a32d83c 100644 --- a/app/code/Magento/CatalogRule/Observer/RulePricesStorage.php +++ b/app/code/Magento/CatalogRule/Observer/RulePricesStorage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/Category.php b/app/code/Magento/CatalogRule/Plugin/Indexer/Category.php index d53d9d27b38..3f9c1c6ca64 100644 --- a/app/code/Magento/CatalogRule/Plugin/Indexer/Category.php +++ b/app/code/Magento/CatalogRule/Plugin/Indexer/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Plugin\Indexer; diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/CustomerGroup.php b/app/code/Magento/CatalogRule/Plugin/Indexer/CustomerGroup.php index 5ba9a98541b..dbd57575bd0 100644 --- a/app/code/Magento/CatalogRule/Plugin/Indexer/CustomerGroup.php +++ b/app/code/Magento/CatalogRule/Plugin/Indexer/CustomerGroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Plugin\Indexer; diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/ImportExport.php b/app/code/Magento/CatalogRule/Plugin/Indexer/ImportExport.php index 12fe94a9dad..61d3643e92b 100644 --- a/app/code/Magento/CatalogRule/Plugin/Indexer/ImportExport.php +++ b/app/code/Magento/CatalogRule/Plugin/Indexer/ImportExport.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Plugin\Indexer; diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Attribute.php b/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Attribute.php index be1871215ca..4e6ac4f1f11 100644 --- a/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Attribute.php +++ b/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Plugin\Indexer\Product; diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRules.php b/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRules.php index 00cdfb5aaaf..5150e3e3ac8 100644 --- a/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRules.php +++ b/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRules.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Plugin\Indexer\Product\Save; diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRulesAfterReindex.php b/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRulesAfterReindex.php index 5416c2e59b0..59e1b3edb28 100644 --- a/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRulesAfterReindex.php +++ b/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRulesAfterReindex.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Plugin\Indexer\Product\Save; diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/Website.php b/app/code/Magento/CatalogRule/Plugin/Indexer/Website.php index ea00262d28d..f7d98b679ed 100644 --- a/app/code/Magento/CatalogRule/Plugin/Indexer/Website.php +++ b/app/code/Magento/CatalogRule/Plugin/Indexer/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Plugin\Indexer; diff --git a/app/code/Magento/CatalogRule/Plugin/Model/Product/Action.php b/app/code/Magento/CatalogRule/Plugin/Model/Product/Action.php index ea6cbf1ec99..4ff37225437 100644 --- a/app/code/Magento/CatalogRule/Plugin/Model/Product/Action.php +++ b/app/code/Magento/CatalogRule/Plugin/Model/Product/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Pricing/Price/CatalogRulePrice.php b/app/code/Magento/CatalogRule/Pricing/Price/CatalogRulePrice.php index 7cc7fd42c1e..917cb37d9e1 100644 --- a/app/code/Magento/CatalogRule/Pricing/Price/CatalogRulePrice.php +++ b/app/code/Magento/CatalogRule/Pricing/Price/CatalogRulePrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Setup/InstallData.php b/app/code/Magento/CatalogRule/Setup/InstallData.php index b481daf3813..e679d324de6 100644 --- a/app/code/Magento/CatalogRule/Setup/InstallData.php +++ b/app/code/Magento/CatalogRule/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Setup/InstallSchema.php b/app/code/Magento/CatalogRule/Setup/InstallSchema.php index cb36f6efbdc..d8e3d8295ff 100644 --- a/app/code/Magento/CatalogRule/Setup/InstallSchema.php +++ b/app/code/Magento/CatalogRule/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Setup/UpgradeSchema.php b/app/code/Magento/CatalogRule/Setup/UpgradeSchema.php index 6bfb927c9c8..c716c088ff6 100644 --- a/app/code/Magento/CatalogRule/Setup/UpgradeSchema.php +++ b/app/code/Magento/CatalogRule/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/DeleteButtonTest.php b/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/DeleteButtonTest.php index 66847265b22..66870562293 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/DeleteButtonTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/DeleteButtonTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Block\Adminhtml\Edit; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/GenericButtonTest.php b/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/GenericButtonTest.php index e576b36b79f..fd9b5c4497e 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/GenericButtonTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/GenericButtonTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Block\Adminhtml\Edit; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Cron/DailyCatalogUpdateTest.php b/app/code/Magento/CatalogRule/Test/Unit/Cron/DailyCatalogUpdateTest.php index 9837eaf53c8..d3783295b4a 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Cron/DailyCatalogUpdateTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Cron/DailyCatalogUpdateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Helper/DataTest.php b/app/code/Magento/CatalogRule/Test/Unit/Helper/DataTest.php index d27b4af3081..c44873e1dc2 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/CatalogRuleRepositoryTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/CatalogRuleRepositoryTest.php index 140ac4b6650..c31091176ec 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/CatalogRuleRepositoryTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/CatalogRuleRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Data/Condition/ConverterTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Data/Condition/ConverterTest.php index 2a039954a9f..e038e11923f 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/Data/Condition/ConverterTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/Data/Condition/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Model\Data\Condition; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/AbstractIndexerTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/AbstractIndexerTest.php index 01e4758b44a..36df6da5cea 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/AbstractIndexerTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/AbstractIndexerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/IndexBuilderTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/IndexBuilderTest.php index adda8686e3a..e84b47c534d 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/IndexBuilderTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/IndexBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Product/ProductRuleIndexerTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Product/ProductRuleIndexerTest.php index 5619d4f7397..bc304ffec15 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Product/ProductRuleIndexerTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Product/ProductRuleIndexerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Model\Indexer\Product; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Rule/RuleProductIndexerTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Rule/RuleProductIndexerTest.php index 4987d682464..b8782f2a117 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Rule/RuleProductIndexerTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Rule/RuleProductIndexerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Product/PriceModifierTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Product/PriceModifierTest.php index 1684fc984b5..e7a95a027ae 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/Product/PriceModifierTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/Product/PriceModifierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Model\Product; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php index 809dacfa53b..b1a4c1a6ce4 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php index 9604ff7600e..300868e8c32 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/Condition/ProductTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/Condition/ProductTest.php index f8171ba9401..df03acde32a 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/Condition/ProductTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/Condition/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/CustomerGroupsOptionsProviderTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/CustomerGroupsOptionsProviderTest.php index 464857949a4..b943f14e883 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/CustomerGroupsOptionsProviderTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/CustomerGroupsOptionsProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Model\Rule; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/DataProviderTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/DataProviderTest.php index 03a8781b23e..79e7f50f6be 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/DataProviderTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/DataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Model\Rule; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/JobTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/JobTest.php index f0713d11c26..b37379b5d5e 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/JobTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/JobTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Model\Rule; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/WebsitesOptionsProviderTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/WebsitesOptionsProviderTest.php index 40997b57fb9..b7e2a408e3f 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/WebsitesOptionsProviderTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/WebsitesOptionsProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Model\Rule; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/RuleTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/RuleTest.php index b3f35dbe98e..a8a6326a5be 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Model/RuleTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Model/RuleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Model; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Observer/AddDirtyRulesNoticeTest.php b/app/code/Magento/CatalogRule/Test/Unit/Observer/AddDirtyRulesNoticeTest.php index 374f923246b..1c5bd242f8b 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Observer/AddDirtyRulesNoticeTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Observer/AddDirtyRulesNoticeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Observer; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CategoryTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CategoryTest.php index 9181dae0032..3c928ef5249 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CategoryTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CustomerGroupTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CustomerGroupTest.php index 56908314bea..c29494df6d0 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CustomerGroupTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CustomerGroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/ImportExportTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/ImportExportTest.php index 85c62ed1f39..617cc3f09a3 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/ImportExportTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/ImportExportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesAfterReindexTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesAfterReindexTest.php index 4d2068c9f52..b58ad41c73c 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesAfterReindexTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesAfterReindexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Plugin\Indexer\Product\Save; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesTest.php index 59031959b51..9584086bc47 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRule\Test\Unit\Plugin\Indexer\Product\Save; diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/WebsiteTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/WebsiteTest.php index 82d2837b179..87c8c07b407 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/WebsiteTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/WebsiteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Model/Product/ActionTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Model/Product/ActionTest.php index e79395af410..2d2b8c63fb3 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Model/Product/ActionTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Model/Product/ActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/Test/Unit/Pricing/Price/CatalogRulePriceTest.php b/app/code/Magento/CatalogRule/Test/Unit/Pricing/Price/CatalogRulePriceTest.php index 12c64f87158..d3e72c37543 100644 --- a/app/code/Magento/CatalogRule/Test/Unit/Pricing/Price/CatalogRulePriceTest.php +++ b/app/code/Magento/CatalogRule/Test/Unit/Pricing/Price/CatalogRulePriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/etc/acl.xml b/app/code/Magento/CatalogRule/etc/acl.xml index ad260c5b338..2ec94779b3f 100644 --- a/app/code/Magento/CatalogRule/etc/acl.xml +++ b/app/code/Magento/CatalogRule/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/adminhtml/di.xml b/app/code/Magento/CatalogRule/etc/adminhtml/di.xml index b6ca015d1fd..a993ed0ca48 100644 --- a/app/code/Magento/CatalogRule/etc/adminhtml/di.xml +++ b/app/code/Magento/CatalogRule/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/adminhtml/events.xml b/app/code/Magento/CatalogRule/etc/adminhtml/events.xml index 96dcaba04e6..afab20010a4 100644 --- a/app/code/Magento/CatalogRule/etc/adminhtml/events.xml +++ b/app/code/Magento/CatalogRule/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/adminhtml/menu.xml b/app/code/Magento/CatalogRule/etc/adminhtml/menu.xml index 62f4378ed8b..e47fa911f5a 100644 --- a/app/code/Magento/CatalogRule/etc/adminhtml/menu.xml +++ b/app/code/Magento/CatalogRule/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/adminhtml/routes.xml b/app/code/Magento/CatalogRule/etc/adminhtml/routes.xml index df54097062f..8eb519e8475 100644 --- a/app/code/Magento/CatalogRule/etc/adminhtml/routes.xml +++ b/app/code/Magento/CatalogRule/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/crontab.xml b/app/code/Magento/CatalogRule/etc/crontab.xml index 67714c1bc43..0f010205744 100644 --- a/app/code/Magento/CatalogRule/etc/crontab.xml +++ b/app/code/Magento/CatalogRule/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/crontab/events.xml b/app/code/Magento/CatalogRule/etc/crontab/events.xml index d17a0999824..e82f4c8b1a3 100644 --- a/app/code/Magento/CatalogRule/etc/crontab/events.xml +++ b/app/code/Magento/CatalogRule/etc/crontab/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/di.xml b/app/code/Magento/CatalogRule/etc/di.xml index f0644755b30..6783fd6d69b 100644 --- a/app/code/Magento/CatalogRule/etc/di.xml +++ b/app/code/Magento/CatalogRule/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/events.xml b/app/code/Magento/CatalogRule/etc/events.xml index 09fd7458fa7..54d4ba74370 100644 --- a/app/code/Magento/CatalogRule/etc/events.xml +++ b/app/code/Magento/CatalogRule/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/frontend/events.xml b/app/code/Magento/CatalogRule/etc/frontend/events.xml index b547bb645bb..7ec1d35dfbe 100644 --- a/app/code/Magento/CatalogRule/etc/frontend/events.xml +++ b/app/code/Magento/CatalogRule/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/indexer.xml b/app/code/Magento/CatalogRule/etc/indexer.xml index edfae35c072..bae3bdf98ef 100644 --- a/app/code/Magento/CatalogRule/etc/indexer.xml +++ b/app/code/Magento/CatalogRule/etc/indexer.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/module.xml b/app/code/Magento/CatalogRule/etc/module.xml index d7db233e1eb..0a9c185d875 100644 --- a/app/code/Magento/CatalogRule/etc/module.xml +++ b/app/code/Magento/CatalogRule/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/mview.xml b/app/code/Magento/CatalogRule/etc/mview.xml index 02f3761a027..58015fc6986 100644 --- a/app/code/Magento/CatalogRule/etc/mview.xml +++ b/app/code/Magento/CatalogRule/etc/mview.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/webapi_rest/di.xml b/app/code/Magento/CatalogRule/etc/webapi_rest/di.xml index c2030340d5c..7ca6491d59d 100644 --- a/app/code/Magento/CatalogRule/etc/webapi_rest/di.xml +++ b/app/code/Magento/CatalogRule/etc/webapi_rest/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/webapi_rest/events.xml b/app/code/Magento/CatalogRule/etc/webapi_rest/events.xml index b547bb645bb..7ec1d35dfbe 100644 --- a/app/code/Magento/CatalogRule/etc/webapi_rest/events.xml +++ b/app/code/Magento/CatalogRule/etc/webapi_rest/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/etc/webapi_soap/events.xml b/app/code/Magento/CatalogRule/etc/webapi_soap/events.xml index b547bb645bb..7ec1d35dfbe 100644 --- a/app/code/Magento/CatalogRule/etc/webapi_soap/events.xml +++ b/app/code/Magento/CatalogRule/etc/webapi_soap/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/registration.php b/app/code/Magento/CatalogRule/registration.php index b7a9603532d..3322ca97134 100644 --- a/app/code/Magento/CatalogRule/registration.php +++ b/app/code/Magento/CatalogRule/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_block.xml b/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_block.xml index b34ce89d688..53d8107101f 100644 --- a/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_block.xml +++ b/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_edit.xml b/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_edit.xml index ef8a6e758ba..62148084b47 100644 --- a/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_edit.xml +++ b/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_index.xml b/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_index.xml index c92bb309555..e781a870f1c 100644 --- a/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_index.xml +++ b/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/fieldset.phtml b/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/fieldset.phtml index 77cf14b3782..0c13825d167 100644 --- a/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/fieldset.phtml +++ b/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/fieldset.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/form.phtml b/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/form.phtml index 63938e73809..143f2b2c321 100644 --- a/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/form.phtml +++ b/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRule/view/adminhtml/ui_component/catalog_rule_form.xml b/app/code/Magento/CatalogRule/view/adminhtml/ui_component/catalog_rule_form.xml index acfd1efa605..16091c9c68f 100644 --- a/app/code/Magento/CatalogRule/view/adminhtml/ui_component/catalog_rule_form.xml +++ b/app/code/Magento/CatalogRule/view/adminhtml/ui_component/catalog_rule_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/ConfigurableProductsProvider.php b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/ConfigurableProductsProvider.php index 4bc4e175328..c4b8d5f275f 100644 --- a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/ConfigurableProductsProvider.php +++ b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/ConfigurableProductsProvider.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRuleConfigurable\Plugin\CatalogRule\Model; diff --git a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Indexer/ProductRuleReindex.php b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Indexer/ProductRuleReindex.php index 57ea2f2939a..e5e80e7cf6d 100644 --- a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Indexer/ProductRuleReindex.php +++ b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Indexer/ProductRuleReindex.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRuleConfigurable\Plugin\CatalogRule\Model\Indexer; diff --git a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandler.php b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandler.php index d1cb2fc8ca4..f7fb6823965 100644 --- a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandler.php +++ b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandler.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRuleConfigurable\Plugin\CatalogRule\Model\Rule; diff --git a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/Validation.php b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/Validation.php index 607f02ba790..374d3f80095 100644 --- a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/Validation.php +++ b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/Validation.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogRuleConfigurable\Plugin\CatalogRule\Model\Rule; diff --git a/app/code/Magento/CatalogRuleConfigurable/Plugin/ConfigurableProduct/Model/ResourceModel/AddCatalogRulePrice.php b/app/code/Magento/CatalogRuleConfigurable/Plugin/ConfigurableProduct/Model/ResourceModel/AddCatalogRulePrice.php index c7f97f770c3..f41f6d3fd71 100644 --- a/app/code/Magento/CatalogRuleConfigurable/Plugin/ConfigurableProduct/Model/ResourceModel/AddCatalogRulePrice.php +++ b/app/code/Magento/CatalogRuleConfigurable/Plugin/ConfigurableProduct/Model/ResourceModel/AddCatalogRulePrice.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandlerTest.php b/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandlerTest.php index 7036ba3012e..2e7b90b70d2 100644 --- a/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandlerTest.php +++ b/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ValidationTest.php b/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ValidationTest.php index 6ed0cb1d489..856c5c6af97 100644 --- a/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ValidationTest.php +++ b/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ValidationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogRuleConfigurable/etc/adminhtml/di.xml b/app/code/Magento/CatalogRuleConfigurable/etc/adminhtml/di.xml index 731447249db..ef226c965c5 100644 --- a/app/code/Magento/CatalogRuleConfigurable/etc/adminhtml/di.xml +++ b/app/code/Magento/CatalogRuleConfigurable/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRuleConfigurable/etc/crontab/di.xml b/app/code/Magento/CatalogRuleConfigurable/etc/crontab/di.xml index 731447249db..ef226c965c5 100644 --- a/app/code/Magento/CatalogRuleConfigurable/etc/crontab/di.xml +++ b/app/code/Magento/CatalogRuleConfigurable/etc/crontab/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRuleConfigurable/etc/di.xml b/app/code/Magento/CatalogRuleConfigurable/etc/di.xml index 881988b4446..8807b657f1c 100644 --- a/app/code/Magento/CatalogRuleConfigurable/etc/di.xml +++ b/app/code/Magento/CatalogRuleConfigurable/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRuleConfigurable/etc/module.xml b/app/code/Magento/CatalogRuleConfigurable/etc/module.xml index 6e927ed7bc2..c329a1fbe46 100644 --- a/app/code/Magento/CatalogRuleConfigurable/etc/module.xml +++ b/app/code/Magento/CatalogRuleConfigurable/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogRuleConfigurable/registration.php b/app/code/Magento/CatalogRuleConfigurable/registration.php index a16941628e0..578434d6523 100644 --- a/app/code/Magento/CatalogRuleConfigurable/registration.php +++ b/app/code/Magento/CatalogRuleConfigurable/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Block/Advanced/Form.php b/app/code/Magento/CatalogSearch/Block/Advanced/Form.php index eb5eec22186..0571689f035 100644 --- a/app/code/Magento/CatalogSearch/Block/Advanced/Form.php +++ b/app/code/Magento/CatalogSearch/Block/Advanced/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Block/Advanced/Result.php b/app/code/Magento/CatalogSearch/Block/Advanced/Result.php index 4351b134e4a..c927b9ad9e3 100644 --- a/app/code/Magento/CatalogSearch/Block/Advanced/Result.php +++ b/app/code/Magento/CatalogSearch/Block/Advanced/Result.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Block\Advanced; diff --git a/app/code/Magento/CatalogSearch/Block/Plugin/FrontTabPlugin.php b/app/code/Magento/CatalogSearch/Block/Plugin/FrontTabPlugin.php index 9b5c324d0df..58d8bab9485 100644 --- a/app/code/Magento/CatalogSearch/Block/Plugin/FrontTabPlugin.php +++ b/app/code/Magento/CatalogSearch/Block/Plugin/FrontTabPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Block\Plugin; diff --git a/app/code/Magento/CatalogSearch/Block/Result.php b/app/code/Magento/CatalogSearch/Block/Result.php index 5a1d5289870..32238aa3bd6 100644 --- a/app/code/Magento/CatalogSearch/Block/Result.php +++ b/app/code/Magento/CatalogSearch/Block/Result.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Block; diff --git a/app/code/Magento/CatalogSearch/Controller/Advanced/Index.php b/app/code/Magento/CatalogSearch/Controller/Advanced/Index.php index 699f8a3d079..92ebc7625a0 100644 --- a/app/code/Magento/CatalogSearch/Controller/Advanced/Index.php +++ b/app/code/Magento/CatalogSearch/Controller/Advanced/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Controller\Advanced; diff --git a/app/code/Magento/CatalogSearch/Controller/Advanced/Result.php b/app/code/Magento/CatalogSearch/Controller/Advanced/Result.php index 658b187e9f4..868969616d7 100644 --- a/app/code/Magento/CatalogSearch/Controller/Advanced/Result.php +++ b/app/code/Magento/CatalogSearch/Controller/Advanced/Result.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Controller\Advanced; diff --git a/app/code/Magento/CatalogSearch/Controller/Result/Index.php b/app/code/Magento/CatalogSearch/Controller/Result/Index.php index cfe5068c791..86ee2024287 100644 --- a/app/code/Magento/CatalogSearch/Controller/Result/Index.php +++ b/app/code/Magento/CatalogSearch/Controller/Result/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Controller\Result; diff --git a/app/code/Magento/CatalogSearch/Helper/Data.php b/app/code/Magento/CatalogSearch/Helper/Data.php index 944d1a863cd..c4fd6500a95 100644 --- a/app/code/Magento/CatalogSearch/Helper/Data.php +++ b/app/code/Magento/CatalogSearch/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Helper; diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/AggregationResolver.php b/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/AggregationResolver.php index c344828e7b9..d907017c9ff 100644 --- a/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/AggregationResolver.php +++ b/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/AggregationResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Adapter\Aggregation; diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Aggregation/DataProvider.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Aggregation/DataProvider.php index ddf86951068..0c8c26904d1 100644 --- a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Aggregation/DataProvider.php +++ b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Aggregation/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Adapter\Mysql\Aggregation; diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Dynamic/DataProvider.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Dynamic/DataProvider.php index e20221833c4..a82bc173253 100644 --- a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Dynamic/DataProvider.php +++ b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Dynamic/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Adapter\Mysql\Dynamic; diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Field/Resolver.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Field/Resolver.php index 6b5a72ecede..380a2966288 100644 --- a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Field/Resolver.php +++ b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Field/Resolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Adapter\Mysql\Field; diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/AliasResolver.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/AliasResolver.php index 7099ce2502b..8f5a231b1dd 100644 --- a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/AliasResolver.php +++ b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/AliasResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/Preprocessor.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/Preprocessor.php index fb579c1dce2..4873bf22e1b 100644 --- a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/Preprocessor.php +++ b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/Preprocessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Adapter\Mysql\Filter; diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Plugin/Aggregation/Category/DataProvider.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Plugin/Aggregation/Category/DataProvider.php index e6a6128cdc0..e61414dafe3 100644 --- a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Plugin/Aggregation/Category/DataProvider.php +++ b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Plugin/Aggregation/Category/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Adapter\Mysql\Plugin\Aggregation\Category; diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Options.php b/app/code/Magento/CatalogSearch/Model/Adapter/Options.php index 7716c1aa27d..b5ac04624b6 100644 --- a/app/code/Magento/CatalogSearch/Model/Adapter/Options.php +++ b/app/code/Magento/CatalogSearch/Model/Adapter/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Adapter; diff --git a/app/code/Magento/CatalogSearch/Model/Adminhtml/System/Config/Backend/Engine.php b/app/code/Magento/CatalogSearch/Model/Adminhtml/System/Config/Backend/Engine.php index b4a4e948547..21771c6f5d0 100644 --- a/app/code/Magento/CatalogSearch/Model/Adminhtml/System/Config/Backend/Engine.php +++ b/app/code/Magento/CatalogSearch/Model/Adminhtml/System/Config/Backend/Engine.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Adminhtml\System\Config\Backend; diff --git a/app/code/Magento/CatalogSearch/Model/Advanced.php b/app/code/Magento/CatalogSearch/Model/Advanced.php index f469820b3bb..2e9fa3d9d41 100644 --- a/app/code/Magento/CatalogSearch/Model/Advanced.php +++ b/app/code/Magento/CatalogSearch/Model/Advanced.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model; diff --git a/app/code/Magento/CatalogSearch/Model/Advanced/Request/Builder.php b/app/code/Magento/CatalogSearch/Model/Advanced/Request/Builder.php index f276d5f3faf..6ebaf6a662c 100644 --- a/app/code/Magento/CatalogSearch/Model/Advanced/Request/Builder.php +++ b/app/code/Magento/CatalogSearch/Model/Advanced/Request/Builder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Advanced\Request; diff --git a/app/code/Magento/CatalogSearch/Model/Autocomplete/DataProvider.php b/app/code/Magento/CatalogSearch/Model/Autocomplete/DataProvider.php index b131b188ed2..b45f55cdfb6 100644 --- a/app/code/Magento/CatalogSearch/Model/Autocomplete/DataProvider.php +++ b/app/code/Magento/CatalogSearch/Model/Autocomplete/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Fulltext.php b/app/code/Magento/CatalogSearch/Model/Fulltext.php index 199d43793ec..c56866c2f86 100644 --- a/app/code/Magento/CatalogSearch/Model/Fulltext.php +++ b/app/code/Magento/CatalogSearch/Model/Fulltext.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext.php index 337134c9453..fff770bc446 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProvider.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProvider.php index 5a5529cb22a..7decbdf62cd 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProvider.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer\Fulltext\Action; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/Full.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/Full.php index ad7882a0523..783507a0994 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/Full.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/Full.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer\Fulltext\Action; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/IndexIterator.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/IndexIterator.php index 742db1e7763..ef223a774cb 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/IndexIterator.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/IndexIterator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/AbstractPlugin.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/AbstractPlugin.php index 956f07206c2..260352c8ab1 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/AbstractPlugin.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/AbstractPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer\Fulltext\Plugin; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Attribute.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Attribute.php index e21f4a976af..66098891ea7 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Attribute.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer\Fulltext\Plugin; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Category.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Category.php index 293c237d785..13f2f885679 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Category.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product.php index 26e4336f53d..dab3e95d6ab 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product/Action.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product/Action.php index c144737606a..5014be50977 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product/Action.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer\Fulltext\Plugin\Product; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/Group.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/Group.php index ed431110e04..5191760278b 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/Group.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer\Fulltext\Plugin\Store; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/View.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/View.php index 5d57b71634d..6f2d55d189f 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/View.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer\Fulltext\Plugin\Store; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Processor.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Processor.php index 1392e9a4038..5a26ba8c3d3 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Processor.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer\Fulltext; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Store.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Store.php index e291a4aeeb5..20f3f614ac0 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Store.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer\Fulltext; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructure.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructure.php index d2d76bc71cc..92eff50cfc1 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructure.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureFactory.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureFactory.php index cd097c7c20d..197a7ebaa93 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureFactory.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureProxy.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureProxy.php index 320bffb1cc7..d5d567463fc 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureProxy.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureProxy.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherInterface.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherInterface.php index ba5fb461dde..dad0a1469de 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherInterface.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherProxy.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherProxy.php index 2ce093ed99e..2d7c13b762c 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherProxy.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherProxy.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandler.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandler.php index 2aa9a418bd7..5051b76a41d 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandler.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandlerFactory.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandlerFactory.php index 58be7fcb1bc..4f0af51a0f1 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandlerFactory.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandlerFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Mview/Action.php b/app/code/Magento/CatalogSearch/Model/Indexer/Mview/Action.php index 6d83c96c482..cb25307c95a 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Mview/Action.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Mview/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer\Mview; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/ProductFieldset.php b/app/code/Magento/CatalogSearch/Model/Indexer/ProductFieldset.php index 2cc9e8280d0..d85b87b3106 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/ProductFieldset.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/ProductFieldset.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexSwitcher.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexSwitcher.php index 87a7b7110d3..0f807b80554 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexSwitcher.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexSwitcher.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Indexer\Scope; diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexTableNotExistException.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexTableNotExistException.php index 6974f8c278a..cf13dd28fdf 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexTableNotExistException.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexTableNotExistException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/ScopeProxy.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/ScopeProxy.php index 14832af303b..fdc7284ecdf 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/ScopeProxy.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/ScopeProxy.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/State.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/State.php index 2bba29ae8d8..5d11fa18cba 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/State.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/TemporaryResolver.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/TemporaryResolver.php index 51037eb637c..9cea4647a6e 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/TemporaryResolver.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/TemporaryResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/UnknownStateException.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/UnknownStateException.php index 04803ef2748..3b1316ade79 100644 --- a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/UnknownStateException.php +++ b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/UnknownStateException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Category/ItemCollectionProvider.php b/app/code/Magento/CatalogSearch/Model/Layer/Category/ItemCollectionProvider.php index d156af384d3..12b45b78ac6 100644 --- a/app/code/Magento/CatalogSearch/Model/Layer/Category/ItemCollectionProvider.php +++ b/app/code/Magento/CatalogSearch/Model/Layer/Category/ItemCollectionProvider.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Layer\Category; diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Attribute.php b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Attribute.php index 8c46242abb1..d4a35920b82 100644 --- a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Attribute.php +++ b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Layer\Filter; diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Category.php b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Category.php index 500156b5476..e42b8f5b964 100644 --- a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Category.php +++ b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Layer\Filter; diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Decimal.php b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Decimal.php index 25b8900db8f..fdb16345690 100644 --- a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Decimal.php +++ b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Decimal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Layer\Filter; diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Price.php b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Price.php index 4bc02bfdbe1..396cd585020 100644 --- a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Price.php +++ b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Layer\Filter; diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Search/Plugin/CollectionFilter.php b/app/code/Magento/CatalogSearch/Model/Layer/Search/Plugin/CollectionFilter.php index bc509497361..3facf38de8e 100644 --- a/app/code/Magento/CatalogSearch/Model/Layer/Search/Plugin/CollectionFilter.php +++ b/app/code/Magento/CatalogSearch/Model/Layer/Search/Plugin/CollectionFilter.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Layer\Search\Plugin; diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Search/StateKey.php b/app/code/Magento/CatalogSearch/Model/Layer/Search/StateKey.php index 4e20dbe7e57..82cd0f9206f 100644 --- a/app/code/Magento/CatalogSearch/Model/Layer/Search/StateKey.php +++ b/app/code/Magento/CatalogSearch/Model/Layer/Search/StateKey.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Price/Interval.php b/app/code/Magento/CatalogSearch/Model/Price/Interval.php index 26f7a97311b..947198246e1 100644 --- a/app/code/Magento/CatalogSearch/Model/Price/Interval.php +++ b/app/code/Magento/CatalogSearch/Model/Price/Interval.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Price; diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced.php index 90219b94ac0..a3be6b64277 100644 --- a/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced.php +++ b/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\ResourceModel; diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced/Collection.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced/Collection.php index f63e06efc18..75f3cc4a196 100644 --- a/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced/Collection.php +++ b/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\ResourceModel\Advanced; diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Engine.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Engine.php index de5f9d9d550..01937b66e7d 100644 --- a/app/code/Magento/CatalogSearch/Model/ResourceModel/Engine.php +++ b/app/code/Magento/CatalogSearch/Model/ResourceModel/Engine.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\ResourceModel; diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineInterface.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineInterface.php index 8673bc8d748..5cff916672f 100644 --- a/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineInterface.php +++ b/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineProvider.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineProvider.php index ca4d629d992..c6938e0c03f 100644 --- a/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineProvider.php +++ b/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext.php index 6f0310015fa..f7dac9189bf 100644 --- a/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext.php +++ b/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\ResourceModel; diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext/Collection.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext/Collection.php index bc7568a4711..d478b2dcf94 100644 --- a/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext/Collection.php +++ b/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\ResourceModel\Fulltext; diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Search/Collection.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Search/Collection.php index 4be7bfa9092..c95deb1bf93 100644 --- a/app/code/Magento/CatalogSearch/Model/ResourceModel/Search/Collection.php +++ b/app/code/Magento/CatalogSearch/Model/ResourceModel/Search/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Search/Catalog.php b/app/code/Magento/CatalogSearch/Model/Search/Catalog.php index 932e78a5753..33263d32d29 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/Catalog.php +++ b/app/code/Magento/CatalogSearch/Model/Search/Catalog.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Search; diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/ExclusionStrategy.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/ExclusionStrategy.php index 8626b2ea15b..9575f6efe51 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/ExclusionStrategy.php +++ b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/ExclusionStrategy.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterContext.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterContext.php index d244e3d5f75..d8d3efc65e7 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterContext.php +++ b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterContext.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterStrategyInterface.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterStrategyInterface.php index cf17f7d5132..92b06154977 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterStrategyInterface.php +++ b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterStrategyInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/StaticAttributeStrategy.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/StaticAttributeStrategy.php index eb9d61b5a7f..bb4a18ce163 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/StaticAttributeStrategy.php +++ b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/StaticAttributeStrategy.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/TermDropdownStrategy.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/TermDropdownStrategy.php index 76828fe28f4..9dfe302abe8 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/TermDropdownStrategy.php +++ b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/TermDropdownStrategy.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Search/IndexBuilder.php b/app/code/Magento/CatalogSearch/Model/Search/IndexBuilder.php index 0e96e4de700..755424b6e71 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/IndexBuilder.php +++ b/app/code/Magento/CatalogSearch/Model/Search/IndexBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Search/ReaderPlugin.php b/app/code/Magento/CatalogSearch/Model/Search/ReaderPlugin.php index 307b34c008f..b95e5101aea 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/ReaderPlugin.php +++ b/app/code/Magento/CatalogSearch/Model/Search/ReaderPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Search; diff --git a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator.php b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator.php index 1dc33743d76..0ba8dad2910 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator.php +++ b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Search; diff --git a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/Decimal.php b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/Decimal.php index 52cab1c6ff9..b4a7be092e6 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/Decimal.php +++ b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/Decimal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/General.php b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/General.php index 96362ce484b..e35691cd525 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/General.php +++ b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/General.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorInterface.php b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorInterface.php index c43786db2b6..7f60554d41c 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorInterface.php +++ b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorResolver.php b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorResolver.php index 129a036ff25..1bf0a705f0d 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorResolver.php +++ b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Search/TableMapper.php b/app/code/Magento/CatalogSearch/Model/Search/TableMapper.php index ac726192856..d61bf7d4941 100644 --- a/app/code/Magento/CatalogSearch/Model/Search/TableMapper.php +++ b/app/code/Magento/CatalogSearch/Model/Search/TableMapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Model/Source/Weight.php b/app/code/Magento/CatalogSearch/Model/Source/Weight.php index 7a6465570fa..55da27b5a45 100644 --- a/app/code/Magento/CatalogSearch/Model/Source/Weight.php +++ b/app/code/Magento/CatalogSearch/Model/Source/Weight.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Model\Source; diff --git a/app/code/Magento/CatalogSearch/Setup/InstallData.php b/app/code/Magento/CatalogSearch/Setup/InstallData.php index 1cefd5d269e..a2d596fe60b 100644 --- a/app/code/Magento/CatalogSearch/Setup/InstallData.php +++ b/app/code/Magento/CatalogSearch/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Setup; diff --git a/app/code/Magento/CatalogSearch/Setup/InstallSchema.php b/app/code/Magento/CatalogSearch/Setup/InstallSchema.php index 20933fce33c..03f33f64cc4 100644 --- a/app/code/Magento/CatalogSearch/Setup/InstallSchema.php +++ b/app/code/Magento/CatalogSearch/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Block/Plugin/FrontTabPluginTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Block/Plugin/FrontTabPluginTest.php index e108def990b..03beb971865 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Block/Plugin/FrontTabPluginTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Block/Plugin/FrontTabPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Block\Plugin; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Block/ResultTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Block/ResultTest.php index 51163fdee98..2854e9a0260 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Block/ResultTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Block/ResultTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Block; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Controller/Advanced/ResultTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Controller/Advanced/ResultTest.php index c0f5c4db7f1..da065989c53 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Controller/Advanced/ResultTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Controller/Advanced/ResultTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Controller\Advanced; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Aggregation/AggregationResolverTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Aggregation/AggregationResolverTest.php index f18f9350ef3..6e32f94784d 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Aggregation/AggregationResolverTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Aggregation/AggregationResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Adapter\Aggregation; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/AliasResolverTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/AliasResolverTest.php index ab01d2553a3..7b6296b7376 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/AliasResolverTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/AliasResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/PreprocessorTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/PreprocessorTest.php index 2cd6935586b..72a3fdb7b4c 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/PreprocessorTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/PreprocessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/OptionsTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/OptionsTest.php index f1ee799d88e..db73a14e072 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/OptionsTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/OptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Adapter; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Advanced/Request/BuilderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Advanced/Request/BuilderTest.php index ac4df3095dd..dad6e17505c 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Advanced/Request/BuilderTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Advanced/Request/BuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Advanced\Request; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/AdvancedTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/AdvancedTest.php index afff7722fde..672af965200 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/AdvancedTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/AdvancedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Autocomplete/DataProviderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Autocomplete/DataProviderTest.php index 7c3e19535c1..8f033087464 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Autocomplete/DataProviderTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Autocomplete/DataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Autocomplete; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Action/FullTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Action/FullTest.php index 61df4890882..77dd4519164 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Action/FullTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Action/FullTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/AttributeTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/AttributeTest.php index 6375b659fc7..cc127f29a84 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/AttributeTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Indexer\Fulltext\Plugin; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/CategoryTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/CategoryTest.php index 3f77f4c15a5..550c9deb849 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/CategoryTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Product/ActionTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Product/ActionTest.php index f6767c3fc9d..7fa47e9fdbc 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Product/ActionTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Product/ActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Indexer\Fulltext\Plugin\Product; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/ProductTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/ProductTest.php index 649b332fbf8..2973909a561 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/ProductTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/GroupTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/GroupTest.php index 2fccfb7743d..5af9fe078e4 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/GroupTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/GroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Indexer\Fulltext\Plugin\Store; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/ViewTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/ViewTest.php index d5db837eaa2..0e9361934db 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/ViewTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Indexer\Fulltext\Plugin\Store; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/FulltextTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/FulltextTest.php index 6ef656d5668..5cfc5905bca 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/FulltextTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/FulltextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Indexer; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/IndexerHandlerFactoryTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/IndexerHandlerFactoryTest.php index 417eb63d08a..fb5b88fbe97 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/IndexerHandlerFactoryTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/IndexerHandlerFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Indexer; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Scope/IndexSwitcherTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Scope/IndexSwitcherTest.php index 31bec5906ae..b270cc23d06 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Scope/IndexSwitcherTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Scope/IndexSwitcherTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Indexer\Scope; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Catalog/ItemCollectionProviderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Catalog/ItemCollectionProviderTest.php index df4b4764a1b..209adfefd5b 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Catalog/ItemCollectionProviderTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Catalog/ItemCollectionProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/AttributeTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/AttributeTest.php index cff1ef0338d..05163ab2dd1 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/AttributeTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/CategoryTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/CategoryTest.php index 4f563e10f72..0375e6fab3f 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/CategoryTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/DecimalTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/DecimalTest.php index 6e07baee798..f5a1be6819b 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/DecimalTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/DecimalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/PriceTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/PriceTest.php index 13b4807c9cd..190515f550e 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/PriceTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Search/Plugin/CollectionFilterTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Search/Plugin/CollectionFilterTest.php index 6ba226c572d..c3a40e3f921 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Search/Plugin/CollectionFilterTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Search/Plugin/CollectionFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Layer\Search\Plugin; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Advanced/CollectionTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Advanced/CollectionTest.php index d44fef54683..8f16d25a3a1 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Advanced/CollectionTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Advanced/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\ResourceModel\Advanced; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/AdvancedTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/AdvancedTest.php index f9024d2c79d..dded4072f7c 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/AdvancedTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/AdvancedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/BaseCollectionTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/BaseCollectionTest.php index 55cb49fd97a..12226c3f445 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/BaseCollectionTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/BaseCollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/EngineTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/EngineTest.php index 8fcd20160ed..ba1dd0b4da4 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/EngineTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/EngineTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Fulltext/CollectionTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Fulltext/CollectionTest.php index 5732ed2c8ae..9fe9eec3487 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Fulltext/CollectionTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Fulltext/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\ResourceModel\Fulltext; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/FulltextTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/FulltextTest.php index ce0c7f20768..c1774656605 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/FulltextTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/FulltextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/FilterContextTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/FilterContextTest.php index 9f133b76388..1e42d6ac226 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/FilterContextTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/FilterContextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/IndexBuilderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/IndexBuilderTest.php index 8b98ab9c4cc..6cee192c451 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/IndexBuilderTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/IndexBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/Indexer/IndexStructureTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/Indexer/IndexStructureTest.php index 8f4bb7736cd..ce9afa84126 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/Indexer/IndexStructureTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/Indexer/IndexStructureTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/ReaderPluginTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/ReaderPluginTest.php index afae3ccb4f4..63d677a92f4 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/ReaderPluginTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/ReaderPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Search; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/DecimalTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/DecimalTest.php index 67a991f5185..6807bfa87d4 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/DecimalTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/DecimalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneralTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneralTest.php index d40829e6e53..cf4f7f1401c 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneralTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneralTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneratorResolverTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneratorResolverTest.php index 0b8bf882b85..93c6e81aece 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneratorResolverTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneratorResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGeneratorTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGeneratorTest.php index ca56dd83444..1f1ccba8f14 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGeneratorTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogSearch\Test\Unit\Model\Search; diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/TableMapperTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/TableMapperTest.php index dad4ad8095f..f4dfb61b6a6 100644 --- a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/TableMapperTest.php +++ b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/TableMapperTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/etc/adminhtml/di.xml b/app/code/Magento/CatalogSearch/etc/adminhtml/di.xml index 196602d2eb3..1f87e8de6eb 100644 --- a/app/code/Magento/CatalogSearch/etc/adminhtml/di.xml +++ b/app/code/Magento/CatalogSearch/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/etc/adminhtml/system.xml b/app/code/Magento/CatalogSearch/etc/adminhtml/system.xml index 2402e81ba49..ab0ddab0a7c 100644 --- a/app/code/Magento/CatalogSearch/etc/adminhtml/system.xml +++ b/app/code/Magento/CatalogSearch/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/etc/catalog_attributes.xml b/app/code/Magento/CatalogSearch/etc/catalog_attributes.xml index 1ff65f256b2..c13caa8bbf2 100644 --- a/app/code/Magento/CatalogSearch/etc/catalog_attributes.xml +++ b/app/code/Magento/CatalogSearch/etc/catalog_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/etc/config.xml b/app/code/Magento/CatalogSearch/etc/config.xml index f922751096c..d9f709f501f 100644 --- a/app/code/Magento/CatalogSearch/etc/config.xml +++ b/app/code/Magento/CatalogSearch/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/etc/di.xml b/app/code/Magento/CatalogSearch/etc/di.xml index 7116abf263b..dc104cc7816 100644 --- a/app/code/Magento/CatalogSearch/etc/di.xml +++ b/app/code/Magento/CatalogSearch/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/etc/events.xml b/app/code/Magento/CatalogSearch/etc/events.xml index 45f6ea3159c..68d32ad26fb 100644 --- a/app/code/Magento/CatalogSearch/etc/events.xml +++ b/app/code/Magento/CatalogSearch/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/etc/frontend/di.xml b/app/code/Magento/CatalogSearch/etc/frontend/di.xml index a998918421a..69e8823e7bd 100644 --- a/app/code/Magento/CatalogSearch/etc/frontend/di.xml +++ b/app/code/Magento/CatalogSearch/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/etc/frontend/page_types.xml b/app/code/Magento/CatalogSearch/etc/frontend/page_types.xml index 28a45d33805..7f05e212df8 100644 --- a/app/code/Magento/CatalogSearch/etc/frontend/page_types.xml +++ b/app/code/Magento/CatalogSearch/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/etc/frontend/routes.xml b/app/code/Magento/CatalogSearch/etc/frontend/routes.xml index 6ae08215deb..e0bcffc439c 100644 --- a/app/code/Magento/CatalogSearch/etc/frontend/routes.xml +++ b/app/code/Magento/CatalogSearch/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_CatalogSearch" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/CatalogSearch/etc/indexer.xml b/app/code/Magento/CatalogSearch/etc/indexer.xml index 3cb19891b83..796db4aecc1 100644 --- a/app/code/Magento/CatalogSearch/etc/indexer.xml +++ b/app/code/Magento/CatalogSearch/etc/indexer.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/etc/module.xml b/app/code/Magento/CatalogSearch/etc/module.xml index 2296175b788..53ee3fca13a 100644 --- a/app/code/Magento/CatalogSearch/etc/module.xml +++ b/app/code/Magento/CatalogSearch/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/etc/mview.xml b/app/code/Magento/CatalogSearch/etc/mview.xml index e064650d59b..ef5d6b453aa 100644 --- a/app/code/Magento/CatalogSearch/etc/mview.xml +++ b/app/code/Magento/CatalogSearch/etc/mview.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/etc/search_request.xml b/app/code/Magento/CatalogSearch/etc/search_request.xml index ccb0328b22a..84817ab37f3 100644 --- a/app/code/Magento/CatalogSearch/etc/search_request.xml +++ b/app/code/Magento/CatalogSearch/etc/search_request.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/registration.php b/app/code/Magento/CatalogSearch/registration.php index 2f482e73ce3..357bda46292 100644 --- a/app/code/Magento/CatalogSearch/registration.php +++ b/app/code/Magento/CatalogSearch/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/view/adminhtml/ui_component/product_attribute_add_form.xml b/app/code/Magento/CatalogSearch/view/adminhtml/ui_component/product_attribute_add_form.xml index 04201a4dd5c..d6b42b97a02 100644 --- a/app/code/Magento/CatalogSearch/view/adminhtml/ui_component/product_attribute_add_form.xml +++ b/app/code/Magento/CatalogSearch/view/adminhtml/ui_component/product_attribute_add_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_index.xml b/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_index.xml index a64c7388794..337ec41d8f9 100644 --- a/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_index.xml +++ b/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_result.xml b/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_result.xml index 09e583f2f10..56f652ec31a 100644 --- a/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_result.xml +++ b/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_result.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_result_index.xml b/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_result_index.xml index 7f8e28626e5..fe4feb0bfaf 100644 --- a/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_result_index.xml +++ b/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_result_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/view/frontend/layout/default.xml b/app/code/Magento/CatalogSearch/view/frontend/layout/default.xml index 930750c297a..566910b76d4 100644 --- a/app/code/Magento/CatalogSearch/view/frontend/layout/default.xml +++ b/app/code/Magento/CatalogSearch/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogSearch/view/frontend/requirejs-config.js b/app/code/Magento/CatalogSearch/view/frontend/requirejs-config.js index 57e2a7a9301..c2a3e552a72 100644 --- a/app/code/Magento/CatalogSearch/view/frontend/requirejs-config.js +++ b/app/code/Magento/CatalogSearch/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { catalogSearch: 'Magento_CatalogSearch/form-mini' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/form.phtml b/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/form.phtml index 988b6976986..ffa83a8717b 100644 --- a/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/form.phtml +++ b/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/link.phtml b/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/link.phtml index d532c671698..6b55ad7bde3 100644 --- a/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/link.phtml +++ b/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/link.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/result.phtml b/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/result.phtml index 3238f68401f..ac54efc76f4 100644 --- a/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/result.phtml +++ b/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/result.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogSearch/view/frontend/templates/result.phtml b/app/code/Magento/CatalogSearch/view/frontend/templates/result.phtml index fe56641a37c..e102b0b82c1 100644 --- a/app/code/Magento/CatalogSearch/view/frontend/templates/result.phtml +++ b/app/code/Magento/CatalogSearch/view/frontend/templates/result.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogUrlRewrite/Block/UrlKeyRenderer.php b/app/code/Magento/CatalogUrlRewrite/Block/UrlKeyRenderer.php index 13f4fcd8161..c7ac67eb424 100644 --- a/app/code/Magento/CatalogUrlRewrite/Block/UrlKeyRenderer.php +++ b/app/code/Magento/CatalogUrlRewrite/Block/UrlKeyRenderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Block; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/CanonicalUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/CanonicalUrlRewriteGenerator.php index 7ef134ac024..1472c4a361e 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Category/CanonicalUrlRewriteGenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Category/CanonicalUrlRewriteGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenCategoriesProvider.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenCategoriesProvider.php index 32e49d56c55..2d7b7d96a3b 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenCategoriesProvider.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenCategoriesProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenUrlRewriteGenerator.php index d99a7af6408..349a4772633 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenUrlRewriteGenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenUrlRewriteGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/CurrentUrlRewritesRegenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/CurrentUrlRewritesRegenerator.php index 1bd4372d54e..d4581744bcb 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Category/CurrentUrlRewritesRegenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Category/CurrentUrlRewritesRegenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Move.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Move.php index 4175a7ddb4e..eb0f2c8c302 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Move.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Move.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Category\Plugin\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Remove.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Remove.php index 91bf053304c..e44aa9e0fab 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Remove.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Remove.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Category\Plugin\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Storage.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Storage.php index 740c3276269..709baf9e730 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Storage.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Storage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Category\Plugin; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/Group.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/Group.php index 1b18385d4a6..b3feb4bfd9c 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/Group.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Category\Plugin\Store; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/View.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/View.php index 01ef3e4ff8b..cf77c300d38 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/View.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Category\Plugin\Store; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Product.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Product.php index 9aed73e13d5..73ba70f2fa2 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Category/Product.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Category/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/CategoryBasedProductRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/CategoryBasedProductRewriteGenerator.php index 58025ad03f0..bc09d90d461 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/CategoryBasedProductRewriteGenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/CategoryBasedProductRewriteGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlPathGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlPathGenerator.php index ba0471d9c11..65f086dfd0c 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlPathGenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlPathGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlRewriteGenerator.php index 166785b01c0..5748b69ea3c 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlRewriteGenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlRewriteGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ObjectRegistry.php b/app/code/Magento/CatalogUrlRewrite/Model/ObjectRegistry.php index 838862adaeb..4bc2f910505 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/ObjectRegistry.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/ObjectRegistry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Product/AnchorUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Product/AnchorUrlRewriteGenerator.php index 972b5c00ba4..a647f88465f 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Product/AnchorUrlRewriteGenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Product/AnchorUrlRewriteGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Product; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Product/CanonicalUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Product/CanonicalUrlRewriteGenerator.php index c901b7bac80..372bc4564d6 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Product/CanonicalUrlRewriteGenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Product/CanonicalUrlRewriteGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Product; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Product/CategoriesUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Product/CategoriesUrlRewriteGenerator.php index 728ac7e05bd..7f77683fe65 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Product/CategoriesUrlRewriteGenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Product/CategoriesUrlRewriteGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Product; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Product/CurrentUrlRewritesRegenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Product/CurrentUrlRewritesRegenerator.php index 089c6c5f2c1..5f1f01f7b08 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Product/CurrentUrlRewritesRegenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Product/CurrentUrlRewritesRegenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Product; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ProductScopeRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/ProductScopeRewriteGenerator.php index 94464ec05d8..5383709ade6 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/ProductScopeRewriteGenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/ProductScopeRewriteGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlPathGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlPathGenerator.php index 20f6922e0f8..bbf5d2b93c9 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlPathGenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlPathGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlRewriteGenerator.php index f8f8991f95a..0ff48774054 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlRewriteGenerator.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlRewriteGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/Product.php b/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/Product.php index 189d5217b40..f2043d305c4 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/Product.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\ResourceModel\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/ProductCollection.php b/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/ProductCollection.php index 3342272fb79..66b74ad89f8 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/ProductCollection.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/ProductCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\ResourceModel\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Storage/DbStorage.php b/app/code/Magento/CatalogUrlRewrite/Model/Storage/DbStorage.php index d8dbc1842e5..bfc77261d15 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/Storage/DbStorage.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/Storage/DbStorage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model\Storage; diff --git a/app/code/Magento/CatalogUrlRewrite/Model/UrlRewriteBunchReplacer.php b/app/code/Magento/CatalogUrlRewrite/Model/UrlRewriteBunchReplacer.php index eb799dfe599..bfee6b6bb8e 100644 --- a/app/code/Magento/CatalogUrlRewrite/Model/UrlRewriteBunchReplacer.php +++ b/app/code/Magento/CatalogUrlRewrite/Model/UrlRewriteBunchReplacer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/AfterImportDataObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/AfterImportDataObserver.php index a1a9a4e9fcc..a4847fa11b1 100644 --- a/app/code/Magento/CatalogUrlRewrite/Observer/AfterImportDataObserver.php +++ b/app/code/Magento/CatalogUrlRewrite/Observer/AfterImportDataObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteMovingObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteMovingObserver.php index 24126015e3b..4c4d59c7617 100644 --- a/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteMovingObserver.php +++ b/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteMovingObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteSavingObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteSavingObserver.php index fe86bc363b4..5a4946d5052 100644 --- a/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteSavingObserver.php +++ b/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteSavingObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/CategorySaveRewritesHistorySetterObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/CategorySaveRewritesHistorySetterObserver.php index 43b90dc53c9..8d6c611bf01 100644 --- a/app/code/Magento/CatalogUrlRewrite/Observer/CategorySaveRewritesHistorySetterObserver.php +++ b/app/code/Magento/CatalogUrlRewrite/Observer/CategorySaveRewritesHistorySetterObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/CategoryUrlPathAutogeneratorObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/CategoryUrlPathAutogeneratorObserver.php index cb30f7abc71..50979ccad17 100644 --- a/app/code/Magento/CatalogUrlRewrite/Observer/CategoryUrlPathAutogeneratorObserver.php +++ b/app/code/Magento/CatalogUrlRewrite/Observer/CategoryUrlPathAutogeneratorObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/ClearProductUrlsObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/ClearProductUrlsObserver.php index 6158c08bebe..b4dc25c1ff7 100644 --- a/app/code/Magento/CatalogUrlRewrite/Observer/ClearProductUrlsObserver.php +++ b/app/code/Magento/CatalogUrlRewrite/Observer/ClearProductUrlsObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteRemovingObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteRemovingObserver.php index a309aa1e12e..4f9d38a15a0 100644 --- a/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteRemovingObserver.php +++ b/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteRemovingObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteSavingObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteSavingObserver.php index eb3a76e57c8..ec20b04788e 100644 --- a/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteSavingObserver.php +++ b/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteSavingObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/ProductToWebsiteChangeObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/ProductToWebsiteChangeObserver.php index b5fa52a7b0f..cdec27a45a4 100644 --- a/app/code/Magento/CatalogUrlRewrite/Observer/ProductToWebsiteChangeObserver.php +++ b/app/code/Magento/CatalogUrlRewrite/Observer/ProductToWebsiteChangeObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/ProductUrlKeyAutogeneratorObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/ProductUrlKeyAutogeneratorObserver.php index 3b656e0a1bd..f8e6b79dd39 100644 --- a/app/code/Magento/CatalogUrlRewrite/Observer/ProductUrlKeyAutogeneratorObserver.php +++ b/app/code/Magento/CatalogUrlRewrite/Observer/ProductUrlKeyAutogeneratorObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/UrlRewriteHandler.php b/app/code/Magento/CatalogUrlRewrite/Observer/UrlRewriteHandler.php index ff914dc1adb..ff3ca37f2e2 100644 --- a/app/code/Magento/CatalogUrlRewrite/Observer/UrlRewriteHandler.php +++ b/app/code/Magento/CatalogUrlRewrite/Observer/UrlRewriteHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Category/Tab/Attributes.php b/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Category/Tab/Attributes.php index 0a90ac7d4fb..cae6b07db6c 100644 --- a/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Category/Tab/Attributes.php +++ b/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Category/Tab/Attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Plugin\Catalog\Block\Adminhtml\Category\Tab; diff --git a/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php b/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php index 8aee01c765b..57a368d4b3d 100644 --- a/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php +++ b/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Plugin\Catalog\Block\Adminhtml\Product\Edit\Tab; diff --git a/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php b/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php index 566059d5365..0b4899307df 100644 --- a/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php +++ b/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Plugin\Catalog\Controller\Adminhtml\Product\Initialization; diff --git a/app/code/Magento/CatalogUrlRewrite/Service/V1/StoreViewService.php b/app/code/Magento/CatalogUrlRewrite/Service/V1/StoreViewService.php index 6988a9d8261..19b700e4f7a 100644 --- a/app/code/Magento/CatalogUrlRewrite/Service/V1/StoreViewService.php +++ b/app/code/Magento/CatalogUrlRewrite/Service/V1/StoreViewService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Service\V1; diff --git a/app/code/Magento/CatalogUrlRewrite/Setup/InstallData.php b/app/code/Magento/CatalogUrlRewrite/Setup/InstallData.php index 5867da90a1e..9bdd0055252 100644 --- a/app/code/Magento/CatalogUrlRewrite/Setup/InstallData.php +++ b/app/code/Magento/CatalogUrlRewrite/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogUrlRewrite/Setup/InstallSchema.php b/app/code/Magento/CatalogUrlRewrite/Setup/InstallSchema.php index eb7fc94d185..07130d5956d 100644 --- a/app/code/Magento/CatalogUrlRewrite/Setup/InstallSchema.php +++ b/app/code/Magento/CatalogUrlRewrite/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogUrlRewrite/Setup/Recurring.php b/app/code/Magento/CatalogUrlRewrite/Setup/Recurring.php index 6c01d8c75dd..e00d4601507 100644 --- a/app/code/Magento/CatalogUrlRewrite/Setup/Recurring.php +++ b/app/code/Magento/CatalogUrlRewrite/Setup/Recurring.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Setup; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CanonicalUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CanonicalUrlRewriteGeneratorTest.php index 0633ccb4355..483f0ecbd11 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CanonicalUrlRewriteGeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CanonicalUrlRewriteGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // @codingStandardsIgnoreFile diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenCategoriesProviderTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenCategoriesProviderTest.php index 3d649d600b6..18b06fb72bd 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenCategoriesProviderTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenCategoriesProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenUrlRewriteGeneratorTest.php index 1c0eb6a9e28..2766bf63073 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenUrlRewriteGeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenUrlRewriteGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CurrentUrlRewritesRegeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CurrentUrlRewritesRegeneratorTest.php index e786f970aac..2f9a9463646 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CurrentUrlRewritesRegeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CurrentUrlRewritesRegeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // @codingStandardsIgnoreFile diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/MoveTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/MoveTest.php index 7fe042232b8..8fd1f084ce0 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/MoveTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/MoveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model\Category\Plugin\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/RemoveTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/RemoveTest.php index 520975871bf..75b0509e024 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/RemoveTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/RemoveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model\Category\Plugin\Category; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/StorageTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/StorageTest.php index 21ab961dcbd..aad5e9ffec8 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/StorageTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/StorageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model\Category\Plugin; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/GroupTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/GroupTest.php index dc69597ef6d..1720f933e93 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/GroupTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/GroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model\Category\Plugin\Store; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/ViewTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/ViewTest.php index ac2e42ebea7..7159cbdf947 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/ViewTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model\Category\Plugin\Store; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryBasedProductRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryBasedProductRewriteGeneratorTest.php index c62475f3cc7..035112a5929 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryBasedProductRewriteGeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryBasedProductRewriteGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlPathGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlPathGeneratorTest.php index ae7a18ab452..d5abe69ff79 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlPathGeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlPathGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlRewriteGeneratorTest.php index dca265754b5..c2905eb9b42 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlRewriteGeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlRewriteGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ObjectRegistryTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ObjectRegistryTest.php index 5976c97b432..d1740144916 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ObjectRegistryTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ObjectRegistryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CanonicalUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CanonicalUrlRewriteGeneratorTest.php index 096391df3cf..f90687798fd 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CanonicalUrlRewriteGeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CanonicalUrlRewriteGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model\Product; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CategoriesUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CategoriesUrlRewriteGeneratorTest.php index d3399afed58..c801ff4827f 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CategoriesUrlRewriteGeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CategoriesUrlRewriteGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model\Product; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CurrentUrlRewritesRegeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CurrentUrlRewritesRegeneratorTest.php index a633bb07255..28aee3c7c39 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CurrentUrlRewritesRegeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CurrentUrlRewritesRegeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model\Product; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductScopeRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductScopeRewriteGeneratorTest.php index 99bb858e31b..0e6c501c498 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductScopeRewriteGeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductScopeRewriteGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlPathGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlPathGeneratorTest.php index 5ca6e76e5e9..4e1ab713c47 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlPathGeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlPathGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlRewriteGeneratorTest.php index d88171b90bb..a392b5231b2 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlRewriteGeneratorTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlRewriteGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/UrlRewriteBunchReplacerTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/UrlRewriteBunchReplacerTest.php index 7a44cc5d6f9..6ea11fdbff9 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/UrlRewriteBunchReplacerTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/UrlRewriteBunchReplacerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Model; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/_files/categoryUrlRewritesDataProvider.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/_files/categoryUrlRewritesDataProvider.php index f9b31d0ee60..e50a69c6f03 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/_files/categoryUrlRewritesDataProvider.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/_files/categoryUrlRewritesDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/AfterImportDataObserverTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/AfterImportDataObserverTest.php index 948ef99544b..eb9977fa1f6 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/AfterImportDataObserverTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/AfterImportDataObserverTest.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/CategoryUrlPathAutogeneratorObserverTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/CategoryUrlPathAutogeneratorObserverTest.php index 68cc994dbc7..2c77f5c8ee2 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/CategoryUrlPathAutogeneratorObserverTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/CategoryUrlPathAutogeneratorObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Observer; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ClearProductUrlsObserverTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ClearProductUrlsObserverTest.php index b636f0f3702..acefba0ba62 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ClearProductUrlsObserverTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ClearProductUrlsObserverTest.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ProductProcessUrlRewriteSavingObserverTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ProductProcessUrlRewriteSavingObserverTest.php index ac3ca2b2fce..339ac024cbe 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ProductProcessUrlRewriteSavingObserverTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ProductProcessUrlRewriteSavingObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Service/V1/StoreViewServiceTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Service/V1/StoreViewServiceTest.php index 3c9ec1de3a6..cc20d2d2f29 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Service/V1/StoreViewServiceTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Service/V1/StoreViewServiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Service\V1; diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewriteTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewriteTest.php index a223c03104f..5e3abf5ad1c 100644 --- a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewriteTest.php +++ b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewriteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/CatalogUrlRewrite/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewrite.php b/app/code/Magento/CatalogUrlRewrite/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewrite.php index 66450163cb4..0db1d740fb5 100644 --- a/app/code/Magento/CatalogUrlRewrite/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewrite.php +++ b/app/code/Magento/CatalogUrlRewrite/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewrite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogUrlRewrite\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/di.xml b/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/di.xml index ab854024fcd..d4c1a088215 100644 --- a/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/di.xml +++ b/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/events.xml b/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/events.xml index 3f5eecc9eb7..a977b24d7c6 100644 --- a/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/events.xml +++ b/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/system.xml b/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/system.xml index d8cf69dd850..8b5a72b18ff 100644 --- a/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/system.xml +++ b/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogUrlRewrite/etc/catalog_attributes.xml b/app/code/Magento/CatalogUrlRewrite/etc/catalog_attributes.xml index 06087fd701e..5d2dbcb0d90 100644 --- a/app/code/Magento/CatalogUrlRewrite/etc/catalog_attributes.xml +++ b/app/code/Magento/CatalogUrlRewrite/etc/catalog_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogUrlRewrite/etc/di.xml b/app/code/Magento/CatalogUrlRewrite/etc/di.xml index 9ea21bce365..5a8974fc52d 100644 --- a/app/code/Magento/CatalogUrlRewrite/etc/di.xml +++ b/app/code/Magento/CatalogUrlRewrite/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogUrlRewrite/etc/eav_attributes.xml b/app/code/Magento/CatalogUrlRewrite/etc/eav_attributes.xml index 31f1d6424ff..aaedd2e5bb1 100644 --- a/app/code/Magento/CatalogUrlRewrite/etc/eav_attributes.xml +++ b/app/code/Magento/CatalogUrlRewrite/etc/eav_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogUrlRewrite/etc/events.xml b/app/code/Magento/CatalogUrlRewrite/etc/events.xml index 02c67bb500b..60c8d1045d8 100644 --- a/app/code/Magento/CatalogUrlRewrite/etc/events.xml +++ b/app/code/Magento/CatalogUrlRewrite/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogUrlRewrite/etc/module.xml b/app/code/Magento/CatalogUrlRewrite/etc/module.xml index 2082a0c4262..d2bfee12a6e 100644 --- a/app/code/Magento/CatalogUrlRewrite/etc/module.xml +++ b/app/code/Magento/CatalogUrlRewrite/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogUrlRewrite/registration.php b/app/code/Magento/CatalogUrlRewrite/registration.php index cbc5df17eb1..8dc5ed7f29d 100644 --- a/app/code/Magento/CatalogUrlRewrite/registration.php +++ b/app/code/Magento/CatalogUrlRewrite/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogUrlRewrite/view/adminhtml/ui_component/category_form.xml b/app/code/Magento/CatalogUrlRewrite/view/adminhtml/ui_component/category_form.xml index 16c22d5a1eb..a6ec1c50d1c 100644 --- a/app/code/Magento/CatalogUrlRewrite/view/adminhtml/ui_component/category_form.xml +++ b/app/code/Magento/CatalogUrlRewrite/view/adminhtml/ui_component/category_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogWidget/Block/Product/ProductsList.php b/app/code/Magento/CatalogWidget/Block/Product/ProductsList.php index 0f665984b0e..d9ea8196ab9 100644 --- a/app/code/Magento/CatalogWidget/Block/Product/ProductsList.php +++ b/app/code/Magento/CatalogWidget/Block/Product/ProductsList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogWidget/Block/Product/Widget/Conditions.php b/app/code/Magento/CatalogWidget/Block/Product/Widget/Conditions.php index 9a407b11846..641c7956625 100644 --- a/app/code/Magento/CatalogWidget/Block/Product/Widget/Conditions.php +++ b/app/code/Magento/CatalogWidget/Block/Product/Widget/Conditions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget.php b/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget.php index 0c398557912..226f488cfe2 100644 --- a/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget.php +++ b/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogWidget\Controller\Adminhtml\Product; diff --git a/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget/Conditions.php b/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget/Conditions.php index 9f773ab6177..97e56ef6912 100644 --- a/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget/Conditions.php +++ b/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget/Conditions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogWidget\Controller\Adminhtml\Product\Widget; diff --git a/app/code/Magento/CatalogWidget/Model/Rule.php b/app/code/Magento/CatalogWidget/Model/Rule.php index 06bc8cba74d..0871630721a 100644 --- a/app/code/Magento/CatalogWidget/Model/Rule.php +++ b/app/code/Magento/CatalogWidget/Model/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogWidget\Model; diff --git a/app/code/Magento/CatalogWidget/Model/Rule/Condition/Combine.php b/app/code/Magento/CatalogWidget/Model/Rule/Condition/Combine.php index e40aae5d189..2b1767e1803 100644 --- a/app/code/Magento/CatalogWidget/Model/Rule/Condition/Combine.php +++ b/app/code/Magento/CatalogWidget/Model/Rule/Condition/Combine.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogWidget/Model/Rule/Condition/Product.php b/app/code/Magento/CatalogWidget/Model/Rule/Condition/Product.php index 7d41741135b..9386d85385c 100644 --- a/app/code/Magento/CatalogWidget/Model/Rule/Condition/Product.php +++ b/app/code/Magento/CatalogWidget/Model/Rule/Condition/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/ProductsListTest.php b/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/ProductsListTest.php index c2410cea1d9..9089a0bfa84 100644 --- a/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/ProductsListTest.php +++ b/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/ProductsListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/Widget/ConditionsTest.php b/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/Widget/ConditionsTest.php index b825e92bab1..680148d6c87 100644 --- a/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/Widget/ConditionsTest.php +++ b/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/Widget/ConditionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogWidget\Test\Unit\Block\Product\Widget; diff --git a/app/code/Magento/CatalogWidget/Test/Unit/Controller/Adminhtml/Product/Widget/ConditionsTest.php b/app/code/Magento/CatalogWidget/Test/Unit/Controller/Adminhtml/Product/Widget/ConditionsTest.php index 958a80272d7..b8bd62b0f88 100644 --- a/app/code/Magento/CatalogWidget/Test/Unit/Controller/Adminhtml/Product/Widget/ConditionsTest.php +++ b/app/code/Magento/CatalogWidget/Test/Unit/Controller/Adminhtml/Product/Widget/ConditionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogWidget/Test/Unit/Model/Rule/Condition/CombineTest.php b/app/code/Magento/CatalogWidget/Test/Unit/Model/Rule/Condition/CombineTest.php index dd42ee1c7c9..fade01467a8 100644 --- a/app/code/Magento/CatalogWidget/Test/Unit/Model/Rule/Condition/CombineTest.php +++ b/app/code/Magento/CatalogWidget/Test/Unit/Model/Rule/Condition/CombineTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogWidget/Test/Unit/Model/RuleTest.php b/app/code/Magento/CatalogWidget/Test/Unit/Model/RuleTest.php index a6468cc77a4..f4a91bef9d6 100644 --- a/app/code/Magento/CatalogWidget/Test/Unit/Model/RuleTest.php +++ b/app/code/Magento/CatalogWidget/Test/Unit/Model/RuleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogWidget\Test\Unit\Model; diff --git a/app/code/Magento/CatalogWidget/etc/adminhtml/routes.xml b/app/code/Magento/CatalogWidget/etc/adminhtml/routes.xml index 89629e5de61..fe0cdee01d1 100644 --- a/app/code/Magento/CatalogWidget/etc/adminhtml/routes.xml +++ b/app/code/Magento/CatalogWidget/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogWidget/etc/di.xml b/app/code/Magento/CatalogWidget/etc/di.xml index 625bcf58c5c..dbf2833ee88 100644 --- a/app/code/Magento/CatalogWidget/etc/di.xml +++ b/app/code/Magento/CatalogWidget/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogWidget/etc/module.xml b/app/code/Magento/CatalogWidget/etc/module.xml index d091335c5d2..a335a9a3d4a 100644 --- a/app/code/Magento/CatalogWidget/etc/module.xml +++ b/app/code/Magento/CatalogWidget/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogWidget/etc/widget.xml b/app/code/Magento/CatalogWidget/etc/widget.xml index 50f152ee86b..c08d3e4da9c 100644 --- a/app/code/Magento/CatalogWidget/etc/widget.xml +++ b/app/code/Magento/CatalogWidget/etc/widget.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CatalogWidget/registration.php b/app/code/Magento/CatalogWidget/registration.php index d4c87863956..5a08e70aab0 100644 --- a/app/code/Magento/CatalogWidget/registration.php +++ b/app/code/Magento/CatalogWidget/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogWidget/view/adminhtml/templates/product/widget/conditions.phtml b/app/code/Magento/CatalogWidget/view/adminhtml/templates/product/widget/conditions.phtml index f5f2b898a97..eaf050f106e 100644 --- a/app/code/Magento/CatalogWidget/view/adminhtml/templates/product/widget/conditions.phtml +++ b/app/code/Magento/CatalogWidget/view/adminhtml/templates/product/widget/conditions.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CatalogWidget/view/frontend/templates/product/widget/content/grid.phtml b/app/code/Magento/CatalogWidget/view/frontend/templates/product/widget/content/grid.phtml index 212846aaa01..51943355e8e 100644 --- a/app/code/Magento/CatalogWidget/view/frontend/templates/product/widget/content/grid.phtml +++ b/app/code/Magento/CatalogWidget/view/frontend/templates/product/widget/content/grid.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Api/AgreementsValidatorInterface.php b/app/code/Magento/Checkout/Api/AgreementsValidatorInterface.php index c883907687b..ea38b2b1389 100644 --- a/app/code/Magento/Checkout/Api/AgreementsValidatorInterface.php +++ b/app/code/Magento/Checkout/Api/AgreementsValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Api; diff --git a/app/code/Magento/Checkout/Api/Data/PaymentDetailsInterface.php b/app/code/Magento/Checkout/Api/Data/PaymentDetailsInterface.php index 30ef40913fb..dfa1aa76e18 100644 --- a/app/code/Magento/Checkout/Api/Data/PaymentDetailsInterface.php +++ b/app/code/Magento/Checkout/Api/Data/PaymentDetailsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Api\Data; diff --git a/app/code/Magento/Checkout/Api/Data/ShippingInformationInterface.php b/app/code/Magento/Checkout/Api/Data/ShippingInformationInterface.php index 5399d9db103..f119b9bac4b 100644 --- a/app/code/Magento/Checkout/Api/Data/ShippingInformationInterface.php +++ b/app/code/Magento/Checkout/Api/Data/ShippingInformationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Api\Data; diff --git a/app/code/Magento/Checkout/Api/Data/TotalsInformationInterface.php b/app/code/Magento/Checkout/Api/Data/TotalsInformationInterface.php index 1d724e3f801..e03e4dc7df6 100644 --- a/app/code/Magento/Checkout/Api/Data/TotalsInformationInterface.php +++ b/app/code/Magento/Checkout/Api/Data/TotalsInformationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Api\Data; diff --git a/app/code/Magento/Checkout/Api/GuestPaymentInformationManagementInterface.php b/app/code/Magento/Checkout/Api/GuestPaymentInformationManagementInterface.php index aea0f713414..3663e4b8eca 100644 --- a/app/code/Magento/Checkout/Api/GuestPaymentInformationManagementInterface.php +++ b/app/code/Magento/Checkout/Api/GuestPaymentInformationManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Api; diff --git a/app/code/Magento/Checkout/Api/GuestShippingInformationManagementInterface.php b/app/code/Magento/Checkout/Api/GuestShippingInformationManagementInterface.php index 1d066c877b4..d433faf7623 100644 --- a/app/code/Magento/Checkout/Api/GuestShippingInformationManagementInterface.php +++ b/app/code/Magento/Checkout/Api/GuestShippingInformationManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Api; diff --git a/app/code/Magento/Checkout/Api/GuestTotalsInformationManagementInterface.php b/app/code/Magento/Checkout/Api/GuestTotalsInformationManagementInterface.php index 4414cd0a2e5..0a4ef0e3298 100644 --- a/app/code/Magento/Checkout/Api/GuestTotalsInformationManagementInterface.php +++ b/app/code/Magento/Checkout/Api/GuestTotalsInformationManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Api; diff --git a/app/code/Magento/Checkout/Api/PaymentInformationManagementInterface.php b/app/code/Magento/Checkout/Api/PaymentInformationManagementInterface.php index abdf5f0fe7c..676f9f32e68 100644 --- a/app/code/Magento/Checkout/Api/PaymentInformationManagementInterface.php +++ b/app/code/Magento/Checkout/Api/PaymentInformationManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Api; diff --git a/app/code/Magento/Checkout/Api/ShippingInformationManagementInterface.php b/app/code/Magento/Checkout/Api/ShippingInformationManagementInterface.php index 08451df021a..424603046a0 100644 --- a/app/code/Magento/Checkout/Api/ShippingInformationManagementInterface.php +++ b/app/code/Magento/Checkout/Api/ShippingInformationManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Api; diff --git a/app/code/Magento/Checkout/Api/TotalsInformationManagementInterface.php b/app/code/Magento/Checkout/Api/TotalsInformationManagementInterface.php index 582c43ac4cf..fdf9af44803 100644 --- a/app/code/Magento/Checkout/Api/TotalsInformationManagementInterface.php +++ b/app/code/Magento/Checkout/Api/TotalsInformationManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Api; diff --git a/app/code/Magento/Checkout/Block/Adminhtml/CartTab.php b/app/code/Magento/Checkout/Block/Adminhtml/CartTab.php index aa60acd9cb4..76f17420479 100644 --- a/app/code/Magento/Checkout/Block/Adminhtml/CartTab.php +++ b/app/code/Magento/Checkout/Block/Adminhtml/CartTab.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Adminhtml; diff --git a/app/code/Magento/Checkout/Block/Cart.php b/app/code/Magento/Checkout/Block/Cart.php index 71302d8d279..0b80561d457 100644 --- a/app/code/Magento/Checkout/Block/Cart.php +++ b/app/code/Magento/Checkout/Block/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block; diff --git a/app/code/Magento/Checkout/Block/Cart/AbstractCart.php b/app/code/Magento/Checkout/Block/Cart/AbstractCart.php index 7fe19c47899..5f83aefbffb 100644 --- a/app/code/Magento/Checkout/Block/Cart/AbstractCart.php +++ b/app/code/Magento/Checkout/Block/Cart/AbstractCart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart; diff --git a/app/code/Magento/Checkout/Block/Cart/Additional/Info.php b/app/code/Magento/Checkout/Block/Cart/Additional/Info.php index d3e61b4d092..5927012a404 100644 --- a/app/code/Magento/Checkout/Block/Cart/Additional/Info.php +++ b/app/code/Magento/Checkout/Block/Cart/Additional/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Block/Cart/CartTotalsProcessor.php b/app/code/Magento/Checkout/Block/Cart/CartTotalsProcessor.php index e7da10a1ab7..d1b882c8461 100644 --- a/app/code/Magento/Checkout/Block/Cart/CartTotalsProcessor.php +++ b/app/code/Magento/Checkout/Block/Cart/CartTotalsProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart; diff --git a/app/code/Magento/Checkout/Block/Cart/Coupon.php b/app/code/Magento/Checkout/Block/Cart/Coupon.php index b4aa0642c42..1744b747654 100644 --- a/app/code/Magento/Checkout/Block/Cart/Coupon.php +++ b/app/code/Magento/Checkout/Block/Cart/Coupon.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart; diff --git a/app/code/Magento/Checkout/Block/Cart/Crosssell.php b/app/code/Magento/Checkout/Block/Cart/Crosssell.php index 87812785e51..29faf7d04d8 100644 --- a/app/code/Magento/Checkout/Block/Cart/Crosssell.php +++ b/app/code/Magento/Checkout/Block/Cart/Crosssell.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart; diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Configure.php b/app/code/Magento/Checkout/Block/Cart/Item/Configure.php index 487b9a00298..68109d49283 100644 --- a/app/code/Magento/Checkout/Block/Cart/Item/Configure.php +++ b/app/code/Magento/Checkout/Block/Cart/Item/Configure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart\Item; diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Renderer.php b/app/code/Magento/Checkout/Block/Cart/Item/Renderer.php index 72b75b870af..2e1ece6c11a 100644 --- a/app/code/Magento/Checkout/Block/Cart/Item/Renderer.php +++ b/app/code/Magento/Checkout/Block/Cart/Item/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart\Item; diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions.php b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions.php index b106bc904c2..d7800e29408 100644 --- a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions.php +++ b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart\Item\Renderer; diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Edit.php b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Edit.php index 5f31010f33d..8d5335d511f 100644 --- a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Edit.php +++ b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart\Item\Renderer\Actions; diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Generic.php b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Generic.php index a7cabbaf026..2ceb9cb4f33 100644 --- a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Generic.php +++ b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Generic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart\Item\Renderer\Actions; diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Remove.php b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Remove.php index 3e5442bfeac..7800c4fe5ae 100644 --- a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Remove.php +++ b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Remove.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart\Item\Renderer\Actions; diff --git a/app/code/Magento/Checkout/Block/Cart/LayoutProcessor.php b/app/code/Magento/Checkout/Block/Cart/LayoutProcessor.php index a042c41634b..2c22b8bbd36 100644 --- a/app/code/Magento/Checkout/Block/Cart/LayoutProcessor.php +++ b/app/code/Magento/Checkout/Block/Cart/LayoutProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart; diff --git a/app/code/Magento/Checkout/Block/Cart/Link.php b/app/code/Magento/Checkout/Block/Cart/Link.php index 5b4a9aabd6b..a14bc6f3244 100644 --- a/app/code/Magento/Checkout/Block/Cart/Link.php +++ b/app/code/Magento/Checkout/Block/Cart/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart; diff --git a/app/code/Magento/Checkout/Block/Cart/Shipping.php b/app/code/Magento/Checkout/Block/Cart/Shipping.php index 53fdc42bb46..a7f808b9ccb 100644 --- a/app/code/Magento/Checkout/Block/Cart/Shipping.php +++ b/app/code/Magento/Checkout/Block/Cart/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart; diff --git a/app/code/Magento/Checkout/Block/Cart/Sidebar.php b/app/code/Magento/Checkout/Block/Cart/Sidebar.php index 1dcdc00c1cf..03c705d8a47 100644 --- a/app/code/Magento/Checkout/Block/Cart/Sidebar.php +++ b/app/code/Magento/Checkout/Block/Cart/Sidebar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart; diff --git a/app/code/Magento/Checkout/Block/Cart/Totals.php b/app/code/Magento/Checkout/Block/Cart/Totals.php index 8c0da92e2c6..ed50dedd137 100644 --- a/app/code/Magento/Checkout/Block/Cart/Totals.php +++ b/app/code/Magento/Checkout/Block/Cart/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart; diff --git a/app/code/Magento/Checkout/Block/Cart/ValidationMessages.php b/app/code/Magento/Checkout/Block/Cart/ValidationMessages.php index 54a52fcf0a5..ee1df8403b7 100644 --- a/app/code/Magento/Checkout/Block/Cart/ValidationMessages.php +++ b/app/code/Magento/Checkout/Block/Cart/ValidationMessages.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Cart; diff --git a/app/code/Magento/Checkout/Block/Checkout/AttributeMerger.php b/app/code/Magento/Checkout/Block/Checkout/AttributeMerger.php index bbb2c69cc39..4d9aaa7f917 100644 --- a/app/code/Magento/Checkout/Block/Checkout/AttributeMerger.php +++ b/app/code/Magento/Checkout/Block/Checkout/AttributeMerger.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Checkout; diff --git a/app/code/Magento/Checkout/Block/Checkout/DirectoryDataProcessor.php b/app/code/Magento/Checkout/Block/Checkout/DirectoryDataProcessor.php index 4a02ebbd079..18a7b4d27ea 100644 --- a/app/code/Magento/Checkout/Block/Checkout/DirectoryDataProcessor.php +++ b/app/code/Magento/Checkout/Block/Checkout/DirectoryDataProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Checkout; diff --git a/app/code/Magento/Checkout/Block/Checkout/LayoutProcessor.php b/app/code/Magento/Checkout/Block/Checkout/LayoutProcessor.php index fd8434703ab..19d35060b37 100644 --- a/app/code/Magento/Checkout/Block/Checkout/LayoutProcessor.php +++ b/app/code/Magento/Checkout/Block/Checkout/LayoutProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Checkout; diff --git a/app/code/Magento/Checkout/Block/Checkout/LayoutProcessorInterface.php b/app/code/Magento/Checkout/Block/Checkout/LayoutProcessorInterface.php index 905fe6f936e..126843a3e85 100644 --- a/app/code/Magento/Checkout/Block/Checkout/LayoutProcessorInterface.php +++ b/app/code/Magento/Checkout/Block/Checkout/LayoutProcessorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Checkout; diff --git a/app/code/Magento/Checkout/Block/Checkout/TotalsProcessor.php b/app/code/Magento/Checkout/Block/Checkout/TotalsProcessor.php index 3fc5d884e17..6083849ad22 100644 --- a/app/code/Magento/Checkout/Block/Checkout/TotalsProcessor.php +++ b/app/code/Magento/Checkout/Block/Checkout/TotalsProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Checkout; diff --git a/app/code/Magento/Checkout/Block/Item/Price/Renderer.php b/app/code/Magento/Checkout/Block/Item/Price/Renderer.php index 9177707c265..9f81780e8db 100644 --- a/app/code/Magento/Checkout/Block/Item/Price/Renderer.php +++ b/app/code/Magento/Checkout/Block/Item/Price/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Item\Price; diff --git a/app/code/Magento/Checkout/Block/Link.php b/app/code/Magento/Checkout/Block/Link.php index ecb61924ec0..aa9f7bcd172 100644 --- a/app/code/Magento/Checkout/Block/Link.php +++ b/app/code/Magento/Checkout/Block/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block; diff --git a/app/code/Magento/Checkout/Block/Onepage.php b/app/code/Magento/Checkout/Block/Onepage.php index d1abc234072..15e913d9338 100644 --- a/app/code/Magento/Checkout/Block/Onepage.php +++ b/app/code/Magento/Checkout/Block/Onepage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block; diff --git a/app/code/Magento/Checkout/Block/Onepage/Failure.php b/app/code/Magento/Checkout/Block/Onepage/Failure.php index 1c48de5772a..9b9ddfcce67 100644 --- a/app/code/Magento/Checkout/Block/Onepage/Failure.php +++ b/app/code/Magento/Checkout/Block/Onepage/Failure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Onepage; diff --git a/app/code/Magento/Checkout/Block/Onepage/Link.php b/app/code/Magento/Checkout/Block/Onepage/Link.php index 90c8e88223f..a966c8e9065 100644 --- a/app/code/Magento/Checkout/Block/Onepage/Link.php +++ b/app/code/Magento/Checkout/Block/Onepage/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Onepage; diff --git a/app/code/Magento/Checkout/Block/Onepage/Success.php b/app/code/Magento/Checkout/Block/Onepage/Success.php index cae49dca05d..210a1285b29 100644 --- a/app/code/Magento/Checkout/Block/Onepage/Success.php +++ b/app/code/Magento/Checkout/Block/Onepage/Success.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Onepage; diff --git a/app/code/Magento/Checkout/Block/QuoteShortcutButtons.php b/app/code/Magento/Checkout/Block/QuoteShortcutButtons.php index bb6e356c006..5d2ceff8c80 100644 --- a/app/code/Magento/Checkout/Block/QuoteShortcutButtons.php +++ b/app/code/Magento/Checkout/Block/QuoteShortcutButtons.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block; diff --git a/app/code/Magento/Checkout/Block/Registration.php b/app/code/Magento/Checkout/Block/Registration.php index cc24d90c2d8..0efd58dcc32 100644 --- a/app/code/Magento/Checkout/Block/Registration.php +++ b/app/code/Magento/Checkout/Block/Registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block; diff --git a/app/code/Magento/Checkout/Block/Shipping/Price.php b/app/code/Magento/Checkout/Block/Shipping/Price.php index 8bba359ec31..946f1643af7 100644 --- a/app/code/Magento/Checkout/Block/Shipping/Price.php +++ b/app/code/Magento/Checkout/Block/Shipping/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Shipping; diff --git a/app/code/Magento/Checkout/Block/Success.php b/app/code/Magento/Checkout/Block/Success.php index 527385973aa..c61767f64eb 100644 --- a/app/code/Magento/Checkout/Block/Success.php +++ b/app/code/Magento/Checkout/Block/Success.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block; diff --git a/app/code/Magento/Checkout/Block/Total/DefaultTotal.php b/app/code/Magento/Checkout/Block/Total/DefaultTotal.php index 7dd71b57a1e..b77e9f90892 100644 --- a/app/code/Magento/Checkout/Block/Total/DefaultTotal.php +++ b/app/code/Magento/Checkout/Block/Total/DefaultTotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block\Total; diff --git a/app/code/Magento/Checkout/Controller/Account/Create.php b/app/code/Magento/Checkout/Controller/Account/Create.php index 5dd201b8b10..3e761c2bf6a 100644 --- a/app/code/Magento/Checkout/Controller/Account/Create.php +++ b/app/code/Magento/Checkout/Controller/Account/Create.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Account; diff --git a/app/code/Magento/Checkout/Controller/Action.php b/app/code/Magento/Checkout/Controller/Action.php index 3b8ae224b06..1aaad630e53 100644 --- a/app/code/Magento/Checkout/Controller/Action.php +++ b/app/code/Magento/Checkout/Controller/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller; diff --git a/app/code/Magento/Checkout/Controller/Cart.php b/app/code/Magento/Checkout/Controller/Cart.php index ffca459261c..84d940ed1c7 100644 --- a/app/code/Magento/Checkout/Controller/Cart.php +++ b/app/code/Magento/Checkout/Controller/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller; diff --git a/app/code/Magento/Checkout/Controller/Cart/Add.php b/app/code/Magento/Checkout/Controller/Cart/Add.php index bfbf0008bf5..a1ec6ca1b01 100644 --- a/app/code/Magento/Checkout/Controller/Cart/Add.php +++ b/app/code/Magento/Checkout/Controller/Cart/Add.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Cart; diff --git a/app/code/Magento/Checkout/Controller/Cart/Addgroup.php b/app/code/Magento/Checkout/Controller/Cart/Addgroup.php index a92e811561f..167fbbba32e 100644 --- a/app/code/Magento/Checkout/Controller/Cart/Addgroup.php +++ b/app/code/Magento/Checkout/Controller/Cart/Addgroup.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Cart; diff --git a/app/code/Magento/Checkout/Controller/Cart/Configure.php b/app/code/Magento/Checkout/Controller/Cart/Configure.php index ed9506cf8db..377139ca2f2 100644 --- a/app/code/Magento/Checkout/Controller/Cart/Configure.php +++ b/app/code/Magento/Checkout/Controller/Cart/Configure.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Cart; diff --git a/app/code/Magento/Checkout/Controller/Cart/CouponPost.php b/app/code/Magento/Checkout/Controller/Cart/CouponPost.php index 0498b22d550..477ea17fb28 100644 --- a/app/code/Magento/Checkout/Controller/Cart/CouponPost.php +++ b/app/code/Magento/Checkout/Controller/Cart/CouponPost.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Cart; diff --git a/app/code/Magento/Checkout/Controller/Cart/Delete.php b/app/code/Magento/Checkout/Controller/Cart/Delete.php index 60008400a6c..253ca8756ca 100644 --- a/app/code/Magento/Checkout/Controller/Cart/Delete.php +++ b/app/code/Magento/Checkout/Controller/Cart/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Cart; diff --git a/app/code/Magento/Checkout/Controller/Cart/EstimatePost.php b/app/code/Magento/Checkout/Controller/Cart/EstimatePost.php index aab92d51e06..23d66896463 100644 --- a/app/code/Magento/Checkout/Controller/Cart/EstimatePost.php +++ b/app/code/Magento/Checkout/Controller/Cart/EstimatePost.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Cart; diff --git a/app/code/Magento/Checkout/Controller/Cart/EstimateUpdatePost.php b/app/code/Magento/Checkout/Controller/Cart/EstimateUpdatePost.php index ea362bda6b8..eed42919ee7 100644 --- a/app/code/Magento/Checkout/Controller/Cart/EstimateUpdatePost.php +++ b/app/code/Magento/Checkout/Controller/Cart/EstimateUpdatePost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Cart; diff --git a/app/code/Magento/Checkout/Controller/Cart/Index.php b/app/code/Magento/Checkout/Controller/Cart/Index.php index 303349f69a7..dde5b212212 100644 --- a/app/code/Magento/Checkout/Controller/Cart/Index.php +++ b/app/code/Magento/Checkout/Controller/Cart/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Controller/Cart/UpdateItemOptions.php b/app/code/Magento/Checkout/Controller/Cart/UpdateItemOptions.php index 0789849cdc1..0195a291bd6 100644 --- a/app/code/Magento/Checkout/Controller/Cart/UpdateItemOptions.php +++ b/app/code/Magento/Checkout/Controller/Cart/UpdateItemOptions.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Cart; diff --git a/app/code/Magento/Checkout/Controller/Cart/UpdatePost.php b/app/code/Magento/Checkout/Controller/Cart/UpdatePost.php index 798de41b647..b97b2c279a1 100644 --- a/app/code/Magento/Checkout/Controller/Cart/UpdatePost.php +++ b/app/code/Magento/Checkout/Controller/Cart/UpdatePost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Cart; diff --git a/app/code/Magento/Checkout/Controller/Express/RedirectLoginInterface.php b/app/code/Magento/Checkout/Controller/Express/RedirectLoginInterface.php index c574349017c..ca6871a5f9b 100644 --- a/app/code/Magento/Checkout/Controller/Express/RedirectLoginInterface.php +++ b/app/code/Magento/Checkout/Controller/Express/RedirectLoginInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Express; diff --git a/app/code/Magento/Checkout/Controller/Index/Index.php b/app/code/Magento/Checkout/Controller/Index/Index.php index 4f42fbda880..d1b9d9a5e42 100644 --- a/app/code/Magento/Checkout/Controller/Index/Index.php +++ b/app/code/Magento/Checkout/Controller/Index/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Index; diff --git a/app/code/Magento/Checkout/Controller/Noroute/Index.php b/app/code/Magento/Checkout/Controller/Noroute/Index.php index 53a06df2612..7e04100390f 100644 --- a/app/code/Magento/Checkout/Controller/Noroute/Index.php +++ b/app/code/Magento/Checkout/Controller/Noroute/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Noroute; diff --git a/app/code/Magento/Checkout/Controller/Onepage.php b/app/code/Magento/Checkout/Controller/Onepage.php index 076771551be..f713521ac23 100644 --- a/app/code/Magento/Checkout/Controller/Onepage.php +++ b/app/code/Magento/Checkout/Controller/Onepage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller; diff --git a/app/code/Magento/Checkout/Controller/Onepage/Failure.php b/app/code/Magento/Checkout/Controller/Onepage/Failure.php index 388b5a7e54c..9a8af99f61f 100644 --- a/app/code/Magento/Checkout/Controller/Onepage/Failure.php +++ b/app/code/Magento/Checkout/Controller/Onepage/Failure.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Onepage; diff --git a/app/code/Magento/Checkout/Controller/Onepage/SaveOrder.php b/app/code/Magento/Checkout/Controller/Onepage/SaveOrder.php index 46ab0d1fe3f..c8ffd02d4b7 100644 --- a/app/code/Magento/Checkout/Controller/Onepage/SaveOrder.php +++ b/app/code/Magento/Checkout/Controller/Onepage/SaveOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Onepage; diff --git a/app/code/Magento/Checkout/Controller/Onepage/Success.php b/app/code/Magento/Checkout/Controller/Onepage/Success.php index 2eaf313db3b..d84828d6ada 100644 --- a/app/code/Magento/Checkout/Controller/Onepage/Success.php +++ b/app/code/Magento/Checkout/Controller/Onepage/Success.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Onepage; diff --git a/app/code/Magento/Checkout/Controller/ShippingRates/Index.php b/app/code/Magento/Checkout/Controller/ShippingRates/Index.php index e39a3fd862a..2c5b333f94f 100644 --- a/app/code/Magento/Checkout/Controller/ShippingRates/Index.php +++ b/app/code/Magento/Checkout/Controller/ShippingRates/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\ShippingRates; diff --git a/app/code/Magento/Checkout/Controller/Sidebar/RemoveItem.php b/app/code/Magento/Checkout/Controller/Sidebar/RemoveItem.php index 45f4795eb01..f73412e04ed 100644 --- a/app/code/Magento/Checkout/Controller/Sidebar/RemoveItem.php +++ b/app/code/Magento/Checkout/Controller/Sidebar/RemoveItem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Sidebar; diff --git a/app/code/Magento/Checkout/Controller/Sidebar/UpdateItemQty.php b/app/code/Magento/Checkout/Controller/Sidebar/UpdateItemQty.php index ef1cdd614ee..7bda0bcfa3f 100644 --- a/app/code/Magento/Checkout/Controller/Sidebar/UpdateItemQty.php +++ b/app/code/Magento/Checkout/Controller/Sidebar/UpdateItemQty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Controller\Sidebar; diff --git a/app/code/Magento/Checkout/CustomerData/AbstractItem.php b/app/code/Magento/Checkout/CustomerData/AbstractItem.php index 1b7b1a5064b..0f04509505c 100644 --- a/app/code/Magento/Checkout/CustomerData/AbstractItem.php +++ b/app/code/Magento/Checkout/CustomerData/AbstractItem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/CustomerData/Cart.php b/app/code/Magento/Checkout/CustomerData/Cart.php index 07abb0b378c..08ae7f86130 100644 --- a/app/code/Magento/Checkout/CustomerData/Cart.php +++ b/app/code/Magento/Checkout/CustomerData/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/CustomerData/DefaultItem.php b/app/code/Magento/Checkout/CustomerData/DefaultItem.php index 9c35265d03f..fe3fe250c21 100644 --- a/app/code/Magento/Checkout/CustomerData/DefaultItem.php +++ b/app/code/Magento/Checkout/CustomerData/DefaultItem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/CustomerData/DirectoryData.php b/app/code/Magento/Checkout/CustomerData/DirectoryData.php index a4dd25eb3ad..909fa0fee74 100644 --- a/app/code/Magento/Checkout/CustomerData/DirectoryData.php +++ b/app/code/Magento/Checkout/CustomerData/DirectoryData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/CustomerData/ItemInterface.php b/app/code/Magento/Checkout/CustomerData/ItemInterface.php index 33b3864d5d3..d81b26de7c5 100644 --- a/app/code/Magento/Checkout/CustomerData/ItemInterface.php +++ b/app/code/Magento/Checkout/CustomerData/ItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/CustomerData/ItemPool.php b/app/code/Magento/Checkout/CustomerData/ItemPool.php index 44bd4dd53ee..3c8f0f83df8 100644 --- a/app/code/Magento/Checkout/CustomerData/ItemPool.php +++ b/app/code/Magento/Checkout/CustomerData/ItemPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/CustomerData/ItemPoolInterface.php b/app/code/Magento/Checkout/CustomerData/ItemPoolInterface.php index 6d59307b7cf..e7a0e017b48 100644 --- a/app/code/Magento/Checkout/CustomerData/ItemPoolInterface.php +++ b/app/code/Magento/Checkout/CustomerData/ItemPoolInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Exception.php b/app/code/Magento/Checkout/Exception.php index 1c4577c13c1..2bc01c78063 100644 --- a/app/code/Magento/Checkout/Exception.php +++ b/app/code/Magento/Checkout/Exception.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout; diff --git a/app/code/Magento/Checkout/Helper/Cart.php b/app/code/Magento/Checkout/Helper/Cart.php index 621feeb1024..1af8a2d1d9a 100644 --- a/app/code/Magento/Checkout/Helper/Cart.php +++ b/app/code/Magento/Checkout/Helper/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Helper; diff --git a/app/code/Magento/Checkout/Helper/Data.php b/app/code/Magento/Checkout/Helper/Data.php index b54d3187949..af61700a590 100644 --- a/app/code/Magento/Checkout/Helper/Data.php +++ b/app/code/Magento/Checkout/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Helper; diff --git a/app/code/Magento/Checkout/Helper/ExpressRedirect.php b/app/code/Magento/Checkout/Helper/ExpressRedirect.php index b138462a6a5..246d537c6df 100644 --- a/app/code/Magento/Checkout/Helper/ExpressRedirect.php +++ b/app/code/Magento/Checkout/Helper/ExpressRedirect.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Helper; diff --git a/app/code/Magento/Checkout/Model/Adminhtml/BillingAddressDisplayOptions.php b/app/code/Magento/Checkout/Model/Adminhtml/BillingAddressDisplayOptions.php index 831d4b41ec9..afaff4013b4 100644 --- a/app/code/Magento/Checkout/Model/Adminhtml/BillingAddressDisplayOptions.php +++ b/app/code/Magento/Checkout/Model/Adminhtml/BillingAddressDisplayOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Adminhtml; diff --git a/app/code/Magento/Checkout/Model/AgreementsValidator.php b/app/code/Magento/Checkout/Model/AgreementsValidator.php index 1028e99fbf4..986ae2ef2ba 100644 --- a/app/code/Magento/Checkout/Model/AgreementsValidator.php +++ b/app/code/Magento/Checkout/Model/AgreementsValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/Cart.php b/app/code/Magento/Checkout/Model/Cart.php index 236c716f572..0e8df9e08f1 100644 --- a/app/code/Magento/Checkout/Model/Cart.php +++ b/app/code/Magento/Checkout/Model/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/Cart/CartInterface.php b/app/code/Magento/Checkout/Model/Cart/CartInterface.php index 500148900f3..05cbe094bf8 100644 --- a/app/code/Magento/Checkout/Model/Cart/CartInterface.php +++ b/app/code/Magento/Checkout/Model/Cart/CartInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Cart; diff --git a/app/code/Magento/Checkout/Model/Cart/CollectQuote.php b/app/code/Magento/Checkout/Model/Cart/CollectQuote.php index 88558af276f..0a4ca71fa9f 100644 --- a/app/code/Magento/Checkout/Model/Cart/CollectQuote.php +++ b/app/code/Magento/Checkout/Model/Cart/CollectQuote.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Cart; diff --git a/app/code/Magento/Checkout/Model/Cart/ImageProvider.php b/app/code/Magento/Checkout/Model/Cart/ImageProvider.php index fcbe0bec752..d9a2b7d7d66 100644 --- a/app/code/Magento/Checkout/Model/Cart/ImageProvider.php +++ b/app/code/Magento/Checkout/Model/Cart/ImageProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Cart; diff --git a/app/code/Magento/Checkout/Model/Cart/RequestInfoFilter.php b/app/code/Magento/Checkout/Model/Cart/RequestInfoFilter.php index 10f3b81386b..067fd2a8cab 100644 --- a/app/code/Magento/Checkout/Model/Cart/RequestInfoFilter.php +++ b/app/code/Magento/Checkout/Model/Cart/RequestInfoFilter.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Cart; diff --git a/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterComposite.php b/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterComposite.php index 2ef24c0a5f2..e69eb532a82 100644 --- a/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterComposite.php +++ b/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterComposite.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Cart; diff --git a/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterInterface.php b/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterInterface.php index 4bd268f6c89..5b18c73dda5 100644 --- a/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterInterface.php +++ b/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Cart; diff --git a/app/code/Magento/Checkout/Model/CompositeConfigProvider.php b/app/code/Magento/Checkout/Model/CompositeConfigProvider.php index fe9bffa4466..ec95ddcb1ab 100644 --- a/app/code/Magento/Checkout/Model/CompositeConfigProvider.php +++ b/app/code/Magento/Checkout/Model/CompositeConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/Config/Source/Cart/Summary.php b/app/code/Magento/Checkout/Model/Config/Source/Cart/Summary.php index bde36bb9595..87343aa343b 100644 --- a/app/code/Magento/Checkout/Model/Config/Source/Cart/Summary.php +++ b/app/code/Magento/Checkout/Model/Config/Source/Cart/Summary.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Config\Source\Cart; diff --git a/app/code/Magento/Checkout/Model/ConfigProviderInterface.php b/app/code/Magento/Checkout/Model/ConfigProviderInterface.php index 3d6259437c4..f49df5c8277 100644 --- a/app/code/Magento/Checkout/Model/ConfigProviderInterface.php +++ b/app/code/Magento/Checkout/Model/ConfigProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/DefaultConfigProvider.php b/app/code/Magento/Checkout/Model/DefaultConfigProvider.php index 0544f3aae39..b70348aa152 100644 --- a/app/code/Magento/Checkout/Model/DefaultConfigProvider.php +++ b/app/code/Magento/Checkout/Model/DefaultConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php b/app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php index f2ad294d06c..fb63cdaea57 100644 --- a/app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php +++ b/app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Model/GuestShippingInformationManagement.php b/app/code/Magento/Checkout/Model/GuestShippingInformationManagement.php index e9762fe1a2c..c734ba5d7b8 100644 --- a/app/code/Magento/Checkout/Model/GuestShippingInformationManagement.php +++ b/app/code/Magento/Checkout/Model/GuestShippingInformationManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/GuestTotalsInformationManagement.php b/app/code/Magento/Checkout/Model/GuestTotalsInformationManagement.php index 9eae8d04dc7..ebb849af0b2 100644 --- a/app/code/Magento/Checkout/Model/GuestTotalsInformationManagement.php +++ b/app/code/Magento/Checkout/Model/GuestTotalsInformationManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/Layout/AbstractTotalsProcessor.php b/app/code/Magento/Checkout/Model/Layout/AbstractTotalsProcessor.php index 8e9d56ba7b8..943c9685529 100644 --- a/app/code/Magento/Checkout/Model/Layout/AbstractTotalsProcessor.php +++ b/app/code/Magento/Checkout/Model/Layout/AbstractTotalsProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Layout; diff --git a/app/code/Magento/Checkout/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/Checkout/Model/Layout/DepersonalizePlugin.php index df4cf2b5cd2..60327b27f9e 100644 --- a/app/code/Magento/Checkout/Model/Layout/DepersonalizePlugin.php +++ b/app/code/Magento/Checkout/Model/Layout/DepersonalizePlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Layout; diff --git a/app/code/Magento/Checkout/Model/PaymentDetails.php b/app/code/Magento/Checkout/Model/PaymentDetails.php index 7bf3e9d0f2d..331caf5bb9e 100644 --- a/app/code/Magento/Checkout/Model/PaymentDetails.php +++ b/app/code/Magento/Checkout/Model/PaymentDetails.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/PaymentInformationManagement.php b/app/code/Magento/Checkout/Model/PaymentInformationManagement.php index 79e76feb436..5c33bd16e79 100644 --- a/app/code/Magento/Checkout/Model/PaymentInformationManagement.php +++ b/app/code/Magento/Checkout/Model/PaymentInformationManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/ResourceModel/Cart.php b/app/code/Magento/Checkout/Model/ResourceModel/Cart.php index 182ec745c36..4ed53b8bf61 100644 --- a/app/code/Magento/Checkout/Model/ResourceModel/Cart.php +++ b/app/code/Magento/Checkout/Model/ResourceModel/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\ResourceModel; diff --git a/app/code/Magento/Checkout/Model/Session.php b/app/code/Magento/Checkout/Model/Session.php index 4677bdb19b0..573c8ac1498 100644 --- a/app/code/Magento/Checkout/Model/Session.php +++ b/app/code/Magento/Checkout/Model/Session.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/Session/SuccessValidator.php b/app/code/Magento/Checkout/Model/Session/SuccessValidator.php index 5ce671bca18..0df52ad1f9a 100644 --- a/app/code/Magento/Checkout/Model/Session/SuccessValidator.php +++ b/app/code/Magento/Checkout/Model/Session/SuccessValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Session; diff --git a/app/code/Magento/Checkout/Model/ShippingInformation.php b/app/code/Magento/Checkout/Model/ShippingInformation.php index c80b3095ba1..69f6c39f059 100644 --- a/app/code/Magento/Checkout/Model/ShippingInformation.php +++ b/app/code/Magento/Checkout/Model/ShippingInformation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/ShippingInformationManagement.php b/app/code/Magento/Checkout/Model/ShippingInformationManagement.php index 237d28e2845..5f972bf9d1f 100644 --- a/app/code/Magento/Checkout/Model/ShippingInformationManagement.php +++ b/app/code/Magento/Checkout/Model/ShippingInformationManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/Sidebar.php b/app/code/Magento/Checkout/Model/Sidebar.php index ba6dfade037..ed785e68d5c 100644 --- a/app/code/Magento/Checkout/Model/Sidebar.php +++ b/app/code/Magento/Checkout/Model/Sidebar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/TotalsInformation.php b/app/code/Magento/Checkout/Model/TotalsInformation.php index 508acf76cbc..71d150b1962 100644 --- a/app/code/Magento/Checkout/Model/TotalsInformation.php +++ b/app/code/Magento/Checkout/Model/TotalsInformation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/TotalsInformationManagement.php b/app/code/Magento/Checkout/Model/TotalsInformationManagement.php index 0e0cbc0bf5a..089d0050af0 100644 --- a/app/code/Magento/Checkout/Model/TotalsInformationManagement.php +++ b/app/code/Magento/Checkout/Model/TotalsInformationManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model; diff --git a/app/code/Magento/Checkout/Model/Type/Onepage.php b/app/code/Magento/Checkout/Model/Type/Onepage.php index 887ef644d33..e07a16f8c1b 100644 --- a/app/code/Magento/Checkout/Model/Type/Onepage.php +++ b/app/code/Magento/Checkout/Model/Type/Onepage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Model\Type; diff --git a/app/code/Magento/Checkout/Observer/LoadCustomerQuoteObserver.php b/app/code/Magento/Checkout/Observer/LoadCustomerQuoteObserver.php index c707c4466a4..3afc01aaea0 100644 --- a/app/code/Magento/Checkout/Observer/LoadCustomerQuoteObserver.php +++ b/app/code/Magento/Checkout/Observer/LoadCustomerQuoteObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Observer; diff --git a/app/code/Magento/Checkout/Observer/SalesQuoteSaveAfterObserver.php b/app/code/Magento/Checkout/Observer/SalesQuoteSaveAfterObserver.php index 87156cd4d70..88891103332 100644 --- a/app/code/Magento/Checkout/Observer/SalesQuoteSaveAfterObserver.php +++ b/app/code/Magento/Checkout/Observer/SalesQuoteSaveAfterObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Observer; diff --git a/app/code/Magento/Checkout/Observer/UnsetAllObserver.php b/app/code/Magento/Checkout/Observer/UnsetAllObserver.php index 6b66b701d73..0493826a331 100644 --- a/app/code/Magento/Checkout/Observer/UnsetAllObserver.php +++ b/app/code/Magento/Checkout/Observer/UnsetAllObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Observer; diff --git a/app/code/Magento/Checkout/Setup/InstallData.php b/app/code/Magento/Checkout/Setup/InstallData.php index 2eb75192066..63bb7913260 100644 --- a/app/code/Magento/Checkout/Setup/InstallData.php +++ b/app/code/Magento/Checkout/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/AbstractCartTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/AbstractCartTest.php index e845733e947..2a6de9c614a 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Cart/AbstractCartTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Cart/AbstractCartTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/CartTotalsProcessorTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/CartTotalsProcessorTest.php index 2716750cb41..4843269eef5 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Cart/CartTotalsProcessorTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Cart/CartTotalsProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/EditTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/EditTest.php index 50fbb8ed4a9..18f090a03d4 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/EditTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/EditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Cart\Item\Renderer\Actions; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/GenericTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/GenericTest.php index 5709daf1084..b018831acae 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/GenericTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/GenericTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Cart\Item\Renderer\Actions; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/RemoveTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/RemoveTest.php index 81da0156b93..65d6d00abe0 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/RemoveTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/RemoveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Cart\Item\Renderer\Actions; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/ActionsTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/ActionsTest.php index c3908bbad77..526a1d580a5 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/ActionsTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/ActionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Cart\Item\Renderer; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/RendererTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/RendererTest.php index cc07a149b53..1229c117466 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/RendererTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/RendererTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Cart\Item; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/LayoutProcessorTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/LayoutProcessorTest.php index 5eabb6c9c86..c1947e1c211 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Cart/LayoutProcessorTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Cart/LayoutProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/LinkTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/LinkTest.php index cfbf14b8ee6..19ebe738fc3 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Cart/LinkTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Cart/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/ShippingTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/ShippingTest.php index 2d432a12148..8313695ff8e 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Cart/ShippingTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Cart/ShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/SidebarTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/SidebarTest.php index e67bc7d1602..4fdd8499ad8 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Cart/SidebarTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Cart/SidebarTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Checkout/DirectoryDataProcessorTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Checkout/DirectoryDataProcessorTest.php index c84fac464c0..6964bedfac6 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Checkout/DirectoryDataProcessorTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Checkout/DirectoryDataProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Checkout; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Checkout/LayoutProcessorTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Checkout/LayoutProcessorTest.php index 95aed9b56af..8e9c7996882 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Checkout/LayoutProcessorTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Checkout/LayoutProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Checkout; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Checkout/TotalsProcessorTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Checkout/TotalsProcessorTest.php index 2ad31450ef0..235cc1b5893 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Checkout/TotalsProcessorTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Checkout/TotalsProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Item/Price/RendererTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Item/Price/RendererTest.php index 90060ceb777..298359d2bf6 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Item/Price/RendererTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Item/Price/RendererTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Item\Price; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/LinkTest.php b/app/code/Magento/Checkout/Test/Unit/Block/LinkTest.php index 66a786e72f5..565c3f229f7 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/LinkTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Onepage/SuccessTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Onepage/SuccessTest.php index b250e8d436a..09c3bff0d7d 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Onepage/SuccessTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Onepage/SuccessTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Onepage; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/OnepageTest.php b/app/code/Magento/Checkout/Test/Unit/Block/OnepageTest.php index 4c209f02636..47fddfeb4a8 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/OnepageTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/OnepageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block; diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Shipping/PriceTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Shipping/PriceTest.php index 8b292dbea87..bb2ca8a4768 100644 --- a/app/code/Magento/Checkout/Test/Unit/Block/Shipping/PriceTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Block/Shipping/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Block\Shipping; diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Account/CreateTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Account/CreateTest.php index 0b5db016a98..84fb4a12bdc 100644 --- a/app/code/Magento/Checkout/Test/Unit/Controller/Account/CreateTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Controller/Account/CreateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Controller\Account; diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Cart/ConfigureTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Cart/ConfigureTest.php index 517c58da2ff..f028dd1818a 100644 --- a/app/code/Magento/Checkout/Test/Unit/Controller/Cart/ConfigureTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Controller/Cart/ConfigureTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Controller\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Cart/CouponPostTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Cart/CouponPostTest.php index 93100df3d8c..a31da63b292 100644 --- a/app/code/Magento/Checkout/Test/Unit/Controller/Cart/CouponPostTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Controller/Cart/CouponPostTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Controller\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Cart/IndexTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Cart/IndexTest.php index 8d4f7cc77e0..80920874312 100644 --- a/app/code/Magento/Checkout/Test/Unit/Controller/Cart/IndexTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Controller/Cart/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Controller\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Index/IndexTest.php index 28b9b2a5b1b..c28111cdd9b 100644 --- a/app/code/Magento/Checkout/Test/Unit/Controller/Index/IndexTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Controller/Index/IndexTest.php @@ -2,7 +2,7 @@ /** * Test for \Magento\Checkout\Controller\Index\Index * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/OnepageTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/OnepageTest.php index 58592bb8b43..283ce9c15cc 100644 --- a/app/code/Magento/Checkout/Test/Unit/Controller/OnepageTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Controller/OnepageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Controller; diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/RemoveItemTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/RemoveItemTest.php index d16f83318f4..3c72d75ab1b 100644 --- a/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/RemoveItemTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/RemoveItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Controller\Sidebar; diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/UpdateItemQtyTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/UpdateItemQtyTest.php index de97ccb5e6c..4907828cfe0 100644 --- a/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/UpdateItemQtyTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/UpdateItemQtyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Controller\Sidebar; diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Stub/OnepageStub.php b/app/code/Magento/Checkout/Test/Unit/Controller/Stub/OnepageStub.php index 2464f99a8c4..44fc87e51cd 100644 --- a/app/code/Magento/Checkout/Test/Unit/Controller/Stub/OnepageStub.php +++ b/app/code/Magento/Checkout/Test/Unit/Controller/Stub/OnepageStub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/CustomerData/CartTest.php b/app/code/Magento/Checkout/Test/Unit/CustomerData/CartTest.php index 7462e655dc8..67602d91c04 100644 --- a/app/code/Magento/Checkout/Test/Unit/CustomerData/CartTest.php +++ b/app/code/Magento/Checkout/Test/Unit/CustomerData/CartTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/CustomerData/DefaultItemTest.php b/app/code/Magento/Checkout/Test/Unit/CustomerData/DefaultItemTest.php index dc28f1d46de..354fdcd3458 100644 --- a/app/code/Magento/Checkout/Test/Unit/CustomerData/DefaultItemTest.php +++ b/app/code/Magento/Checkout/Test/Unit/CustomerData/DefaultItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\CustomerData; diff --git a/app/code/Magento/Checkout/Test/Unit/CustomerData/ItemPoolTest.php b/app/code/Magento/Checkout/Test/Unit/CustomerData/ItemPoolTest.php index f4a699bde7f..a757823406e 100644 --- a/app/code/Magento/Checkout/Test/Unit/CustomerData/ItemPoolTest.php +++ b/app/code/Magento/Checkout/Test/Unit/CustomerData/ItemPoolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\CustomerData; diff --git a/app/code/Magento/Checkout/Test/Unit/Helper/CartTest.php b/app/code/Magento/Checkout/Test/Unit/Helper/CartTest.php index b79ee3e3b4b..72b5e0be3bd 100644 --- a/app/code/Magento/Checkout/Test/Unit/Helper/CartTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Helper/CartTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/Helper/DataTest.php b/app/code/Magento/Checkout/Test/Unit/Helper/DataTest.php index 1a89f735cd3..f7b0cebbd1f 100644 --- a/app/code/Magento/Checkout/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/Helper/ExpressRedirectTest.php b/app/code/Magento/Checkout/Test/Unit/Helper/ExpressRedirectTest.php index 9bd8611747b..08a068fab43 100644 --- a/app/code/Magento/Checkout/Test/Unit/Helper/ExpressRedirectTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Helper/ExpressRedirectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Helper; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/AgreementsValidatorTest.php b/app/code/Magento/Checkout/Test/Unit/Model/AgreementsValidatorTest.php index 2e4571aa052..d740f8d7daa 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/AgreementsValidatorTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/AgreementsValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Model; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Cart/ImageProviderTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Cart/ImageProviderTest.php index 71b32ec93f8..b08037c0c39 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/Cart/ImageProviderTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/Cart/ImageProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterCompositeTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterCompositeTest.php index 6c758cf4661..35033756f38 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterCompositeTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterCompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Model\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterTest.php index cd6ca330da1..2b72564fd61 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Model\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/CartTest.php b/app/code/Magento/Checkout/Test/Unit/Model/CartTest.php index 9984fe12d37..c99380fa5f9 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/CartTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/CartTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/Model/CompositeConfigProviderTest.php b/app/code/Magento/Checkout/Test/Unit/Model/CompositeConfigProviderTest.php index a04118f9e29..a385c7bc194 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/CompositeConfigProviderTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/CompositeConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Model; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Config/Source/Cart/SummaryTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Config/Source/Cart/SummaryTest.php index c7f3275ce1d..ff8d0ff421e 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/Config/Source/Cart/SummaryTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/Config/Source/Cart/SummaryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Model\Config\Source\Cart; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/GuestPaymentInformationManagementTest.php b/app/code/Magento/Checkout/Test/Unit/Model/GuestPaymentInformationManagementTest.php index 76cbafb48eb..f15cc518d43 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/GuestPaymentInformationManagementTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/GuestPaymentInformationManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Model; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/GuestShippingInformationManagementTest.php b/app/code/Magento/Checkout/Test/Unit/Model/GuestShippingInformationManagementTest.php index 0925a741252..1b52ef52388 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/GuestShippingInformationManagementTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/GuestShippingInformationManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Model; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Layout/DepersonalizePluginTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Layout/DepersonalizePluginTest.php index f64947a294c..3b6d3922fd4 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/Layout/DepersonalizePluginTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/Layout/DepersonalizePluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/Model/PaymentInformationManagementTest.php b/app/code/Magento/Checkout/Test/Unit/Model/PaymentInformationManagementTest.php index 8da67a1fcb7..b29ec30632b 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/PaymentInformationManagementTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/PaymentInformationManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Model; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Session/SuccessValidatorTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Session/SuccessValidatorTest.php index c1569d55bae..a6937c1979f 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/Session/SuccessValidatorTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/Session/SuccessValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Model\Session; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/SessionTest.php b/app/code/Magento/Checkout/Test/Unit/Model/SessionTest.php index e99f6b217b6..415416696b9 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/SessionTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/SessionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/Model/ShippingInformationManagementTest.php b/app/code/Magento/Checkout/Test/Unit/Model/ShippingInformationManagementTest.php index 402a0c82283..602c54990cc 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/ShippingInformationManagementTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/ShippingInformationManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Model; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/SidebarTest.php b/app/code/Magento/Checkout/Test/Unit/Model/SidebarTest.php index 4a1e58523a4..df225a3ba04 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/SidebarTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/SidebarTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Model; diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Type/OnepageTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Type/OnepageTest.php index ef30b80d312..7cb2f4160c3 100644 --- a/app/code/Magento/Checkout/Test/Unit/Model/Type/OnepageTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Model/Type/OnepageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/Test/Unit/Observer/LoadCustomerQuoteObserverTest.php b/app/code/Magento/Checkout/Test/Unit/Observer/LoadCustomerQuoteObserverTest.php index 2256d9b5a83..ba656f33d35 100644 --- a/app/code/Magento/Checkout/Test/Unit/Observer/LoadCustomerQuoteObserverTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Observer/LoadCustomerQuoteObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Observer; diff --git a/app/code/Magento/Checkout/Test/Unit/Observer/SalesQuoteSaveAfterObserverTest.php b/app/code/Magento/Checkout/Test/Unit/Observer/SalesQuoteSaveAfterObserverTest.php index a8add618fc1..2e175ad5703 100644 --- a/app/code/Magento/Checkout/Test/Unit/Observer/SalesQuoteSaveAfterObserverTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Observer/SalesQuoteSaveAfterObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Observer; diff --git a/app/code/Magento/Checkout/Test/Unit/Observer/UnsetAllObserverTest.php b/app/code/Magento/Checkout/Test/Unit/Observer/UnsetAllObserverTest.php index 726caa3c914..eb4869fb81f 100644 --- a/app/code/Magento/Checkout/Test/Unit/Observer/UnsetAllObserverTest.php +++ b/app/code/Magento/Checkout/Test/Unit/Observer/UnsetAllObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Test\Unit\Observer; diff --git a/app/code/Magento/Checkout/etc/adminhtml/system.xml b/app/code/Magento/Checkout/etc/adminhtml/system.xml index b3b3d11b568..0b0ec9e276f 100644 --- a/app/code/Magento/Checkout/etc/adminhtml/system.xml +++ b/app/code/Magento/Checkout/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/etc/config.xml b/app/code/Magento/Checkout/etc/config.xml index 2712f5df5ef..4bac74fb0ef 100644 --- a/app/code/Magento/Checkout/etc/config.xml +++ b/app/code/Magento/Checkout/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/etc/di.xml b/app/code/Magento/Checkout/etc/di.xml index 81a430d52c4..5e769e4748b 100644 --- a/app/code/Magento/Checkout/etc/di.xml +++ b/app/code/Magento/Checkout/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/etc/email_templates.xml b/app/code/Magento/Checkout/etc/email_templates.xml index 15f836522a8..2fb2f1ca379 100644 --- a/app/code/Magento/Checkout/etc/email_templates.xml +++ b/app/code/Magento/Checkout/etc/email_templates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/etc/events.xml b/app/code/Magento/Checkout/etc/events.xml index 8bca9e6dba5..8c657c5d8b0 100644 --- a/app/code/Magento/Checkout/etc/events.xml +++ b/app/code/Magento/Checkout/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/etc/fieldset.xml b/app/code/Magento/Checkout/etc/fieldset.xml index f8bd9b9b84c..44bcdc9367c 100644 --- a/app/code/Magento/Checkout/etc/fieldset.xml +++ b/app/code/Magento/Checkout/etc/fieldset.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/etc/frontend/di.xml b/app/code/Magento/Checkout/etc/frontend/di.xml index 69ed3372174..2ef7a2498fd 100644 --- a/app/code/Magento/Checkout/etc/frontend/di.xml +++ b/app/code/Magento/Checkout/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/etc/frontend/events.xml b/app/code/Magento/Checkout/etc/frontend/events.xml index ca766ae9a75..dce51690514 100644 --- a/app/code/Magento/Checkout/etc/frontend/events.xml +++ b/app/code/Magento/Checkout/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/etc/frontend/page_types.xml b/app/code/Magento/Checkout/etc/frontend/page_types.xml index 60b9b16e549..25200529e6d 100644 --- a/app/code/Magento/Checkout/etc/frontend/page_types.xml +++ b/app/code/Magento/Checkout/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/etc/frontend/routes.xml b/app/code/Magento/Checkout/etc/frontend/routes.xml index 754f4c0bbce..3d50251a224 100644 --- a/app/code/Magento/Checkout/etc/frontend/routes.xml +++ b/app/code/Magento/Checkout/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Checkout" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Checkout/etc/frontend/sections.xml b/app/code/Magento/Checkout/etc/frontend/sections.xml index cd3133bef9f..b0fd4d9e38a 100644 --- a/app/code/Magento/Checkout/etc/frontend/sections.xml +++ b/app/code/Magento/Checkout/etc/frontend/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/etc/module.xml b/app/code/Magento/Checkout/etc/module.xml index 8de6bb4c625..3357b79479b 100644 --- a/app/code/Magento/Checkout/etc/module.xml +++ b/app/code/Magento/Checkout/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/etc/webapi.xml b/app/code/Magento/Checkout/etc/webapi.xml index fe2e5885012..8c2c1f3820d 100644 --- a/app/code/Magento/Checkout/etc/webapi.xml +++ b/app/code/Magento/Checkout/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/registration.php b/app/code/Magento/Checkout/registration.php index fbbbd7e975e..915fa033ac1 100644 --- a/app/code/Magento/Checkout/registration.php +++ b/app/code/Magento/Checkout/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/adminhtml/email/failed_payment.html b/app/code/Magento/Checkout/view/adminhtml/email/failed_payment.html index 74deb6fa8d0..445a8d5c517 100644 --- a/app/code/Magento/Checkout/view/adminhtml/email/failed_payment.html +++ b/app/code/Magento/Checkout/view/adminhtml/email/failed_payment.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Checkout/view/frontend/layout/catalog_category_view.xml index afd8817c8b7..4bfe51a17fa 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/catalog_category_view.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/catalog_category_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Checkout/view/frontend/layout/catalog_product_view.xml index afd8817c8b7..4bfe51a17fa 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/catalog_product_view.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/catalog_product_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure.xml index c255f17cd36..57b32c26a76 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure_type_simple.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure_type_simple.xml index 4790c10b08b..b4250c80271 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure_type_simple.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure_type_simple.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_index.xml index 3676e2f45cb..0c619e89cc9 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_index.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_item_renderers.xml index f3cfea8836e..69fc24be977 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_item_renderers.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_price_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_price_renderers.xml index f6584364fc7..622841071c2 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_price_renderers.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_price_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_renderers.xml index daa88abf8f3..b48123cec8b 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_renderers.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml index 60e88c5a4ac..169d29099f8 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_index_index.xml index 4aa569c18cb..3ca02340437 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_item_price_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_item_price_renderers.xml index b1ca511ae2d..39cb6657599 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_item_price_renderers.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_item_price_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_failure.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_failure.xml index 68a9a4d0867..6a5b33ce6ce 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_failure.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_failure.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_review_item_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_review_item_renderers.xml index f68633e4492..f3a4dfb080e 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_review_item_renderers.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_review_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_success.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_success.xml index 880bcb672ba..3218c00e96a 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_success.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_success.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/layout/default.xml b/app/code/Magento/Checkout/view/frontend/layout/default.xml index 06eb85907dd..fe26adbe3c7 100644 --- a/app/code/Magento/Checkout/view/frontend/layout/default.xml +++ b/app/code/Magento/Checkout/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/page_layout/checkout.xml b/app/code/Magento/Checkout/view/frontend/page_layout/checkout.xml index f3b42213d4e..7bf40244383 100644 --- a/app/code/Magento/Checkout/view/frontend/page_layout/checkout.xml +++ b/app/code/Magento/Checkout/view/frontend/page_layout/checkout.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/requirejs-config.js b/app/code/Magento/Checkout/view/frontend/requirejs-config.js index 74429e17ffd..68e95b48e8d 100644 --- a/app/code/Magento/Checkout/view/frontend/requirejs-config.js +++ b/app/code/Magento/Checkout/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/button.phtml b/app/code/Magento/Checkout/view/frontend/templates/button.phtml index 2bf0632a152..b2cf1b8e82c 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/button.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/button.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart.phtml index 0cb2004bc7a..23df91afac9 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/additional/info.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/additional/info.phtml index d831d7184b4..44f8d1a3889 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/additional/info.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/additional/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/coupon.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/coupon.phtml index 5cb92b4a1d4..89ed64fd9ed 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/coupon.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/coupon.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/form.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/form.phtml index 632e2610903..44a842f311f 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/form.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/item/configure/updatecart.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/item/configure/updatecart.phtml index ebe8f4570b0..6010445554e 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/item/configure/updatecart.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/item/configure/updatecart.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/item/default.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/item/default.phtml index 21fafe4d37f..3e00f0d9438 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/item/default.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/item/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/item/price/sidebar.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/item/price/sidebar.phtml index 911f7594576..8fe2efe10d6 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/item/price/sidebar.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/item/price/sidebar.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/edit.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/edit.phtml index f69b3f433d7..f84cc60acfd 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/edit.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/remove.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/remove.phtml index 93d3c0f529a..9182fd51b47 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/remove.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/remove.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/methods.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/methods.phtml index 0f5a87d4ed2..9220440e608 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/methods.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/methods.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/minicart.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/minicart.phtml index e089b2a2623..ae68b530d67 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/minicart.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/minicart.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/noItems.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/noItems.phtml index 3a30e9dde43..26fb8a9bd71 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/noItems.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/noItems.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/shipping.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/shipping.phtml index 903535ef327..4eb142aa4eb 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/shipping.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/shipping.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/totals.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/totals.phtml index 745145da0a9..bcb1f24bdf9 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/cart/totals.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/cart/totals.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Checkout/view/frontend/templates/item/price/row.phtml b/app/code/Magento/Checkout/view/frontend/templates/item/price/row.phtml index b0a93ac2cd7..cbbd571a3fd 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/item/price/row.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/item/price/row.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/item/price/unit.phtml b/app/code/Magento/Checkout/view/frontend/templates/item/price/unit.phtml index bf3ba63c2d4..8f3a9ccec68 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/item/price/unit.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/item/price/unit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/js/components.phtml b/app/code/Magento/Checkout/view/frontend/templates/js/components.phtml index e490a6aa049..bdcb2e9bf77 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage.phtml index 1d42f94d6dd..bf9bcb15c3e 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/onepage.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/onepage.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/failure.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/failure.phtml index 2b41afd3d98..97d6a4415a2 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/onepage/failure.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/onepage/failure.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/link.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/link.phtml index a8a7f35eb15..01abb14b263 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/onepage/link.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/onepage/link.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item.phtml index 12ba21ae905..b54d0e5a422 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_excl_tax.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_excl_tax.phtml index 13f3459388a..99d8abe8c2e 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_excl_tax.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_excl_tax.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_incl_tax.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_incl_tax.phtml index 96d7cceebb2..95d48a0bed4 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_incl_tax.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_incl_tax.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_excl_tax.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_excl_tax.phtml index 3424f8a65bd..e7523bffba4 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_excl_tax.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_excl_tax.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_incl_tax.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_incl_tax.phtml index f4c98fba755..80d566dcd7e 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_incl_tax.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_incl_tax.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/registration.phtml b/app/code/Magento/Checkout/view/frontend/templates/registration.phtml index 40edfa6cd3c..53edbf8bc99 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/registration.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/registration.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/shipping/price.phtml b/app/code/Magento/Checkout/view/frontend/templates/shipping/price.phtml index 90d30e2ff9b..9fb29ab4dbb 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/shipping/price.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/shipping/price.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/success.phtml b/app/code/Magento/Checkout/view/frontend/templates/success.phtml index 92f9d91b0db..5ef7e992c4e 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/success.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/success.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/templates/total/default.phtml b/app/code/Magento/Checkout/view/frontend/templates/total/default.phtml index 00ed7019eab..a85b46f37f5 100644 --- a/app/code/Magento/Checkout/view/frontend/templates/total/default.phtml +++ b/app/code/Magento/Checkout/view/frontend/templates/total/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/create-billing-address.js b/app/code/Magento/Checkout/view/frontend/web/js/action/create-billing-address.js index fe5ff4fc63a..af3fc084fc4 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/create-billing-address.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/create-billing-address.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/create-shipping-address.js b/app/code/Magento/Checkout/view/frontend/web/js/action/create-shipping-address.js index 135a5714125..704f11a829d 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/create-shipping-address.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/create-shipping-address.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ @@ -27,4 +27,4 @@ define( return address; }; } -); \ No newline at end of file +); diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/get-payment-information.js b/app/code/Magento/Checkout/view/frontend/web/js/action/get-payment-information.js index e4165df335a..dac6dfbb2a8 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/get-payment-information.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/get-payment-information.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/get-totals.js b/app/code/Magento/Checkout/view/frontend/web/js/action/get-totals.js index 0bc7d92a25b..b2656ac3af5 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/get-totals.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/get-totals.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -54,4 +54,4 @@ define( }; } -); \ No newline at end of file +); diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/place-order.js b/app/code/Magento/Checkout/view/frontend/web/js/action/place-order.js index 2d142417ac0..09425db1cbb 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/place-order.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/place-order.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/redirect-on-success.js b/app/code/Magento/Checkout/view/frontend/web/js/action/redirect-on-success.js index 121573c2e0a..095012d26cd 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/redirect-on-success.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/redirect-on-success.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/select-billing-address.js b/app/code/Magento/Checkout/view/frontend/web/js/action/select-billing-address.js index 72c17350011..16eb5e1dc1b 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/select-billing-address.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/select-billing-address.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/select-payment-method.js b/app/code/Magento/Checkout/view/frontend/web/js/action/select-payment-method.js index 45fb69055ad..25a08b2496e 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/select-payment-method.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/select-payment-method.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-address.js b/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-address.js index 35af49f3162..5516d2673a3 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-address.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-address.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-method.js b/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-method.js index 45834d42eff..0f24fa393f2 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-method.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-method.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define,alert*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/set-billing-address.js b/app/code/Magento/Checkout/view/frontend/web/js/action/set-billing-address.js index 36518a4d615..db5c21b797e 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/set-billing-address.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/set-billing-address.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/set-payment-information.js b/app/code/Magento/Checkout/view/frontend/web/js/action/set-payment-information.js index d56a15abc2e..3acaa08fb4b 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/set-payment-information.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/set-payment-information.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/set-shipping-information.js b/app/code/Magento/Checkout/view/frontend/web/js/action/set-shipping-information.js index 8db993b3f15..56d0da0d5bd 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/action/set-shipping-information.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/action/set-shipping-information.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define,alert*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/checkout-data.js b/app/code/Magento/Checkout/view/frontend/web/js/checkout-data.js index 5c95e1fdeae..d0c9abcc83d 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/checkout-data.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/checkout-data.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/checkout-loader.js b/app/code/Magento/Checkout/view/frontend/web/js/checkout-loader.js index e1b03a7f8ad..4adfa54dc37 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/checkout-loader.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/checkout-loader.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/discount-codes.js b/app/code/Magento/Checkout/view/frontend/web/js/discount-codes.js index 3f2355b182f..da95efcaa03 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/discount-codes.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/discount-codes.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ @@ -31,4 +31,4 @@ define([ }); return $.mage.discountCode; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/address-converter.js b/app/code/Magento/Checkout/view/frontend/web/js/model/address-converter.js index 3ec34cd9657..638cb19051d 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/address-converter.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/address-converter.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/authentication-messages.js b/app/code/Magento/Checkout/view/frontend/web/js/model/authentication-messages.js index 4c086a8973d..276f8b0526e 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/authentication-messages.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/authentication-messages.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/cart/estimate-service.js b/app/code/Magento/Checkout/view/frontend/web/js/model/cart/estimate-service.js index e1eab15e09a..e3d71219ad7 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/cart/estimate-service.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/cart/estimate-service.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/cart/totals-processor/default.js b/app/code/Magento/Checkout/view/frontend/web/js/model/cart/totals-processor/default.js index 566cf241435..2ed0f1fdc47 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/cart/totals-processor/default.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/cart/totals-processor/default.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/checkout-data-resolver.js b/app/code/Magento/Checkout/view/frontend/web/js/model/checkout-data-resolver.js index 0fd1a4967f8..e5ee2468be1 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/checkout-data-resolver.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/checkout-data-resolver.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/customer-email-validator.js b/app/code/Magento/Checkout/view/frontend/web/js/model/customer-email-validator.js index dc0d629d72f..685681849ef 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/customer-email-validator.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/customer-email-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/error-processor.js b/app/code/Magento/Checkout/view/frontend/web/js/model/error-processor.js index 3af2e5f6a8e..c477608f807 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/error-processor.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/error-processor.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/full-screen-loader.js b/app/code/Magento/Checkout/view/frontend/web/js/model/full-screen-loader.js index 9005015d246..d32b8364b33 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/full-screen-loader.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/full-screen-loader.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/new-customer-address.js b/app/code/Magento/Checkout/view/frontend/web/js/model/new-customer-address.js index c215b1989ed..02b2b9621d0 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/new-customer-address.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/new-customer-address.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment-service.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment-service.js index 1f0a42d7adb..9268647a58d 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/payment-service.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/payment-service.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/additional-validators.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/additional-validators.js index c77fb523820..832e53b0b4c 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/additional-validators.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/additional-validators.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-converter.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-converter.js index abc943cb941..0ebae06c7ca 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-converter.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-converter.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-group.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-group.js index 4236a215d73..b27e32e6d7f 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-group.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-group.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-list.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-list.js index da529415ba9..12d98a81270 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-list.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-list.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/renderer-list.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/renderer-list.js index d987e989454..fd90e7daaaa 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/renderer-list.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/renderer-list.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/place-order.js b/app/code/Magento/Checkout/view/frontend/web/js/model/place-order.js index be57b56efc6..d533a963a6d 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/place-order.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/place-order.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/postcode-validator.js b/app/code/Magento/Checkout/view/frontend/web/js/model/postcode-validator.js index dd007c3eee1..30b7fcd1ac8 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/postcode-validator.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/postcode-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/quote.js b/app/code/Magento/Checkout/view/frontend/web/js/model/quote.js index dbb38edc724..398f6540809 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/quote.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/quote.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/resource-url-manager.js b/app/code/Magento/Checkout/view/frontend/web/js/model/resource-url-manager.js index c1ecb6a8668..7f017c14379 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/resource-url-manager.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/resource-url-manager.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-address/form-popup-state.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-address/form-popup-state.js index 36fbc276ac9..7d6f45cd13d 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-address/form-popup-state.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-address/form-popup-state.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js index 7d101c31614..404de741988 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js index 0e8fb8c889f..2079ddadcb8 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-registry.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-registry.js index 9e096ef82e9..ae029c67e56 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-registry.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-registry.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ @@ -20,4 +20,4 @@ define( } }; } -); \ No newline at end of file +); diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-service.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-service.js index 67ffa6a4971..2c62ab84a43 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-service.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-service.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validation-rules.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validation-rules.js index 909cdfe5c05..3e98ba2c92c 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validation-rules.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validation-rules.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validator.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validator.js index c49960ecfb9..7f473b227b7 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validator.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor.js index 911cab0fe54..f505626f1fd 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor/default.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor/default.js index 016bc729ba2..546ce4b3dd4 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor/default.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor/default.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define,alert*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-service.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-service.js index 332f7ec00b5..c0f696933f4 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-service.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-service.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/sidebar.js b/app/code/Magento/Checkout/view/frontend/web/js/model/sidebar.js index c0a87af6e46..d0b6a9b0fb3 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/sidebar.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/sidebar.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/step-navigator.js b/app/code/Magento/Checkout/view/frontend/web/js/model/step-navigator.js index fa7eb4c97b9..5271507d0a2 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/step-navigator.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/step-navigator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/totals.js b/app/code/Magento/Checkout/view/frontend/web/js/model/totals.js index 95edf9c576d..2af4213e83d 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/totals.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/totals.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/url-builder.js b/app/code/Magento/Checkout/view/frontend/web/js/model/url-builder.js index 522ecdf0d45..ae4bd83633a 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/model/url-builder.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/model/url-builder.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/proceed-to-checkout.js b/app/code/Magento/Checkout/view/frontend/web/js/proceed-to-checkout.js index e452547cfa5..df9fc5396a9 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/proceed-to-checkout.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/proceed-to-checkout.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/region-updater.js b/app/code/Magento/Checkout/view/frontend/web/js/region-updater.js index eba77927be7..1d1ecfe954b 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/region-updater.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/region-updater.js @@ -1,6 +1,6 @@ /** * @category frontend Checkout region-updater - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true expr:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/shopping-cart.js b/app/code/Magento/Checkout/view/frontend/web/js/shopping-cart.js index e5531f95baa..daf465f6564 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/shopping-cart.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/shopping-cart.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ @@ -35,4 +35,4 @@ define([ }); return $.mage.shoppingCart; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Checkout/view/frontend/web/js/sidebar.js b/app/code/Magento/Checkout/view/frontend/web/js/sidebar.js index ea88d2c1e7b..29e9e2ea896 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/sidebar.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/sidebar.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/authentication-messages.js b/app/code/Magento/Checkout/view/frontend/web/js/view/authentication-messages.js index 0fbfe1b51f3..fcb026cd4f3 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/authentication-messages.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/authentication-messages.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/authentication.js b/app/code/Magento/Checkout/view/frontend/web/js/view/authentication.js index f971021fee3..85fa6137814 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/authentication.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/authentication.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/beforePlaceOrder.js b/app/code/Magento/Checkout/view/frontend/web/js/view/beforePlaceOrder.js index 4944b0fc47a..6764dd7f706 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/beforePlaceOrder.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/beforePlaceOrder.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js b/app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js index 0c2e7fb01c7..d831f4d045b 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-estimation.js b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-estimation.js index cd43dc64658..b1ab8bdbadc 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-estimation.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-estimation.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-rates.js b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-rates.js index 24b4ea01fe1..7c6ed559b5a 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-rates.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-rates.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals.js b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals.js index 62024d34428..a51a70ea287 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals/shipping.js b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals/shipping.js index 3c00a212faa..dd04c8a4b8a 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals/shipping.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals/shipping.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js b/app/code/Magento/Checkout/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js index 6ca3f6f9f2c..7c5e3d37fed 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/estimation.js b/app/code/Magento/Checkout/view/frontend/web/js/view/estimation.js index 8c2a4833974..8e53f41822c 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/estimation.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/estimation.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/form/element/email.js b/app/code/Magento/Checkout/view/frontend/web/js/view/form/element/email.js index 521665b773f..c03937a1033 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/form/element/email.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/form/element/email.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/minicart.js b/app/code/Magento/Checkout/view/frontend/web/js/view/minicart.js index 7e0f5b87717..9ef364a6788 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/minicart.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/minicart.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/payment.js b/app/code/Magento/Checkout/view/frontend/web/js/view/payment.js index fa0d2f1097a..35e703d044b 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/payment.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/payment.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/payment/default.js b/app/code/Magento/Checkout/view/frontend/web/js/view/payment/default.js index 846e65b0c16..08267ef4cfe 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/payment/default.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/payment/default.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/payment/email-validator.js b/app/code/Magento/Checkout/view/frontend/web/js/view/payment/email-validator.js index 53e474fe896..4e6a4152481 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/payment/email-validator.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/payment/email-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/payment/list.js b/app/code/Magento/Checkout/view/frontend/web/js/view/payment/list.js index 918d305ee03..8ec43eb4f34 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/payment/list.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/payment/list.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/progress-bar.js b/app/code/Magento/Checkout/view/frontend/web/js/view/progress-bar.js index fd8720796bb..fe0e22b91fe 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/progress-bar.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/progress-bar.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/registration.js b/app/code/Magento/Checkout/view/frontend/web/js/view/registration.js index b0ca42fc097..a83d3806544 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/registration.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/registration.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions.js b/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions.js index e8618e55ff9..50c34e1c087 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions/default.js b/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions/default.js index 69d4daada01..c67a1a1f2b4 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions/default.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions/default.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/address-renderer/default.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/address-renderer/default.js index d119ef1a96d..2f38782c974 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/address-renderer/default.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/address-renderer/default.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/list.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/list.js index 33b0cee1134..4326333e5a2 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/list.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/list.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information.js index e1e5f249f8b..22e4439a767 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/address-renderer/default.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/address-renderer/default.js index d883f95856a..20e69b5da25 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/address-renderer/default.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/address-renderer/default.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/list.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/list.js index 0a6109b819e..6fe282111cb 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/list.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/list.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping.js index 78bd0ca73c4..9a227dd8592 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/sidebar.js b/app/code/Magento/Checkout/view/frontend/web/js/view/sidebar.js index a7cd1a5e838..95c381dbd96 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/sidebar.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/sidebar.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary.js index 77b9a74029d..1380766a707 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/summary.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/summary.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/abstract-total.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/abstract-total.js index 1cde378432a..51baf2aa15c 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/abstract-total.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/abstract-total.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/cart-items.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/cart-items.js index 2a8975ab3f9..1c6a2ae4d1b 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/cart-items.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/cart-items.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/grand-total.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/grand-total.js index da0e7f25955..fd2622f1fc7 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/grand-total.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/grand-total.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details.js index 20929d87400..5d89d9fc673 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/subtotal.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/subtotal.js index e247cb050d4..fca33451475 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/subtotal.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/subtotal.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/thumbnail.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/thumbnail.js index d0a9e6c9792..095ce4a29fe 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/thumbnail.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/thumbnail.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/shipping.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/shipping.js index 7683173d607..bc46356b034 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/shipping.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/shipping.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/subtotal.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/subtotal.js index b26ee67fb67..e2c2e8f25dc 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/subtotal.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/subtotal.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/totals.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/totals.js index 8eb35e4d459..c8ddca65cc9 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/totals.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/totals.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Checkout/view/frontend/web/template/authentication.html b/app/code/Magento/Checkout/view/frontend/web/template/authentication.html index 112fd14e637..a81cfb1db6b 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/authentication.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/authentication.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/billing-address.html b/app/code/Magento/Checkout/view/frontend/web/template/billing-address.html index 23c02caa70b..6f13f3379b0 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/billing-address.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/billing-address.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -29,4 +29,4 @@ </div> </fieldset> -</div> \ No newline at end of file +</div> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/billing-address/details.html b/app/code/Magento/Checkout/view/frontend/web/template/billing-address/details.html index 798be1f978f..6ad343ce221 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/billing-address/details.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/billing-address/details.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/billing-address/form.html b/app/code/Magento/Checkout/view/frontend/web/template/billing-address/form.html index 079dce9e260..7b9c5d286cb 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/billing-address/form.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/billing-address/form.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/billing-address/list.html b/app/code/Magento/Checkout/view/frontend/web/template/billing-address/list.html index 1cdd1ce419a..1869b514d02 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/billing-address/list.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/billing-address/list.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-estimation.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-estimation.html index f20d3eee23e..186b932b4e2 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-estimation.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-estimation.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-rates.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-rates.html index eae097d04a2..3f465d50188 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-rates.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-rates.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals.html index e4322f023c3..a6549d19c91 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/grand-total.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/grand-total.html index 0d8c7bdb438..6ff15eca9a9 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/grand-total.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/grand-total.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/shipping.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/shipping.html index 6d7fe4d500d..31394da7d9d 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/shipping.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/shipping.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/subtotal.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/subtotal.html index a1ff5d9a046..ba908bf0ec1 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/subtotal.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/subtotal.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/estimation.html b/app/code/Magento/Checkout/view/frontend/web/template/estimation.html index 7b5bdacc990..c360a40d7ef 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/estimation.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/estimation.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/form/element/email.html b/app/code/Magento/Checkout/view/frontend/web/template/form/element/email.html index 7bae4135a46..f67970754b7 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/form/element/email.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/form/element/email.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/minicart/content.html b/app/code/Magento/Checkout/view/frontend/web/template/minicart/content.html index 24671cb48c5..97a075d3227 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/minicart/content.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/minicart/content.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/default.html b/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/default.html index 8796152eb60..c2b4e038ddc 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/default.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/default.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/price.html b/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/price.html index 6bbd6048b80..c54426e9014 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/price.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/price.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal.html b/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal.html index 1355c43c0fa..d2b4566ebc6 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal/totals.html b/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal/totals.html index d5e2d95e686..4af767fb5ca 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal/totals.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal/totals.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/onepage.html b/app/code/Magento/Checkout/view/frontend/web/template/onepage.html index 20be1662c1f..8ec57b6b17c 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/onepage.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/onepage.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/payment-methods/list.html b/app/code/Magento/Checkout/view/frontend/web/template/payment-methods/list.html index f6c41c62eec..f64223cafe1 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/payment-methods/list.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/payment-methods/list.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/payment.html b/app/code/Magento/Checkout/view/frontend/web/template/payment.html index 46467839da3..62e9ad0ec13 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/payment.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/payment.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/payment/before-place-order.html b/app/code/Magento/Checkout/view/frontend/web/template/payment/before-place-order.html index 04be67cd44d..2a617a7bea5 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/payment/before-place-order.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/payment/before-place-order.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -8,4 +8,4 @@ <!-- ko if: hasTemplate() --> <!-- ko template: getTemplate() --><!-- /ko --> <!-- /ko --> -<!-- /ko --> \ No newline at end of file +<!-- /ko --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/payment/generic-title.html b/app/code/Magento/Checkout/view/frontend/web/template/payment/generic-title.html index 5e77467c823..4a049082f00 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/payment/generic-title.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/payment/generic-title.html @@ -1,7 +1,7 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> -<!-- ko text: getTitle() --><!-- /ko --> \ No newline at end of file +<!-- ko text: getTitle() --><!-- /ko --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/progress-bar.html b/app/code/Magento/Checkout/view/frontend/web/template/progress-bar.html index 8fa7eeb511b..93599866719 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/progress-bar.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/progress-bar.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/registration.html b/app/code/Magento/Checkout/view/frontend/web/template/registration.html index 10c4a76ccd6..e58a09f478f 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/registration.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/registration.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/review/actions.html b/app/code/Magento/Checkout/view/frontend/web/template/review/actions.html index 4ae4c490ced..ed05c3954e3 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/review/actions.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/review/actions.html @@ -1,9 +1,9 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> <!-- ko with: getActiveView() --> <!-- ko template: getTemplate() --><!-- /ko --> -<!-- /ko --> \ No newline at end of file +<!-- /ko --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/review/actions/default.html b/app/code/Magento/Checkout/view/frontend/web/template/review/actions/default.html index 7fda6d2a3c2..859c0e49c86 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/review/actions/default.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/review/actions/default.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/address-renderer/default.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/address-renderer/default.html index 92469fdec3d..103274e3ef6 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/address-renderer/default.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/address-renderer/default.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/form.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/form.html index beb63bc6f34..89f26bee1da 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/form.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/form.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/list.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/list.html index 9b7851ea683..d631229a33f 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/list.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/list.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-information.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-information.html index c0360d8ebde..b32e96641f3 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/shipping-information.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/shipping-information.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/address-renderer/default.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/address-renderer/default.html index 36ea556ae9e..9b493e9ed1e 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/address-renderer/default.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/address-renderer/default.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/list.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/list.html index 17a1a37d701..f421e1052f6 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/list.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/list.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping.html index 5049aac2bbc..3b3b4f09c63 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/shipping.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/shipping.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/sidebar.html b/app/code/Magento/Checkout/view/frontend/web/template/sidebar.html index ab76be64a5b..751e2c461dc 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/sidebar.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/sidebar.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary.html b/app/code/Magento/Checkout/view/frontend/web/template/summary.html index fed42c9ffbc..c9a4ab81ed5 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/summary.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/summary.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/cart-items.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/cart-items.html index 498a9f852d0..ee4738eda99 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/summary/cart-items.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/summary/cart-items.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/grand-total.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/grand-total.html index cef1f58d093..1e9cecc6b23 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/summary/grand-total.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/summary/grand-total.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details.html index 86547d4fa14..5436e82f9db 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/subtotal.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/subtotal.html index f9c6153312d..c99d2f05445 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/subtotal.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/subtotal.html @@ -1,7 +1,7 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> -<span class="subtotal" data-bind="text: getValue($parents[1])"></span> \ No newline at end of file +<span class="subtotal" data-bind="text: getValue($parents[1])"></span> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/thumbnail.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/thumbnail.html index 9268ef71c6b..a9ed49da525 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/thumbnail.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/thumbnail.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/shipping.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/shipping.html index 706cdf560a8..18732836008 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/summary/shipping.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/summary/shipping.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/subtotal.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/subtotal.html index 69b4863da1c..dcfd270e80b 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/summary/subtotal.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/summary/subtotal.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/totals.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/totals.html index 28478703db0..627bd6e827f 100644 --- a/app/code/Magento/Checkout/view/frontend/web/template/summary/totals.html +++ b/app/code/Magento/Checkout/view/frontend/web/template/summary/totals.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CheckoutAgreements/Api/CheckoutAgreementsRepositoryInterface.php b/app/code/Magento/CheckoutAgreements/Api/CheckoutAgreementsRepositoryInterface.php index 03b7d21a5f5..2e60aec29f0 100644 --- a/app/code/Magento/CheckoutAgreements/Api/CheckoutAgreementsRepositoryInterface.php +++ b/app/code/Magento/CheckoutAgreements/Api/CheckoutAgreementsRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Api; diff --git a/app/code/Magento/CheckoutAgreements/Api/Data/AgreementInterface.php b/app/code/Magento/CheckoutAgreements/Api/Data/AgreementInterface.php index 68cdac6cbc4..8be7e7455f4 100644 --- a/app/code/Magento/CheckoutAgreements/Api/Data/AgreementInterface.php +++ b/app/code/Magento/CheckoutAgreements/Api/Data/AgreementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Api\Data; diff --git a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement.php b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement.php index 13703caf2fa..004139bd8db 100644 --- a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement.php +++ b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Block\Adminhtml; diff --git a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit.php b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit.php index e576655b52f..b1e546b2e70 100644 --- a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit.php +++ b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Block\Adminhtml\Agreement; diff --git a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit/Form.php b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit/Form.php index b157d60c5a9..1617b660f50 100644 --- a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit/Form.php +++ b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Block\Adminhtml\Agreement\Edit; diff --git a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Grid.php b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Grid.php index fd8a7876959..1177cb6f543 100644 --- a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Grid.php +++ b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Block\Adminhtml\Agreement; diff --git a/app/code/Magento/CheckoutAgreements/Block/Agreements.php b/app/code/Magento/CheckoutAgreements/Block/Agreements.php index 4010d382b9e..ddd527ff7d3 100644 --- a/app/code/Magento/CheckoutAgreements/Block/Agreements.php +++ b/app/code/Magento/CheckoutAgreements/Block/Agreements.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement.php index d1565f63c72..7b3af085323 100644 --- a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement.php +++ b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Controller\Adminhtml; diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Delete.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Delete.php index 683ed3be2b4..042c00c963d 100644 --- a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Delete.php +++ b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Controller\Adminhtml\Agreement; diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Edit.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Edit.php index ef0ca8282b7..aacab4c5541 100644 --- a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Edit.php +++ b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Controller\Adminhtml\Agreement; diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Index.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Index.php index da0e0d5f1c2..bc2af4e488b 100644 --- a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Index.php +++ b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Controller\Adminhtml\Agreement; diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/NewAction.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/NewAction.php index 388047d2b17..fcbe2799bde 100644 --- a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/NewAction.php +++ b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Controller\Adminhtml\Agreement; diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Save.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Save.php index 7f2b72bf48f..66e71dcda26 100644 --- a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Save.php +++ b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Controller\Adminhtml\Agreement; diff --git a/app/code/Magento/CheckoutAgreements/Model/Agreement.php b/app/code/Magento/CheckoutAgreements/Model/Agreement.php index b5437dd16cc..fd1de44e987 100644 --- a/app/code/Magento/CheckoutAgreements/Model/Agreement.php +++ b/app/code/Magento/CheckoutAgreements/Model/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Model; diff --git a/app/code/Magento/CheckoutAgreements/Model/AgreementModeOptions.php b/app/code/Magento/CheckoutAgreements/Model/AgreementModeOptions.php index 85a08eb6991..c1135ac9b82 100644 --- a/app/code/Magento/CheckoutAgreements/Model/AgreementModeOptions.php +++ b/app/code/Magento/CheckoutAgreements/Model/AgreementModeOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Model; diff --git a/app/code/Magento/CheckoutAgreements/Model/AgreementsConfigProvider.php b/app/code/Magento/CheckoutAgreements/Model/AgreementsConfigProvider.php index b535f00b35d..c0c576440ac 100644 --- a/app/code/Magento/CheckoutAgreements/Model/AgreementsConfigProvider.php +++ b/app/code/Magento/CheckoutAgreements/Model/AgreementsConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Model; diff --git a/app/code/Magento/CheckoutAgreements/Model/AgreementsProvider.php b/app/code/Magento/CheckoutAgreements/Model/AgreementsProvider.php index 34d5c67f98d..8268c3ac42a 100644 --- a/app/code/Magento/CheckoutAgreements/Model/AgreementsProvider.php +++ b/app/code/Magento/CheckoutAgreements/Model/AgreementsProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Model; diff --git a/app/code/Magento/CheckoutAgreements/Model/AgreementsProviderInterface.php b/app/code/Magento/CheckoutAgreements/Model/AgreementsProviderInterface.php index 7c6907ca7b1..d1d05cefbcf 100644 --- a/app/code/Magento/CheckoutAgreements/Model/AgreementsProviderInterface.php +++ b/app/code/Magento/CheckoutAgreements/Model/AgreementsProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Model; diff --git a/app/code/Magento/CheckoutAgreements/Model/AgreementsValidator.php b/app/code/Magento/CheckoutAgreements/Model/AgreementsValidator.php index 91c1093210e..93c4dd09d9b 100644 --- a/app/code/Magento/CheckoutAgreements/Model/AgreementsValidator.php +++ b/app/code/Magento/CheckoutAgreements/Model/AgreementsValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Model; diff --git a/app/code/Magento/CheckoutAgreements/Model/Checkout/Plugin/Validation.php b/app/code/Magento/CheckoutAgreements/Model/Checkout/Plugin/Validation.php index a57a1f91dcf..e29605b9ad6 100644 --- a/app/code/Magento/CheckoutAgreements/Model/Checkout/Plugin/Validation.php +++ b/app/code/Magento/CheckoutAgreements/Model/Checkout/Plugin/Validation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Model\Checkout\Plugin; diff --git a/app/code/Magento/CheckoutAgreements/Model/CheckoutAgreementsRepository.php b/app/code/Magento/CheckoutAgreements/Model/CheckoutAgreementsRepository.php index 3396953cce0..6a43215e36d 100644 --- a/app/code/Magento/CheckoutAgreements/Model/CheckoutAgreementsRepository.php +++ b/app/code/Magento/CheckoutAgreements/Model/CheckoutAgreementsRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement.php b/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement.php index 736fe3a8ad6..d5de9cf49f9 100644 --- a/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement.php +++ b/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Model\ResourceModel; diff --git a/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement/Collection.php b/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement/Collection.php index cdd56d6defa..a07bb9ccc5a 100644 --- a/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement/Collection.php +++ b/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Model\ResourceModel\Agreement; diff --git a/app/code/Magento/CheckoutAgreements/Setup/InstallSchema.php b/app/code/Magento/CheckoutAgreements/Setup/InstallSchema.php index 41b02d8200b..a2e070a787e 100644 --- a/app/code/Magento/CheckoutAgreements/Setup/InstallSchema.php +++ b/app/code/Magento/CheckoutAgreements/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CheckoutAgreements/Setup/UpgradeSchema.php b/app/code/Magento/CheckoutAgreements/Setup/UpgradeSchema.php index 20640b7ffb9..8f640220e1a 100644 --- a/app/code/Magento/CheckoutAgreements/Setup/UpgradeSchema.php +++ b/app/code/Magento/CheckoutAgreements/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Setup; diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Block/AgreementsTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Block/AgreementsTest.php index b28aa0ac32a..ad1f2f884f1 100644 --- a/app/code/Magento/CheckoutAgreements/Test/Unit/Block/AgreementsTest.php +++ b/app/code/Magento/CheckoutAgreements/Test/Unit/Block/AgreementsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Test\Unit\Block; diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementModeOptionsTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementModeOptionsTest.php index f587efebf57..59fc1479689 100644 --- a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementModeOptionsTest.php +++ b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementModeOptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Test\Unit\Model; diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementTest.php index 165b67a9e57..9b43f8344a5 100644 --- a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementTest.php +++ b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Test\Unit\Model; diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsConfigProviderTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsConfigProviderTest.php index 111ee16e72d..29267cbca29 100644 --- a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsConfigProviderTest.php +++ b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Test\Unit\Model; diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsProviderTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsProviderTest.php index f6856ae4ceb..80c6b75a9f2 100644 --- a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsProviderTest.php +++ b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Test\Unit\Model; diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsValidatorTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsValidatorTest.php index b1f5e07e228..9bb60a020ec 100644 --- a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsValidatorTest.php +++ b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Test\Unit\Model; diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/Checkout/Plugin/ValidationTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/Checkout/Plugin/ValidationTest.php index 1bb732cb83a..82ac8483e0a 100644 --- a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/Checkout/Plugin/ValidationTest.php +++ b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/Checkout/Plugin/ValidationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Test\Unit\Model\Checkout\Plugin; diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/CheckoutAgreementsRepositoryTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/CheckoutAgreementsRepositoryTest.php index 6ebbcab52c2..2557d3faccb 100644 --- a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/CheckoutAgreementsRepositoryTest.php +++ b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/CheckoutAgreementsRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CheckoutAgreements\Test\Unit\Model; diff --git a/app/code/Magento/CheckoutAgreements/etc/acl.xml b/app/code/Magento/CheckoutAgreements/etc/acl.xml index 17261dcf906..2b16ffdc481 100644 --- a/app/code/Magento/CheckoutAgreements/etc/acl.xml +++ b/app/code/Magento/CheckoutAgreements/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CheckoutAgreements/etc/adminhtml/menu.xml b/app/code/Magento/CheckoutAgreements/etc/adminhtml/menu.xml index e2ac0d8584c..c6cece231c3 100644 --- a/app/code/Magento/CheckoutAgreements/etc/adminhtml/menu.xml +++ b/app/code/Magento/CheckoutAgreements/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CheckoutAgreements/etc/adminhtml/routes.xml b/app/code/Magento/CheckoutAgreements/etc/adminhtml/routes.xml index da8eae7f8fd..c047706860c 100644 --- a/app/code/Magento/CheckoutAgreements/etc/adminhtml/routes.xml +++ b/app/code/Magento/CheckoutAgreements/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CheckoutAgreements/etc/adminhtml/system.xml b/app/code/Magento/CheckoutAgreements/etc/adminhtml/system.xml index f82f7ec71cf..bfb813ea4c2 100644 --- a/app/code/Magento/CheckoutAgreements/etc/adminhtml/system.xml +++ b/app/code/Magento/CheckoutAgreements/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CheckoutAgreements/etc/di.xml b/app/code/Magento/CheckoutAgreements/etc/di.xml index d4c4b954797..4d80a4776a8 100644 --- a/app/code/Magento/CheckoutAgreements/etc/di.xml +++ b/app/code/Magento/CheckoutAgreements/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CheckoutAgreements/etc/extension_attributes.xml b/app/code/Magento/CheckoutAgreements/etc/extension_attributes.xml index f79d5d49747..3b6d490e04e 100644 --- a/app/code/Magento/CheckoutAgreements/etc/extension_attributes.xml +++ b/app/code/Magento/CheckoutAgreements/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CheckoutAgreements/etc/frontend/di.xml b/app/code/Magento/CheckoutAgreements/etc/frontend/di.xml index c462e6c812d..f33eced3401 100644 --- a/app/code/Magento/CheckoutAgreements/etc/frontend/di.xml +++ b/app/code/Magento/CheckoutAgreements/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CheckoutAgreements/etc/module.xml b/app/code/Magento/CheckoutAgreements/etc/module.xml index 1f0ec4f3532..797102ee1dc 100644 --- a/app/code/Magento/CheckoutAgreements/etc/module.xml +++ b/app/code/Magento/CheckoutAgreements/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CheckoutAgreements/etc/webapi.xml b/app/code/Magento/CheckoutAgreements/etc/webapi.xml index 2a5b36fa3c6..41267e2d75f 100644 --- a/app/code/Magento/CheckoutAgreements/etc/webapi.xml +++ b/app/code/Magento/CheckoutAgreements/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CheckoutAgreements/registration.php b/app/code/Magento/CheckoutAgreements/registration.php index 825eec9031c..b81f45461d8 100644 --- a/app/code/Magento/CheckoutAgreements/registration.php +++ b/app/code/Magento/CheckoutAgreements/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/CheckoutAgreements/view/frontend/layout/checkout_index_index.xml index d15303ea8d2..8d0b7855561 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/CheckoutAgreements/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -54,4 +54,4 @@ </arguments> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/layout/multishipping_checkout_overview.xml b/app/code/Magento/CheckoutAgreements/view/frontend/layout/multishipping_checkout_overview.xml index d1790b57907..6cd283c7f39 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/layout/multishipping_checkout_overview.xml +++ b/app/code/Magento/CheckoutAgreements/view/frontend/layout/multishipping_checkout_overview.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/requirejs-config.js b/app/code/Magento/CheckoutAgreements/view/frontend/requirejs-config.js index d0876cc49ce..4a20149774d 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/requirejs-config.js +++ b/app/code/Magento/CheckoutAgreements/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/templates/additional_agreements.phtml b/app/code/Magento/CheckoutAgreements/view/frontend/templates/additional_agreements.phtml index 5aea3bf200a..20840500a24 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/templates/additional_agreements.phtml +++ b/app/code/Magento/CheckoutAgreements/view/frontend/templates/additional_agreements.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/templates/agreements.phtml b/app/code/Magento/CheckoutAgreements/view/frontend/templates/agreements.phtml index 0532a39e255..b076574039e 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/templates/agreements.phtml +++ b/app/code/Magento/CheckoutAgreements/view/frontend/templates/agreements.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/templates/multishipping_agreements.phtml b/app/code/Magento/CheckoutAgreements/view/frontend/templates/multishipping_agreements.phtml index 8b5439e9ab1..6c1528f75a8 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/templates/multishipping_agreements.phtml +++ b/app/code/Magento/CheckoutAgreements/view/frontend/templates/multishipping_agreements.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreement-validator.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreement-validator.js index 2fa3c2cddd3..cff1212cb7d 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreement-validator.js +++ b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreement-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-assigner.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-assigner.js index cd2c486f092..5ce0cc8ff97 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-assigner.js +++ b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-assigner.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-modal.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-modal.js index 36892f15a59..25cfff6b44f 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-modal.js +++ b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-modal.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/place-order-mixin.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/place-order-mixin.js index ac459e573f9..0ca3a334f82 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/place-order-mixin.js +++ b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/place-order-mixin.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/set-payment-information-mixin.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/set-payment-information-mixin.js index 159568a8b1b..7b040e26c84 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/set-payment-information-mixin.js +++ b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/set-payment-information-mixin.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/agreement-validation.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/agreement-validation.js index 060501286f0..42ac4e0417b 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/agreement-validation.js +++ b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/agreement-validation.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/checkout-agreements.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/checkout-agreements.js index 292fb69ca6b..b2543d77c25 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/checkout-agreements.js +++ b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/checkout-agreements.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/template/checkout/checkout-agreements.html b/app/code/Magento/CheckoutAgreements/view/frontend/web/template/checkout/checkout-agreements.html index 7d8ef43084f..6008530da13 100644 --- a/app/code/Magento/CheckoutAgreements/view/frontend/web/template/checkout/checkout-agreements.html +++ b/app/code/Magento/CheckoutAgreements/view/frontend/web/template/checkout/checkout-agreements.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/Api/BlockRepositoryInterface.php b/app/code/Magento/Cms/Api/BlockRepositoryInterface.php index 880b6aea15c..64ff3c1c8f0 100644 --- a/app/code/Magento/Cms/Api/BlockRepositoryInterface.php +++ b/app/code/Magento/Cms/Api/BlockRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Api; diff --git a/app/code/Magento/Cms/Api/Data/BlockInterface.php b/app/code/Magento/Cms/Api/Data/BlockInterface.php index f88e165490d..d9737f5c3d3 100644 --- a/app/code/Magento/Cms/Api/Data/BlockInterface.php +++ b/app/code/Magento/Cms/Api/Data/BlockInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Api\Data; diff --git a/app/code/Magento/Cms/Api/Data/BlockSearchResultsInterface.php b/app/code/Magento/Cms/Api/Data/BlockSearchResultsInterface.php index 66b25ea10ce..dd83e81e07b 100644 --- a/app/code/Magento/Cms/Api/Data/BlockSearchResultsInterface.php +++ b/app/code/Magento/Cms/Api/Data/BlockSearchResultsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Api\Data; diff --git a/app/code/Magento/Cms/Api/Data/PageInterface.php b/app/code/Magento/Cms/Api/Data/PageInterface.php index d3268333d3d..f2be66b7252 100644 --- a/app/code/Magento/Cms/Api/Data/PageInterface.php +++ b/app/code/Magento/Cms/Api/Data/PageInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Api\Data; diff --git a/app/code/Magento/Cms/Api/Data/PageSearchResultsInterface.php b/app/code/Magento/Cms/Api/Data/PageSearchResultsInterface.php index 60ed7a72564..c90f24868c3 100644 --- a/app/code/Magento/Cms/Api/Data/PageSearchResultsInterface.php +++ b/app/code/Magento/Cms/Api/Data/PageSearchResultsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Api\Data; diff --git a/app/code/Magento/Cms/Api/PageRepositoryInterface.php b/app/code/Magento/Cms/Api/PageRepositoryInterface.php index 24692809e39..d175ccff558 100644 --- a/app/code/Magento/Cms/Api/PageRepositoryInterface.php +++ b/app/code/Magento/Cms/Api/PageRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Api; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block.php b/app/code/Magento/Cms/Block/Adminhtml/Block.php index f97bcab850d..c29b0f88e1e 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Block.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Block.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/BackButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/BackButton.php index 7d44f36470e..dfd40a47d0e 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/BackButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/BackButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Block\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/DeleteButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/DeleteButton.php index bfa59a90bc2..005cbddfcd9 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/DeleteButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/DeleteButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Block\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/GenericButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/GenericButton.php index c83ac56d8ec..ddb37be98ed 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/GenericButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/GenericButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Block\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/ResetButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/ResetButton.php index 9f565c60c51..752382ed982 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/ResetButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/ResetButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Block\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveAndContinueButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveAndContinueButton.php index 82e5dc373b1..ef847531090 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveAndContinueButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveAndContinueButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Block\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveButton.php index 647097b3cc5..425e516d8b3 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Block\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Widget/Chooser.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Widget/Chooser.php index 87eb1b2ff05..06f4d69ca97 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Block/Widget/Chooser.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Block/Widget/Chooser.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Block\Widget; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page.php b/app/code/Magento/Cms/Block/Adminhtml/Page.php index 09a36c8d643..ff3d5f353df 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/BackButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/BackButton.php index 84707e283bc..51610c19c48 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/BackButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/BackButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Page\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/DeleteButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/DeleteButton.php index 0d2c033c673..eea050666cb 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/DeleteButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/DeleteButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Page\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/GenericButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/GenericButton.php index 811be6a76e2..d0ba24476c1 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/GenericButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/GenericButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Page\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/ResetButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/ResetButton.php index 90cb7cb56f9..558a8f369e1 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/ResetButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/ResetButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Page\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveAndContinueButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveAndContinueButton.php index 0f0d4cbbc04..182255761af 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveAndContinueButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveAndContinueButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Page\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveButton.php index 016e8e6c48d..9091656b0c9 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveButton.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Page\Edit; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Grid.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Grid.php index 5245d702c1a..6094f9705a3 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page/Grid.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action.php index e86fb610b44..df1b52675ee 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Page\Grid\Renderer; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action/UrlBuilder.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action/UrlBuilder.php index 67ec8ec2b65..92b6961f8fa 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action/UrlBuilder.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action/UrlBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Page\Grid\Renderer\Action; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Widget/Chooser.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Widget/Chooser.php index 0e8648683f6..dfc28029e8d 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page/Widget/Chooser.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page/Widget/Chooser.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Page\Widget; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content.php b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content.php index 1821589ecd9..dbba38efb4f 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Files.php b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Files.php index 9021944f8b1..4aee1307b16 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Files.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Files.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Wysiwyg\Images\Content; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Newfolder.php b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Newfolder.php index 4b66a548dab..b3e178144c9 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Newfolder.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Newfolder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Wysiwyg\Images\Content; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Uploader.php b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Uploader.php index 3ebdfd5017f..5fa5316d82b 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Uploader.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Uploader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Wysiwyg\Images\Content; diff --git a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Tree.php b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Tree.php index 5b9925a95a5..1b5e4f54f55 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Tree.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Tree.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Adminhtml\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Block/Block.php b/app/code/Magento/Cms/Block/Block.php index 332bb0d4dd1..475b6ce8867 100644 --- a/app/code/Magento/Cms/Block/Block.php +++ b/app/code/Magento/Cms/Block/Block.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/Block/Page.php b/app/code/Magento/Cms/Block/Page.php index 2ee28364b5f..f3834d95eec 100644 --- a/app/code/Magento/Cms/Block/Page.php +++ b/app/code/Magento/Cms/Block/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block; diff --git a/app/code/Magento/Cms/Block/Widget/Block.php b/app/code/Magento/Cms/Block/Widget/Block.php index 668a2e1819c..4caf21a14bd 100644 --- a/app/code/Magento/Cms/Block/Widget/Block.php +++ b/app/code/Magento/Cms/Block/Widget/Block.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Widget; diff --git a/app/code/Magento/Cms/Block/Widget/Page/Link.php b/app/code/Magento/Cms/Block/Widget/Page/Link.php index 67ef32bc2ab..f23032b1ad3 100644 --- a/app/code/Magento/Cms/Block/Widget/Page/Link.php +++ b/app/code/Magento/Cms/Block/Widget/Page/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Block\Widget\Page; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block.php b/app/code/Magento/Cms/Controller/Adminhtml/Block.php index d41b3e2ed1f..2ad31c3eb9e 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Block.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Block.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/Delete.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/Delete.php index 792010dd76a..25303225812 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Block/Delete.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Block/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Block; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/Edit.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/Edit.php index 11cc3e9e441..1c88cec4af1 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Block/Edit.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Block/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Block; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/Index.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/Index.php index d842a0c68ba..6b27a5b3dcb 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Block/Index.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Block/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Block; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/InlineEdit.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/InlineEdit.php index 289938b3d7a..12f4eda2a04 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Block/InlineEdit.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Block/InlineEdit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Block; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/MassDelete.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/MassDelete.php index 28c8c5a8f0a..e007ccf3b18 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Block/MassDelete.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Block/MassDelete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Block; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/NewAction.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/NewAction.php index e338f56d7a9..7358cdc93da 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Block/NewAction.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Block/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Block; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/Save.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/Save.php index b9fd9384620..85bac5bd845 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Block/Save.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Block/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Block; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/Widget/Chooser.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/Widget/Chooser.php index c9538357664..705dc1e06da 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Block/Widget/Chooser.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Block/Widget/Chooser.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Block\Widget; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/Delete.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/Delete.php index eaad7667619..c4ecc1a35da 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Page/Delete.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Page/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/Edit.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/Edit.php index 1027dbaa7cd..d96fd9d9798 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Page/Edit.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Page/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/Index.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/Index.php index ea62ab8fb8d..8bcccb1fa1e 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Page/Index.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Page/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/InlineEdit.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/InlineEdit.php index d317e55127a..1f4b86d43d6 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Page/InlineEdit.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Page/InlineEdit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDelete.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDelete.php index 64f9b7e5176..6adb803fa7a 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDelete.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDelete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDisable.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDisable.php index 1af588b14cf..d6865cf1cdf 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDisable.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDisable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/MassEnable.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/MassEnable.php index b200e63d2e1..df8eedc2214 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Page/MassEnable.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Page/MassEnable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/NewAction.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/NewAction.php index 6c8ce9b9f28..111c4418ae6 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Page/NewAction.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Page/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/PostDataProcessor.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/PostDataProcessor.php index 544e4a52e77..6150991be15 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Page/PostDataProcessor.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Page/PostDataProcessor.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php index 45a74260e92..d1720bf128d 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/Widget/Chooser.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/Widget/Chooser.php index 4950190e422..d8561e4d5c0 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Page/Widget/Chooser.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Page/Widget/Chooser.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Page\Widget; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Directive.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Directive.php index 14b07bfcc3e..6ddcd851291 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Directive.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Directive.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Wysiwyg; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images.php index fb799d00453..e6512e1fc88 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Wysiwyg; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Contents.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Contents.php index 30dccb1c777..d1c71802d51 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Contents.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Contents.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFiles.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFiles.php index 3e0dccd1872..0944c7a8637 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFiles.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFiles.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFolder.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFolder.php index b59ade61566..d4a66699420 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFolder.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFolder.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Index.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Index.php index 6f551cf55ec..22f6edce5b8 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Index.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/NewFolder.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/NewFolder.php index 1a4fc1fb3e6..0dd7eaed828 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/NewFolder.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/NewFolder.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsert.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsert.php index 3a813708112..795ce3bf0d4 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsert.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsert.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Thumbnail.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Thumbnail.php index 249b3c36505..c256fed96e2 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Thumbnail.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Thumbnail.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/TreeJson.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/TreeJson.php index 3e804ba2808..672835b3cb6 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/TreeJson.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/TreeJson.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Upload.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Upload.php index 3cc4b06de0d..dcf679ea2ec 100644 --- a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Upload.php +++ b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Upload.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Adminhtml\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Controller/Index/DefaultIndex.php b/app/code/Magento/Cms/Controller/Index/DefaultIndex.php index 9b750b57095..a55eaf53405 100644 --- a/app/code/Magento/Cms/Controller/Index/DefaultIndex.php +++ b/app/code/Magento/Cms/Controller/Index/DefaultIndex.php @@ -3,7 +3,7 @@ * Default index action (with 404 Not Found headers) * Used if default page don't configure or available * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Index; diff --git a/app/code/Magento/Cms/Controller/Index/DefaultNoRoute.php b/app/code/Magento/Cms/Controller/Index/DefaultNoRoute.php index 3dc7a2be06d..2cc6b171c8e 100644 --- a/app/code/Magento/Cms/Controller/Index/DefaultNoRoute.php +++ b/app/code/Magento/Cms/Controller/Index/DefaultNoRoute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Index; diff --git a/app/code/Magento/Cms/Controller/Index/Index.php b/app/code/Magento/Cms/Controller/Index/Index.php index 66d5dbce6c8..dd5bdcc14dc 100644 --- a/app/code/Magento/Cms/Controller/Index/Index.php +++ b/app/code/Magento/Cms/Controller/Index/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Index; diff --git a/app/code/Magento/Cms/Controller/Noroute/Index.php b/app/code/Magento/Cms/Controller/Noroute/Index.php index 60d9a15b042..4f54f60cc46 100644 --- a/app/code/Magento/Cms/Controller/Noroute/Index.php +++ b/app/code/Magento/Cms/Controller/Noroute/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Noroute; diff --git a/app/code/Magento/Cms/Controller/Page/View.php b/app/code/Magento/Cms/Controller/Page/View.php index 0b958e1e4db..a609e70fb7a 100644 --- a/app/code/Magento/Cms/Controller/Page/View.php +++ b/app/code/Magento/Cms/Controller/Page/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller\Page; diff --git a/app/code/Magento/Cms/Controller/Router.php b/app/code/Magento/Cms/Controller/Router.php index 8cf06179611..e9a6832ba5d 100644 --- a/app/code/Magento/Cms/Controller/Router.php +++ b/app/code/Magento/Cms/Controller/Router.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Controller; diff --git a/app/code/Magento/Cms/Helper/Page.php b/app/code/Magento/Cms/Helper/Page.php index 10c3cc26fee..cebaeb5c895 100644 --- a/app/code/Magento/Cms/Helper/Page.php +++ b/app/code/Magento/Cms/Helper/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Helper; diff --git a/app/code/Magento/Cms/Helper/Wysiwyg/Images.php b/app/code/Magento/Cms/Helper/Wysiwyg/Images.php index 397256e07ab..d195ea5f1a0 100644 --- a/app/code/Magento/Cms/Helper/Wysiwyg/Images.php +++ b/app/code/Magento/Cms/Helper/Wysiwyg/Images.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Helper\Wysiwyg; diff --git a/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilter.php b/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilter.php index bf2a6b2a5a5..52f359fc47e 100644 --- a/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilter.php +++ b/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilter.php b/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilter.php index 20ad94e6975..ec0e5665757 100644 --- a/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilter.php +++ b/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Cms/Model/Block.php b/app/code/Magento/Cms/Model/Block.php index b25d433b0fe..c80c6d7cad5 100644 --- a/app/code/Magento/Cms/Model/Block.php +++ b/app/code/Magento/Cms/Model/Block.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model; diff --git a/app/code/Magento/Cms/Model/Block/DataProvider.php b/app/code/Magento/Cms/Model/Block/DataProvider.php index bb20471807b..65c3db6f3d4 100644 --- a/app/code/Magento/Cms/Model/Block/DataProvider.php +++ b/app/code/Magento/Cms/Model/Block/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Block; diff --git a/app/code/Magento/Cms/Model/Block/Source/IsActive.php b/app/code/Magento/Cms/Model/Block/Source/IsActive.php index a5adb29120d..f44d716a3da 100644 --- a/app/code/Magento/Cms/Model/Block/Source/IsActive.php +++ b/app/code/Magento/Cms/Model/Block/Source/IsActive.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Block\Source; diff --git a/app/code/Magento/Cms/Model/BlockRepository.php b/app/code/Magento/Cms/Model/BlockRepository.php index 5719316dc36..7e32eaf706d 100644 --- a/app/code/Magento/Cms/Model/BlockRepository.php +++ b/app/code/Magento/Cms/Model/BlockRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model; diff --git a/app/code/Magento/Cms/Model/Config/Source/Page.php b/app/code/Magento/Cms/Model/Config/Source/Page.php index 624ce6f3454..3d3ab8edadc 100644 --- a/app/code/Magento/Cms/Model/Config/Source/Page.php +++ b/app/code/Magento/Cms/Model/Config/Source/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Config\Source; diff --git a/app/code/Magento/Cms/Model/Config/Source/Wysiwyg/Enabled.php b/app/code/Magento/Cms/Model/Config/Source/Wysiwyg/Enabled.php index 1dc2d65ce30..95bd036ae70 100644 --- a/app/code/Magento/Cms/Model/Config/Source/Wysiwyg/Enabled.php +++ b/app/code/Magento/Cms/Model/Config/Source/Wysiwyg/Enabled.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Config\Source\Wysiwyg; diff --git a/app/code/Magento/Cms/Model/Page.php b/app/code/Magento/Cms/Model/Page.php index f98b56d82db..7d49d9aba2b 100644 --- a/app/code/Magento/Cms/Model/Page.php +++ b/app/code/Magento/Cms/Model/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model; diff --git a/app/code/Magento/Cms/Model/Page/DataProvider.php b/app/code/Magento/Cms/Model/Page/DataProvider.php index 3771d55535e..e640a1e70ab 100644 --- a/app/code/Magento/Cms/Model/Page/DataProvider.php +++ b/app/code/Magento/Cms/Model/Page/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Page; diff --git a/app/code/Magento/Cms/Model/Page/Source/CustomLayout.php b/app/code/Magento/Cms/Model/Page/Source/CustomLayout.php index 1dd0b3dd7c8..4b1b851b2be 100644 --- a/app/code/Magento/Cms/Model/Page/Source/CustomLayout.php +++ b/app/code/Magento/Cms/Model/Page/Source/CustomLayout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Page\Source; diff --git a/app/code/Magento/Cms/Model/Page/Source/IsActive.php b/app/code/Magento/Cms/Model/Page/Source/IsActive.php index 37214a9d0b5..f918f6d3e8a 100644 --- a/app/code/Magento/Cms/Model/Page/Source/IsActive.php +++ b/app/code/Magento/Cms/Model/Page/Source/IsActive.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Page\Source; diff --git a/app/code/Magento/Cms/Model/Page/Source/IsActiveFilter.php b/app/code/Magento/Cms/Model/Page/Source/IsActiveFilter.php index 7097c2b79fd..3013df2c22a 100644 --- a/app/code/Magento/Cms/Model/Page/Source/IsActiveFilter.php +++ b/app/code/Magento/Cms/Model/Page/Source/IsActiveFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Page\Source; diff --git a/app/code/Magento/Cms/Model/Page/Source/PageLayout.php b/app/code/Magento/Cms/Model/Page/Source/PageLayout.php index a71d2effccf..cda62609fa5 100644 --- a/app/code/Magento/Cms/Model/Page/Source/PageLayout.php +++ b/app/code/Magento/Cms/Model/Page/Source/PageLayout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Page\Source; diff --git a/app/code/Magento/Cms/Model/Page/Source/PageLayoutFilter.php b/app/code/Magento/Cms/Model/Page/Source/PageLayoutFilter.php index dc601d9ab90..261a975db8c 100644 --- a/app/code/Magento/Cms/Model/Page/Source/PageLayoutFilter.php +++ b/app/code/Magento/Cms/Model/Page/Source/PageLayoutFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Page\Source; diff --git a/app/code/Magento/Cms/Model/Page/Source/Theme.php b/app/code/Magento/Cms/Model/Page/Source/Theme.php index a53e82ec935..2a9e4cdb24c 100644 --- a/app/code/Magento/Cms/Model/Page/Source/Theme.php +++ b/app/code/Magento/Cms/Model/Page/Source/Theme.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Page\Source; diff --git a/app/code/Magento/Cms/Model/PageRepository.php b/app/code/Magento/Cms/Model/PageRepository.php index 9ab3b03d4ae..7a3329c6584 100644 --- a/app/code/Magento/Cms/Model/PageRepository.php +++ b/app/code/Magento/Cms/Model/PageRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model; diff --git a/app/code/Magento/Cms/Model/ResourceModel/AbstractCollection.php b/app/code/Magento/Cms/Model/ResourceModel/AbstractCollection.php index 86c2a998440..485d2b2d363 100644 --- a/app/code/Magento/Cms/Model/ResourceModel/AbstractCollection.php +++ b/app/code/Magento/Cms/Model/ResourceModel/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\ResourceModel; diff --git a/app/code/Magento/Cms/Model/ResourceModel/Block.php b/app/code/Magento/Cms/Model/ResourceModel/Block.php index 25d6a0c809d..1ea63241dbd 100644 --- a/app/code/Magento/Cms/Model/ResourceModel/Block.php +++ b/app/code/Magento/Cms/Model/ResourceModel/Block.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\ResourceModel; diff --git a/app/code/Magento/Cms/Model/ResourceModel/Block/Collection.php b/app/code/Magento/Cms/Model/ResourceModel/Block/Collection.php index 1bd96eff4dc..c7ce5b3b3b8 100644 --- a/app/code/Magento/Cms/Model/ResourceModel/Block/Collection.php +++ b/app/code/Magento/Cms/Model/ResourceModel/Block/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\ResourceModel\Block; diff --git a/app/code/Magento/Cms/Model/ResourceModel/Block/Grid/Collection.php b/app/code/Magento/Cms/Model/ResourceModel/Block/Grid/Collection.php index ac80c411c2b..bfebd180be0 100644 --- a/app/code/Magento/Cms/Model/ResourceModel/Block/Grid/Collection.php +++ b/app/code/Magento/Cms/Model/ResourceModel/Block/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\ResourceModel\Block\Grid; diff --git a/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/ReadHandler.php b/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/ReadHandler.php index 7ca62e3279d..ca2419e9917 100644 --- a/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/ReadHandler.php +++ b/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\ResourceModel\Block\Relation\Store; diff --git a/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/SaveHandler.php b/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/SaveHandler.php index 6e4872dadf3..6d376672361 100644 --- a/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/SaveHandler.php +++ b/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\ResourceModel\Block\Relation\Store; diff --git a/app/code/Magento/Cms/Model/ResourceModel/Page.php b/app/code/Magento/Cms/Model/ResourceModel/Page.php index f415baa611a..ab28b15123f 100644 --- a/app/code/Magento/Cms/Model/ResourceModel/Page.php +++ b/app/code/Magento/Cms/Model/ResourceModel/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/Model/ResourceModel/Page/Collection.php b/app/code/Magento/Cms/Model/ResourceModel/Page/Collection.php index f4541e41313..43b484b9021 100644 --- a/app/code/Magento/Cms/Model/ResourceModel/Page/Collection.php +++ b/app/code/Magento/Cms/Model/ResourceModel/Page/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\ResourceModel\Page; diff --git a/app/code/Magento/Cms/Model/ResourceModel/Page/Grid/Collection.php b/app/code/Magento/Cms/Model/ResourceModel/Page/Grid/Collection.php index 78fd4b422c7..949c2075e7d 100644 --- a/app/code/Magento/Cms/Model/ResourceModel/Page/Grid/Collection.php +++ b/app/code/Magento/Cms/Model/ResourceModel/Page/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\ResourceModel\Page\Grid; diff --git a/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/ReadHandler.php b/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/ReadHandler.php index 16f67024424..f4bcca81a86 100644 --- a/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/ReadHandler.php +++ b/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\ResourceModel\Page\Relation\Store; diff --git a/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/SaveHandler.php b/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/SaveHandler.php index 172324d30c4..44ab8eb23dd 100644 --- a/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/SaveHandler.php +++ b/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\ResourceModel\Page\Relation\Store; diff --git a/app/code/Magento/Cms/Model/Template/Filter.php b/app/code/Magento/Cms/Model/Template/Filter.php index 346c764bd1d..235a7778eba 100644 --- a/app/code/Magento/Cms/Model/Template/Filter.php +++ b/app/code/Magento/Cms/Model/Template/Filter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Template; diff --git a/app/code/Magento/Cms/Model/Template/FilterProvider.php b/app/code/Magento/Cms/Model/Template/FilterProvider.php index 2bcf00ee200..232632b0a1f 100644 --- a/app/code/Magento/Cms/Model/Template/FilterProvider.php +++ b/app/code/Magento/Cms/Model/Template/FilterProvider.php @@ -2,7 +2,7 @@ /** * Cms Template Filter Provider * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Template; diff --git a/app/code/Magento/Cms/Model/Wysiwyg/Config.php b/app/code/Magento/Cms/Model/Wysiwyg/Config.php index 44d512e8f45..8b7497eeb2a 100644 --- a/app/code/Magento/Cms/Model/Wysiwyg/Config.php +++ b/app/code/Magento/Cms/Model/Wysiwyg/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Wysiwyg; diff --git a/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage.php b/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage.php index 6a7f1e2a674..de209e88782 100644 --- a/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage.php +++ b/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Model\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage/Collection.php b/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage/Collection.php index 891414392ae..4007ec7c549 100644 --- a/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage/Collection.php +++ b/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/Observer/NoCookiesObserver.php b/app/code/Magento/Cms/Observer/NoCookiesObserver.php index c2150636c8c..ffc5f33f974 100644 --- a/app/code/Magento/Cms/Observer/NoCookiesObserver.php +++ b/app/code/Magento/Cms/Observer/NoCookiesObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Observer; diff --git a/app/code/Magento/Cms/Observer/NoRouteObserver.php b/app/code/Magento/Cms/Observer/NoRouteObserver.php index 9883bc0d210..64cb875ac5e 100644 --- a/app/code/Magento/Cms/Observer/NoRouteObserver.php +++ b/app/code/Magento/Cms/Observer/NoRouteObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Observer; diff --git a/app/code/Magento/Cms/Setup/InstallData.php b/app/code/Magento/Cms/Setup/InstallData.php index 0ff05542eca..25002e3a9b9 100644 --- a/app/code/Magento/Cms/Setup/InstallData.php +++ b/app/code/Magento/Cms/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/Setup/InstallSchema.php b/app/code/Magento/Cms/Setup/InstallSchema.php index eade3d1b278..1dc8d6cef48 100644 --- a/app/code/Magento/Cms/Setup/InstallSchema.php +++ b/app/code/Magento/Cms/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/Setup/UpgradeData.php b/app/code/Magento/Cms/Setup/UpgradeData.php index 6d22f782b25..a960fe32b74 100644 --- a/app/code/Magento/Cms/Setup/UpgradeData.php +++ b/app/code/Magento/Cms/Setup/UpgradeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Setup; diff --git a/app/code/Magento/Cms/Setup/UpgradeSchema.php b/app/code/Magento/Cms/Setup/UpgradeSchema.php index f77a655f1e2..825c9cf8849 100644 --- a/app/code/Magento/Cms/Setup/UpgradeSchema.php +++ b/app/code/Magento/Cms/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Setup; diff --git a/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Block/Widget/ChooserTest.php b/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Block/Widget/ChooserTest.php index 49c80c22ef5..421f7013479 100644 --- a/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Block/Widget/ChooserTest.php +++ b/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Block/Widget/ChooserTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Block\Adminhtml\Block\Widget; diff --git a/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Page/Widget/ChooserTest.php b/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Page/Widget/ChooserTest.php index d7676e2e462..3cc38823134 100644 --- a/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Page/Widget/ChooserTest.php +++ b/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Page/Widget/ChooserTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Block\Adminhtml\Page\Widget; diff --git a/app/code/Magento/Cms/Test/Unit/Block/BlockTest.php b/app/code/Magento/Cms/Test/Unit/Block/BlockTest.php index ba382bb5894..4c64650aae3 100644 --- a/app/code/Magento/Cms/Test/Unit/Block/BlockTest.php +++ b/app/code/Magento/Cms/Test/Unit/Block/BlockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Block; diff --git a/app/code/Magento/Cms/Test/Unit/Block/PageTest.php b/app/code/Magento/Cms/Test/Unit/Block/PageTest.php index 6057d4b6022..c9feae8ab1b 100644 --- a/app/code/Magento/Cms/Test/Unit/Block/PageTest.php +++ b/app/code/Magento/Cms/Test/Unit/Block/PageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Block; diff --git a/app/code/Magento/Cms/Test/Unit/Block/Widget/Page/LinkTest.php b/app/code/Magento/Cms/Test/Unit/Block/Widget/Page/LinkTest.php index 8b01e10e23d..a5f07724ad1 100644 --- a/app/code/Magento/Cms/Test/Unit/Block/Widget/Page/LinkTest.php +++ b/app/code/Magento/Cms/Test/Unit/Block/Widget/Page/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Block\Widget\Page; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/AbstractMassActionTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/AbstractMassActionTest.php index 402e411382d..9561e65fb74 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/AbstractMassActionTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/AbstractMassActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/DeleteTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/DeleteTest.php index ff0c4dd9412..a42d9242c53 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/DeleteTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/DeleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Block; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/EditTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/EditTest.php index 769e1ca3ee0..9df2f72d8a0 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/EditTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/EditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Block; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/MassDeleteTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/MassDeleteTest.php index d315e4498c1..ab95c5e11b3 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/MassDeleteTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/MassDeleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Block; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/SaveTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/SaveTest.php index c6a1c98ace0..b8858d6ef14 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/SaveTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Block; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/DeleteTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/DeleteTest.php index 51a54949358..96043ad2f7c 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/DeleteTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/DeleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/EditTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/EditTest.php index 3ee80b3e235..6d0ae28dc38 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/EditTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/EditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/InlineEditTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/InlineEditTest.php index f153eda78da..a4dda4cae39 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/InlineEditTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/InlineEditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDeleteTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDeleteTest.php index f9aa00d8c77..73187767c0f 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDeleteTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDeleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDisableTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDisableTest.php index 4424c9d1062..49ab882af73 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDisableTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDisableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassEnableTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassEnableTest.php index 5c1d2e3a937..0f5e3c3be57 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassEnableTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassEnableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/SaveTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/SaveTest.php index 12057d2681c..1cd7b20a29d 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/SaveTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Page; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Wysiwyg/DirectiveTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Wysiwyg/DirectiveTest.php index c64ae0d6c5c..f15b332cec6 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Wysiwyg/DirectiveTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Wysiwyg/DirectiveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Adminhtml\Wysiwyg; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Block/InlineEditTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Block/InlineEditTest.php index 08db2c7f940..71bbd121aca 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Block/InlineEditTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Block/InlineEditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Block; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Index/IndexTest.php index 14d8a9b3b13..1041cbd1751 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Index/IndexTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Index/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Index; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Noroute/IndexTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Noroute/IndexTest.php index 5d0308df8ae..5b40bfecf4a 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Noroute/IndexTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Noroute/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Noroute; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Page/PostDataProcessorTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Page/PostDataProcessorTest.php index 12376a296be..e322ad797cd 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Page/PostDataProcessorTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Page/PostDataProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Page; diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Page/ViewTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Page/ViewTest.php index eda5547e7e0..37d265f4ed2 100644 --- a/app/code/Magento/Cms/Test/Unit/Controller/Page/ViewTest.php +++ b/app/code/Magento/Cms/Test/Unit/Controller/Page/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Controller\Page; diff --git a/app/code/Magento/Cms/Test/Unit/Helper/PageTest.php b/app/code/Magento/Cms/Test/Unit/Helper/PageTest.php index b147cee22c6..721c7f6e655 100644 --- a/app/code/Magento/Cms/Test/Unit/Helper/PageTest.php +++ b/app/code/Magento/Cms/Test/Unit/Helper/PageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Helper; diff --git a/app/code/Magento/Cms/Test/Unit/Helper/Wysiwyg/ImagesTest.php b/app/code/Magento/Cms/Test/Unit/Helper/Wysiwyg/ImagesTest.php index 1b7c913c4bf..2e8f3b6a183 100644 --- a/app/code/Magento/Cms/Test/Unit/Helper/Wysiwyg/ImagesTest.php +++ b/app/code/Magento/Cms/Test/Unit/Helper/Wysiwyg/ImagesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Helper\Wysiwyg; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilterTest.php b/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilterTest.php index 8f96abdcbab..886529f2741 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilterTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilterTest.php b/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilterTest.php index 4d4a6ff4efa..ea07d849870 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilterTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Block/Source/IsActiveTest.php b/app/code/Magento/Cms/Test/Unit/Model/Block/Source/IsActiveTest.php index ac84a807f7f..6decf727132 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Block/Source/IsActiveTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Block/Source/IsActiveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Block\Source; diff --git a/app/code/Magento/Cms/Test/Unit/Model/BlockRepositoryTest.php b/app/code/Magento/Cms/Test/Unit/Model/BlockRepositoryTest.php index 3144d38a96c..f5732944a7b 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/BlockRepositoryTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/BlockRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Config/Source/PageTest.php b/app/code/Magento/Cms/Test/Unit/Model/Config/Source/PageTest.php index 40fafd2acc7..5febf1d56cd 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Config/Source/PageTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Config/Source/PageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/CustomLayoutTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/CustomLayoutTest.php index 6aea01fd32d..ebfe2e9fba4 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/CustomLayoutTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/CustomLayoutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Page\Source; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveFilterTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveFilterTest.php index 1b64d7074c8..8e2f7dd76d7 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveFilterTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Page\Source; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveTest.php index 0263e37f9cb..7f272196fe3 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Page\Source; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutFilterTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutFilterTest.php index 893806e7974..f5ff515cbed 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutFilterTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Page\Source; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutTest.php index d55c80d0e94..3949a835908 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Page\Source; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/ThemeTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/ThemeTest.php index 7fb33608538..cec6ee73770 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/ThemeTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/ThemeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Page\Source; diff --git a/app/code/Magento/Cms/Test/Unit/Model/PageRepositoryTest.php b/app/code/Magento/Cms/Test/Unit/Model/PageRepositoryTest.php index d11126881ba..52ca62f5a11 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/PageRepositoryTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/PageRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model; diff --git a/app/code/Magento/Cms/Test/Unit/Model/PageTest.php b/app/code/Magento/Cms/Test/Unit/Model/PageTest.php index 443f2105fea..0f0f72b833e 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/PageTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/PageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model; diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/AbstractCollectionTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/AbstractCollectionTest.php index 33d370c4741..a30c5cfb609 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/AbstractCollectionTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/AbstractCollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/CollectionTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/CollectionTest.php index b32a419e805..3fec5245f4c 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/CollectionTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\ResourceModel\Block; diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/ReadHandlerTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/ReadHandlerTest.php index 090ed36c0a6..623e90b75fa 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/ReadHandlerTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/ReadHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\ResourceModel\Block\Relation\Store; diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/SaveHandlerTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/SaveHandlerTest.php index abb68d05043..274ad34dd00 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/SaveHandlerTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/SaveHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\ResourceModel\Block\Relation\Store; diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/CollectionTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/CollectionTest.php index 92650355046..9b21eecb9a7 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/CollectionTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\ResourceModel\Page; diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Grid/CollectionTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Grid/CollectionTest.php index 7a98c00eeab..3dd82a3e319 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Grid/CollectionTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Grid/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\ResourceModel\Page\Grid; diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/ReadHandlerTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/ReadHandlerTest.php index 133b2bf2847..e9452b15aae 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/ReadHandlerTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/ReadHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\ResourceModel\Page\Relation\Store; diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/SaveHandlerTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/SaveHandlerTest.php index 87f9011ed3e..367126622e8 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/SaveHandlerTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/SaveHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\ResourceModel\Page\Relation\Store; diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/PageTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/PageTest.php index 5e3cef8c02c..4dc9c72ee86 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/PageTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/PageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Template/FilterProviderTest.php b/app/code/Magento/Cms/Test/Unit/Model/Template/FilterProviderTest.php index 6c8f7e76753..e103361e54b 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Template/FilterProviderTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Template/FilterProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Template; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Template/FilterTest.php b/app/code/Magento/Cms/Test/Unit/Model/Template/FilterTest.php index 90760f3b432..91f220fb718 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Template/FilterTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Template/FilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Template; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/ConfigTest.php b/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/ConfigTest.php index 3b5117f1526..94ee899a383 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/ConfigTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Wysiwyg; diff --git a/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/Images/StorageTest.php b/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/Images/StorageTest.php index 595155da920..2f4e1000c89 100644 --- a/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/Images/StorageTest.php +++ b/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/Images/StorageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Model\Wysiwyg\Images; diff --git a/app/code/Magento/Cms/Test/Unit/Observer/NoCookiesObserverTest.php b/app/code/Magento/Cms/Test/Unit/Observer/NoCookiesObserverTest.php index 2b16e4d02c3..d9c4d9d47a2 100644 --- a/app/code/Magento/Cms/Test/Unit/Observer/NoCookiesObserverTest.php +++ b/app/code/Magento/Cms/Test/Unit/Observer/NoCookiesObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Observer; diff --git a/app/code/Magento/Cms/Test/Unit/Observer/NoRouteObserverTest.php b/app/code/Magento/Cms/Test/Unit/Observer/NoRouteObserverTest.php index 6760177efa9..2b6b2273e76 100644 --- a/app/code/Magento/Cms/Test/Unit/Observer/NoRouteObserverTest.php +++ b/app/code/Magento/Cms/Test/Unit/Observer/NoRouteObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Observer; diff --git a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/BlockActionsTest.php b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/BlockActionsTest.php index 4e1de289e5e..6ef1f90ca4e 100644 --- a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/BlockActionsTest.php +++ b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/BlockActionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/Cms/OptionsTest.php b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/Cms/OptionsTest.php index bcbf1b42809..8fc37570740 100644 --- a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/Cms/OptionsTest.php +++ b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/Cms/OptionsTest.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Ui\Component\Listing\Column\Cms; diff --git a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/PageActionsTest.php b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/PageActionsTest.php index 731c08fbc64..c3bf25e6dd7 100644 --- a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/PageActionsTest.php +++ b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/PageActionsTest.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/DataProviderTest.php b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/DataProviderTest.php index 70fef18f3a7..d8cd17aa160 100644 --- a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/DataProviderTest.php +++ b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/DataProviderTest.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Test\Unit\Ui\Component\Listing; diff --git a/app/code/Magento/Cms/Ui/Component/DataProvider.php b/app/code/Magento/Cms/Ui/Component/DataProvider.php index 85b00d341fa..544b1e6764e 100644 --- a/app/code/Magento/Cms/Ui/Component/DataProvider.php +++ b/app/code/Magento/Cms/Ui/Component/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Ui\Component; diff --git a/app/code/Magento/Cms/Ui/Component/Listing/Column/BlockActions.php b/app/code/Magento/Cms/Ui/Component/Listing/Column/BlockActions.php index f0a1fe7981f..b66cf8319e7 100644 --- a/app/code/Magento/Cms/Ui/Component/Listing/Column/BlockActions.php +++ b/app/code/Magento/Cms/Ui/Component/Listing/Column/BlockActions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Cms/Ui/Component/Listing/Column/Cms/Options.php b/app/code/Magento/Cms/Ui/Component/Listing/Column/Cms/Options.php index 61ce05d54d1..9e8400ab497 100644 --- a/app/code/Magento/Cms/Ui/Component/Listing/Column/Cms/Options.php +++ b/app/code/Magento/Cms/Ui/Component/Listing/Column/Cms/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Ui\Component\Listing\Column\Cms; diff --git a/app/code/Magento/Cms/Ui/Component/Listing/Column/PageActions.php b/app/code/Magento/Cms/Ui/Component/Listing/Column/PageActions.php index f23afbffa79..3e599129a76 100644 --- a/app/code/Magento/Cms/Ui/Component/Listing/Column/PageActions.php +++ b/app/code/Magento/Cms/Ui/Component/Listing/Column/PageActions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cms\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Cms/etc/acl.xml b/app/code/Magento/Cms/etc/acl.xml index 08c86c773f9..34630cfe991 100644 --- a/app/code/Magento/Cms/etc/acl.xml +++ b/app/code/Magento/Cms/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/adminhtml/di.xml b/app/code/Magento/Cms/etc/adminhtml/di.xml index 6eac9af5925..f35fd13c10f 100644 --- a/app/code/Magento/Cms/etc/adminhtml/di.xml +++ b/app/code/Magento/Cms/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/adminhtml/menu.xml b/app/code/Magento/Cms/etc/adminhtml/menu.xml index 06cb4446d83..c29d127650e 100644 --- a/app/code/Magento/Cms/etc/adminhtml/menu.xml +++ b/app/code/Magento/Cms/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/adminhtml/routes.xml b/app/code/Magento/Cms/etc/adminhtml/routes.xml index 42c4cda87b9..401010f25f8 100644 --- a/app/code/Magento/Cms/etc/adminhtml/routes.xml +++ b/app/code/Magento/Cms/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/adminhtml/system.xml b/app/code/Magento/Cms/etc/adminhtml/system.xml index ee0c3d4ebfd..f460ca83637 100644 --- a/app/code/Magento/Cms/etc/adminhtml/system.xml +++ b/app/code/Magento/Cms/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/config.xml b/app/code/Magento/Cms/etc/config.xml index d7b7bb86386..80b635771b3 100644 --- a/app/code/Magento/Cms/etc/config.xml +++ b/app/code/Magento/Cms/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/di.xml b/app/code/Magento/Cms/etc/di.xml index cae674b4a0d..eb4583b81b0 100644 --- a/app/code/Magento/Cms/etc/di.xml +++ b/app/code/Magento/Cms/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/events.xml b/app/code/Magento/Cms/etc/events.xml index c3bd2dbea3f..698d655a25b 100644 --- a/app/code/Magento/Cms/etc/events.xml +++ b/app/code/Magento/Cms/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/frontend/di.xml b/app/code/Magento/Cms/etc/frontend/di.xml index 1718e36f409..8e01e229f3f 100644 --- a/app/code/Magento/Cms/etc/frontend/di.xml +++ b/app/code/Magento/Cms/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/frontend/events.xml b/app/code/Magento/Cms/etc/frontend/events.xml index 81d2ccea4fe..20049ba2e3c 100644 --- a/app/code/Magento/Cms/etc/frontend/events.xml +++ b/app/code/Magento/Cms/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/frontend/page_types.xml b/app/code/Magento/Cms/etc/frontend/page_types.xml index c5df71b7904..b7c6d8bf953 100644 --- a/app/code/Magento/Cms/etc/frontend/page_types.xml +++ b/app/code/Magento/Cms/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/frontend/routes.xml b/app/code/Magento/Cms/etc/frontend/routes.xml index 4c6598aec49..07703696500 100644 --- a/app/code/Magento/Cms/etc/frontend/routes.xml +++ b/app/code/Magento/Cms/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Cms" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Cms/etc/module.xml b/app/code/Magento/Cms/etc/module.xml index bb3aaf184fd..6ade3050020 100644 --- a/app/code/Magento/Cms/etc/module.xml +++ b/app/code/Magento/Cms/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/mview.xml b/app/code/Magento/Cms/etc/mview.xml index f7014794b40..c61128dd1bf 100644 --- a/app/code/Magento/Cms/etc/mview.xml +++ b/app/code/Magento/Cms/etc/mview.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/webapi.xml b/app/code/Magento/Cms/etc/webapi.xml index 3da517e7b2c..e1f25900a93 100644 --- a/app/code/Magento/Cms/etc/webapi.xml +++ b/app/code/Magento/Cms/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/etc/widget.xml b/app/code/Magento/Cms/etc/widget.xml index e21470b7d94..1cecd91df61 100644 --- a/app/code/Magento/Cms/etc/widget.xml +++ b/app/code/Magento/Cms/etc/widget.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/registration.php b/app/code/Magento/Cms/registration.php index 04edc959547..926e792c92a 100644 --- a/app/code/Magento/Cms/registration.php +++ b/app/code/Magento/Cms/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_block_edit.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_block_edit.xml index e394259099d..4daacf89b46 100644 --- a/app/code/Magento/Cms/view/adminhtml/layout/cms_block_edit.xml +++ b/app/code/Magento/Cms/view/adminhtml/layout/cms_block_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_block_index.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_block_index.xml index 3df999a087b..7008d92109a 100644 --- a/app/code/Magento/Cms/view/adminhtml/layout/cms_block_index.xml +++ b/app/code/Magento/Cms/view/adminhtml/layout/cms_block_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_block_new.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_block_new.xml index 0eda18ec064..10ad53bb558 100644 --- a/app/code/Magento/Cms/view/adminhtml/layout/cms_block_new.xml +++ b/app/code/Magento/Cms/view/adminhtml/layout/cms_block_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_page_edit.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_page_edit.xml index 05d59b2b740..c2b8f136bae 100644 --- a/app/code/Magento/Cms/view/adminhtml/layout/cms_page_edit.xml +++ b/app/code/Magento/Cms/view/adminhtml/layout/cms_page_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_page_index.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_page_index.xml index 51e96834d8f..1bd5368d7cb 100644 --- a/app/code/Magento/Cms/view/adminhtml/layout/cms_page_index.xml +++ b/app/code/Magento/Cms/view/adminhtml/layout/cms_page_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_page_new.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_page_new.xml index 7234d1d9ede..b5befcb1019 100644 --- a/app/code/Magento/Cms/view/adminhtml/layout/cms_page_new.xml +++ b/app/code/Magento/Cms/view/adminhtml/layout/cms_page_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_contents.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_contents.xml index 9a9c1d83ac1..a8139b1ac84 100644 --- a/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_contents.xml +++ b/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_contents.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_index.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_index.xml index 4e8d459a6ac..3c168955659 100644 --- a/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_index.xml +++ b/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/requirejs-config.js b/app/code/Magento/Cms/view/adminhtml/requirejs-config.js index 1e5eafa3c01..733f2e42174 100644 --- a/app/code/Magento/Cms/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/Cms/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { folderTree: 'Magento_Cms/js/folder-tree' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Cms/view/adminhtml/templates/browser/content.phtml b/app/code/Magento/Cms/view/adminhtml/templates/browser/content.phtml index 703eea1f56a..71a02950b0e 100644 --- a/app/code/Magento/Cms/view/adminhtml/templates/browser/content.phtml +++ b/app/code/Magento/Cms/view/adminhtml/templates/browser/content.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/view/adminhtml/templates/browser/content/files.phtml b/app/code/Magento/Cms/view/adminhtml/templates/browser/content/files.phtml index 827f2ee938e..ca87d7f4e5d 100644 --- a/app/code/Magento/Cms/view/adminhtml/templates/browser/content/files.phtml +++ b/app/code/Magento/Cms/view/adminhtml/templates/browser/content/files.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/view/adminhtml/templates/browser/content/uploader.phtml b/app/code/Magento/Cms/view/adminhtml/templates/browser/content/uploader.phtml index 3233bb17c09..80468f344ab 100644 --- a/app/code/Magento/Cms/view/adminhtml/templates/browser/content/uploader.phtml +++ b/app/code/Magento/Cms/view/adminhtml/templates/browser/content/uploader.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/view/adminhtml/templates/browser/tree.phtml b/app/code/Magento/Cms/view/adminhtml/templates/browser/tree.phtml index 2e6204496eb..163c306ef25 100644 --- a/app/code/Magento/Cms/view/adminhtml/templates/browser/tree.phtml +++ b/app/code/Magento/Cms/view/adminhtml/templates/browser/tree.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/view/adminhtml/templates/page/edit/form/renderer/content.phtml b/app/code/Magento/Cms/view/adminhtml/templates/page/edit/form/renderer/content.phtml index 99bee0b1504..4a44a829617 100644 --- a/app/code/Magento/Cms/view/adminhtml/templates/page/edit/form/renderer/content.phtml +++ b/app/code/Magento/Cms/view/adminhtml/templates/page/edit/form/renderer/content.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_form.xml b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_form.xml index 7fd2874d5db..b75cfcf888a 100644 --- a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_form.xml +++ b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_listing.xml b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_listing.xml index 0dbf365d367..b2ea3dd658a 100644 --- a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_listing.xml +++ b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_form.xml b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_form.xml index b47e634cfb0..a5dcdc06f82 100644 --- a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_form.xml +++ b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_listing.xml b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_listing.xml index 33dde070c38..15f078e5d90 100644 --- a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_listing.xml +++ b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/adminhtml/web/js/folder-tree.js b/app/code/Magento/Cms/view/adminhtml/web/js/folder-tree.js index 50aaf47912c..a72db4db802 100644 --- a/app/code/Magento/Cms/view/adminhtml/web/js/folder-tree.js +++ b/app/code/Magento/Cms/view/adminhtml/web/js/folder-tree.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ @@ -84,4 +84,4 @@ define([ }); return $.mage.folderTree; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultindex.xml b/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultindex.xml index 6aa6f51204f..ec68cb946b3 100644 --- a/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultindex.xml +++ b/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultindex.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultnoroute.xml b/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultnoroute.xml index ed7bc4f815a..39607b84004 100644 --- a/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultnoroute.xml +++ b/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultnoroute.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_index_index.xml b/app/code/Magento/Cms/view/frontend/layout/cms_index_index.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/Cms/view/frontend/layout/cms_index_index.xml +++ b/app/code/Magento/Cms/view/frontend/layout/cms_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_index_nocookies.xml b/app/code/Magento/Cms/view/frontend/layout/cms_index_nocookies.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/Cms/view/frontend/layout/cms_index_nocookies.xml +++ b/app/code/Magento/Cms/view/frontend/layout/cms_index_nocookies.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_index_noroute.xml b/app/code/Magento/Cms/view/frontend/layout/cms_index_noroute.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/Cms/view/frontend/layout/cms_index_noroute.xml +++ b/app/code/Magento/Cms/view/frontend/layout/cms_index_noroute.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_page_view.xml b/app/code/Magento/Cms/view/frontend/layout/cms_page_view.xml index 615a7b42853..9b49cd29a5a 100644 --- a/app/code/Magento/Cms/view/frontend/layout/cms_page_view.xml +++ b/app/code/Magento/Cms/view/frontend/layout/cms_page_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/frontend/layout/default.xml b/app/code/Magento/Cms/view/frontend/layout/default.xml index 88675207b6e..d6e41181570 100644 --- a/app/code/Magento/Cms/view/frontend/layout/default.xml +++ b/app/code/Magento/Cms/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/frontend/layout/print.xml b/app/code/Magento/Cms/view/frontend/layout/print.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/Cms/view/frontend/layout/print.xml +++ b/app/code/Magento/Cms/view/frontend/layout/print.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cms/view/frontend/templates/content.phtml b/app/code/Magento/Cms/view/frontend/templates/content.phtml index 29d92eb4f82..5087ccbc957 100644 --- a/app/code/Magento/Cms/view/frontend/templates/content.phtml +++ b/app/code/Magento/Cms/view/frontend/templates/content.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/view/frontend/templates/default/home.phtml b/app/code/Magento/Cms/view/frontend/templates/default/home.phtml index acef9f09cb1..d67444e229b 100644 --- a/app/code/Magento/Cms/view/frontend/templates/default/home.phtml +++ b/app/code/Magento/Cms/view/frontend/templates/default/home.phtml @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> -There was no Home CMS page configured or found. \ No newline at end of file +There was no Home CMS page configured or found. diff --git a/app/code/Magento/Cms/view/frontend/templates/default/no-route.phtml b/app/code/Magento/Cms/view/frontend/templates/default/no-route.phtml index 384e2c14aee..2013ef4ca67 100644 --- a/app/code/Magento/Cms/view/frontend/templates/default/no-route.phtml +++ b/app/code/Magento/Cms/view/frontend/templates/default/no-route.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Cms/view/frontend/templates/meta.phtml b/app/code/Magento/Cms/view/frontend/templates/meta.phtml index d6e3b81b8cb..7b9235dc8e0 100644 --- a/app/code/Magento/Cms/view/frontend/templates/meta.phtml +++ b/app/code/Magento/Cms/view/frontend/templates/meta.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/view/frontend/templates/widget/link/link_block.phtml b/app/code/Magento/Cms/view/frontend/templates/widget/link/link_block.phtml index 82a27c7aa0d..00ad43b6aa2 100644 --- a/app/code/Magento/Cms/view/frontend/templates/widget/link/link_block.phtml +++ b/app/code/Magento/Cms/view/frontend/templates/widget/link/link_block.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/view/frontend/templates/widget/link/link_inline.phtml b/app/code/Magento/Cms/view/frontend/templates/widget/link/link_inline.phtml index d906826507d..bb0d300641a 100644 --- a/app/code/Magento/Cms/view/frontend/templates/widget/link/link_inline.phtml +++ b/app/code/Magento/Cms/view/frontend/templates/widget/link/link_inline.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cms/view/frontend/templates/widget/static_block/default.phtml b/app/code/Magento/Cms/view/frontend/templates/widget/static_block/default.phtml index bb7d392098b..63369ba41fd 100644 --- a/app/code/Magento/Cms/view/frontend/templates/widget/static_block/default.phtml +++ b/app/code/Magento/Cms/view/frontend/templates/widget/static_block/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlPathGenerator.php b/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlPathGenerator.php index 83fdfe0297b..6bdd6a912dc 100644 --- a/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlPathGenerator.php +++ b/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlPathGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CmsUrlRewrite\Model; diff --git a/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlRewriteGenerator.php b/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlRewriteGenerator.php index f9b06a7ea41..92ed08d4212 100644 --- a/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlRewriteGenerator.php +++ b/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlRewriteGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CmsUrlRewrite\Model; diff --git a/app/code/Magento/CmsUrlRewrite/Observer/ProcessUrlRewriteSavingObserver.php b/app/code/Magento/CmsUrlRewrite/Observer/ProcessUrlRewriteSavingObserver.php index 35d704dad27..406b5ca8ebf 100644 --- a/app/code/Magento/CmsUrlRewrite/Observer/ProcessUrlRewriteSavingObserver.php +++ b/app/code/Magento/CmsUrlRewrite/Observer/ProcessUrlRewriteSavingObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CmsUrlRewrite\Observer; diff --git a/app/code/Magento/CmsUrlRewrite/Plugin/Cms/Model/ResourceModel/Page.php b/app/code/Magento/CmsUrlRewrite/Plugin/Cms/Model/ResourceModel/Page.php index c605d3977d9..6c968db12e0 100644 --- a/app/code/Magento/CmsUrlRewrite/Plugin/Cms/Model/ResourceModel/Page.php +++ b/app/code/Magento/CmsUrlRewrite/Plugin/Cms/Model/ResourceModel/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CmsUrlRewrite\Plugin\Cms\Model\ResourceModel; diff --git a/app/code/Magento/CmsUrlRewrite/Test/Unit/Model/CmsPageUrlRewriteGeneratorTest.php b/app/code/Magento/CmsUrlRewrite/Test/Unit/Model/CmsPageUrlRewriteGeneratorTest.php index 96a964c3d2d..9e0d3be93fd 100644 --- a/app/code/Magento/CmsUrlRewrite/Test/Unit/Model/CmsPageUrlRewriteGeneratorTest.php +++ b/app/code/Magento/CmsUrlRewrite/Test/Unit/Model/CmsPageUrlRewriteGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CmsUrlRewrite\Test\Unit\Model; diff --git a/app/code/Magento/CmsUrlRewrite/Test/Unit/Observer/ProcessUrlRewriteSavingObserverTest.php b/app/code/Magento/CmsUrlRewrite/Test/Unit/Observer/ProcessUrlRewriteSavingObserverTest.php index c4c1093bd38..50dde1905fa 100644 --- a/app/code/Magento/CmsUrlRewrite/Test/Unit/Observer/ProcessUrlRewriteSavingObserverTest.php +++ b/app/code/Magento/CmsUrlRewrite/Test/Unit/Observer/ProcessUrlRewriteSavingObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CmsUrlRewrite\Test\Unit\Observer; diff --git a/app/code/Magento/CmsUrlRewrite/Test/Unit/Plugin/Cms/Model/ResourceModel/PageTest.php b/app/code/Magento/CmsUrlRewrite/Test/Unit/Plugin/Cms/Model/ResourceModel/PageTest.php index 277e36b94fc..6160dfd5de6 100644 --- a/app/code/Magento/CmsUrlRewrite/Test/Unit/Plugin/Cms/Model/ResourceModel/PageTest.php +++ b/app/code/Magento/CmsUrlRewrite/Test/Unit/Plugin/Cms/Model/ResourceModel/PageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CmsUrlRewrite\Test\Unit\Plugin\Cms\Model\ResourceModel; diff --git a/app/code/Magento/CmsUrlRewrite/etc/adminhtml/di.xml b/app/code/Magento/CmsUrlRewrite/etc/adminhtml/di.xml index 51dcf14b8c4..52e11bbb1f2 100644 --- a/app/code/Magento/CmsUrlRewrite/etc/adminhtml/di.xml +++ b/app/code/Magento/CmsUrlRewrite/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CmsUrlRewrite/etc/events.xml b/app/code/Magento/CmsUrlRewrite/etc/events.xml index 79798b599e2..fef365af721 100644 --- a/app/code/Magento/CmsUrlRewrite/etc/events.xml +++ b/app/code/Magento/CmsUrlRewrite/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CmsUrlRewrite/etc/module.xml b/app/code/Magento/CmsUrlRewrite/etc/module.xml index 6f7228c92f0..5d29e120184 100644 --- a/app/code/Magento/CmsUrlRewrite/etc/module.xml +++ b/app/code/Magento/CmsUrlRewrite/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CmsUrlRewrite/registration.php b/app/code/Magento/CmsUrlRewrite/registration.php index 6b4a345baa4..94f20986c3a 100644 --- a/app/code/Magento/CmsUrlRewrite/registration.php +++ b/app/code/Magento/CmsUrlRewrite/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/App/Config/Source/DumpConfigSourceAggregated.php b/app/code/Magento/Config/App/Config/Source/DumpConfigSourceAggregated.php index 80567d0504e..e19a832efc2 100644 --- a/app/code/Magento/Config/App/Config/Source/DumpConfigSourceAggregated.php +++ b/app/code/Magento/Config/App/Config/Source/DumpConfigSourceAggregated.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\App\Config\Source; diff --git a/app/code/Magento/Config/App/Config/Source/DumpConfigSourceInterface.php b/app/code/Magento/Config/App/Config/Source/DumpConfigSourceInterface.php index cf0ce492b7d..59965bee076 100644 --- a/app/code/Magento/Config/App/Config/Source/DumpConfigSourceInterface.php +++ b/app/code/Magento/Config/App/Config/Source/DumpConfigSourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\App\Config\Source; diff --git a/app/code/Magento/Config/App/Config/Source/ModularConfigSource.php b/app/code/Magento/Config/App/Config/Source/ModularConfigSource.php index b86c9144fac..f4ec505e919 100644 --- a/app/code/Magento/Config/App/Config/Source/ModularConfigSource.php +++ b/app/code/Magento/Config/App/Config/Source/ModularConfigSource.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\App\Config\Source; diff --git a/app/code/Magento/Config/App/Config/Source/RuntimeConfigSource.php b/app/code/Magento/Config/App/Config/Source/RuntimeConfigSource.php index 7cd3a8ef76d..be03562cd2d 100644 --- a/app/code/Magento/Config/App/Config/Source/RuntimeConfigSource.php +++ b/app/code/Magento/Config/App/Config/Source/RuntimeConfigSource.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\App\Config\Source; diff --git a/app/code/Magento/Config/App/Config/Type/System.php b/app/code/Magento/Config/App/Config/Type/System.php index a0fc0f1f10e..2b12764ba9c 100644 --- a/app/code/Magento/Config/App/Config/Type/System.php +++ b/app/code/Magento/Config/App/Config/Type/System.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\App\Config\Type; diff --git a/app/code/Magento/Config/Block/System/Config/Dwstree.php b/app/code/Magento/Config/Block/System/Config/Dwstree.php index 033e7414d3b..6ab484aee28 100644 --- a/app/code/Magento/Config/Block/System/Config/Dwstree.php +++ b/app/code/Magento/Config/Block/System/Config/Dwstree.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Edit.php b/app/code/Magento/Config/Block/System/Config/Edit.php index 65210c59812..3088e08acf9 100644 --- a/app/code/Magento/Config/Block/System/Config/Edit.php +++ b/app/code/Magento/Config/Block/System/Config/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Form.php b/app/code/Magento/Config/Block/System/Config/Form.php index f0ad7e4a28b..c24d532437b 100644 --- a/app/code/Magento/Config/Block/System/Config/Form.php +++ b/app/code/Magento/Config/Block/System/Config/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Block\System\Config; diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field.php b/app/code/Magento/Config/Block/System/Config/Form/Field.php index fe0d17e87bd..a3a27102688 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Field.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Field.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Datetime.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Datetime.php index a53fbf62277..9e8b6911882 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Field/Datetime.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Field/Datetime.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Block\System\Config\Form\Field; diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Factory.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Factory.php index 47fb39fca78..aaeafaca184 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Field/Factory.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Field/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/FieldArray/AbstractFieldArray.php b/app/code/Magento/Config/Block/System/Config/Form/Field/FieldArray/AbstractFieldArray.php index 7cd90fe2a2b..f52e28dea00 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Field/FieldArray/AbstractFieldArray.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Field/FieldArray/AbstractFieldArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/File.php b/app/code/Magento/Config/Block/System/Config/Form/Field/File.php index 7a5cc129d9a..fc7cfe15b32 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Field/File.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Field/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Heading.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Heading.php index e2ee820c2a2..d32792b8bf9 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Field/Heading.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Field/Heading.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Image.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Image.php index 2561173ae09..84e4a814e21 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Field/Image.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Field/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Notification.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Notification.php index 5e3daae5e0c..a7893363682 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Field/Notification.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Field/Notification.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Block\System\Config\Form\Field; diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Regexceptions.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Regexceptions.php index a81bc550105..93e7200168d 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Field/Regexceptions.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Field/Regexceptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Block\System\Config\Form\Field; diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Select/Allowspecific.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Select/Allowspecific.php index 8b7a2ac7dd2..31a9f6e424f 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Field/Select/Allowspecific.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Field/Select/Allowspecific.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Form/Fieldset.php b/app/code/Magento/Config/Block/System/Config/Form/Fieldset.php index 6dfa40105cb..2e867d49c7d 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Fieldset.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Fieldset.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Factory.php b/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Factory.php index fad524186ed..614b77508d1 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Factory.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php b/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php index d9ec2e63fa7..cda1a6a80cc 100644 --- a/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php +++ b/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Block/System/Config/Tabs.php b/app/code/Magento/Config/Block/System/Config/Tabs.php index 559beb950c4..60fa40b7d43 100644 --- a/app/code/Magento/Config/Block/System/Config/Tabs.php +++ b/app/code/Magento/Config/Block/System/Config/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/AbstractConfig.php b/app/code/Magento/Config/Controller/Adminhtml/System/AbstractConfig.php index 1d43b28daaf..e7d8ed66b2c 100644 --- a/app/code/Magento/Config/Controller/Adminhtml/System/AbstractConfig.php +++ b/app/code/Magento/Config/Controller/Adminhtml/System/AbstractConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/Config/AbstractScopeConfig.php b/app/code/Magento/Config/Controller/Adminhtml/System/Config/AbstractScopeConfig.php index e680c729e3a..3000a359c9e 100644 --- a/app/code/Magento/Config/Controller/Adminhtml/System/Config/AbstractScopeConfig.php +++ b/app/code/Magento/Config/Controller/Adminhtml/System/Config/AbstractScopeConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/Config/Edit.php b/app/code/Magento/Config/Controller/Adminhtml/System/Config/Edit.php index 5bb3c55eb26..5a3d22c29bd 100644 --- a/app/code/Magento/Config/Controller/Adminhtml/System/Config/Edit.php +++ b/app/code/Magento/Config/Controller/Adminhtml/System/Config/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Controller\Adminhtml\System\Config; diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/Config/Index.php b/app/code/Magento/Config/Controller/Adminhtml/System/Config/Index.php index 5aa683a94c2..3e184d71eee 100644 --- a/app/code/Magento/Config/Controller/Adminhtml/System/Config/Index.php +++ b/app/code/Magento/Config/Controller/Adminhtml/System/Config/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Controller\Adminhtml\System\Config; diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/Config/Save.php b/app/code/Magento/Config/Controller/Adminhtml/System/Config/Save.php index c8dd38c5623..21d8c0ad0c6 100644 --- a/app/code/Magento/Config/Controller/Adminhtml/System/Config/Save.php +++ b/app/code/Magento/Config/Controller/Adminhtml/System/Config/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Controller\Adminhtml\System\Config; diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/Config/State.php b/app/code/Magento/Config/Controller/Adminhtml/System/Config/State.php index d1239421c25..b389408fcc3 100644 --- a/app/code/Magento/Config/Controller/Adminhtml/System/Config/State.php +++ b/app/code/Magento/Config/Controller/Adminhtml/System/Config/State.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Controller\Adminhtml\System\Config; diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/ConfigSectionChecker.php b/app/code/Magento/Config/Controller/Adminhtml/System/ConfigSectionChecker.php index a118d15e2ab..76bad6113ba 100644 --- a/app/code/Magento/Config/Controller/Adminhtml/System/ConfigSectionChecker.php +++ b/app/code/Magento/Config/Controller/Adminhtml/System/ConfigSectionChecker.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config.php b/app/code/Magento/Config/Model/Config.php index 3fc317a1a15..bc4fefeab41 100644 --- a/app/code/Magento/Config/Model/Config.php +++ b/app/code/Magento/Config/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model; diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Custom.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Custom.php index ce3f0ef2e01..bcbc0011ff1 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Admin/Custom.php +++ b/app/code/Magento/Config/Model/Config/Backend/Admin/Custom.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Custompath.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Custompath.php index d9a0b28400a..4a60b7101f8 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Admin/Custompath.php +++ b/app/code/Magento/Config/Model/Config/Backend/Admin/Custompath.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Password/Link/Expirationperiod.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Password/Link/Expirationperiod.php index 843fba03482..507e69d3353 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Admin/Password/Link/Expirationperiod.php +++ b/app/code/Magento/Config/Model/Config/Backend/Admin/Password/Link/Expirationperiod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Robots.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Robots.php index 9682e38ff25..d32e84d25fd 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Admin/Robots.php +++ b/app/code/Magento/Config/Model/Config/Backend/Admin/Robots.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Usecustom.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Usecustom.php index d07f48219e9..54295ec49e1 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Admin/Usecustom.php +++ b/app/code/Magento/Config/Model/Config/Backend/Admin/Usecustom.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Usesecretkey.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Usesecretkey.php index 650438ae5a1..f9afd3fa1d1 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Admin/Usesecretkey.php +++ b/app/code/Magento/Config/Model/Config/Backend/Admin/Usesecretkey.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Baseurl.php b/app/code/Magento/Config/Model/Config/Backend/Baseurl.php index f08c2f8e044..76ebe181860 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Baseurl.php +++ b/app/code/Magento/Config/Model/Config/Backend/Baseurl.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Backend; diff --git a/app/code/Magento/Config/Model/Config/Backend/Cache.php b/app/code/Magento/Config/Model/Config/Backend/Cache.php index ba437c0f971..f6bc92e0339 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Cache.php +++ b/app/code/Magento/Config/Model/Config/Backend/Cache.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Currency/AbstractCurrency.php b/app/code/Magento/Config/Model/Config/Backend/Currency/AbstractCurrency.php index b5218714e8b..d8a9d4a00cb 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Currency/AbstractCurrency.php +++ b/app/code/Magento/Config/Model/Config/Backend/Currency/AbstractCurrency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Currency/Allow.php b/app/code/Magento/Config/Model/Config/Backend/Currency/Allow.php index eb77938cf85..5ee4a093fb6 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Currency/Allow.php +++ b/app/code/Magento/Config/Model/Config/Backend/Currency/Allow.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Currency/Base.php b/app/code/Magento/Config/Model/Config/Backend/Currency/Base.php index 350d9bd40cd..5ddfc8b5db9 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Currency/Base.php +++ b/app/code/Magento/Config/Model/Config/Backend/Currency/Base.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Currency/Cron.php b/app/code/Magento/Config/Model/Config/Backend/Currency/Cron.php index 04dab8fc5a6..e95ed4d0499 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Currency/Cron.php +++ b/app/code/Magento/Config/Model/Config/Backend/Currency/Cron.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Currency/DefaultCurrency.php b/app/code/Magento/Config/Model/Config/Backend/Currency/DefaultCurrency.php index 2c02797fcb6..5a5e8f92e56 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Currency/DefaultCurrency.php +++ b/app/code/Magento/Config/Model/Config/Backend/Currency/DefaultCurrency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Datashare.php b/app/code/Magento/Config/Model/Config/Backend/Datashare.php index bd0bfaa478a..9212f4bb74a 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Datashare.php +++ b/app/code/Magento/Config/Model/Config/Backend/Datashare.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Design/Exception.php b/app/code/Magento/Config/Model/Config/Backend/Design/Exception.php index 3e94396d5bd..c8b91c6d69d 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Design/Exception.php +++ b/app/code/Magento/Config/Model/Config/Backend/Design/Exception.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Backend\Design; diff --git a/app/code/Magento/Config/Model/Config/Backend/Email/Address.php b/app/code/Magento/Config/Model/Config/Backend/Email/Address.php index cabd15d7afa..f6a2e89f4f4 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Email/Address.php +++ b/app/code/Magento/Config/Model/Config/Backend/Email/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Email/Logo.php b/app/code/Magento/Config/Model/Config/Backend/Email/Logo.php index b88923a6173..ab0dc47b3e2 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Email/Logo.php +++ b/app/code/Magento/Config/Model/Config/Backend/Email/Logo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Email/Sender.php b/app/code/Magento/Config/Model/Config/Backend/Email/Sender.php index b0436218c94..b753326b439 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Email/Sender.php +++ b/app/code/Magento/Config/Model/Config/Backend/Email/Sender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Encrypted.php b/app/code/Magento/Config/Model/Config/Backend/Encrypted.php index b265defc7a4..86039fd2834 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Encrypted.php +++ b/app/code/Magento/Config/Model/Config/Backend/Encrypted.php @@ -2,7 +2,7 @@ /** * Encrypted config field backend model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/File.php b/app/code/Magento/Config/Model/Config/Backend/File.php index 809014f11f4..7dcf1e1dd01 100644 --- a/app/code/Magento/Config/Model/Config/Backend/File.php +++ b/app/code/Magento/Config/Model/Config/Backend/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Backend; diff --git a/app/code/Magento/Config/Model/Config/Backend/File/RequestData.php b/app/code/Magento/Config/Model/Config/Backend/File/RequestData.php index 091e6a86cfd..66a595c5dff 100644 --- a/app/code/Magento/Config/Model/Config/Backend/File/RequestData.php +++ b/app/code/Magento/Config/Model/Config/Backend/File/RequestData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Backend\File; diff --git a/app/code/Magento/Config/Model/Config/Backend/File/RequestData/RequestDataInterface.php b/app/code/Magento/Config/Model/Config/Backend/File/RequestData/RequestDataInterface.php index 74ecea9f293..33e8d6d49fd 100644 --- a/app/code/Magento/Config/Model/Config/Backend/File/RequestData/RequestDataInterface.php +++ b/app/code/Magento/Config/Model/Config/Backend/File/RequestData/RequestDataInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Filename.php b/app/code/Magento/Config/Model/Config/Backend/Filename.php index ca05492a721..fbdad383521 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Filename.php +++ b/app/code/Magento/Config/Model/Config/Backend/Filename.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Backend; diff --git a/app/code/Magento/Config/Model/Config/Backend/Image.php b/app/code/Magento/Config/Model/Config/Backend/Image.php index 7920c9dd391..43e5d5b5503 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Image.php +++ b/app/code/Magento/Config/Model/Config/Backend/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Image/Adapter.php b/app/code/Magento/Config/Model/Config/Backend/Image/Adapter.php index 0789b8593a2..d8a8cfe1b1c 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Image/Adapter.php +++ b/app/code/Magento/Config/Model/Config/Backend/Image/Adapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Image/Favicon.php b/app/code/Magento/Config/Model/Config/Backend/Image/Favicon.php index bdb3e7de861..998e3b9f483 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Image/Favicon.php +++ b/app/code/Magento/Config/Model/Config/Backend/Image/Favicon.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Image/Logo.php b/app/code/Magento/Config/Model/Config/Backend/Image/Logo.php index 87726255e7b..d262311e2d7 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Image/Logo.php +++ b/app/code/Magento/Config/Model/Config/Backend/Image/Logo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Image/Pdf.php b/app/code/Magento/Config/Model/Config/Backend/Image/Pdf.php index bed81d4c5fe..a19934ad9a1 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Image/Pdf.php +++ b/app/code/Magento/Config/Model/Config/Backend/Image/Pdf.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Locale.php b/app/code/Magento/Config/Model/Config/Backend/Locale.php index 4e92f6035df..6568733ca01 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Locale.php +++ b/app/code/Magento/Config/Model/Config/Backend/Locale.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Locale/Timezone.php b/app/code/Magento/Config/Model/Config/Backend/Locale/Timezone.php index 5945023b66e..78663e869be 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Locale/Timezone.php +++ b/app/code/Magento/Config/Model/Config/Backend/Locale/Timezone.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Log/Cron.php b/app/code/Magento/Config/Model/Config/Backend/Log/Cron.php index 16b0afcc680..721fbcdac57 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Log/Cron.php +++ b/app/code/Magento/Config/Model/Config/Backend/Log/Cron.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Secure.php b/app/code/Magento/Config/Model/Config/Backend/Secure.php index d85c8761b73..163babae264 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Secure.php +++ b/app/code/Magento/Config/Model/Config/Backend/Secure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Backend; diff --git a/app/code/Magento/Config/Model/Config/Backend/Serialized.php b/app/code/Magento/Config/Model/Config/Backend/Serialized.php index cda905c1a58..f6c04632285 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Serialized.php +++ b/app/code/Magento/Config/Model/Config/Backend/Serialized.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Backend; diff --git a/app/code/Magento/Config/Model/Config/Backend/Serialized/ArraySerialized.php b/app/code/Magento/Config/Model/Config/Backend/Serialized/ArraySerialized.php index d0e5ec5efe1..f147b0494f4 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Serialized/ArraySerialized.php +++ b/app/code/Magento/Config/Model/Config/Backend/Serialized/ArraySerialized.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Store.php b/app/code/Magento/Config/Model/Config/Backend/Store.php index 02f4ab96b5e..effed8a1032 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Store.php +++ b/app/code/Magento/Config/Model/Config/Backend/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Backend/Translate.php b/app/code/Magento/Config/Model/Config/Backend/Translate.php index 5e10fa33e60..2b5ed2191ea 100644 --- a/app/code/Magento/Config/Model/Config/Backend/Translate.php +++ b/app/code/Magento/Config/Model/Config/Backend/Translate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/BackendClone/Factory.php b/app/code/Magento/Config/Model/Config/BackendClone/Factory.php index fa958c54c66..f0d6583e971 100644 --- a/app/code/Magento/Config/Model/Config/BackendClone/Factory.php +++ b/app/code/Magento/Config/Model/Config/BackendClone/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/BackendFactory.php b/app/code/Magento/Config/Model/Config/BackendFactory.php index c7bb6546a04..606a71cbd29 100644 --- a/app/code/Magento/Config/Model/Config/BackendFactory.php +++ b/app/code/Magento/Config/Model/Config/BackendFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config; diff --git a/app/code/Magento/Config/Model/Config/CommentFactory.php b/app/code/Magento/Config/Model/Config/CommentFactory.php index bca9f3b84c6..0ca0dcc6770 100644 --- a/app/code/Magento/Config/Model/Config/CommentFactory.php +++ b/app/code/Magento/Config/Model/Config/CommentFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/CommentInterface.php b/app/code/Magento/Config/Model/Config/CommentInterface.php index df25c5e6846..6c8aa85034b 100644 --- a/app/code/Magento/Config/Model/Config/CommentInterface.php +++ b/app/code/Magento/Config/Model/Config/CommentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Compiler/IncludeElement.php b/app/code/Magento/Config/Model/Config/Compiler/IncludeElement.php index 652e15d7100..de49be27064 100644 --- a/app/code/Magento/Config/Model/Config/Compiler/IncludeElement.php +++ b/app/code/Magento/Config/Model/Config/Compiler/IncludeElement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Compiler; diff --git a/app/code/Magento/Config/Model/Config/Export/Comment.php b/app/code/Magento/Config/Model/Config/Export/Comment.php index ae0431c82da..49ee5d6e907 100644 --- a/app/code/Magento/Config/Model/Config/Export/Comment.php +++ b/app/code/Magento/Config/Model/Config/Export/Comment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Export; diff --git a/app/code/Magento/Config/Model/Config/Export/ExcludeList.php b/app/code/Magento/Config/Model/Config/Export/ExcludeList.php index f3c10b4100e..ef436641535 100644 --- a/app/code/Magento/Config/Model/Config/Export/ExcludeList.php +++ b/app/code/Magento/Config/Model/Config/Export/ExcludeList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Export; diff --git a/app/code/Magento/Config/Model/Config/Factory.php b/app/code/Magento/Config/Model/Config/Factory.php index 34cf168809a..312e5837554 100644 --- a/app/code/Magento/Config/Model/Config/Factory.php +++ b/app/code/Magento/Config/Model/Config/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Loader.php b/app/code/Magento/Config/Model/Config/Loader.php index 4b10ffd6ea9..72f9f46bcdb 100644 --- a/app/code/Magento/Config/Model/Config/Loader.php +++ b/app/code/Magento/Config/Model/Config/Loader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Processor/EnvironmentPlaceholder.php b/app/code/Magento/Config/Model/Config/Processor/EnvironmentPlaceholder.php index efbe888f2eb..e9cd619396c 100644 --- a/app/code/Magento/Config/Model/Config/Processor/EnvironmentPlaceholder.php +++ b/app/code/Magento/Config/Model/Config/Processor/EnvironmentPlaceholder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Processor; diff --git a/app/code/Magento/Config/Model/Config/Reader/Source/Deployed/SettingChecker.php b/app/code/Magento/Config/Model/Config/Reader/Source/Deployed/SettingChecker.php index 7e673401c73..de13f12a311 100644 --- a/app/code/Magento/Config/Model/Config/Reader/Source/Deployed/SettingChecker.php +++ b/app/code/Magento/Config/Model/Config/Reader/Source/Deployed/SettingChecker.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Reader\Source\Deployed; diff --git a/app/code/Magento/Config/Model/Config/SchemaLocator.php b/app/code/Magento/Config/Model/Config/SchemaLocator.php index 255dee9a661..06b18ad6e2c 100644 --- a/app/code/Magento/Config/Model/Config/SchemaLocator.php +++ b/app/code/Magento/Config/Model/Config/SchemaLocator.php @@ -2,7 +2,7 @@ /** * System configuration schema locator * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config; diff --git a/app/code/Magento/Config/Model/Config/ScopeDefiner.php b/app/code/Magento/Config/Model/Config/ScopeDefiner.php index c114e6b8b4c..529672cc2f4 100644 --- a/app/code/Magento/Config/Model/Config/ScopeDefiner.php +++ b/app/code/Magento/Config/Model/Config/ScopeDefiner.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config; diff --git a/app/code/Magento/Config/Model/Config/Source/Admin/Page.php b/app/code/Magento/Config/Model/Config/Source/Admin/Page.php index 13d37e88cbe..07d56f24d60 100644 --- a/app/code/Magento/Config/Model/Config/Source/Admin/Page.php +++ b/app/code/Magento/Config/Model/Config/Source/Admin/Page.php @@ -2,7 +2,7 @@ /** * Admin system config startup page * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Admin; diff --git a/app/code/Magento/Config/Model/Config/Source/Date/Short.php b/app/code/Magento/Config/Model/Config/Source/Date/Short.php index 327404bd7a7..80da99fa500 100644 --- a/app/code/Magento/Config/Model/Config/Source/Date/Short.php +++ b/app/code/Magento/Config/Model/Config/Source/Date/Short.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Date; diff --git a/app/code/Magento/Config/Model/Config/Source/Design/Robots.php b/app/code/Magento/Config/Model/Config/Source/Design/Robots.php index 7f70b922fc9..0a791e0bdbd 100644 --- a/app/code/Magento/Config/Model/Config/Source/Design/Robots.php +++ b/app/code/Magento/Config/Model/Config/Source/Design/Robots.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Design; diff --git a/app/code/Magento/Config/Model/Config/Source/Dev/Dbautoup.php b/app/code/Magento/Config/Model/Config/Source/Dev/Dbautoup.php index f920a066171..0feb06797f2 100644 --- a/app/code/Magento/Config/Model/Config/Source/Dev/Dbautoup.php +++ b/app/code/Magento/Config/Model/Config/Source/Dev/Dbautoup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Source/Email/Identity.php b/app/code/Magento/Config/Model/Config/Source/Email/Identity.php index 1f0dd923dd1..e455a9196ce 100644 --- a/app/code/Magento/Config/Model/Config/Source/Email/Identity.php +++ b/app/code/Magento/Config/Model/Config/Source/Email/Identity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Email; diff --git a/app/code/Magento/Config/Model/Config/Source/Email/Method.php b/app/code/Magento/Config/Model/Config/Source/Email/Method.php index efae2628131..984a2337321 100644 --- a/app/code/Magento/Config/Model/Config/Source/Email/Method.php +++ b/app/code/Magento/Config/Model/Config/Source/Email/Method.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Source/Email/Smtpauth.php b/app/code/Magento/Config/Model/Config/Source/Email/Smtpauth.php index 32428d2086d..ea22e3116b6 100644 --- a/app/code/Magento/Config/Model/Config/Source/Email/Smtpauth.php +++ b/app/code/Magento/Config/Model/Config/Source/Email/Smtpauth.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Email; diff --git a/app/code/Magento/Config/Model/Config/Source/Email/Template.php b/app/code/Magento/Config/Model/Config/Source/Email/Template.php index 43578fd6898..c62de607d1b 100644 --- a/app/code/Magento/Config/Model/Config/Source/Email/Template.php +++ b/app/code/Magento/Config/Model/Config/Source/Email/Template.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Email; diff --git a/app/code/Magento/Config/Model/Config/Source/Enabledisable.php b/app/code/Magento/Config/Model/Config/Source/Enabledisable.php index e9911fd4ecb..70a96c3c832 100644 --- a/app/code/Magento/Config/Model/Config/Source/Enabledisable.php +++ b/app/code/Magento/Config/Model/Config/Source/Enabledisable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source; diff --git a/app/code/Magento/Config/Model/Config/Source/Image/Adapter.php b/app/code/Magento/Config/Model/Config/Source/Image/Adapter.php index 7cb5c8e6b66..9a9f4da8b0b 100644 --- a/app/code/Magento/Config/Model/Config/Source/Image/Adapter.php +++ b/app/code/Magento/Config/Model/Config/Source/Image/Adapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Image; diff --git a/app/code/Magento/Config/Model/Config/Source/Locale.php b/app/code/Magento/Config/Model/Config/Source/Locale.php index 5471e8884eb..ca08c722ea6 100644 --- a/app/code/Magento/Config/Model/Config/Source/Locale.php +++ b/app/code/Magento/Config/Model/Config/Source/Locale.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Country.php b/app/code/Magento/Config/Model/Config/Source/Locale/Country.php index 3cda9a952f5..0f693657163 100644 --- a/app/code/Magento/Config/Model/Config/Source/Locale/Country.php +++ b/app/code/Magento/Config/Model/Config/Source/Locale/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Currency.php b/app/code/Magento/Config/Model/Config/Source/Locale/Currency.php index e98087393cc..d962cecf16c 100644 --- a/app/code/Magento/Config/Model/Config/Source/Locale/Currency.php +++ b/app/code/Magento/Config/Model/Config/Source/Locale/Currency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Currency/All.php b/app/code/Magento/Config/Model/Config/Source/Locale/Currency/All.php index 1158d305b33..9fefc5cb818 100644 --- a/app/code/Magento/Config/Model/Config/Source/Locale/Currency/All.php +++ b/app/code/Magento/Config/Model/Config/Source/Locale/Currency/All.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Locale\Currency; diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Timezone.php b/app/code/Magento/Config/Model/Config/Source/Locale/Timezone.php index 9fbd8f8de03..6b371dbc1c5 100644 --- a/app/code/Magento/Config/Model/Config/Source/Locale/Timezone.php +++ b/app/code/Magento/Config/Model/Config/Source/Locale/Timezone.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Weekdaycodes.php b/app/code/Magento/Config/Model/Config/Source/Locale/Weekdaycodes.php index bbfadafc8ec..8563d671e1b 100644 --- a/app/code/Magento/Config/Model/Config/Source/Locale/Weekdaycodes.php +++ b/app/code/Magento/Config/Model/Config/Source/Locale/Weekdaycodes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Weekdays.php b/app/code/Magento/Config/Model/Config/Source/Locale/Weekdays.php index 6d0aebf8dcf..1a9f2673b08 100644 --- a/app/code/Magento/Config/Model/Config/Source/Locale/Weekdays.php +++ b/app/code/Magento/Config/Model/Config/Source/Locale/Weekdays.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Source/Nooptreq.php b/app/code/Magento/Config/Model/Config/Source/Nooptreq.php index e662aacfd13..916e14f8ebc 100644 --- a/app/code/Magento/Config/Model/Config/Source/Nooptreq.php +++ b/app/code/Magento/Config/Model/Config/Source/Nooptreq.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source; diff --git a/app/code/Magento/Config/Model/Config/Source/Reports/Scope.php b/app/code/Magento/Config/Model/Config/Source/Reports/Scope.php index 85a1d67df26..b773fa0b826 100644 --- a/app/code/Magento/Config/Model/Config/Source/Reports/Scope.php +++ b/app/code/Magento/Config/Model/Config/Source/Reports/Scope.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Source/Store.php b/app/code/Magento/Config/Model/Config/Source/Store.php index 6c9c64780b5..bc2218f2896 100644 --- a/app/code/Magento/Config/Model/Config/Source/Store.php +++ b/app/code/Magento/Config/Model/Config/Source/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source; diff --git a/app/code/Magento/Config/Model/Config/Source/Web/Protocol.php b/app/code/Magento/Config/Model/Config/Source/Web/Protocol.php index 065f7af015c..dcfa5bc707b 100644 --- a/app/code/Magento/Config/Model/Config/Source/Web/Protocol.php +++ b/app/code/Magento/Config/Model/Config/Source/Web/Protocol.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Web; diff --git a/app/code/Magento/Config/Model/Config/Source/Web/Redirect.php b/app/code/Magento/Config/Model/Config/Source/Web/Redirect.php index cabedc6c4d2..e13693092c9 100644 --- a/app/code/Magento/Config/Model/Config/Source/Web/Redirect.php +++ b/app/code/Magento/Config/Model/Config/Source/Web/Redirect.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Web; diff --git a/app/code/Magento/Config/Model/Config/Source/Website.php b/app/code/Magento/Config/Model/Config/Source/Website.php index 81add02c555..463c816fb0d 100644 --- a/app/code/Magento/Config/Model/Config/Source/Website.php +++ b/app/code/Magento/Config/Model/Config/Source/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source; diff --git a/app/code/Magento/Config/Model/Config/Source/Website/AdminOptionHash.php b/app/code/Magento/Config/Model/Config/Source/Website/AdminOptionHash.php index 97858392540..6c64732e6ac 100644 --- a/app/code/Magento/Config/Model/Config/Source/Website/AdminOptionHash.php +++ b/app/code/Magento/Config/Model/Config/Source/Website/AdminOptionHash.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Website; diff --git a/app/code/Magento/Config/Model/Config/Source/Website/OptionHash.php b/app/code/Magento/Config/Model/Config/Source/Website/OptionHash.php index d3cac0b1143..773805e4106 100644 --- a/app/code/Magento/Config/Model/Config/Source/Website/OptionHash.php +++ b/app/code/Magento/Config/Model/Config/Source/Website/OptionHash.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Source\Website; diff --git a/app/code/Magento/Config/Model/Config/Source/Yesno.php b/app/code/Magento/Config/Model/Config/Source/Yesno.php index 57c82c619ce..89144c6eebf 100644 --- a/app/code/Magento/Config/Model/Config/Source/Yesno.php +++ b/app/code/Magento/Config/Model/Config/Source/Yesno.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Source/Yesnocustom.php b/app/code/Magento/Config/Model/Config/Source/Yesnocustom.php index 873a0361e5b..8068f0bf40f 100644 --- a/app/code/Magento/Config/Model/Config/Source/Yesnocustom.php +++ b/app/code/Magento/Config/Model/Config/Source/Yesnocustom.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/SourceFactory.php b/app/code/Magento/Config/Model/Config/SourceFactory.php index 9960c3572f2..1846bac059c 100644 --- a/app/code/Magento/Config/Model/Config/SourceFactory.php +++ b/app/code/Magento/Config/Model/Config/SourceFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config; diff --git a/app/code/Magento/Config/Model/Config/Structure.php b/app/code/Magento/Config/Model/Config/Structure.php index fa0e3a1abf8..9368f48f3a6 100644 --- a/app/code/Magento/Config/Model/Config/Structure.php +++ b/app/code/Magento/Config/Model/Config/Structure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/AbstractElement.php b/app/code/Magento/Config/Model/Config/Structure/AbstractElement.php index b8577e6e52a..ab47f7a0bca 100644 --- a/app/code/Magento/Config/Model/Config/Structure/AbstractElement.php +++ b/app/code/Magento/Config/Model/Config/Structure/AbstractElement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure; diff --git a/app/code/Magento/Config/Model/Config/Structure/AbstractMapper.php b/app/code/Magento/Config/Model/Config/Structure/AbstractMapper.php index c259c88679c..78f1b22c423 100644 --- a/app/code/Magento/Config/Model/Config/Structure/AbstractMapper.php +++ b/app/code/Magento/Config/Model/Config/Structure/AbstractMapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/Converter.php b/app/code/Magento/Config/Model/Config/Structure/Converter.php index 45c46098a03..4ac6f8aa9c3 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Converter.php +++ b/app/code/Magento/Config/Model/Config/Structure/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure; diff --git a/app/code/Magento/Config/Model/Config/Structure/Data.php b/app/code/Magento/Config/Model/Config/Structure/Data.php index 6c926e7c1da..aad0cb2c776 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Data.php +++ b/app/code/Magento/Config/Model/Config/Structure/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/AbstractComposite.php b/app/code/Magento/Config/Model/Config/Structure/Element/AbstractComposite.php index f3b9954f55d..7fbdd241fc6 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/AbstractComposite.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/AbstractComposite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Field.php b/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Field.php index 89e8a2d351e..528b6a5657b 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Field.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Field.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element\Dependency; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/FieldFactory.php b/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/FieldFactory.php index ede1435c067..802ac672cd3 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/FieldFactory.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/FieldFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element\Dependency; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Mapper.php b/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Mapper.php index d6e06ed6167..756375b76e6 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Mapper.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Mapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element\Dependency; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Field.php b/app/code/Magento/Config/Model/Config/Structure/Element/Field.php index dce05bb6661..71b4ac8a97f 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Field.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Field.php @@ -2,7 +2,7 @@ /** * Represents a Field Element on the UI that can be configured via xml. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/FlyweightFactory.php b/app/code/Magento/Config/Model/Config/Structure/Element/FlyweightFactory.php index 93e6b9620a7..f1ba7a7fcb3 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/FlyweightFactory.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/FlyweightFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Group.php b/app/code/Magento/Config/Model/Config/Structure/Element/Group.php index 8c2efbd8550..b4aaa489645 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Group.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Group/Proxy.php b/app/code/Magento/Config/Model/Config/Structure/Element/Group/Proxy.php index 63ec6ec1762..83dc85ba76b 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Group/Proxy.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Group/Proxy.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element\Group; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator.php b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator.php index 022b3492d63..22ae5667b62 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Field.php b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Field.php index 9635c5f7931..dc2d93a830f 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Field.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Field.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element\Iterator; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Group.php b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Group.php index 9c09e2fa046..2f4a2d7308c 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Group.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element\Iterator; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Section.php b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Section.php index 39669b969db..fd91d4b553d 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Section.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Section.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element\Iterator; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Tab.php b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Tab.php index d77a3a6cd2a..709be274f68 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Tab.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Tab.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element\Iterator; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Section.php b/app/code/Magento/Config/Model/Config/Structure/Element/Section.php index 488663a0a57..6a9b78554ae 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Section.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Section.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Tab.php b/app/code/Magento/Config/Model/Config/Structure/Element/Tab.php index 2087eee3e68..33b619e7910 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Element/Tab.php +++ b/app/code/Magento/Config/Model/Config/Structure/Element/Tab.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Model/Config/Structure/ElementInterface.php b/app/code/Magento/Config/Model/Config/Structure/ElementInterface.php index 1d6c843bbc4..c6d2e038d89 100644 --- a/app/code/Magento/Config/Model/Config/Structure/ElementInterface.php +++ b/app/code/Magento/Config/Model/Config/Structure/ElementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure; diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Attribute/Inheritance.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Attribute/Inheritance.php index d132117ccba..8286728a4c2 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Mapper/Attribute/Inheritance.php +++ b/app/code/Magento/Config/Model/Config/Structure/Mapper/Attribute/Inheritance.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Dependencies.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Dependencies.php index f0191ad22f7..6757a93455b 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Mapper/Dependencies.php +++ b/app/code/Magento/Config/Model/Config/Structure/Mapper/Dependencies.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/ExtendsMapper.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/ExtendsMapper.php index 11063e0b6ee..cd2d1d060e7 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Mapper/ExtendsMapper.php +++ b/app/code/Magento/Config/Model/Config/Structure/Mapper/ExtendsMapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Factory.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Factory.php index b971ed10907..99978bdd181 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Mapper/Factory.php +++ b/app/code/Magento/Config/Model/Config/Structure/Mapper/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Helper/RelativePathConverter.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Helper/RelativePathConverter.php index b21a72cac85..0714da45d19 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Mapper/Helper/RelativePathConverter.php +++ b/app/code/Magento/Config/Model/Config/Structure/Mapper/Helper/RelativePathConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Ignore.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Ignore.php index 313f9c5668b..f1cfc3522ec 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Mapper/Ignore.php +++ b/app/code/Magento/Config/Model/Config/Structure/Mapper/Ignore.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Path.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Path.php index 3971bdabcdf..dd28540466b 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Mapper/Path.php +++ b/app/code/Magento/Config/Model/Config/Structure/Mapper/Path.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Sorting.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Sorting.php index 400628f3330..00733ab18d0 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Mapper/Sorting.php +++ b/app/code/Magento/Config/Model/Config/Structure/Mapper/Sorting.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/MapperInterface.php b/app/code/Magento/Config/Model/Config/Structure/MapperInterface.php index c4fbecc9247..c382ce4b4d6 100644 --- a/app/code/Magento/Config/Model/Config/Structure/MapperInterface.php +++ b/app/code/Magento/Config/Model/Config/Structure/MapperInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Model/Config/Structure/Reader.php b/app/code/Magento/Config/Model/Config/Structure/Reader.php index eeb4544ed5f..8c82cb0b90c 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Reader.php +++ b/app/code/Magento/Config/Model/Config/Structure/Reader.php @@ -3,7 +3,7 @@ * Backend System Configuration reader. * Retrieves system configuration form layout from system.xml files. Merges configuration and caches it. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure; diff --git a/app/code/Magento/Config/Model/Config/Structure/Search/Proxy.php b/app/code/Magento/Config/Model/Config/Structure/Search/Proxy.php index bd093680949..36b2d70d949 100644 --- a/app/code/Magento/Config/Model/Config/Structure/Search/Proxy.php +++ b/app/code/Magento/Config/Model/Config/Structure/Search/Proxy.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure\Search; diff --git a/app/code/Magento/Config/Model/Config/Structure/SearchInterface.php b/app/code/Magento/Config/Model/Config/Structure/SearchInterface.php index 6d20e3b208c..7e9fb1c800a 100644 --- a/app/code/Magento/Config/Model/Config/Structure/SearchInterface.php +++ b/app/code/Magento/Config/Model/Config/Structure/SearchInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Config\Structure; diff --git a/app/code/Magento/Config/Model/Placeholder/Environment.php b/app/code/Magento/Config/Model/Placeholder/Environment.php index 96ffadc96c6..a2822024c69 100644 --- a/app/code/Magento/Config/Model/Placeholder/Environment.php +++ b/app/code/Magento/Config/Model/Placeholder/Environment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Placeholder; diff --git a/app/code/Magento/Config/Model/Placeholder/PlaceholderFactory.php b/app/code/Magento/Config/Model/Placeholder/PlaceholderFactory.php index 3f88bc2a289..bc03d35f84a 100644 --- a/app/code/Magento/Config/Model/Placeholder/PlaceholderFactory.php +++ b/app/code/Magento/Config/Model/Placeholder/PlaceholderFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Placeholder; diff --git a/app/code/Magento/Config/Model/Placeholder/PlaceholderInterface.php b/app/code/Magento/Config/Model/Placeholder/PlaceholderInterface.php index 286eb0034a5..0050dc46d08 100644 --- a/app/code/Magento/Config/Model/Placeholder/PlaceholderInterface.php +++ b/app/code/Magento/Config/Model/Placeholder/PlaceholderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\Placeholder; diff --git a/app/code/Magento/Config/Model/ResourceModel/Config.php b/app/code/Magento/Config/Model/ResourceModel/Config.php index 444989d4e1b..c7b5614783a 100644 --- a/app/code/Magento/Config/Model/ResourceModel/Config.php +++ b/app/code/Magento/Config/Model/ResourceModel/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\ResourceModel; diff --git a/app/code/Magento/Config/Model/ResourceModel/Config/Data.php b/app/code/Magento/Config/Model/ResourceModel/Config/Data.php index a8ef6945803..ff44d8b4264 100644 --- a/app/code/Magento/Config/Model/ResourceModel/Config/Data.php +++ b/app/code/Magento/Config/Model/ResourceModel/Config/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\ResourceModel\Config; diff --git a/app/code/Magento/Config/Model/ResourceModel/Config/Data/Collection.php b/app/code/Magento/Config/Model/ResourceModel/Config/Data/Collection.php index de4a7c0b2fb..e374673dc51 100644 --- a/app/code/Magento/Config/Model/ResourceModel/Config/Data/Collection.php +++ b/app/code/Magento/Config/Model/ResourceModel/Config/Data/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Model\ResourceModel\Config\Data; diff --git a/app/code/Magento/Config/Observer/Config/Backend/Admin/AfterCustomUrlChangedObserver.php b/app/code/Magento/Config/Observer/Config/Backend/Admin/AfterCustomUrlChangedObserver.php index 93a1d2d465d..d51ee43e39c 100644 --- a/app/code/Magento/Config/Observer/Config/Backend/Admin/AfterCustomUrlChangedObserver.php +++ b/app/code/Magento/Config/Observer/Config/Backend/Admin/AfterCustomUrlChangedObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Observer\Config\Backend\Admin; diff --git a/app/code/Magento/Config/Setup/InstallData.php b/app/code/Magento/Config/Setup/InstallData.php index 607c7112603..0b11d3be661 100644 --- a/app/code/Magento/Config/Setup/InstallData.php +++ b/app/code/Magento/Config/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Setup/InstallSchema.php b/app/code/Magento/Config/Setup/InstallSchema.php index 0e735a07c53..dfec85eb4e8 100644 --- a/app/code/Magento/Config/Setup/InstallSchema.php +++ b/app/code/Magento/Config/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/App/Config/Source/DumpConfigSourceAggregatedTest.php b/app/code/Magento/Config/Test/Unit/App/Config/Source/DumpConfigSourceAggregatedTest.php index 9c6aef37540..e918ab3aaec 100644 --- a/app/code/Magento/Config/Test/Unit/App/Config/Source/DumpConfigSourceAggregatedTest.php +++ b/app/code/Magento/Config/Test/Unit/App/Config/Source/DumpConfigSourceAggregatedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\App\Config\Source; diff --git a/app/code/Magento/Config/Test/Unit/App/Config/Source/ModularConfigSourceTest.php b/app/code/Magento/Config/Test/Unit/App/Config/Source/ModularConfigSourceTest.php index 204bafcd026..6e9bdf69f6a 100644 --- a/app/code/Magento/Config/Test/Unit/App/Config/Source/ModularConfigSourceTest.php +++ b/app/code/Magento/Config/Test/Unit/App/Config/Source/ModularConfigSourceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\App\Config\Source; diff --git a/app/code/Magento/Config/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php b/app/code/Magento/Config/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php index a750bdb3274..f6033554813 100644 --- a/app/code/Magento/Config/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php +++ b/app/code/Magento/Config/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\App\Config\Source; diff --git a/app/code/Magento/Config/Test/Unit/App/Config/Type/SystemTest.php b/app/code/Magento/Config/Test/Unit/App/Config/Type/SystemTest.php index 8409e96db55..393402c33fd 100644 --- a/app/code/Magento/Config/Test/Unit/App/Config/Type/SystemTest.php +++ b/app/code/Magento/Config/Test/Unit/App/Config/Type/SystemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\App\Config\Type; diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/DwstreeTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/DwstreeTest.php index 1fb2735600d..59db6793c9a 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/DwstreeTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/DwstreeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Block\System\Config; diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/EditTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/EditTest.php index 810715ec548..8957f679fda 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/EditTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/EditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Block\System\Config; diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FieldArray/AbstractTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FieldArray/AbstractTest.php index 1f36c177c3c..c529d720714 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FieldArray/AbstractTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FieldArray/AbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Block\System\Config\Form\Field\FieldArray; diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FileTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FileTest.php index 566f74c30ea..76a74090efc 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FileTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FileTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/HeadingTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/HeadingTest.php index 5122f11923b..dbba3e38347 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/HeadingTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/HeadingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/ImageTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/ImageTest.php index aaa4392ddbb..1672b65e889 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/ImageTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/ImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/NotificationTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/NotificationTest.php index c8d7969c232..bd4fe966f70 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/NotificationTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/NotificationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/RegexceptionsTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/RegexceptionsTest.php index acef5be2751..874b6975499 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/RegexceptionsTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/RegexceptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/Select/AllowspecificTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/Select/AllowspecificTest.php index 3a0f751c8b2..c8e917b23c4 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/Select/AllowspecificTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/Select/AllowspecificTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Block\System\Config\Form\Field\Select; diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldTest.php index f0643fc3b1c..9e27013fc53 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Block\System\Config\Form; diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Fieldset/Modules/DisableOutputTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Fieldset/Modules/DisableOutputTest.php index 760b0cc5055..218ea756439 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Fieldset/Modules/DisableOutputTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Fieldset/Modules/DisableOutputTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Block\System\Config\Form\Fieldset\Modules; diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldsetTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldsetTest.php index b2786950da4..645852bb484 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldsetTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldsetTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Block\System\Config\Form; diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/FormTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/FormTest.php index 5c7bf92f954..9c6fdee5f9c 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/FormTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/TabsTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/TabsTest.php index fe0c36773e3..393719281d4 100644 --- a/app/code/Magento/Config/Test/Unit/Block/System/Config/TabsTest.php +++ b/app/code/Magento/Config/Test/Unit/Block/System/Config/TabsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Block\System\Config; diff --git a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/SaveTest.php b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/SaveTest.php index 42dbc6e093e..b701d3a56de 100644 --- a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/SaveTest.php +++ b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Controller\Adminhtml\System\Config; diff --git a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/expected_array.php b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/expected_array.php index 3a9708eb906..9ed85e9589a 100644 --- a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/expected_array.php +++ b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/expected_array.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/files_array.php b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/files_array.php index 1e114ab6494..bf57c1ae073 100644 --- a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/files_array.php +++ b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/files_array.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/groups_array.php b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/groups_array.php index ed80541b19d..963cee0c8b0 100644 --- a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/groups_array.php +++ b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/groups_array.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Model/Compiler/IncludeElementTest.php b/app/code/Magento/Config/Test/Unit/Model/Compiler/IncludeElementTest.php index 0483f5b715b..cba17450e4d 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Compiler/IncludeElementTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Compiler/IncludeElementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Compiler; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/BaseurlTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/BaseurlTest.php index c174e33ddd2..a81d98e12a9 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/BaseurlTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/BaseurlTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Backend; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/LogoTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/LogoTest.php index 163f9bb536a..acb7a47bc1c 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/LogoTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/LogoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Backend\Email; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/EncryptedTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/EncryptedTest.php index 5d930db5429..e0ba3744985 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/EncryptedTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/EncryptedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Backend; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/File/RequestDataTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/File/RequestDataTest.php index 3ff42bb185d..d2149808efd 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/File/RequestDataTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/File/RequestDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Backend\File; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/FileTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/FileTest.php index 954685c64bc..7d0e1cabda5 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/FileTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/FileTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Backend; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Image/LogoTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Image/LogoTest.php index ccbb470154b..c1668f5cd9f 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Image/LogoTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Image/LogoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Backend\Image; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/SecureTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/SecureTest.php index ed33700693f..e03757f4961 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/SecureTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/SecureTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Backend; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Export/CommentTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Export/CommentTest.php index c8b10bcf4dd..9afb9445fca 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Export/CommentTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Export/CommentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Export; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Export/ExcludeListTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Export/ExcludeListTest.php index 3156ad1ec54..8476ec3c30f 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Export/ExcludeListTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Export/ExcludeListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Export; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/LoaderTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/LoaderTest.php index 69d4b01526a..d0025ea41a5 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/LoaderTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/LoaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Processor/EnvironmentPlaceholderTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Processor/EnvironmentPlaceholderTest.php index 25f9f6b3cb8..d3fc89900ea 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Processor/EnvironmentPlaceholderTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Processor/EnvironmentPlaceholderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Processor; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Reader/Source/Deployed/SettingCheckerTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Reader/Source/Deployed/SettingCheckerTest.php index 75bfab85616..0231dd8a62b 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Reader/Source/Deployed/SettingCheckerTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Reader/Source/Deployed/SettingCheckerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Reader\Source\Deployed; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/SchemaLocatorTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/SchemaLocatorTest.php index 34b60665e49..05dc810cbe7 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/ScopeDefinerTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/ScopeDefinerTest.php index 02bbcf50647..7165dd2204d 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/ScopeDefinerTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/ScopeDefinerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Source/Admin/PageTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Source/Admin/PageTest.php index 6b38227e8c5..afc896ef85a 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Source/Admin/PageTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Source/Admin/PageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php index 69087145bb7..add77ba0584 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Source/Locale/TimezoneTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Source/Locale/TimezoneTest.php index 00e15686f78..56e3dbdde41 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Source/Locale/TimezoneTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Source/Locale/TimezoneTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Source\Locale; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/AbstractElementTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/AbstractElementTest.php index 88f34595d12..d492451145b 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/AbstractElementTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/AbstractElementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ConverterTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ConverterTest.php index 0f58a8588a6..1356fad1ebf 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ConverterTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/AbstractCompositeTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/AbstractCompositeTest.php index 56c57711dcf..1dd529d5e2f 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/AbstractCompositeTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/AbstractCompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/FieldTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/FieldTest.php index 89df62942e5..83e2ba09deb 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/FieldTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/FieldTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Element\Dependency; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/MapperTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/MapperTest.php index 6baf0b54fe0..074c972c2d2 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/MapperTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/MapperTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Element\Dependency; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FieldTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FieldTest.php index 39bed2b0f5c..6d8ad16e6d9 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FieldTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FieldTest.php @@ -2,7 +2,7 @@ /** * \Magento\Config\Model\Config\Structure\Element\Field * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FlyweightFactoryTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FlyweightFactoryTest.php index fb614188984..c6e09d9692b 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FlyweightFactoryTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FlyweightFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Group/ProxyTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Group/ProxyTest.php index f93fd644110..a0c9b435888 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Group/ProxyTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Group/ProxyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Element\Group; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/GroupTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/GroupTest.php index bae73384fe7..bde873de79f 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/GroupTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/GroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Iterator/FieldTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Iterator/FieldTest.php index de44c10e012..c2cd4929aac 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Iterator/FieldTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Iterator/FieldTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Element\Iterator; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/IteratorTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/IteratorTest.php index 3ef0bfc7a8f..3a698ca758f 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/IteratorTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/IteratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/SectionTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/SectionTest.php index 71c0aa1b808..bbfdf9bd48d 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/SectionTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/SectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/TabTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/TabTest.php index 8e34e41c882..48bf502d8b1 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/TabTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/TabTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Element; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/DependenciesTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/DependenciesTest.php index a0dc1182363..0d3c0d8536c 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/DependenciesTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/DependenciesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Mapper; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/ExtendsTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/ExtendsTest.php index 60072b0f443..4b161874dae 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/ExtendsTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/ExtendsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Mapper; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/Helper/RelativePathConverterTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/Helper/RelativePathConverterTest.php index 2abc5df0b51..cd3f5aef618 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/Helper/RelativePathConverterTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/Helper/RelativePathConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Mapper\Helper; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/PathTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/PathTest.php index 29103720d6a..db66e75467a 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/PathTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/PathTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Mapper; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/SortingTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/SortingTest.php index e26ba2701b5..9a465cf02e3 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/SortingTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/SortingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure\Mapper; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ReaderTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ReaderTest.php index c3f4b7dda7f..31c1599e7dd 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ReaderTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ReaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config\Structure; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/StructureTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/StructureTest.php index de0d2a44d7e..2f7c2a1e659 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/StructureTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/StructureTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/XsdTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/XsdTest.php index c6deb903e25..10fed6422e3 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/XsdTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Config; diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/_files/invalidSystemXmlArray.php b/app/code/Magento/Config/Test/Unit/Model/Config/_files/invalidSystemXmlArray.php index fbcb0007092..5dbc216da9d 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/_files/invalidSystemXmlArray.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/_files/invalidSystemXmlArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/_files/valid_system.xml b/app/code/Magento/Config/Test/Unit/Model/Config/_files/valid_system.xml index 38e17691fb6..3903164c791 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/_files/valid_system.xml +++ b/app/code/Magento/Config/Test/Unit/Model/Config/_files/valid_system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Config/Test/Unit/Model/ConfigTest.php index b8e3942ca03..dacd4b811cf 100644 --- a/app/code/Magento/Config/Test/Unit/Model/ConfigTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model; diff --git a/app/code/Magento/Config/Test/Unit/Model/Placeholder/EnvironmentTest.php b/app/code/Magento/Config/Test/Unit/Model/Placeholder/EnvironmentTest.php index 64b4e6e37fb..7bbd04ae0a2 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Placeholder/EnvironmentTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Placeholder/EnvironmentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Placeholder; diff --git a/app/code/Magento/Config/Test/Unit/Model/Placeholder/PlaceholderFactoryTest.php b/app/code/Magento/Config/Test/Unit/Model/Placeholder/PlaceholderFactoryTest.php index e8f646e9841..4ee2162d932 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Placeholder/PlaceholderFactoryTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Placeholder/PlaceholderFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Config\Test\Unit\Model\Placeholder; diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/acl.xml b/app/code/Magento/Config/Test/Unit/Model/_files/acl.xml index a7e272c2dee..346c3578e0e 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/acl.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/acl_1.xml b/app/code/Magento/Config/Test/Unit/Model/_files/acl_1.xml index 8777b5a5c9b..7a644511320 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/acl_1.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/acl_1.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/acl_2.xml b/app/code/Magento/Config/Test/Unit/Model/_files/acl_2.xml index f1d1a585190..25ffd2e232b 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/acl_2.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/acl_2.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/acl_merged.xml b/app/code/Magento/Config/Test/Unit/Model/_files/acl_merged.xml index 533b80a8334..4f64fcfd197 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/acl_merged.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/acl_merged.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/converted_config.php b/app/code/Magento/Config/Test/Unit/Model/_files/converted_config.php index cf015e3f4fa..fb14e864b4f 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/converted_config.php +++ b/app/code/Magento/Config/Test/Unit/Model/_files/converted_config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_data.php b/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_data.php index d7c4eba0578..55c97106f78 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_data.php +++ b/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_mapped.php b/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_mapped.php index 4c47d3ef260..40c3c14e148 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_mapped.php +++ b/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_mapped.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/menu_1.xml b/app/code/Magento/Config/Test/Unit/Model/_files/menu_1.xml index 9b635492341..0156199b3ac 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/menu_1.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/menu_1.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/menu_2.xml b/app/code/Magento/Config/Test/Unit/Model/_files/menu_2.xml index a3ce4a37b54..be40b39845c 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/menu_2.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/menu_2.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_1.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_1.xml index d4e82056c7d..f457f5561ad 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/system_1.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/system_1.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_2.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_2.xml index 507d14dfb83..c532d3b784f 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/system_2.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/system_2.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_1.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_1.xml index 585090d2e36..742773c2773 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_1.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_1.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_2.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_2.xml index 85ee630d049..51dd03e0b00 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_2.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_2.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_1.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_1.xml index 9dddfc75dc5..aafdd903b9c 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_1.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_1.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_2.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_2.xml index 7f1cf40924c..a343a1ab453 100644 --- a/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_2.xml +++ b/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_2.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/etc/acl.xml b/app/code/Magento/Config/etc/acl.xml index 4378d5476ea..14a29ff3bae 100644 --- a/app/code/Magento/Config/etc/acl.xml +++ b/app/code/Magento/Config/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/etc/adminhtml/di.xml b/app/code/Magento/Config/etc/adminhtml/di.xml index 48d6f597b6d..672693b9a40 100644 --- a/app/code/Magento/Config/etc/adminhtml/di.xml +++ b/app/code/Magento/Config/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/etc/adminhtml/events.xml b/app/code/Magento/Config/etc/adminhtml/events.xml index 0e93efa4427..dcaa2961f9c 100644 --- a/app/code/Magento/Config/etc/adminhtml/events.xml +++ b/app/code/Magento/Config/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/etc/adminhtml/menu.xml b/app/code/Magento/Config/etc/adminhtml/menu.xml index 3228c6678b6..62083660f41 100644 --- a/app/code/Magento/Config/etc/adminhtml/menu.xml +++ b/app/code/Magento/Config/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/etc/adminhtml/routes.xml b/app/code/Magento/Config/etc/adminhtml/routes.xml index 47a0de2890a..b96cbba088a 100644 --- a/app/code/Magento/Config/etc/adminhtml/routes.xml +++ b/app/code/Magento/Config/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/etc/di.xml b/app/code/Magento/Config/etc/di.xml index 3e2fa4fbecf..9579e1ca319 100644 --- a/app/code/Magento/Config/etc/di.xml +++ b/app/code/Magento/Config/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/etc/module.xml b/app/code/Magento/Config/etc/module.xml index be109bc027d..41b35ad1bf9 100644 --- a/app/code/Magento/Config/etc/module.xml +++ b/app/code/Magento/Config/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/etc/system.xsd b/app/code/Magento/Config/etc/system.xsd index b0b62101d35..8579d14a9cf 100644 --- a/app/code/Magento/Config/etc/system.xsd +++ b/app/code/Magento/Config/etc/system.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/etc/system_file.xsd b/app/code/Magento/Config/etc/system_file.xsd index fc90d36ebaa..0914312c763 100644 --- a/app/code/Magento/Config/etc/system_file.xsd +++ b/app/code/Magento/Config/etc/system_file.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/etc/system_include.xsd b/app/code/Magento/Config/etc/system_include.xsd index a7ef13ef11e..563448c2507 100644 --- a/app/code/Magento/Config/etc/system_include.xsd +++ b/app/code/Magento/Config/etc/system_include.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/registration.php b/app/code/Magento/Config/registration.php index ebf8ea2bf68..29c42cd42e7 100644 --- a/app/code/Magento/Config/registration.php +++ b/app/code/Magento/Config/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/view/adminhtml/layout/adminhtml_system_config_edit.xml b/app/code/Magento/Config/view/adminhtml/layout/adminhtml_system_config_edit.xml index 219a778f404..bad39d589fe 100644 --- a/app/code/Magento/Config/view/adminhtml/layout/adminhtml_system_config_edit.xml +++ b/app/code/Magento/Config/view/adminhtml/layout/adminhtml_system_config_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Config/view/adminhtml/templates/page/system/config/robots/reset.phtml b/app/code/Magento/Config/view/adminhtml/templates/page/system/config/robots/reset.phtml index 9f1fb1bf29f..6dcdf371eea 100644 --- a/app/code/Magento/Config/view/adminhtml/templates/page/system/config/robots/reset.phtml +++ b/app/code/Magento/Config/view/adminhtml/templates/page/system/config/robots/reset.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/view/adminhtml/templates/system/config/edit.phtml b/app/code/Magento/Config/view/adminhtml/templates/system/config/edit.phtml index 73f0fe007be..b5926d53ff4 100644 --- a/app/code/Magento/Config/view/adminhtml/templates/system/config/edit.phtml +++ b/app/code/Magento/Config/view/adminhtml/templates/system/config/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/view/adminhtml/templates/system/config/form/field/array.phtml b/app/code/Magento/Config/view/adminhtml/templates/system/config/form/field/array.phtml index bc400ccd6b5..8a40bac7633 100644 --- a/app/code/Magento/Config/view/adminhtml/templates/system/config/form/field/array.phtml +++ b/app/code/Magento/Config/view/adminhtml/templates/system/config/form/field/array.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/view/adminhtml/templates/system/config/js.phtml b/app/code/Magento/Config/view/adminhtml/templates/system/config/js.phtml index 25d91c3859f..4c450be896e 100644 --- a/app/code/Magento/Config/view/adminhtml/templates/system/config/js.phtml +++ b/app/code/Magento/Config/view/adminhtml/templates/system/config/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/view/adminhtml/templates/system/config/switcher.phtml b/app/code/Magento/Config/view/adminhtml/templates/system/config/switcher.phtml index e780dd125b8..0286b75249d 100644 --- a/app/code/Magento/Config/view/adminhtml/templates/system/config/switcher.phtml +++ b/app/code/Magento/Config/view/adminhtml/templates/system/config/switcher.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Config/view/adminhtml/templates/system/config/tabs.phtml b/app/code/Magento/Config/view/adminhtml/templates/system/config/tabs.phtml index 737477596ef..48aa0b290f1 100644 --- a/app/code/Magento/Config/view/adminhtml/templates/system/config/tabs.phtml +++ b/app/code/Magento/Config/view/adminhtml/templates/system/config/tabs.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableImportExport/Model/Export/Product/Type/Configurable.php b/app/code/Magento/ConfigurableImportExport/Model/Export/Product/Type/Configurable.php index 13d2f4d666a..854558d7187 100644 --- a/app/code/Magento/ConfigurableImportExport/Model/Export/Product/Type/Configurable.php +++ b/app/code/Magento/ConfigurableImportExport/Model/Export/Product/Type/Configurable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableImportExport\Model\Export\Product\Type; diff --git a/app/code/Magento/ConfigurableImportExport/Model/Export/RowCustomizer.php b/app/code/Magento/ConfigurableImportExport/Model/Export/RowCustomizer.php index fde33f8d357..09c2400f437 100644 --- a/app/code/Magento/ConfigurableImportExport/Model/Export/RowCustomizer.php +++ b/app/code/Magento/ConfigurableImportExport/Model/Export/RowCustomizer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableImportExport\Model\Export; diff --git a/app/code/Magento/ConfigurableImportExport/Model/Import/Product/Type/Configurable.php b/app/code/Magento/ConfigurableImportExport/Model/Import/Product/Type/Configurable.php index 9eedf22fbc1..02ffd95f567 100644 --- a/app/code/Magento/ConfigurableImportExport/Model/Import/Product/Type/Configurable.php +++ b/app/code/Magento/ConfigurableImportExport/Model/Import/Product/Type/Configurable.php @@ -2,7 +2,7 @@ /** * Import entity configurable product type model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Export/RowCustomizerTest.php b/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Export/RowCustomizerTest.php index f15749ebf64..b39007bf7f4 100644 --- a/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Export/RowCustomizerTest.php +++ b/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Export/RowCustomizerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Import/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Import/Product/Type/ConfigurableTest.php index 4cc4e6648a0..5fa3e9bac36 100644 --- a/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Import/Product/Type/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Import/Product/Type/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableImportExport/etc/di.xml b/app/code/Magento/ConfigurableImportExport/etc/di.xml index d268ae0405a..117cf619c60 100644 --- a/app/code/Magento/ConfigurableImportExport/etc/di.xml +++ b/app/code/Magento/ConfigurableImportExport/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableImportExport/etc/export.xml b/app/code/Magento/ConfigurableImportExport/etc/export.xml index 897b4ac4c59..7579f1ed01b 100644 --- a/app/code/Magento/ConfigurableImportExport/etc/export.xml +++ b/app/code/Magento/ConfigurableImportExport/etc/export.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableImportExport/etc/import.xml b/app/code/Magento/ConfigurableImportExport/etc/import.xml index 7e6d400e04a..6be1a1deef9 100644 --- a/app/code/Magento/ConfigurableImportExport/etc/import.xml +++ b/app/code/Magento/ConfigurableImportExport/etc/import.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableImportExport/etc/module.xml b/app/code/Magento/ConfigurableImportExport/etc/module.xml index bb27c872fff..8aa43f90dc4 100644 --- a/app/code/Magento/ConfigurableImportExport/etc/module.xml +++ b/app/code/Magento/ConfigurableImportExport/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableImportExport/registration.php b/app/code/Magento/ConfigurableImportExport/registration.php index 467b113eec2..dfece572c23 100644 --- a/app/code/Magento/ConfigurableImportExport/registration.php +++ b/app/code/Magento/ConfigurableImportExport/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Api/ConfigurableProductManagementInterface.php b/app/code/Magento/ConfigurableProduct/Api/ConfigurableProductManagementInterface.php index 279cfa7dd0b..52113297b23 100644 --- a/app/code/Magento/ConfigurableProduct/Api/ConfigurableProductManagementInterface.php +++ b/app/code/Magento/ConfigurableProduct/Api/ConfigurableProductManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Api; diff --git a/app/code/Magento/ConfigurableProduct/Api/Data/ConfigurableItemOptionValueInterface.php b/app/code/Magento/ConfigurableProduct/Api/Data/ConfigurableItemOptionValueInterface.php index f25331409f4..d3b65a5e4db 100644 --- a/app/code/Magento/ConfigurableProduct/Api/Data/ConfigurableItemOptionValueInterface.php +++ b/app/code/Magento/ConfigurableProduct/Api/Data/ConfigurableItemOptionValueInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Api\Data; diff --git a/app/code/Magento/ConfigurableProduct/Api/Data/OptionInterface.php b/app/code/Magento/ConfigurableProduct/Api/Data/OptionInterface.php index daab3347fc2..3f6669c18ef 100644 --- a/app/code/Magento/ConfigurableProduct/Api/Data/OptionInterface.php +++ b/app/code/Magento/ConfigurableProduct/Api/Data/OptionInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Api\Data; diff --git a/app/code/Magento/ConfigurableProduct/Api/Data/OptionValueInterface.php b/app/code/Magento/ConfigurableProduct/Api/Data/OptionValueInterface.php index 255887226eb..37855daec4d 100644 --- a/app/code/Magento/ConfigurableProduct/Api/Data/OptionValueInterface.php +++ b/app/code/Magento/ConfigurableProduct/Api/Data/OptionValueInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Api\Data; diff --git a/app/code/Magento/ConfigurableProduct/Api/LinkManagementInterface.php b/app/code/Magento/ConfigurableProduct/Api/LinkManagementInterface.php index 68e1951b54d..4eb34145386 100644 --- a/app/code/Magento/ConfigurableProduct/Api/LinkManagementInterface.php +++ b/app/code/Magento/ConfigurableProduct/Api/LinkManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Api; diff --git a/app/code/Magento/ConfigurableProduct/Api/OptionRepositoryInterface.php b/app/code/Magento/ConfigurableProduct/Api/OptionRepositoryInterface.php index 1faadaaf454..eb6e22cfa9d 100644 --- a/app/code/Magento/ConfigurableProduct/Api/OptionRepositoryInterface.php +++ b/app/code/Magento/ConfigurableProduct/Api/OptionRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Api; diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Order/Create/Sidebar.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Order/Create/Sidebar.php index 0cff9d736a2..18612ba998e 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Order/Create/Sidebar.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Order/Create/Sidebar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/Edit/Tab/Variations/Main.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/Edit/Tab/Variations/Main.php index 7ae4ad71b5b..734f292322e 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/Edit/Tab/Variations/Main.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/Edit/Tab/Variations/Main.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Created.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Created.php index 6fe63556a66..e42ec786d65 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Created.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Created.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Composite/Fieldset/Configurable.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Composite/Fieldset/Configurable.php index d60d6485491..ca3fa0b9510 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Composite/Fieldset/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Composite/Fieldset/Configurable.php @@ -2,7 +2,7 @@ /** * Adminhtml block for fieldset of configurable product * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Adminhtml\Product\Composite\Fieldset; diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/AttributeSet/Form.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/AttributeSet/Form.php index ec23de92177..031d97eb647 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/AttributeSet/Form.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/AttributeSet/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Button/Save.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Button/Save.php index 76668f80998..277b9338d7e 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Button/Save.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Button/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config.php index 8e03744a37f..9cd86f068cb 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Adminhtml\Product\Edit\Tab\Variations; diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config/Matrix.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config/Matrix.php index cc46ce6ca3a..68544e93796 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config/Matrix.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config/Matrix.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/AttributeValues.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/AttributeValues.php index d3b848480c6..fdaff6e320d 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/AttributeValues.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/AttributeValues.php @@ -2,7 +2,7 @@ /** * Adminhtml block for fieldset of configurable product * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Adminhtml\Product\Steps; diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Bulk.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Bulk.php index 145b41f085c..ada7024a57f 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Bulk.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Bulk.php @@ -2,7 +2,7 @@ /** * Adminhtml block for fieldset of configurable product * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Adminhtml\Product\Steps; diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/SelectAttributes.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/SelectAttributes.php index a9e7360863c..1de8eee8382 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/SelectAttributes.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/SelectAttributes.php @@ -2,7 +2,7 @@ /** * Adminhtml block for fieldset of configurable product * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Adminhtml\Product\Steps; diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Summary.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Summary.php index 9fa226582da..a298f1a2630 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Summary.php +++ b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Summary.php @@ -2,7 +2,7 @@ /** * Adminhtml block for fieldset of configurable product * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Adminhtml\Product\Steps; diff --git a/app/code/Magento/ConfigurableProduct/Block/Cart/Item/Renderer/Configurable.php b/app/code/Magento/ConfigurableProduct/Block/Cart/Item/Renderer/Configurable.php index b401e1a9b34..c2218992f46 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Cart/Item/Renderer/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Block/Cart/Item/Renderer/Configurable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Cart\Item\Renderer; diff --git a/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AssociatedSelector/Renderer/Id.php b/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AssociatedSelector/Renderer/Id.php index d946ce763c4..c9972cc0466 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AssociatedSelector/Renderer/Id.php +++ b/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AssociatedSelector/Renderer/Id.php @@ -2,7 +2,7 @@ /** * ID column renderer, also contains image URL in hidden field * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Product\Configurable\AssociatedSelector\Renderer; diff --git a/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AttributeSelector.php b/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AttributeSelector.php index 02a57e4e0b9..fcb40ea35e0 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AttributeSelector.php +++ b/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AttributeSelector.php @@ -2,7 +2,7 @@ /** * Select attributes suitable for product variations generation * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Product\Configurable; diff --git a/app/code/Magento/ConfigurableProduct/Block/Product/View/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Block/Product/View/Type/Configurable.php index a5f85df1c96..f2bb58eb81e 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Product/View/Type/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Block/Product/View/Type/Configurable.php @@ -2,7 +2,7 @@ /** * Catalog super product configurable part block * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Product\View\Type; diff --git a/app/code/Magento/ConfigurableProduct/Block/Stockqty/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Block/Stockqty/Type/Configurable.php index 65255d6b8aa..59ca677d3de 100644 --- a/app/code/Magento/ConfigurableProduct/Block/Stockqty/Type/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Block/Stockqty/Type/Configurable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Block\Stockqty\Type; diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/AddAttribute.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/AddAttribute.php index ba89bbccde4..f830526436f 100644 --- a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/AddAttribute.php +++ b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/AddAttribute.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Controller\Adminhtml\Product; diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Associated/Grid.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Associated/Grid.php index b46c4b767e8..772e2ba3de9 100644 --- a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Associated/Grid.php +++ b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Associated/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Controller\Adminhtml\Product\Associated; diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/CreateOptions.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/CreateOptions.php index b766a1dbbcc..1fbb262f3f6 100644 --- a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/CreateOptions.php +++ b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/CreateOptions.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/GetAttributes.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/GetAttributes.php index d46cb2e7ec5..26ef49c28e1 100644 --- a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/GetAttributes.php +++ b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/GetAttributes.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributes.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributes.php index cd44466828f..b351836d7d8 100644 --- a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributes.php +++ b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributes.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Builder/Plugin.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Builder/Plugin.php index 354ebdb0ea7..522dd0212dc 100644 --- a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Builder/Plugin.php +++ b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Builder/Plugin.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Controller\Adminhtml\Product\Builder; diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Configurable.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Configurable.php index 4602dc5a1dd..ee18784b8ff 100644 --- a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Configurable.php @@ -2,7 +2,7 @@ /** * Product initialization helper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Controller\Adminhtml\Product\Initialization\Helper\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurations.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurations.php index cb9a6b53460..a384962ee7a 100644 --- a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurations.php +++ b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurations.php @@ -2,7 +2,7 @@ /** * Product initialzation helper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Controller\Adminhtml\Product\Initialization\Helper\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Wizard.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Wizard.php index f8b22651191..d5217a06332 100644 --- a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Wizard.php +++ b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Wizard.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Controller\Adminhtml\Product; diff --git a/app/code/Magento/ConfigurableProduct/CustomerData/ConfigurableItem.php b/app/code/Magento/ConfigurableProduct/CustomerData/ConfigurableItem.php index 7614eef7c82..6a4bb61dd1d 100644 --- a/app/code/Magento/ConfigurableProduct/CustomerData/ConfigurableItem.php +++ b/app/code/Magento/ConfigurableProduct/CustomerData/ConfigurableItem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Helper/Data.php b/app/code/Magento/ConfigurableProduct/Helper/Data.php index 4c1370b1a0d..8c2e56af10e 100644 --- a/app/code/Magento/ConfigurableProduct/Helper/Data.php +++ b/app/code/Magento/ConfigurableProduct/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Helper/Product/Configuration/Plugin.php b/app/code/Magento/ConfigurableProduct/Helper/Product/Configuration/Plugin.php index 4c8eed3f2b4..096242b37d1 100644 --- a/app/code/Magento/ConfigurableProduct/Helper/Product/Configuration/Plugin.php +++ b/app/code/Magento/ConfigurableProduct/Helper/Product/Configuration/Plugin.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Helper\Product\Configuration; diff --git a/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Factory.php b/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Factory.php index 75b9b938f31..a35e2c7349e 100644 --- a/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Factory.php +++ b/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Helper\Product\Options; diff --git a/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Loader.php b/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Loader.php index 184d0f8b08b..c18abc4afff 100644 --- a/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Loader.php +++ b/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Loader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Helper\Product\Options; diff --git a/app/code/Magento/ConfigurableProduct/Model/Attribute/LockValidator.php b/app/code/Magento/ConfigurableProduct/Model/Attribute/LockValidator.php index b90b984f3e6..177a58e561e 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Attribute/LockValidator.php +++ b/app/code/Magento/ConfigurableProduct/Model/Attribute/LockValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Attribute; diff --git a/app/code/Magento/ConfigurableProduct/Model/AttributesList.php b/app/code/Magento/ConfigurableProduct/Model/AttributesList.php index 5c9c0db27ba..d8ac9ded98f 100644 --- a/app/code/Magento/ConfigurableProduct/Model/AttributesList.php +++ b/app/code/Magento/ConfigurableProduct/Model/AttributesList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model; diff --git a/app/code/Magento/ConfigurableProduct/Model/AttributesListInterface.php b/app/code/Magento/ConfigurableProduct/Model/AttributesListInterface.php index 66dbe72d86a..e5b0d83e689 100644 --- a/app/code/Magento/ConfigurableProduct/Model/AttributesListInterface.php +++ b/app/code/Magento/ConfigurableProduct/Model/AttributesListInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model; diff --git a/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeData.php b/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeData.php index be398931456..de1b146227c 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeData.php +++ b/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeHandler.php b/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeHandler.php index 0c861de3414..3eb4d3d3937 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeHandler.php +++ b/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model; diff --git a/app/code/Magento/ConfigurableProduct/Model/ConfigurableProductManagement.php b/app/code/Magento/ConfigurableProduct/Model/ConfigurableProductManagement.php index e973b4474ad..15e4ec795d4 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ConfigurableProductManagement.php +++ b/app/code/Magento/ConfigurableProduct/Model/ConfigurableProductManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model; diff --git a/app/code/Magento/ConfigurableProduct/Model/Entity/Product/Attribute/Group/AttributeMapper/Plugin.php b/app/code/Magento/ConfigurableProduct/Model/Entity/Product/Attribute/Group/AttributeMapper/Plugin.php index 6f14a13e8e6..6edae43fa86 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Entity/Product/Attribute/Group/AttributeMapper/Plugin.php +++ b/app/code/Magento/ConfigurableProduct/Model/Entity/Product/Attribute/Group/AttributeMapper/Plugin.php @@ -2,7 +2,7 @@ /** * Product Attribute Group mapper plugin. Adds Configurable product information * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Entity\Product\Attribute\Group\AttributeMapper; diff --git a/app/code/Magento/ConfigurableProduct/Model/LinkManagement.php b/app/code/Magento/ConfigurableProduct/Model/LinkManagement.php index 5575d6f7ef5..a5c87d4ef29 100644 --- a/app/code/Magento/ConfigurableProduct/Model/LinkManagement.php +++ b/app/code/Magento/ConfigurableProduct/Model/LinkManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model; diff --git a/app/code/Magento/ConfigurableProduct/Model/OptionRepository.php b/app/code/Magento/ConfigurableProduct/Model/OptionRepository.php index 9cca92aa445..af0bc93066b 100644 --- a/app/code/Magento/ConfigurableProduct/Model/OptionRepository.php +++ b/app/code/Magento/ConfigurableProduct/Model/OptionRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model; diff --git a/app/code/Magento/ConfigurableProduct/Model/Order/Admin/Item/Plugin/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Order/Admin/Item/Plugin/Configurable.php index ea6d3bbe4e8..2902629c908 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Order/Admin/Item/Plugin/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/Order/Admin/Item/Plugin/Configurable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Order\Admin\Item\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Model/Plugin/PriceBackend.php b/app/code/Magento/ConfigurableProduct/Model/Plugin/PriceBackend.php index 949774b5cfc..a2b5ae987fd 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Plugin/PriceBackend.php +++ b/app/code/Magento/ConfigurableProduct/Model/Plugin/PriceBackend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Model/Plugin/ProductRepositorySave.php b/app/code/Magento/ConfigurableProduct/Model/Plugin/ProductRepositorySave.php index cfcb5e41799..604b9ff0d0d 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Plugin/ProductRepositorySave.php +++ b/app/code/Magento/ConfigurableProduct/Model/Plugin/ProductRepositorySave.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Cache/Tag/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/Cache/Tag/Configurable.php index 2059eee2b1f..8e5a4222ba0 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Cache/Tag/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Cache/Tag/Configurable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product\Cache\Tag; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/CartConfiguration/Plugin/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/CartConfiguration/Plugin/Configurable.php index cd83e1586f1..ec22308012c 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/CartConfiguration/Plugin/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/CartConfiguration/Plugin/Configurable.php @@ -2,7 +2,7 @@ /** * Plugin for cart product configuration * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product\CartConfiguration\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/ReadHandler.php b/app/code/Magento/ConfigurableProduct/Model/Product/ReadHandler.php index 68001edddb2..256703a158f 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/ReadHandler.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/SaveHandler.php b/app/code/Magento/ConfigurableProduct/Model/Product/SaveHandler.php index 8c542fb746a..80061adee7d 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/SaveHandler.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php index 0bd2f234182..63040885c63 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product\Type; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Attribute.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Attribute.php index 7172039d887..e877d6e32f9 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Attribute.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Attribute.php @@ -2,7 +2,7 @@ /** * Catalog Configurable Product Attribute Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product\Type\Configurable; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/OptionValue.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/OptionValue.php index 4615f226a99..036c912da8a 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/OptionValue.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/OptionValue.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Price.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Price.php index fe4428cf589..9c7efd803fb 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Price.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Price.php @@ -2,7 +2,7 @@ /** * Product type price model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product\Type\Configurable; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Plugin.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Plugin.php index 2eb7be9466c..a4940b88b03 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Plugin.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Plugin.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product\Type; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/VariationMatrix.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/VariationMatrix.php index b002ce5abe6..ba325ca5a59 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Type/VariationMatrix.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Type/VariationMatrix.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product\Type; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/TypeTransitionManager/Plugin/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/TypeTransitionManager/Plugin/Configurable.php index 53d1791f7e0..80ff0c8a8c4 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/TypeTransitionManager/Plugin/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/TypeTransitionManager/Plugin/Configurable.php @@ -2,7 +2,7 @@ /** * Plugin for product type transition manager * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product\TypeTransitionManager\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Validator/Plugin.php b/app/code/Magento/ConfigurableProduct/Model/Product/Validator/Plugin.php index b5970c90274..9cdf61b2e0f 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/Validator/Plugin.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/Validator/Plugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product\Validator; diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/VariationHandler.php b/app/code/Magento/ConfigurableProduct/Model/Product/VariationHandler.php index 0d0bba60a77..b11e7c1dc49 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Product/VariationHandler.php +++ b/app/code/Magento/ConfigurableProduct/Model/Product/VariationHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Product; diff --git a/app/code/Magento/ConfigurableProduct/Model/ProductOptionProcessor.php b/app/code/Magento/ConfigurableProduct/Model/ProductOptionProcessor.php index d6d1d58557d..a3b22d34822 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ProductOptionProcessor.php +++ b/app/code/Magento/ConfigurableProduct/Model/ProductOptionProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model; diff --git a/app/code/Magento/ConfigurableProduct/Model/ProductVariationsBuilder.php b/app/code/Magento/ConfigurableProduct/Model/ProductVariationsBuilder.php index 7e23a7d2ac8..090b03290ee 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ProductVariationsBuilder.php +++ b/app/code/Magento/ConfigurableProduct/Model/ProductVariationsBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php index 8e661f99c52..58f70b86742 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php +++ b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Quote\Item; diff --git a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/ConfigurableItemOptionValue.php b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/ConfigurableItemOptionValue.php index 5534fc7ec85..a8c7d8f2343 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/ConfigurableItemOptionValue.php +++ b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/ConfigurableItemOptionValue.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Quote\Item; diff --git a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProduct.php b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProduct.php index 1657fb8aaae..8f1a5eccefe 100644 --- a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProduct.php +++ b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProduct.php @@ -2,7 +2,7 @@ /** * Stock item initializer for configurable product type * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\Quote\Item\QuantityValidator\Initializer\Option\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Indexer/Stock/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Indexer/Stock/Configurable.php index 794034b446f..fc148b4b512 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Indexer/Stock/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Indexer/Stock/Configurable.php @@ -2,7 +2,7 @@ /** * CatalogInventory Configurable Products Stock Status Indexer Resource Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\ResourceModel\Indexer\Stock; diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Price/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Price/Configurable.php index ed4863342a9..56340709648 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Price/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Price/Configurable.php @@ -2,7 +2,7 @@ /** * Configurable Products Price Indexer Resource model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\ResourceModel\Product\Indexer\Price; diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable.php index 6994fd89b7a..7a55a7bcb27 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable.php +++ b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable.php @@ -2,7 +2,7 @@ /** * Configurable product type resource model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\ResourceModel\Product\Type; diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute.php index 230b0d51b3f..9dba71b8052 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute.php +++ b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute.php @@ -2,7 +2,7 @@ /** * Catalog super product attribute resource model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable; diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute/Collection.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute/Collection.php index bbdc426c5d1..c51b047e539 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute/Collection.php +++ b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute/Collection.php @@ -2,7 +2,7 @@ /** * Catalog Configurable Product Attribute Collection * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Attribute; diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Product/Collection.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Product/Collection.php index 44a4d468cd0..f89a283da3e 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Product/Collection.php +++ b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Product/Collection.php @@ -2,7 +2,7 @@ /** * Catalog super product link collection * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable\Product; diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Setup/PropertyMapper.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Setup/PropertyMapper.php index e56760f223d..71b6b5820ee 100644 --- a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Setup/PropertyMapper.php +++ b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Setup/PropertyMapper.php @@ -2,7 +2,7 @@ /** * Configurable product attribute property mapper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model\ResourceModel\Setup; diff --git a/app/code/Magento/ConfigurableProduct/Model/SuggestedAttributeList.php b/app/code/Magento/ConfigurableProduct/Model/SuggestedAttributeList.php index 00ebc646a5d..f902dd42259 100644 --- a/app/code/Magento/ConfigurableProduct/Model/SuggestedAttributeList.php +++ b/app/code/Magento/ConfigurableProduct/Model/SuggestedAttributeList.php @@ -2,7 +2,7 @@ /** * List of suggested attributes * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Model; diff --git a/app/code/Magento/ConfigurableProduct/Observer/HideUnsupportedAttributeTypes.php b/app/code/Magento/ConfigurableProduct/Observer/HideUnsupportedAttributeTypes.php index 4ccbab7e1af..aefc2080177 100644 --- a/app/code/Magento/ConfigurableProduct/Observer/HideUnsupportedAttributeTypes.php +++ b/app/code/Magento/ConfigurableProduct/Observer/HideUnsupportedAttributeTypes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Plugin/Model/ResourceModel/Product.php b/app/code/Magento/ConfigurableProduct/Plugin/Model/ResourceModel/Product.php index 3f0af143dbe..2940ab23ea7 100644 --- a/app/code/Magento/ConfigurableProduct/Plugin/Model/ResourceModel/Product.php +++ b/app/code/Magento/ConfigurableProduct/Plugin/Model/ResourceModel/Product.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Plugin\Model\ResourceModel; diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProvider.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProvider.php index 872538d9bab..1b86e465b51 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProvider.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProviderInterface.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProviderInterface.php index c0f2c218cc7..68da9c8cbbb 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProviderInterface.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurablePriceResolver.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurablePriceResolver.php index eb3040ad2f6..7309d8f739c 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurablePriceResolver.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurablePriceResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPrice.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPrice.php index 7a710e2caac..e593cfda9ce 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPrice.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPriceInterface.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPriceInterface.php index 861d35f8b65..9b7799fc43e 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPriceInterface.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPrice.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPrice.php index ee361d6f0a3..8353b50bc19 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPrice.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPriceResolver.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPriceResolver.php index 99304d7edc2..dc22cc650be 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPriceResolver.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPriceResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php index 1b758866100..d252d17ad0e 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Pricing\Price; diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProviderInterface.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProviderInterface.php index c0989a929be..7e00d4f744c 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProviderInterface.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Pricing\Price; diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/PriceResolverInterface.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/PriceResolverInterface.php index d0c0670d1f5..e89e1365276 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/PriceResolverInterface.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/PriceResolverInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/RegularPriceResolver.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/RegularPriceResolver.php index 533325eb0de..6741e56fee4 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/RegularPriceResolver.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/RegularPriceResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Render/FinalPriceBox.php b/app/code/Magento/ConfigurableProduct/Pricing/Render/FinalPriceBox.php index 19bf0eee888..6df43239c2f 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Render/FinalPriceBox.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Render/FinalPriceBox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Pricing\Render; diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Render/TierPriceBox.php b/app/code/Magento/ConfigurableProduct/Pricing/Render/TierPriceBox.php index af2414204fd..d9dd414decc 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Render/TierPriceBox.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Render/TierPriceBox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Pricing\Render; diff --git a/app/code/Magento/ConfigurableProduct/Setup/InstallData.php b/app/code/Magento/ConfigurableProduct/Setup/InstallData.php index de19f2b1ff1..ad195821a81 100644 --- a/app/code/Magento/ConfigurableProduct/Setup/InstallData.php +++ b/app/code/Magento/ConfigurableProduct/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Setup/InstallSchema.php b/app/code/Magento/ConfigurableProduct/Setup/InstallSchema.php index 9cfc65c896d..fb2b3c80e8e 100644 --- a/app/code/Magento/ConfigurableProduct/Setup/InstallSchema.php +++ b/app/code/Magento/ConfigurableProduct/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Setup/Recurring.php b/app/code/Magento/ConfigurableProduct/Setup/Recurring.php index 0da3032cc68..ae47168502f 100644 --- a/app/code/Magento/ConfigurableProduct/Setup/Recurring.php +++ b/app/code/Magento/ConfigurableProduct/Setup/Recurring.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Setup; diff --git a/app/code/Magento/ConfigurableProduct/Setup/UpgradeData.php b/app/code/Magento/ConfigurableProduct/Setup/UpgradeData.php index 4c321f521bb..5cb109834bd 100644 --- a/app/code/Magento/ConfigurableProduct/Setup/UpgradeData.php +++ b/app/code/Magento/ConfigurableProduct/Setup/UpgradeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Setup; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php index cbbee6f54fa..26534c8822b 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Block\Adminhtml\Product\Edit\Button; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Tab/Variations/Config/MatrixTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Tab/Variations/Config/MatrixTest.php index d2fc99b9023..14e2cccd5cb 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Tab/Variations/Config/MatrixTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Tab/Variations/Config/MatrixTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Block\Adminhtml\Product\Edit\Tab\Variations\Config; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Cart/Item/Renderer/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Cart/Item/Renderer/ConfigurableTest.php index 166517c304f..50d323ef4bd 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Cart/Item/Renderer/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Cart/Item/Renderer/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Block\Cart\Item\Renderer; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Product/Configurable/AttributeSelectorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Product/Configurable/AttributeSelectorTest.php index c25fc6dc0a0..8375c60b09e 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Product/Configurable/AttributeSelectorTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Product/Configurable/AttributeSelectorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Block\Product\Configurable; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/AddAttributeTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/AddAttributeTest.php index a8f9cf59b71..c6e46f7356d 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/AddAttributeTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/AddAttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributesTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributesTest.php index 46733786112..75d4e3e68cc 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributesTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Controller\Adminhtml\Product\Attribute; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Builder/PluginTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Builder/PluginTest.php index e6c13a23541..4c9f86355e0 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Builder/PluginTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Builder/PluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Controller\Adminhtml\Product\Builder; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/ConfigurableTest.php index 05e9938cf52..5f42e6efcc1 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Controller\Adminhtml\Product\Initialization\Helper\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurationsTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurationsTest.php index 79d77c66e0d..568ca562714 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurationsTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurationsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Controller\Adminhtml\Product\Initialization\Helper\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/DataTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/DataTest.php index efb11e6b13a..375c0c3d37c 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Configuration/PluginTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Configuration/PluginTest.php index 1e3363d6258..97a84df0c4d 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Configuration/PluginTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Configuration/PluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Helper\Product\Configuration; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/FactoryTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/FactoryTest.php index 499f992aab0..89c97e4fe02 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/FactoryTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Helper\Product\Options; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/LoaderTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/LoaderTest.php index c6081376d59..e835af2e0e1 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/LoaderTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/LoaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Helper\Product\Options; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Attribute/LockValidatorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Attribute/LockValidatorTest.php index e8e33b68610..d24dfc6d3a4 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Attribute/LockValidatorTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Attribute/LockValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Attribute; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/AttributesListTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/AttributesListTest.php index 99253c75c77..8566c60d913 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/AttributesListTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/AttributesListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableAttributeDataTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableAttributeDataTest.php index 5f4269ccbe7..eba5dff8e7e 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableAttributeDataTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableAttributeDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableProductManagementTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableProductManagementTest.php index 9fca585f817..0b46e6f523a 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableProductManagementTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableProductManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Entity/Product/Attribute/Group/AttributeMapper/PluginTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Entity/Product/Attribute/Group/AttributeMapper/PluginTest.php index ea49bf0da16..c6d75e34268 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Entity/Product/Attribute/Group/AttributeMapper/PluginTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Entity/Product/Attribute/Group/AttributeMapper/PluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Entity\Product\Attribute\Group\AttributeMapper; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/LinkManagementTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/LinkManagementTest.php index 5a7886ea3ea..c6cd6e90253 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/LinkManagementTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/LinkManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/OptionRepositoryTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/OptionRepositoryTest.php index 700739478af..efb09c5167d 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/OptionRepositoryTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/OptionRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Order/Admin/Item/Plugin/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Order/Admin/Item/Plugin/ConfigurableTest.php index 9ae5905bed5..c0cc59e90ec 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Order/Admin/Item/Plugin/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Order/Admin/Item/Plugin/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Order\Admin\Item\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/PriceBackendTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/PriceBackendTest.php index 073e49997c1..dcb096a049f 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/PriceBackendTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/PriceBackendTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/ProductRepositorySaveTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/ProductRepositorySaveTest.php index 3b2069296db..38be114232a 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/ProductRepositorySaveTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/ProductRepositorySaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Cache/Tag/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Cache/Tag/ConfigurableTest.php index 5251f470071..b2db7a26ab2 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Cache/Tag/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Cache/Tag/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/CartConfiguration/Plugin/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/CartConfiguration/Plugin/ConfigurableTest.php index a0c4e146f9f..fbe980d2e2e 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/CartConfiguration/Plugin/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/CartConfiguration/Plugin/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Product\CartConfiguration\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductExtensionAttributes.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductExtensionAttributes.php index f5f12178480..1e25111bb29 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductExtensionAttributes.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductExtensionAttributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Product; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductOptionExtensionAttributes.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductOptionExtensionAttributes.php index c61ad824835..e474b2b6214 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductOptionExtensionAttributes.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductOptionExtensionAttributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Product; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ReadHandlerTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ReadHandlerTest.php index 07a0e68877b..2337c8e3840 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ReadHandlerTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ReadHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Product; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/SaveHandlerTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/SaveHandlerTest.php index 5c0ad84b8ec..c16a87f5ad0 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/SaveHandlerTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/SaveHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Product; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Configurable/PriceTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Configurable/PriceTest.php index 28f214a09e1..5f089ec6207 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Configurable/PriceTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Configurable/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php index 4f7ae98cc11..7daa5d61e13 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/PluginTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/PluginTest.php index e7386d739d8..1b3db9b8e47 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/PluginTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/PluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/VariationMatrixTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/VariationMatrixTest.php index f563c50a324..2017b8567bb 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/VariationMatrixTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/VariationMatrixTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/TypeTransitionManager/Plugin/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/TypeTransitionManager/Plugin/ConfigurableTest.php index 75999f0bd08..a0e9fe5b33a 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/TypeTransitionManager/Plugin/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/TypeTransitionManager/Plugin/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Product\TypeTransitionManager\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Validator/PluginTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Validator/PluginTest.php index 65d3f42767d..f69f7cd8b66 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Validator/PluginTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Validator/PluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Product\Validator; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/VariationHandlerTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/VariationHandlerTest.php index 62f5a8089e3..158c70cffec 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/VariationHandlerTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/VariationHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductOptionProcessorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductOptionProcessorTest.php index 2f275447c89..f5c1ad529c4 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductOptionProcessorTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductOptionProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductVariationsBuilderTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductVariationsBuilderTest.php index a844d472d0c..346587f5245 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductVariationsBuilderTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductVariationsBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php index ab4f5e3be7c..24e77abadb7 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Quote\Item; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProductTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProductTest.php index 6b162bbde85..e26699b9a8a 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProductTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\Quote\Item\QuantityValidator\Initializer\Option\Plugin; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/Configurable/AttributeTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/Configurable/AttributeTest.php index 6b4e483cc8d..03e8dea7400 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/Configurable/AttributeTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/Configurable/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/ConfigurableTest.php index a27647668f4..7d9e0a3c34d 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/ConfigurableTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Model\ResourceModel\Product\Type; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/SuggestedAttributeListTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/SuggestedAttributeListTest.php index 6f2aeed2a05..3cd94bd3568 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/SuggestedAttributeListTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/SuggestedAttributeListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Observer/HideUnsupportedAttributeTypesTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Observer/HideUnsupportedAttributeTypesTest.php index a6f15699d41..71dddf7f3dd 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Observer/HideUnsupportedAttributeTypesTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Observer/HideUnsupportedAttributeTypesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Plugin/Model/ResourceModel/ProductTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Plugin/Model/ResourceModel/ProductTest.php index 08e899493eb..346b73235ff 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Plugin/Model/ResourceModel/ProductTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Plugin/Model/ResourceModel/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Price/ConfigurablePriceResolverTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Price/ConfigurablePriceResolverTest.php index 78ac3a30974..f3cf8df591d 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Price/ConfigurablePriceResolverTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Price/ConfigurablePriceResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Pricing\Price; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Render/FinalPriceBoxTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Render/FinalPriceBoxTest.php index b102e1d81f4..e8b08f1fec4 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Render/FinalPriceBoxTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Render/FinalPriceBoxTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Pricing\Render; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/AttributesTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/AttributesTest.php index a336c4311cb..e828cee5511 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/AttributesTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/AttributesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Ui\Component\Listing\AssociatedProduct\Columns; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/NameTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/NameTest.php index c15b07d7d77..3408ec502b7 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/NameTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/NameTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Ui\Component\Listing\AssociatedProduct\Columns; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/PriceTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/PriceTest.php index 0cea01c41eb..820a1dcc6bc 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/PriceTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Ui\Component\Listing\AssociatedProduct\Columns; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php index 4b5ea1d82fb..8a97a4c3929 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandlerTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandlerTest.php index 34bd1083a0b..b5cbada1779 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandlerTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanelTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanelTest.php index 01b5cdc02ab..83ed04458a3 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanelTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePriceTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePriceTest.php index b8fe41e03b9..88fe3f89701 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePriceTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableQtyTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableQtyTest.php index 86d7c695a72..e06752180f3 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableQtyTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableQtyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php index 5ea3b5215e3..fe9bb9725c0 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/StockDataTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/StockDataTest.php index d2eb9b77b33..284c3bca741 100644 --- a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/StockDataTest.php +++ b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/StockDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Attribute/Repository.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Attribute/Repository.php index 15c61127e3a..045103412b3 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Attribute/Repository.php +++ b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Attribute/Repository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\Component\Listing\AssociatedProduct\Attribute; diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns.php index b96535bd608..0b63ef5f9c3 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns.php +++ b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\Component\Listing\AssociatedProduct; diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Attributes.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Attributes.php index cb02d7fd5c4..9bebbf25376 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Attributes.php +++ b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\Component\Listing\AssociatedProduct\Columns; diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Name.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Name.php index 58a51366be3..e0092b3d01a 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Name.php +++ b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Name.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\Component\Listing\AssociatedProduct\Columns; diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Price.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Price.php index 368193860a8..59f358a7dbd 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Price.php +++ b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\Component\Listing\AssociatedProduct\Columns; diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Filters.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Filters.php index afeedd8f3d5..2f710036747 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Filters.php +++ b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Filters.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\Component\Listing\AssociatedProduct; diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Attributes.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Attributes.php index ae76520a952..2bcacee1770 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Attributes.php +++ b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Composite.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Composite.php index 58f90ec0943..7446685aad5 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Composite.php +++ b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Composite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandler.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandler.php index 8fa683eda8d..3a20c7256bc 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandler.php +++ b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanel.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanel.php index 22116c6a132..c5cf506d447 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanel.php +++ b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePrice.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePrice.php index 0e7d82f9083..46e1caf4e0d 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePrice.php +++ b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableQty.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableQty.php index 456bb210272..9787ff8f279 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableQty.php +++ b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableQty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php index b54426f1500..7b9d54a07ce 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php +++ b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Data/AssociatedProducts.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Data/AssociatedProducts.php index ac1b8b981ea..9529172cbdc 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Data/AssociatedProducts.php +++ b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Data/AssociatedProducts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php index b09a66f7135..7bdeda7e1aa 100644 --- a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php +++ b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ConfigurableProduct\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/ConfigurableProduct/etc/adminhtml/di.xml b/app/code/Magento/ConfigurableProduct/etc/adminhtml/di.xml index 90c5612f5e5..0eb8ad0fdc2 100644 --- a/app/code/Magento/ConfigurableProduct/etc/adminhtml/di.xml +++ b/app/code/Magento/ConfigurableProduct/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/etc/adminhtml/events.xml b/app/code/Magento/ConfigurableProduct/etc/adminhtml/events.xml index 88df2d60a7d..70fb2a15438 100644 --- a/app/code/Magento/ConfigurableProduct/etc/adminhtml/events.xml +++ b/app/code/Magento/ConfigurableProduct/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/etc/adminhtml/routes.xml b/app/code/Magento/ConfigurableProduct/etc/adminhtml/routes.xml index 71b8d9fc349..4fe65639783 100644 --- a/app/code/Magento/ConfigurableProduct/etc/adminhtml/routes.xml +++ b/app/code/Magento/ConfigurableProduct/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/etc/adminhtml/system.xml b/app/code/Magento/ConfigurableProduct/etc/adminhtml/system.xml index c7e4090948f..494b09d031c 100644 --- a/app/code/Magento/ConfigurableProduct/etc/adminhtml/system.xml +++ b/app/code/Magento/ConfigurableProduct/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/etc/config.xml b/app/code/Magento/ConfigurableProduct/etc/config.xml index f8cd8f1096e..98b1658bc52 100644 --- a/app/code/Magento/ConfigurableProduct/etc/config.xml +++ b/app/code/Magento/ConfigurableProduct/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/etc/di.xml b/app/code/Magento/ConfigurableProduct/etc/di.xml index ca06ce5cc97..30535cb86d5 100644 --- a/app/code/Magento/ConfigurableProduct/etc/di.xml +++ b/app/code/Magento/ConfigurableProduct/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/etc/extension_attributes.xml b/app/code/Magento/ConfigurableProduct/etc/extension_attributes.xml index 12461665fa1..45cb1e66dc8 100644 --- a/app/code/Magento/ConfigurableProduct/etc/extension_attributes.xml +++ b/app/code/Magento/ConfigurableProduct/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/etc/frontend/di.xml b/app/code/Magento/ConfigurableProduct/etc/frontend/di.xml index 43ed1f707ca..aa2dec7eb78 100644 --- a/app/code/Magento/ConfigurableProduct/etc/frontend/di.xml +++ b/app/code/Magento/ConfigurableProduct/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/etc/module.xml b/app/code/Magento/ConfigurableProduct/etc/module.xml index 706338092c4..a0f11f5c73e 100644 --- a/app/code/Magento/ConfigurableProduct/etc/module.xml +++ b/app/code/Magento/ConfigurableProduct/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/etc/product_types.xml b/app/code/Magento/ConfigurableProduct/etc/product_types.xml index b33f67dbc15..201da50fa47 100644 --- a/app/code/Magento/ConfigurableProduct/etc/product_types.xml +++ b/app/code/Magento/ConfigurableProduct/etc/product_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/etc/sales.xml b/app/code/Magento/ConfigurableProduct/etc/sales.xml index 4efc7b09e86..8e56542a28a 100644 --- a/app/code/Magento/ConfigurableProduct/etc/sales.xml +++ b/app/code/Magento/ConfigurableProduct/etc/sales.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/etc/webapi.xml b/app/code/Magento/ConfigurableProduct/etc/webapi.xml index aa8103da274..13a647f70c3 100644 --- a/app/code/Magento/ConfigurableProduct/etc/webapi.xml +++ b/app/code/Magento/ConfigurableProduct/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/registration.php b/app/code/Magento/ConfigurableProduct/registration.php index 13ff30e8463..9cd8c621920 100644 --- a/app/code/Magento/ConfigurableProduct/registration.php +++ b/app/code/Magento/ConfigurableProduct/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_addattribute.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_addattribute.xml index 95f5c7ce4bc..88370b65893 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_addattribute.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_addattribute.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_associated_grid.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_associated_grid.xml index 40bafbc4f8b..769300a80c8 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_associated_grid.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_associated_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_attribute_edit_product_tab_variations_popup.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_attribute_edit_product_tab_variations_popup.xml index a6fbfb23162..16c1c38f4d4 100755 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_attribute_edit_product_tab_variations_popup.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_attribute_edit_product_tab_variations_popup.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_configurable.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_configurable.xml index a69692fc7a1..b4d18dc1220 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_configurable.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_configurable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_downloadable.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_downloadable.xml index 15a7d680aa2..566bcc86185 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_downloadable.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_downloadable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_new.xml index b8f8d47b8f4..11fe045901a 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_new.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_set_edit.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_set_edit.xml index a72f712e77f..b30ad947c5d 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_set_edit.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_set_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_simple.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_simple.xml index 15a7d680aa2..566bcc86185 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_simple.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_simple.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_superconfig_config.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_superconfig_config.xml index 74084d9a63e..6b39e64b95d 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_superconfig_config.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_superconfig_config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_view_type_configurable.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_view_type_configurable.xml index b0d6ea3101e..457539b1279 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_view_type_configurable.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_view_type_configurable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_virtual.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_virtual.xml index 15a7d680aa2..566bcc86185 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_virtual.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_virtual.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_wizard.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_wizard.xml index b526cde2022..8db28bde0a0 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_wizard.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_wizard.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/new/created.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/new/created.phtml index a5a21b09400..c37400baef7 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/new/created.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/new/created.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** @var $block \Magento\ConfigurableProduct\Block\Adminhtml\Product\Attribute\NewAttribute\Product\Created */ @@ -18,4 +18,4 @@ $('#create_new_attribute').modal('closeModal'); })(window.parent.jQuery); -</script> \ No newline at end of file +</script> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/set/js.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/set/js.phtml index ff4d27dc685..da52cf1d16c 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/set/js.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/set/js.phtml @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/composite/fieldset/configurable.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/composite/fieldset/configurable.phtml index f13a7269fcd..52f945792e1 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/composite/fieldset/configurable.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/composite/fieldset/configurable.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml index 05ea00cd9b5..5c5a2a72725 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/bulk.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/bulk.phtml index 24bfcabcace..5fd0aca0e3b 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/bulk.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/bulk.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/select_attributes.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/select_attributes.phtml index ffb27ccd3c8..f04295aeeb1 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/select_attributes.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/select_attributes.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/summary.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/summary.phtml index 2cc92451ffb..e6e0bfac854 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/summary.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/summary.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/config.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/config.phtml index 1524be4cd32..95cec8e7ce8 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/config.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/config.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/matrix.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/matrix.phtml index 7bef942d74b..a6327ac92a0 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/matrix.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/matrix.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard-ajax.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard-ajax.phtml index 911c4bca21f..9e3e2abdca0 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard-ajax.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard-ajax.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard.phtml index 16ac2f61cff..1585c16fe59 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/form.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/form.phtml index c8cf94813e8..6d2470f13bb 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/form.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/js.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/js.phtml index 775ee584d0f..f92650d7bf3 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/js.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/attribute-selector/js.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/attribute-selector/js.phtml index 93ce2262d58..466476d9dd2 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/attribute-selector/js.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/attribute-selector/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/stock/disabler.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/stock/disabler.phtml index 7ca92aa80b2..bf1d43ed1f6 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/stock/disabler.phtml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/stock/disabler.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/configurable_associated_product_listing.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/configurable_associated_product_listing.xml index 1366208038e..5fb4cc64205 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/configurable_associated_product_listing.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/configurable_associated_product_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_attributes_listing.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_attributes_listing.xml index fd7759725e4..cac255af996 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_attributes_listing.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_attributes_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_form.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_form.xml index 2896efca648..a928988a29c 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_form.xml +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/css/configurable-product.css b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/css/configurable-product.css index 88a8e387683..30d75898e79 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/css/configurable-product.css +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/css/configurable-product.css @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/associated-product-insert-listing.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/associated-product-insert-listing.js index ecc960bdb9e..98461addf4c 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/associated-product-insert-listing.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/associated-product-insert-listing.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/container-configurable-handler.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/container-configurable-handler.js index 542a9e492d5..e3834bc3464 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/container-configurable-handler.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/container-configurable-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-price-type.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-price-type.js index 107fa05af1d..99a495a5091 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-price-type.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-price-type.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-warning.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-warning.js index 3c0b5b82633..210361945c5 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-warning.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-warning.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/dynamic-rows-configurable.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/dynamic-rows-configurable.js index be44c110c2b..d11acc8cc96 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/dynamic-rows-configurable.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/dynamic-rows-configurable.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/file-uploader.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/file-uploader.js index 37f183197da..a90d977da60 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/file-uploader.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/file-uploader.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/modal-configurable.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/modal-configurable.js index 81f1387eb4f..b0dfe14fe9d 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/modal-configurable.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/modal-configurable.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/price-configurable.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/price-configurable.js index 9a676d660c7..c83697874d7 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/price-configurable.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/price-configurable.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable-type-handler.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable-type-handler.js index ed881be011d..857dd8cfa38 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable-type-handler.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable-type-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable.js index 988f5f963e2..df3b1638f61 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /**************************** CONFIGURABLE PRODUCT **************************/ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/options/price-type-handler.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/options/price-type-handler.js index 4a9edda0eb4..cd354741bb0 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/options/price-type-handler.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/options/price-type-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /* @@ -80,4 +80,4 @@ define([ } }; }); -*/ \ No newline at end of file +*/ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/paging/sizes.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/paging/sizes.js index 92a83f1bbdd..386c486cea7 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/paging/sizes.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/paging/sizes.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/product-grid.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/product-grid.js index 7d574a32498..ce2fd9ac5ea 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/product-grid.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/product-grid.js @@ -1,6 +1,6 @@ // jscs:disable requireDotNotation /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/attributes_values.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/attributes_values.js index e16ea059c2b..c3c4bc2336a 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/attributes_values.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/attributes_values.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // jscs:disable jsDoc diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/bulk.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/bulk.js index f6769b0d0a9..ae4a51fb3b0 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/bulk.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/bulk.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/select_attributes.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/select_attributes.js index 994fbf25e3b..18a1b30c051 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/select_attributes.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/select_attributes.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // jscs:disable jsDoc diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/summary.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/summary.js index c0d1dd642c8..1d504cda173 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/summary.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/summary.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // jscs:disable jsDoc diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/variations.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/variations.js index 45bd795572d..ff83a9828c1 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/variations.js +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/variations.js @@ -1,6 +1,6 @@ // jscs:disable requireDotNotation /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // jscs:disable jsDoc diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/product/product.css b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/product/product.css index cf7a314d863..69b45d7fc65 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/product/product.css +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/product/product.css @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/actions-list.html b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/actions-list.html index b423b66971b..290491a938b 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/actions-list.html +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/actions-list.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -41,4 +41,4 @@ "></a> </li> </ul> -</div> \ No newline at end of file +</div> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-html.html b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-html.html index 8611ea9b3d0..bb6b3556734 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-html.html +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-html.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -10,4 +10,4 @@ css: {_disabled: disabled} "> </span> -</div> \ No newline at end of file +</div> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-status.html b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-status.html index c66c058668c..4006a8937d2 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-status.html +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-status.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -10,4 +10,4 @@ css: {_disabled: disabled} "> </span> -</div> \ No newline at end of file +</div> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/file-uploader.html b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/file-uploader.html index 8fd1604fafb..8bdb919d138 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/file-uploader.html +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/file-uploader.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/variations/steps/summary-grid.html b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/variations/steps/summary-grid.html index ada2e2205e9..4ef980d98be 100644 --- a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/variations/steps/summary-grid.html +++ b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/variations/steps/summary-grid.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/base/layout/catalog_product_prices.xml b/app/code/Magento/ConfigurableProduct/view/base/layout/catalog_product_prices.xml index 545b04dc0a3..0ae2972fd36 100644 --- a/app/code/Magento/ConfigurableProduct/view/base/layout/catalog_product_prices.xml +++ b/app/code/Magento/ConfigurableProduct/view/base/layout/catalog_product_prices.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/final_price.phtml b/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/final_price.phtml index 5943b1ea2af..ab3abad1842 100644 --- a/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/final_price.phtml +++ b/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/final_price.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/tier_price.phtml b/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/tier_price.phtml index 01e6bb4222f..ace120bd13e 100644 --- a/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/tier_price.phtml +++ b/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/tier_price.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/layout/catalog_product_view_type_configurable.xml b/app/code/Magento/ConfigurableProduct/view/frontend/layout/catalog_product_view_type_configurable.xml index d8f6ae86bd3..302e2465024 100644 --- a/app/code/Magento/ConfigurableProduct/view/frontend/layout/catalog_product_view_type_configurable.xml +++ b/app/code/Magento/ConfigurableProduct/view/frontend/layout/catalog_product_view_type_configurable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_configure_type_configurable.xml b/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_configure_type_configurable.xml index 41655260017..a73350bd95d 100644 --- a/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_configure_type_configurable.xml +++ b/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_configure_type_configurable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_item_renderers.xml index 9d22b2a65cc..9577f947a7a 100644 --- a/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_item_renderers.xml +++ b/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml b/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml index 0993cbf8077..e861caa27aa 100644 --- a/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml +++ b/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/requirejs-config.js b/app/code/Magento/ConfigurableProduct/view/frontend/requirejs-config.js index 8794db668f4..58b294fe7fa 100644 --- a/app/code/Magento/ConfigurableProduct/view/frontend/requirejs-config.js +++ b/app/code/Magento/ConfigurableProduct/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { configurable: 'Magento_ConfigurableProduct/js/configurable' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/templates/js/components.phtml b/app/code/Magento/ConfigurableProduct/view/frontend/templates/js/components.phtml index e490a6aa049..bdcb2e9bf77 100644 --- a/app/code/Magento/ConfigurableProduct/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/ConfigurableProduct/view/frontend/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/templates/product/view/type/options/configurable.phtml b/app/code/Magento/ConfigurableProduct/view/frontend/templates/product/view/type/options/configurable.phtml index 75967a67027..996fd55ce7e 100644 --- a/app/code/Magento/ConfigurableProduct/view/frontend/templates/product/view/type/options/configurable.phtml +++ b/app/code/Magento/ConfigurableProduct/view/frontend/templates/product/view/type/options/configurable.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable.js b/app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable.js index 0c7157f920d..a97b8928ff1 100644 --- a/app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable.js +++ b/app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Contact/Block/ContactForm.php b/app/code/Magento/Contact/Block/ContactForm.php index 58480f8412f..f2263ecabb9 100644 --- a/app/code/Magento/Contact/Block/ContactForm.php +++ b/app/code/Magento/Contact/Block/ContactForm.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Contact\Block; diff --git a/app/code/Magento/Contact/Controller/Index.php b/app/code/Magento/Contact/Controller/Index.php index 17167f244a7..a646b69dba1 100644 --- a/app/code/Magento/Contact/Controller/Index.php +++ b/app/code/Magento/Contact/Controller/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Contact\Controller; diff --git a/app/code/Magento/Contact/Controller/Index/Index.php b/app/code/Magento/Contact/Controller/Index/Index.php index 434391168ed..bed5611bbe7 100644 --- a/app/code/Magento/Contact/Controller/Index/Index.php +++ b/app/code/Magento/Contact/Controller/Index/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Contact\Controller\Index; diff --git a/app/code/Magento/Contact/Controller/Index/Post.php b/app/code/Magento/Contact/Controller/Index/Post.php index 5e7cf615c0d..9ad831befd0 100644 --- a/app/code/Magento/Contact/Controller/Index/Post.php +++ b/app/code/Magento/Contact/Controller/Index/Post.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Contact\Controller\Index; diff --git a/app/code/Magento/Contact/Helper/Data.php b/app/code/Magento/Contact/Helper/Data.php index 0fdc623103c..f6ad3d9d5a8 100644 --- a/app/code/Magento/Contact/Helper/Data.php +++ b/app/code/Magento/Contact/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Contact/Model/System/Config/Backend/Links.php b/app/code/Magento/Contact/Model/System/Config/Backend/Links.php index 0154cd7fdd6..6cd1529c480 100644 --- a/app/code/Magento/Contact/Model/System/Config/Backend/Links.php +++ b/app/code/Magento/Contact/Model/System/Config/Backend/Links.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Contact\Model\System\Config\Backend; diff --git a/app/code/Magento/Contact/Test/Unit/Block/ContactFormTest.php b/app/code/Magento/Contact/Test/Unit/Block/ContactFormTest.php index b2a02287c3d..0d6388b5990 100644 --- a/app/code/Magento/Contact/Test/Unit/Block/ContactFormTest.php +++ b/app/code/Magento/Contact/Test/Unit/Block/ContactFormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Contact/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Contact/Test/Unit/Controller/Index/IndexTest.php index 2b24e3e5856..5b4071eb410 100644 --- a/app/code/Magento/Contact/Test/Unit/Controller/Index/IndexTest.php +++ b/app/code/Magento/Contact/Test/Unit/Controller/Index/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Contact/Test/Unit/Controller/Index/PostTest.php b/app/code/Magento/Contact/Test/Unit/Controller/Index/PostTest.php index 542e4f40871..a65302733dd 100644 --- a/app/code/Magento/Contact/Test/Unit/Controller/Index/PostTest.php +++ b/app/code/Magento/Contact/Test/Unit/Controller/Index/PostTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Contact\Test\Unit\Controller\Index; diff --git a/app/code/Magento/Contact/Test/Unit/Controller/IndexTest.php b/app/code/Magento/Contact/Test/Unit/Controller/IndexTest.php index ac29923f002..723a054e2d2 100644 --- a/app/code/Magento/Contact/Test/Unit/Controller/IndexTest.php +++ b/app/code/Magento/Contact/Test/Unit/Controller/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Contact/Test/Unit/Controller/Stub/IndexStub.php b/app/code/Magento/Contact/Test/Unit/Controller/Stub/IndexStub.php index 9b302da8ab2..bdbfc93a3dc 100644 --- a/app/code/Magento/Contact/Test/Unit/Controller/Stub/IndexStub.php +++ b/app/code/Magento/Contact/Test/Unit/Controller/Stub/IndexStub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Contact/Test/Unit/Helper/DataTest.php b/app/code/Magento/Contact/Test/Unit/Helper/DataTest.php index 99507d3940d..002bad46490 100644 --- a/app/code/Magento/Contact/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Contact/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Contact/Test/Unit/Model/System/Config/Backend/LinksTest.php b/app/code/Magento/Contact/Test/Unit/Model/System/Config/Backend/LinksTest.php index 8a183e807af..b09e4fe38ea 100644 --- a/app/code/Magento/Contact/Test/Unit/Model/System/Config/Backend/LinksTest.php +++ b/app/code/Magento/Contact/Test/Unit/Model/System/Config/Backend/LinksTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Contact\Test\Unit\Model\System\Config\Backend; diff --git a/app/code/Magento/Contact/etc/acl.xml b/app/code/Magento/Contact/etc/acl.xml index 3263dbec75d..0f20af49861 100644 --- a/app/code/Magento/Contact/etc/acl.xml +++ b/app/code/Magento/Contact/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Contact/etc/adminhtml/system.xml b/app/code/Magento/Contact/etc/adminhtml/system.xml index ca1ced83457..6d39846019a 100644 --- a/app/code/Magento/Contact/etc/adminhtml/system.xml +++ b/app/code/Magento/Contact/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Contact/etc/config.xml b/app/code/Magento/Contact/etc/config.xml index c40b752cf17..3a3e3460585 100644 --- a/app/code/Magento/Contact/etc/config.xml +++ b/app/code/Magento/Contact/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Contact/etc/di.xml b/app/code/Magento/Contact/etc/di.xml index 95cd40cb55e..0800e42b0ec 100644 --- a/app/code/Magento/Contact/etc/di.xml +++ b/app/code/Magento/Contact/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Contact/etc/email_templates.xml b/app/code/Magento/Contact/etc/email_templates.xml index 17bcfeb0d18..be2cf76d591 100644 --- a/app/code/Magento/Contact/etc/email_templates.xml +++ b/app/code/Magento/Contact/etc/email_templates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Contact/etc/frontend/di.xml b/app/code/Magento/Contact/etc/frontend/di.xml index d376dca8c83..b520c9f0e86 100644 --- a/app/code/Magento/Contact/etc/frontend/di.xml +++ b/app/code/Magento/Contact/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Contact/etc/frontend/page_types.xml b/app/code/Magento/Contact/etc/frontend/page_types.xml index bdf9f108ba3..a6f630d8921 100644 --- a/app/code/Magento/Contact/etc/frontend/page_types.xml +++ b/app/code/Magento/Contact/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Contact/etc/frontend/routes.xml b/app/code/Magento/Contact/etc/frontend/routes.xml index ab07f5492bd..ba548c605b7 100644 --- a/app/code/Magento/Contact/etc/frontend/routes.xml +++ b/app/code/Magento/Contact/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Contact" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Contact/etc/module.xml b/app/code/Magento/Contact/etc/module.xml index 837b37efec7..ea6c3d05c69 100644 --- a/app/code/Magento/Contact/etc/module.xml +++ b/app/code/Magento/Contact/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Contact/registration.php b/app/code/Magento/Contact/registration.php index b7e0223259d..6d3f8dc31a9 100644 --- a/app/code/Magento/Contact/registration.php +++ b/app/code/Magento/Contact/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Contact/view/adminhtml/email/submitted_form.html b/app/code/Magento/Contact/view/adminhtml/email/submitted_form.html index 13428b66ddf..7eddf1782e7 100644 --- a/app/code/Magento/Contact/view/adminhtml/email/submitted_form.html +++ b/app/code/Magento/Contact/view/adminhtml/email/submitted_form.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Contact/view/frontend/layout/contact_index_index.xml b/app/code/Magento/Contact/view/frontend/layout/contact_index_index.xml index ff22911fc0e..740647609b1 100644 --- a/app/code/Magento/Contact/view/frontend/layout/contact_index_index.xml +++ b/app/code/Magento/Contact/view/frontend/layout/contact_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Contact/view/frontend/layout/default.xml b/app/code/Magento/Contact/view/frontend/layout/default.xml index 6eb2f280e16..a97cf0ddc64 100644 --- a/app/code/Magento/Contact/view/frontend/layout/default.xml +++ b/app/code/Magento/Contact/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Contact/view/frontend/templates/form.phtml b/app/code/Magento/Contact/view/frontend/templates/form.phtml index 6322c5b2fe5..5380deea65e 100644 --- a/app/code/Magento/Contact/view/frontend/templates/form.phtml +++ b/app/code/Magento/Contact/view/frontend/templates/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cookie/Block/Html/Notices.php b/app/code/Magento/Cookie/Block/Html/Notices.php index 907f32ef263..36242965608 100644 --- a/app/code/Magento/Cookie/Block/Html/Notices.php +++ b/app/code/Magento/Cookie/Block/Html/Notices.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cookie/Block/RequireCookie.php b/app/code/Magento/Cookie/Block/RequireCookie.php index befecd2cf63..351c763da1d 100644 --- a/app/code/Magento/Cookie/Block/RequireCookie.php +++ b/app/code/Magento/Cookie/Block/RequireCookie.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cookie/Controller/Index/NoCookies.php b/app/code/Magento/Cookie/Controller/Index/NoCookies.php index bb91ccc917c..9301a465642 100644 --- a/app/code/Magento/Cookie/Controller/Index/NoCookies.php +++ b/app/code/Magento/Cookie/Controller/Index/NoCookies.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cookie\Controller\Index; diff --git a/app/code/Magento/Cookie/Helper/Cookie.php b/app/code/Magento/Cookie/Helper/Cookie.php index 8416165f8c7..929fb367c81 100644 --- a/app/code/Magento/Cookie/Helper/Cookie.php +++ b/app/code/Magento/Cookie/Helper/Cookie.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cookie\Helper; diff --git a/app/code/Magento/Cookie/Model/Config/Backend/Cookie.php b/app/code/Magento/Cookie/Model/Config/Backend/Cookie.php index 86791bc60b6..82b25a55862 100644 --- a/app/code/Magento/Cookie/Model/Config/Backend/Cookie.php +++ b/app/code/Magento/Cookie/Model/Config/Backend/Cookie.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cookie/Model/Config/Backend/Domain.php b/app/code/Magento/Cookie/Model/Config/Backend/Domain.php index d9443ab636e..087659c9631 100644 --- a/app/code/Magento/Cookie/Model/Config/Backend/Domain.php +++ b/app/code/Magento/Cookie/Model/Config/Backend/Domain.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cookie\Model\Config\Backend; diff --git a/app/code/Magento/Cookie/Model/Config/Backend/Lifetime.php b/app/code/Magento/Cookie/Model/Config/Backend/Lifetime.php index 575577abe0d..bc398298d6d 100644 --- a/app/code/Magento/Cookie/Model/Config/Backend/Lifetime.php +++ b/app/code/Magento/Cookie/Model/Config/Backend/Lifetime.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cookie\Model\Config\Backend; diff --git a/app/code/Magento/Cookie/Model/Config/Backend/Path.php b/app/code/Magento/Cookie/Model/Config/Backend/Path.php index 997003f7be7..d3cbed7e2ef 100644 --- a/app/code/Magento/Cookie/Model/Config/Backend/Path.php +++ b/app/code/Magento/Cookie/Model/Config/Backend/Path.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cookie\Model\Config\Backend; diff --git a/app/code/Magento/Cookie/Test/Unit/Controller/Index/NoCookiesTest.php b/app/code/Magento/Cookie/Test/Unit/Controller/Index/NoCookiesTest.php index e935a5e472f..741c899b2bb 100644 --- a/app/code/Magento/Cookie/Test/Unit/Controller/Index/NoCookiesTest.php +++ b/app/code/Magento/Cookie/Test/Unit/Controller/Index/NoCookiesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cookie\Test\Unit\Controller\Index; diff --git a/app/code/Magento/Cookie/Test/Unit/Helper/CookieTest.php b/app/code/Magento/Cookie/Test/Unit/Helper/CookieTest.php index 5d61adb9957..7f2b61ac14f 100644 --- a/app/code/Magento/Cookie/Test/Unit/Helper/CookieTest.php +++ b/app/code/Magento/Cookie/Test/Unit/Helper/CookieTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cookie\Test\Unit\Helper; diff --git a/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/DomainTest.php b/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/DomainTest.php index 339385615a4..12101f65f78 100644 --- a/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/DomainTest.php +++ b/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/DomainTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cookie\Test\Unit\Model\Config\Backend; diff --git a/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/LifetimeTest.php b/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/LifetimeTest.php index a2241bbca35..a6d51f7edf0 100644 --- a/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/LifetimeTest.php +++ b/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/LifetimeTest.php @@ -2,7 +2,7 @@ /** * Unit test for Magento\Cookie\Model\Config\Backend\Lifetime * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/PathTest.php b/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/PathTest.php index d6e99ece436..4706a7cc0d4 100644 --- a/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/PathTest.php +++ b/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/PathTest.php @@ -2,7 +2,7 @@ /** * Unit test for Magento\Cookie\Model\Config\Backend\Path * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cookie/etc/adminhtml/system.xml b/app/code/Magento/Cookie/etc/adminhtml/system.xml index 646683f7e3f..6b2600818c7 100644 --- a/app/code/Magento/Cookie/etc/adminhtml/system.xml +++ b/app/code/Magento/Cookie/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cookie/etc/config.xml b/app/code/Magento/Cookie/etc/config.xml index f50e5fea8fa..4266c755f77 100644 --- a/app/code/Magento/Cookie/etc/config.xml +++ b/app/code/Magento/Cookie/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cookie/etc/di.xml b/app/code/Magento/Cookie/etc/di.xml index 0cd62d0632f..73e5dacb9b2 100644 --- a/app/code/Magento/Cookie/etc/di.xml +++ b/app/code/Magento/Cookie/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cookie/etc/frontend/routes.xml b/app/code/Magento/Cookie/etc/frontend/routes.xml index 70ea487ab5b..ca903f9d58e 100644 --- a/app/code/Magento/Cookie/etc/frontend/routes.xml +++ b/app/code/Magento/Cookie/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Cookie" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Cookie/etc/module.xml b/app/code/Magento/Cookie/etc/module.xml index 0efe8264969..75b6e7bad6d 100644 --- a/app/code/Magento/Cookie/etc/module.xml +++ b/app/code/Magento/Cookie/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cookie/registration.php b/app/code/Magento/Cookie/registration.php index ab3fb6ac73e..696427c020d 100644 --- a/app/code/Magento/Cookie/registration.php +++ b/app/code/Magento/Cookie/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cookie/view/adminhtml/requirejs-config.js b/app/code/Magento/Cookie/view/adminhtml/requirejs-config.js index 22388c7dcb7..9b63bce562c 100644 --- a/app/code/Magento/Cookie/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/Cookie/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { requireCookie: 'Magento_Cookie/js/require-cookie' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Cookie/view/frontend/layout/default.xml b/app/code/Magento/Cookie/view/frontend/layout/default.xml index 3e8bcafd3db..f8d5e65a816 100644 --- a/app/code/Magento/Cookie/view/frontend/layout/default.xml +++ b/app/code/Magento/Cookie/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cookie/view/frontend/requirejs-config.js b/app/code/Magento/Cookie/view/frontend/requirejs-config.js index 7c90d480ebd..680ca42ebd1 100644 --- a/app/code/Magento/Cookie/view/frontend/requirejs-config.js +++ b/app/code/Magento/Cookie/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -10,4 +10,4 @@ var config = { cookieNotices: 'Magento_Cookie/js/notices' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Cookie/view/frontend/templates/html/notices.phtml b/app/code/Magento/Cookie/view/frontend/templates/html/notices.phtml index 7b6e178447f..741d88df1e4 100644 --- a/app/code/Magento/Cookie/view/frontend/templates/html/notices.phtml +++ b/app/code/Magento/Cookie/view/frontend/templates/html/notices.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cookie/view/frontend/templates/require_cookie.phtml b/app/code/Magento/Cookie/view/frontend/templates/require_cookie.phtml index 5d8c2e7224d..435b13182f7 100644 --- a/app/code/Magento/Cookie/view/frontend/templates/require_cookie.phtml +++ b/app/code/Magento/Cookie/view/frontend/templates/require_cookie.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -12,4 +12,4 @@ "requireCookie": <?php /* @noEscape */ echo $block->getScriptOptions(); ?> } } -</script> \ No newline at end of file +</script> diff --git a/app/code/Magento/Cookie/view/frontend/web/js/notices.js b/app/code/Magento/Cookie/view/frontend/web/js/notices.js index 8d0e81c4738..d7f0fa38747 100644 --- a/app/code/Magento/Cookie/view/frontend/web/js/notices.js +++ b/app/code/Magento/Cookie/view/frontend/web/js/notices.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Cookie/view/frontend/web/js/require-cookie.js b/app/code/Magento/Cookie/view/frontend/web/js/require-cookie.js index 8dfa50ac26d..ca8861cc685 100644 --- a/app/code/Magento/Cookie/view/frontend/web/js/require-cookie.js +++ b/app/code/Magento/Cookie/view/frontend/web/js/require-cookie.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint evil:true browser:true jquery:true */ diff --git a/app/code/Magento/Cron/Console/Command/CronCommand.php b/app/code/Magento/Cron/Console/Command/CronCommand.php index 5202c3edcc1..a1f0ad5b47e 100644 --- a/app/code/Magento/Cron/Console/Command/CronCommand.php +++ b/app/code/Magento/Cron/Console/Command/CronCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cron/Console/Command/CronInstallCommand.php b/app/code/Magento/Cron/Console/Command/CronInstallCommand.php index 2835244599d..84f948249db 100644 --- a/app/code/Magento/Cron/Console/Command/CronInstallCommand.php +++ b/app/code/Magento/Cron/Console/Command/CronInstallCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Console\Command; diff --git a/app/code/Magento/Cron/Console/Command/CronRemoveCommand.php b/app/code/Magento/Cron/Console/Command/CronRemoveCommand.php index 11c666a556f..36ec73dc4fe 100644 --- a/app/code/Magento/Cron/Console/Command/CronRemoveCommand.php +++ b/app/code/Magento/Cron/Console/Command/CronRemoveCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Console\Command; diff --git a/app/code/Magento/Cron/Model/Backend/Config/Structure/Converter.php b/app/code/Magento/Cron/Model/Backend/Config/Structure/Converter.php index d9fea1208b1..416971ba025 100644 --- a/app/code/Magento/Cron/Model/Backend/Config/Structure/Converter.php +++ b/app/code/Magento/Cron/Model/Backend/Config/Structure/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Backend\Config\Structure; diff --git a/app/code/Magento/Cron/Model/Config.php b/app/code/Magento/Cron/Model/Config.php index 86728252c32..bb531036b11 100644 --- a/app/code/Magento/Cron/Model/Config.php +++ b/app/code/Magento/Cron/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model; diff --git a/app/code/Magento/Cron/Model/Config/Backend/Product/Alert.php b/app/code/Magento/Cron/Model/Config/Backend/Product/Alert.php index 9742ad6d9a9..a129d43690a 100644 --- a/app/code/Magento/Cron/Model/Config/Backend/Product/Alert.php +++ b/app/code/Magento/Cron/Model/Config/Backend/Product/Alert.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cron/Model/Config/Backend/Sitemap.php b/app/code/Magento/Cron/Model/Config/Backend/Sitemap.php index a8366743dbc..b69b5da9fd2 100644 --- a/app/code/Magento/Cron/Model/Config/Backend/Sitemap.php +++ b/app/code/Magento/Cron/Model/Config/Backend/Sitemap.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cron/Model/Config/Converter/Db.php b/app/code/Magento/Cron/Model/Config/Converter/Db.php index d3532c19bab..0bb8bbb0b26 100644 --- a/app/code/Magento/Cron/Model/Config/Converter/Db.php +++ b/app/code/Magento/Cron/Model/Config/Converter/Db.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Config\Converter; diff --git a/app/code/Magento/Cron/Model/Config/Converter/Xml.php b/app/code/Magento/Cron/Model/Config/Converter/Xml.php index a1eb8f4d714..8e3254c989f 100644 --- a/app/code/Magento/Cron/Model/Config/Converter/Xml.php +++ b/app/code/Magento/Cron/Model/Config/Converter/Xml.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Config\Converter; diff --git a/app/code/Magento/Cron/Model/Config/Data.php b/app/code/Magento/Cron/Model/Config/Data.php index bcfaef37ece..107ab8e5407 100644 --- a/app/code/Magento/Cron/Model/Config/Data.php +++ b/app/code/Magento/Cron/Model/Config/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Config; diff --git a/app/code/Magento/Cron/Model/Config/Reader/Db.php b/app/code/Magento/Cron/Model/Config/Reader/Db.php index 9602775f181..c3f4c87580c 100644 --- a/app/code/Magento/Cron/Model/Config/Reader/Db.php +++ b/app/code/Magento/Cron/Model/Config/Reader/Db.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Config\Reader; diff --git a/app/code/Magento/Cron/Model/Config/Reader/Xml.php b/app/code/Magento/Cron/Model/Config/Reader/Xml.php index 0a55ba46010..544348f1e5a 100644 --- a/app/code/Magento/Cron/Model/Config/Reader/Xml.php +++ b/app/code/Magento/Cron/Model/Config/Reader/Xml.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Config\Reader; diff --git a/app/code/Magento/Cron/Model/Config/SchemaLocator.php b/app/code/Magento/Cron/Model/Config/SchemaLocator.php index e2afc0b21ad..d973faa3057 100644 --- a/app/code/Magento/Cron/Model/Config/SchemaLocator.php +++ b/app/code/Magento/Cron/Model/Config/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Config; diff --git a/app/code/Magento/Cron/Model/Config/Source/Frequency.php b/app/code/Magento/Cron/Model/Config/Source/Frequency.php index b409363e6d4..8efc9495778 100644 --- a/app/code/Magento/Cron/Model/Config/Source/Frequency.php +++ b/app/code/Magento/Cron/Model/Config/Source/Frequency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Config\Source; diff --git a/app/code/Magento/Cron/Model/ConfigInterface.php b/app/code/Magento/Cron/Model/ConfigInterface.php index 1957bbdd26e..fca5270368a 100644 --- a/app/code/Magento/Cron/Model/ConfigInterface.php +++ b/app/code/Magento/Cron/Model/ConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model; diff --git a/app/code/Magento/Cron/Model/Groups/Config/Converter/Xml.php b/app/code/Magento/Cron/Model/Groups/Config/Converter/Xml.php index 338d4f2bce3..43a946cbd39 100644 --- a/app/code/Magento/Cron/Model/Groups/Config/Converter/Xml.php +++ b/app/code/Magento/Cron/Model/Groups/Config/Converter/Xml.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Groups\Config\Converter; diff --git a/app/code/Magento/Cron/Model/Groups/Config/Data.php b/app/code/Magento/Cron/Model/Groups/Config/Data.php index 82c35abff22..4505b0091d3 100644 --- a/app/code/Magento/Cron/Model/Groups/Config/Data.php +++ b/app/code/Magento/Cron/Model/Groups/Config/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Groups\Config; diff --git a/app/code/Magento/Cron/Model/Groups/Config/Reader/Xml.php b/app/code/Magento/Cron/Model/Groups/Config/Reader/Xml.php index 62633540f28..4a365a87451 100644 --- a/app/code/Magento/Cron/Model/Groups/Config/Reader/Xml.php +++ b/app/code/Magento/Cron/Model/Groups/Config/Reader/Xml.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Groups\Config\Reader; diff --git a/app/code/Magento/Cron/Model/Groups/Config/SchemaLocator.php b/app/code/Magento/Cron/Model/Groups/Config/SchemaLocator.php index aeb359ab150..cf00abdc0f3 100644 --- a/app/code/Magento/Cron/Model/Groups/Config/SchemaLocator.php +++ b/app/code/Magento/Cron/Model/Groups/Config/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\Groups\Config; diff --git a/app/code/Magento/Cron/Model/ResourceModel/Schedule.php b/app/code/Magento/Cron/Model/ResourceModel/Schedule.php index dc401e319a3..dca4e228e58 100644 --- a/app/code/Magento/Cron/Model/ResourceModel/Schedule.php +++ b/app/code/Magento/Cron/Model/ResourceModel/Schedule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\ResourceModel; diff --git a/app/code/Magento/Cron/Model/ResourceModel/Schedule/Collection.php b/app/code/Magento/Cron/Model/ResourceModel/Schedule/Collection.php index bfb7a089702..034f601155c 100644 --- a/app/code/Magento/Cron/Model/ResourceModel/Schedule/Collection.php +++ b/app/code/Magento/Cron/Model/ResourceModel/Schedule/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\ResourceModel\Schedule; diff --git a/app/code/Magento/Cron/Model/Schedule.php b/app/code/Magento/Cron/Model/Schedule.php index 3aec1a3c649..f684b4c4c6f 100644 --- a/app/code/Magento/Cron/Model/Schedule.php +++ b/app/code/Magento/Cron/Model/Schedule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cron/Model/System/Config/Initial/Converter.php b/app/code/Magento/Cron/Model/System/Config/Initial/Converter.php index 0a4eb1fde2d..d8f7206bc68 100644 --- a/app/code/Magento/Cron/Model/System/Config/Initial/Converter.php +++ b/app/code/Magento/Cron/Model/System/Config/Initial/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Model\System\Config\Initial; diff --git a/app/code/Magento/Cron/Observer/ProcessCronQueueObserver.php b/app/code/Magento/Cron/Observer/ProcessCronQueueObserver.php index f7223a8f636..9d1f639bda6 100644 --- a/app/code/Magento/Cron/Observer/ProcessCronQueueObserver.php +++ b/app/code/Magento/Cron/Observer/ProcessCronQueueObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cron/Setup/InstallSchema.php b/app/code/Magento/Cron/Setup/InstallSchema.php index 308efa3548d..1001a4d4872 100644 --- a/app/code/Magento/Cron/Setup/InstallSchema.php +++ b/app/code/Magento/Cron/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cron/Test/Unit/Console/Command/CronCommandTest.php b/app/code/Magento/Cron/Test/Unit/Console/Command/CronCommandTest.php index b7e828b15b7..d757a8fb108 100644 --- a/app/code/Magento/Cron/Test/Unit/Console/Command/CronCommandTest.php +++ b/app/code/Magento/Cron/Test/Unit/Console/Command/CronCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Console\Command; diff --git a/app/code/Magento/Cron/Test/Unit/Console/Command/CronInstallCommandTest.php b/app/code/Magento/Cron/Test/Unit/Console/Command/CronInstallCommandTest.php index 09949cf78dc..4b3874977c2 100644 --- a/app/code/Magento/Cron/Test/Unit/Console/Command/CronInstallCommandTest.php +++ b/app/code/Magento/Cron/Test/Unit/Console/Command/CronInstallCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Console\Command; diff --git a/app/code/Magento/Cron/Test/Unit/Console/Command/CronRemoveCommandTest.php b/app/code/Magento/Cron/Test/Unit/Console/Command/CronRemoveCommandTest.php index cd017b26d75..9f4f79eb5c9 100644 --- a/app/code/Magento/Cron/Test/Unit/Console/Command/CronRemoveCommandTest.php +++ b/app/code/Magento/Cron/Test/Unit/Console/Command/CronRemoveCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Console\Command; diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/DbTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/DbTest.php index 6e6b3f3410e..b4be08f7d9c 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/DbTest.php +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/DbTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Model\Config\Converter; diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/XmlTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/XmlTest.php index 4b41732d01a..3c613ff119b 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/XmlTest.php +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/XmlTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Model\Config\Converter; diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/DataTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/DataTest.php index e25fdfe71d2..7d1c66a9fe0 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/DataTest.php +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Model\Config; diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/DbTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/DbTest.php index 6205c993524..f0885688a03 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/DbTest.php +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/DbTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Model\Config\Reader; diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/XmlTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/XmlTest.php index 1b7af4fc1a0..fc27afee24c 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/XmlTest.php +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/XmlTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Model\Config\Reader; diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/SchemaLocatorTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/SchemaLocatorTest.php index 1722da0ae90..d1a1e351f7b 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Model\Config; diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/XsdTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/XsdTest.php index cc0881d4546..51b0bd98c93 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/XsdTest.php +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Model\Config; diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid.xml index c2f64780bd5..2e02d8eac90 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid.xml +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_duplicates.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_duplicates.xml index b899a6ee89d..1512aafb9ab 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_duplicates.xml +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_duplicates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_node_typo.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_node_typo.xml index a5cd3f2b441..17e6850474e 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_node_typo.xml +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_node_typo.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_instance.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_instance.xml index 5243210c7c7..1b7f2a2f70d 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_instance.xml +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_instance.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_method.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_method.xml index 35ce23871fc..1c0654811d4 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_method.xml +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_method.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_name.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_name.xml index 747bf5febb2..8bf7f63b979 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_name.xml +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_name.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid.xml index 444c228299d..79c4da8a783 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid.xml +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid_without_schedule.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid_without_schedule.xml index e527465d1fe..4e255306e50 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid_without_schedule.xml +++ b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid_without_schedule.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Cron/Test/Unit/Model/ConfigTest.php index 9a9ffb09ae9..01d55061186 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/ConfigTest.php +++ b/app/code/Magento/Cron/Test/Unit/Model/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Model; diff --git a/app/code/Magento/Cron/Test/Unit/Model/CronJobException.php b/app/code/Magento/Cron/Test/Unit/Model/CronJobException.php index 07df7fef271..36b5c4fd42d 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/CronJobException.php +++ b/app/code/Magento/Cron/Test/Unit/Model/CronJobException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Cron/Test/Unit/Model/Groups/Config/Converter/XmlTest.php b/app/code/Magento/Cron/Test/Unit/Model/Groups/Config/Converter/XmlTest.php index 9083fb31e77..2da7dc9549c 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/Groups/Config/Converter/XmlTest.php +++ b/app/code/Magento/Cron/Test/Unit/Model/Groups/Config/Converter/XmlTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Model\Groups\Config\Converter; diff --git a/app/code/Magento/Cron/Test/Unit/Model/ScheduleTest.php b/app/code/Magento/Cron/Test/Unit/Model/ScheduleTest.php index aed059bbd5b..1d675447bc3 100644 --- a/app/code/Magento/Cron/Test/Unit/Model/ScheduleTest.php +++ b/app/code/Magento/Cron/Test/Unit/Model/ScheduleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Model; diff --git a/app/code/Magento/Cron/Test/Unit/Observer/ProcessCronQueueObserverTest.php b/app/code/Magento/Cron/Test/Unit/Observer/ProcessCronQueueObserverTest.php index 602c5db5c22..e125f7f2093 100644 --- a/app/code/Magento/Cron/Test/Unit/Observer/ProcessCronQueueObserverTest.php +++ b/app/code/Magento/Cron/Test/Unit/Observer/ProcessCronQueueObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cron\Test\Unit\Observer; diff --git a/app/code/Magento/Cron/etc/adminhtml/system.xml b/app/code/Magento/Cron/etc/adminhtml/system.xml index 9596ae3a7e3..1f6f3a36970 100644 --- a/app/code/Magento/Cron/etc/adminhtml/system.xml +++ b/app/code/Magento/Cron/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/etc/cron_groups.xml b/app/code/Magento/Cron/etc/cron_groups.xml index 339ed3fa4a7..d3e091c8625 100644 --- a/app/code/Magento/Cron/etc/cron_groups.xml +++ b/app/code/Magento/Cron/etc/cron_groups.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -15,4 +15,4 @@ <history_failure_lifetime>600</history_failure_lifetime> <use_separate_process>0</use_separate_process> </group> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Cron/etc/cron_groups.xsd b/app/code/Magento/Cron/etc/cron_groups.xsd index 87d2cb5bfb1..15074997589 100644 --- a/app/code/Magento/Cron/etc/cron_groups.xsd +++ b/app/code/Magento/Cron/etc/cron_groups.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/etc/crontab.xsd b/app/code/Magento/Cron/etc/crontab.xsd index 2a2ae3ff06a..68279da5aec 100644 --- a/app/code/Magento/Cron/etc/crontab.xsd +++ b/app/code/Magento/Cron/etc/crontab.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/etc/crontab/events.xml b/app/code/Magento/Cron/etc/crontab/events.xml index b24feb04c57..9de72ebb03e 100644 --- a/app/code/Magento/Cron/etc/crontab/events.xml +++ b/app/code/Magento/Cron/etc/crontab/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/etc/di.xml b/app/code/Magento/Cron/etc/di.xml index 6abc9096f24..98aa08815d3 100644 --- a/app/code/Magento/Cron/etc/di.xml +++ b/app/code/Magento/Cron/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/etc/module.xml b/app/code/Magento/Cron/etc/module.xml index 6d197d16b78..288aa6fbec2 100644 --- a/app/code/Magento/Cron/etc/module.xml +++ b/app/code/Magento/Cron/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Cron/registration.php b/app/code/Magento/Cron/registration.php index 2510e93c6b7..227c716af18 100644 --- a/app/code/Magento/Cron/registration.php +++ b/app/code/Magento/Cron/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency.php b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency.php index 661000573b6..b12615a2419 100644 --- a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency.php +++ b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Matrix.php b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Matrix.php index ea6cfed30db..2ce80c41275 100644 --- a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Matrix.php +++ b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Matrix.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Services.php b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Services.php index de130490e77..a8ee5a2704b 100644 --- a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Services.php +++ b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Services.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php index 430a69c9448..7c0468c6a8e 100644 --- a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php +++ b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency.php index 231dccada87..b1f14e8ffac 100644 --- a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency.php +++ b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/FetchRates.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/FetchRates.php index 8cc6bab94f4..125cfd5b70f 100644 --- a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/FetchRates.php +++ b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/FetchRates.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Controller\Adminhtml\System\Currency; diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/Index.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/Index.php index 47d669395bd..1807a0baa73 100644 --- a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/Index.php +++ b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Controller\Adminhtml\System\Currency; diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRates.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRates.php index e8bb3a30aa8..da908d99fe9 100644 --- a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRates.php +++ b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRates.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol.php index e06615123f0..0906df72fbf 100644 --- a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol.php +++ b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Index.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Index.php index 72fa45f28d8..4f1cd0fca3f 100644 --- a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Index.php +++ b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Controller\Adminhtml\System\Currencysymbol; diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Save.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Save.php index 933dc5811c1..6da88605bba 100644 --- a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Save.php +++ b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Controller\Adminhtml\System\Currencysymbol; diff --git a/app/code/Magento/CurrencySymbol/Model/System/Currencysymbol.php b/app/code/Magento/CurrencySymbol/Model/System/Currencysymbol.php index de7f12e28f1..b5da23356ee 100644 --- a/app/code/Magento/CurrencySymbol/Model/System/Currencysymbol.php +++ b/app/code/Magento/CurrencySymbol/Model/System/Currencysymbol.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Model\System; diff --git a/app/code/Magento/CurrencySymbol/Observer/CurrencyDisplayOptions.php b/app/code/Magento/CurrencySymbol/Observer/CurrencyDisplayOptions.php index f26cfe1f393..b7a27e97868 100644 --- a/app/code/Magento/CurrencySymbol/Observer/CurrencyDisplayOptions.php +++ b/app/code/Magento/CurrencySymbol/Observer/CurrencyDisplayOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Observer; diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/MatrixTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/MatrixTest.php index 6bddadabd2b..8948410deda 100644 --- a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/MatrixTest.php +++ b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/MatrixTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Test\Unit\Block\Adminhtml\System\Currency\Rate; diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/ServicesTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/ServicesTest.php index 99d593fccf0..413993078e5 100644 --- a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/ServicesTest.php +++ b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/ServicesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Test\Unit\Block\Adminhtml\System\Currency\Rate; diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencyTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencyTest.php index aa122d5cd24..1608b9ed0b0 100644 --- a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencyTest.php +++ b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Test\Unit\Block\Adminhtml\System; diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencysymbolTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencysymbolTest.php index 9acf699dedb..19000746d66 100644 --- a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencysymbolTest.php +++ b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencysymbolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Test\Unit\Block\Adminhtml\System; diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/IndexTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/IndexTest.php index c2451895564..9a685c01ce7 100644 --- a/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/IndexTest.php +++ b/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Test\Unit\Controller\Adminhtml\System\Currencysymbol; diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/SaveTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/SaveTest.php index 9ed5258c7a8..fee2d8dc162 100644 --- a/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/SaveTest.php +++ b/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Test\Unit\Controller\Adminhtml\System\Currencysymbol; diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Model/System/CurrencysymbolTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Model/System/CurrencysymbolTest.php index f08279e3cd3..c7b3cea8110 100644 --- a/app/code/Magento/CurrencySymbol/Test/Unit/Model/System/CurrencysymbolTest.php +++ b/app/code/Magento/CurrencySymbol/Test/Unit/Model/System/CurrencysymbolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Test\Unit\Model\System; diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Observer/CurrencyDisplayOptionsTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Observer/CurrencyDisplayOptionsTest.php index 123ba006cbb..e906e7e5dc5 100644 --- a/app/code/Magento/CurrencySymbol/Test/Unit/Observer/CurrencyDisplayOptionsTest.php +++ b/app/code/Magento/CurrencySymbol/Test/Unit/Observer/CurrencyDisplayOptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CurrencySymbol\Test\Unit\Observer; diff --git a/app/code/Magento/CurrencySymbol/etc/acl.xml b/app/code/Magento/CurrencySymbol/etc/acl.xml index 9657a3e5fc7..316412e2509 100644 --- a/app/code/Magento/CurrencySymbol/etc/acl.xml +++ b/app/code/Magento/CurrencySymbol/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CurrencySymbol/etc/adminhtml/menu.xml b/app/code/Magento/CurrencySymbol/etc/adminhtml/menu.xml index ae6e8ef40de..5dbf49d2c1c 100644 --- a/app/code/Magento/CurrencySymbol/etc/adminhtml/menu.xml +++ b/app/code/Magento/CurrencySymbol/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CurrencySymbol/etc/adminhtml/routes.xml b/app/code/Magento/CurrencySymbol/etc/adminhtml/routes.xml index bf0c1873e0f..31353a45c28 100644 --- a/app/code/Magento/CurrencySymbol/etc/adminhtml/routes.xml +++ b/app/code/Magento/CurrencySymbol/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CurrencySymbol/etc/di.xml b/app/code/Magento/CurrencySymbol/etc/di.xml index 15de35ba58a..cbce50306bc 100644 --- a/app/code/Magento/CurrencySymbol/etc/di.xml +++ b/app/code/Magento/CurrencySymbol/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CurrencySymbol/etc/events.xml b/app/code/Magento/CurrencySymbol/etc/events.xml index 7f5e98b1dcd..aff0fea744c 100644 --- a/app/code/Magento/CurrencySymbol/etc/events.xml +++ b/app/code/Magento/CurrencySymbol/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CurrencySymbol/etc/module.xml b/app/code/Magento/CurrencySymbol/etc/module.xml index 96994b03ce6..cbda20acdad 100644 --- a/app/code/Magento/CurrencySymbol/etc/module.xml +++ b/app/code/Magento/CurrencySymbol/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CurrencySymbol/registration.php b/app/code/Magento/CurrencySymbol/registration.php index 15ba3ffc367..ab086a95e2d 100644 --- a/app/code/Magento/CurrencySymbol/registration.php +++ b/app/code/Magento/CurrencySymbol/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currency_index.xml b/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currency_index.xml index 6461d7fbdb1..741bfc63992 100644 --- a/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currency_index.xml +++ b/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currency_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currencysymbol_index.xml b/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currencysymbol_index.xml index 7fc5203224c..bf7126f432c 100644 --- a/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currencysymbol_index.xml +++ b/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currencysymbol_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/grid.phtml b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/grid.phtml index 4e0d45395ed..b3edf7a397b 100644 --- a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/grid.phtml +++ b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/grid.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/matrix.phtml b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/matrix.phtml index 60a1972d3b6..1d9c6ab1577 100644 --- a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/matrix.phtml +++ b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/matrix.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/services.phtml b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/services.phtml index d67f6a833ad..6d4941b4452 100644 --- a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/services.phtml +++ b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/services.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -17,4 +17,4 @@ <div class="admin__field-control"> <?php echo $block->getChildHtml('import_services') ?> </div> -</div> \ No newline at end of file +</div> diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rates.phtml b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rates.phtml index 20e36a1d0ce..e6b0635b2e2 100644 --- a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rates.phtml +++ b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rates.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/AccountManagementInterface.php b/app/code/Magento/Customer/Api/AccountManagementInterface.php index d4877cf13b3..bdf4ff67491 100644 --- a/app/code/Magento/Customer/Api/AccountManagementInterface.php +++ b/app/code/Magento/Customer/Api/AccountManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/AddressMetadataInterface.php b/app/code/Magento/Customer/Api/AddressMetadataInterface.php index 0ae42ee67d8..0fd58103a6a 100644 --- a/app/code/Magento/Customer/Api/AddressMetadataInterface.php +++ b/app/code/Magento/Customer/Api/AddressMetadataInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/AddressMetadataManagementInterface.php b/app/code/Magento/Customer/Api/AddressMetadataManagementInterface.php index f5763a522f9..596c4993c64 100644 --- a/app/code/Magento/Customer/Api/AddressMetadataManagementInterface.php +++ b/app/code/Magento/Customer/Api/AddressMetadataManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Api; diff --git a/app/code/Magento/Customer/Api/AddressRepositoryInterface.php b/app/code/Magento/Customer/Api/AddressRepositoryInterface.php index ee1e4e54644..b894c8d4da1 100644 --- a/app/code/Magento/Customer/Api/AddressRepositoryInterface.php +++ b/app/code/Magento/Customer/Api/AddressRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Api; diff --git a/app/code/Magento/Customer/Api/CustomerManagementInterface.php b/app/code/Magento/Customer/Api/CustomerManagementInterface.php index 6fb68bdf225..5b0233e3f1c 100644 --- a/app/code/Magento/Customer/Api/CustomerManagementInterface.php +++ b/app/code/Magento/Customer/Api/CustomerManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Api; diff --git a/app/code/Magento/Customer/Api/CustomerMetadataInterface.php b/app/code/Magento/Customer/Api/CustomerMetadataInterface.php index 572b3f86114..257ebad3971 100644 --- a/app/code/Magento/Customer/Api/CustomerMetadataInterface.php +++ b/app/code/Magento/Customer/Api/CustomerMetadataInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/CustomerMetadataManagementInterface.php b/app/code/Magento/Customer/Api/CustomerMetadataManagementInterface.php index 1efa3786647..b90a3837edf 100644 --- a/app/code/Magento/Customer/Api/CustomerMetadataManagementInterface.php +++ b/app/code/Magento/Customer/Api/CustomerMetadataManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Api; diff --git a/app/code/Magento/Customer/Api/CustomerNameGenerationInterface.php b/app/code/Magento/Customer/Api/CustomerNameGenerationInterface.php index 69d171318ee..0546b5baef2 100644 --- a/app/code/Magento/Customer/Api/CustomerNameGenerationInterface.php +++ b/app/code/Magento/Customer/Api/CustomerNameGenerationInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/CustomerRepositoryInterface.php b/app/code/Magento/Customer/Api/CustomerRepositoryInterface.php index 0309bd43747..d9abea8049d 100644 --- a/app/code/Magento/Customer/Api/CustomerRepositoryInterface.php +++ b/app/code/Magento/Customer/Api/CustomerRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/Data/AddressInterface.php b/app/code/Magento/Customer/Api/Data/AddressInterface.php index 8c29e5f1b4b..5817d1e9fca 100644 --- a/app/code/Magento/Customer/Api/Data/AddressInterface.php +++ b/app/code/Magento/Customer/Api/Data/AddressInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/Data/AddressSearchResultsInterface.php b/app/code/Magento/Customer/Api/Data/AddressSearchResultsInterface.php index 7143de06446..7355c42f2b3 100644 --- a/app/code/Magento/Customer/Api/Data/AddressSearchResultsInterface.php +++ b/app/code/Magento/Customer/Api/Data/AddressSearchResultsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/Data/AttributeMetadataInterface.php b/app/code/Magento/Customer/Api/Data/AttributeMetadataInterface.php index 107e8010713..4ff3b4b9904 100644 --- a/app/code/Magento/Customer/Api/Data/AttributeMetadataInterface.php +++ b/app/code/Magento/Customer/Api/Data/AttributeMetadataInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/Data/CustomerInterface.php b/app/code/Magento/Customer/Api/Data/CustomerInterface.php index ac00ae71d33..5a9b75c80b9 100644 --- a/app/code/Magento/Customer/Api/Data/CustomerInterface.php +++ b/app/code/Magento/Customer/Api/Data/CustomerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Api\Data; diff --git a/app/code/Magento/Customer/Api/Data/CustomerSearchResultsInterface.php b/app/code/Magento/Customer/Api/Data/CustomerSearchResultsInterface.php index 856ef58d44f..0b761d1e689 100644 --- a/app/code/Magento/Customer/Api/Data/CustomerSearchResultsInterface.php +++ b/app/code/Magento/Customer/Api/Data/CustomerSearchResultsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/Data/GroupInterface.php b/app/code/Magento/Customer/Api/Data/GroupInterface.php index 430484f677b..8109d59eac8 100644 --- a/app/code/Magento/Customer/Api/Data/GroupInterface.php +++ b/app/code/Magento/Customer/Api/Data/GroupInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/Data/GroupSearchResultsInterface.php b/app/code/Magento/Customer/Api/Data/GroupSearchResultsInterface.php index 679b0d7b575..0b63c3cfcb1 100644 --- a/app/code/Magento/Customer/Api/Data/GroupSearchResultsInterface.php +++ b/app/code/Magento/Customer/Api/Data/GroupSearchResultsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/Data/OptionInterface.php b/app/code/Magento/Customer/Api/Data/OptionInterface.php index b1d50d06b26..b2b0e19312d 100644 --- a/app/code/Magento/Customer/Api/Data/OptionInterface.php +++ b/app/code/Magento/Customer/Api/Data/OptionInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/Data/RegionInterface.php b/app/code/Magento/Customer/Api/Data/RegionInterface.php index 401966af1a2..b6cd87aab9a 100644 --- a/app/code/Magento/Customer/Api/Data/RegionInterface.php +++ b/app/code/Magento/Customer/Api/Data/RegionInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Api\Data; diff --git a/app/code/Magento/Customer/Api/Data/ValidationResultsInterface.php b/app/code/Magento/Customer/Api/Data/ValidationResultsInterface.php index da40bd785c1..f2ae2480940 100644 --- a/app/code/Magento/Customer/Api/Data/ValidationResultsInterface.php +++ b/app/code/Magento/Customer/Api/Data/ValidationResultsInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/Data/ValidationRuleInterface.php b/app/code/Magento/Customer/Api/Data/ValidationRuleInterface.php index 33a68dd8a45..0a2dec61aaf 100644 --- a/app/code/Magento/Customer/Api/Data/ValidationRuleInterface.php +++ b/app/code/Magento/Customer/Api/Data/ValidationRuleInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/GroupManagementInterface.php b/app/code/Magento/Customer/Api/GroupManagementInterface.php index b6ee0ed2e9b..c6fb242078d 100644 --- a/app/code/Magento/Customer/Api/GroupManagementInterface.php +++ b/app/code/Magento/Customer/Api/GroupManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Api; diff --git a/app/code/Magento/Customer/Api/GroupRepositoryInterface.php b/app/code/Magento/Customer/Api/GroupRepositoryInterface.php index 4b9c82eb424..4f673ee3cdd 100644 --- a/app/code/Magento/Customer/Api/GroupRepositoryInterface.php +++ b/app/code/Magento/Customer/Api/GroupRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Api; diff --git a/app/code/Magento/Customer/Api/MetadataInterface.php b/app/code/Magento/Customer/Api/MetadataInterface.php index 3f060d6a07d..23cb3c4b67e 100644 --- a/app/code/Magento/Customer/Api/MetadataInterface.php +++ b/app/code/Magento/Customer/Api/MetadataInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Api/MetadataManagementInterface.php b/app/code/Magento/Customer/Api/MetadataManagementInterface.php index a010bfe0477..5cdca675665 100644 --- a/app/code/Magento/Customer/Api/MetadataManagementInterface.php +++ b/app/code/Magento/Customer/Api/MetadataManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Api; diff --git a/app/code/Magento/Customer/Block/Account/AuthenticationPopup.php b/app/code/Magento/Customer/Block/Account/AuthenticationPopup.php index e09b528e9d4..a0f94e1b8f7 100644 --- a/app/code/Magento/Customer/Block/Account/AuthenticationPopup.php +++ b/app/code/Magento/Customer/Block/Account/AuthenticationPopup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Account; diff --git a/app/code/Magento/Customer/Block/Account/AuthorizationLink.php b/app/code/Magento/Customer/Block/Account/AuthorizationLink.php index 9cb3f8fdd94..0b5b3ebac6e 100644 --- a/app/code/Magento/Customer/Block/Account/AuthorizationLink.php +++ b/app/code/Magento/Customer/Block/Account/AuthorizationLink.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Account; diff --git a/app/code/Magento/Customer/Block/Account/Customer.php b/app/code/Magento/Customer/Block/Account/Customer.php index 5ca6f3b2245..88ebe8e541c 100644 --- a/app/code/Magento/Customer/Block/Account/Customer.php +++ b/app/code/Magento/Customer/Block/Account/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Account; diff --git a/app/code/Magento/Customer/Block/Account/Dashboard.php b/app/code/Magento/Customer/Block/Account/Dashboard.php index f84112fe94c..0d43ac26ba0 100644 --- a/app/code/Magento/Customer/Block/Account/Dashboard.php +++ b/app/code/Magento/Customer/Block/Account/Dashboard.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Account; diff --git a/app/code/Magento/Customer/Block/Account/Dashboard/Address.php b/app/code/Magento/Customer/Block/Account/Dashboard/Address.php index adb27efe382..18b4d063fa9 100644 --- a/app/code/Magento/Customer/Block/Account/Dashboard/Address.php +++ b/app/code/Magento/Customer/Block/Account/Dashboard/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Account\Dashboard; diff --git a/app/code/Magento/Customer/Block/Account/Dashboard/Info.php b/app/code/Magento/Customer/Block/Account/Dashboard/Info.php index ef9cbada86b..d4ab4a9f288 100644 --- a/app/code/Magento/Customer/Block/Account/Dashboard/Info.php +++ b/app/code/Magento/Customer/Block/Account/Dashboard/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Account\Dashboard; diff --git a/app/code/Magento/Customer/Block/Account/Delimiter.php b/app/code/Magento/Customer/Block/Account/Delimiter.php index 31ded827184..c6c5735319b 100644 --- a/app/code/Magento/Customer/Block/Account/Delimiter.php +++ b/app/code/Magento/Customer/Block/Account/Delimiter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Block/Account/Forgotpassword.php b/app/code/Magento/Customer/Block/Account/Forgotpassword.php index b70c5cd672c..93936bd5ee7 100644 --- a/app/code/Magento/Customer/Block/Account/Forgotpassword.php +++ b/app/code/Magento/Customer/Block/Account/Forgotpassword.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Account; diff --git a/app/code/Magento/Customer/Block/Account/Link.php b/app/code/Magento/Customer/Block/Account/Link.php index d37a9a548d4..1bd7bf11c7a 100644 --- a/app/code/Magento/Customer/Block/Account/Link.php +++ b/app/code/Magento/Customer/Block/Account/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Account; diff --git a/app/code/Magento/Customer/Block/Account/Navigation.php b/app/code/Magento/Customer/Block/Account/Navigation.php index d8644f5565f..1eb7ef07bd1 100644 --- a/app/code/Magento/Customer/Block/Account/Navigation.php +++ b/app/code/Magento/Customer/Block/Account/Navigation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Block/Account/RegisterLink.php b/app/code/Magento/Customer/Block/Account/RegisterLink.php index f08132bc2cf..17bdcc26d6f 100644 --- a/app/code/Magento/Customer/Block/Account/RegisterLink.php +++ b/app/code/Magento/Customer/Block/Account/RegisterLink.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Account; diff --git a/app/code/Magento/Customer/Block/Account/Resetpassword.php b/app/code/Magento/Customer/Block/Account/Resetpassword.php index 9e515ab13ae..a843ff58896 100644 --- a/app/code/Magento/Customer/Block/Account/Resetpassword.php +++ b/app/code/Magento/Customer/Block/Account/Resetpassword.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Account; diff --git a/app/code/Magento/Customer/Block/Account/SortLink.php b/app/code/Magento/Customer/Block/Account/SortLink.php index 2c60e804b7b..701ce179772 100644 --- a/app/code/Magento/Customer/Block/Account/SortLink.php +++ b/app/code/Magento/Customer/Block/Account/SortLink.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Block/Account/SortLinkInterface.php b/app/code/Magento/Customer/Block/Account/SortLinkInterface.php index 815f4e5adf2..96636f7ab1d 100644 --- a/app/code/Magento/Customer/Block/Account/SortLinkInterface.php +++ b/app/code/Magento/Customer/Block/Account/SortLinkInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Block/Address/Book.php b/app/code/Magento/Customer/Block/Address/Book.php index 51841d236f5..fea49b5a654 100644 --- a/app/code/Magento/Customer/Block/Address/Book.php +++ b/app/code/Magento/Customer/Block/Address/Book.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Address; diff --git a/app/code/Magento/Customer/Block/Address/Edit.php b/app/code/Magento/Customer/Block/Address/Edit.php index a8476142018..fb0a6c9e2ad 100644 --- a/app/code/Magento/Customer/Block/Address/Edit.php +++ b/app/code/Magento/Customer/Block/Address/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Address; diff --git a/app/code/Magento/Customer/Block/Address/Renderer/DefaultRenderer.php b/app/code/Magento/Customer/Block/Address/Renderer/DefaultRenderer.php index 31cc211b875..40d00d7c49f 100644 --- a/app/code/Magento/Customer/Block/Address/Renderer/DefaultRenderer.php +++ b/app/code/Magento/Customer/Block/Address/Renderer/DefaultRenderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Address\Renderer; diff --git a/app/code/Magento/Customer/Block/Address/Renderer/RendererInterface.php b/app/code/Magento/Customer/Block/Address/Renderer/RendererInterface.php index 9f1700e08d5..07dc722b770 100644 --- a/app/code/Magento/Customer/Block/Address/Renderer/RendererInterface.php +++ b/app/code/Magento/Customer/Block/Address/Renderer/RendererInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Address\Renderer; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit.php b/app/code/Magento/Customer/Block/Adminhtml/Edit.php index 9cb4bed6134..e7e95d0f87a 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/BackButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/BackButton.php index c5229193a6d..92bc98e2463 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/BackButton.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/BackButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/DeleteButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/DeleteButton.php index f468db8ee15..6d58fb23b97 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/DeleteButton.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/DeleteButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Form.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Form.php index 1792ffb1322..32bab163348 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Form.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/GenericButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/GenericButton.php index 84ce480308d..e928cd07369 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/GenericButton.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/GenericButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/InvalidateTokenButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/InvalidateTokenButton.php index f7f9e60c91d..604078cd339 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/InvalidateTokenButton.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/InvalidateTokenButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/OrderButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/OrderButton.php index d65850acc77..0f2e2c8bbd3 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/OrderButton.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/OrderButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Renderer/Region.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Renderer/Region.php index aba1dc76b2a..3688c1ecdfb 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Renderer/Region.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Renderer/Region.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Renderer; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetButton.php index 80a7fb706ae..5e0f3ef7ca7 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetButton.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetPasswordButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetPasswordButton.php index 28e59d66ebe..a20455b800c 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetPasswordButton.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetPasswordButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveAndContinueButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveAndContinueButton.php index 8c8ed92e149..19c23342ef4 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveAndContinueButton.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveAndContinueButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveButton.php index 9d9257ccb10..ad807cf3296 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveButton.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Cart.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Cart.php index a8bd0f1b59a..f17975c265b 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Cart.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Carts.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Carts.php index 9795b53023e..2c0d49cb059 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Carts.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Carts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php index 6c9f6abfc86..7a18338a320 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter.php index 2cc4cf54d63..6804a5e8891 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid.php index 27d2c5107be..c8a2f48dcd5 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab\Newsletter; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Filter/Status.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Filter/Status.php index a008a40e313..444494f5ca5 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Filter/Status.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Filter/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab\Newsletter\Grid\Filter; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Action.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Action.php index 8b131a10777..bf779acca58 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Action.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab\Newsletter\Grid\Renderer; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Status.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Status.php index 45059d29d99..ac4327d09fc 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Status.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab\Newsletter\Grid\Renderer; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Orders.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Orders.php index 1e838e8d51c..67fad56822c 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Orders.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Orders.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Reviews.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Reviews.php index 3f74b79ec60..e08620875a1 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Reviews.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Reviews.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View.php index bca08484169..997f8b25648 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Cart.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Cart.php index 40cd9296010..0db15e659ea 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Cart.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab\View; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/Item.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/Item.php index 5de266e266f..7706b092bf4 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/Item.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab\View\Grid\Renderer; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfo.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfo.php index 32917e29197..e6a41de60f4 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfo.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab\View; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Sales.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Sales.php index 5a428a04d90..c13430b5e0b 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Sales.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Sales.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab\View; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Wishlist.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Wishlist.php index 2f006c5c4e2..005d7070c35 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Wishlist.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Wishlist.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab\View; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Wishlist/Grid/Renderer/Description.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Wishlist/Grid/Renderer/Description.php index 037dabe7234..2fa3ddee7a8 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Wishlist/Grid/Renderer/Description.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Wishlist/Grid/Renderer/Description.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit\Tab\Wishlist\Grid\Renderer; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/UnlockButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/UnlockButton.php index df2323c1b35..d13c72a0a82 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/UnlockButton.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/UnlockButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Boolean.php b/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Boolean.php index c832f07f6ff..255475a70b1 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Boolean.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Boolean.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Block/Adminhtml/Form/Element/File.php b/app/code/Magento/Customer/Block/Adminhtml/Form/Element/File.php index 5fbab023a8c..497345c4217 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Form/Element/File.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Form/Element/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Form\Element; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Image.php b/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Image.php index c9f74ec3da5..ba859462a0b 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Image.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Block/Adminhtml/Grid/Filter/Country.php b/app/code/Magento/Customer/Block/Adminhtml/Grid/Filter/Country.php index 235edce0e13..db7b78c5600 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Grid/Filter/Country.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Grid/Filter/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Grid\Filter; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Grid/Renderer/Multiaction.php b/app/code/Magento/Customer/Block/Adminhtml/Grid/Renderer/Multiaction.php index 487e5b705ec..6fe9ec188f2 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Grid/Renderer/Multiaction.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Grid/Renderer/Multiaction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Grid\Renderer; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Group.php b/app/code/Magento/Customer/Block/Adminhtml/Group.php index 3ce8015d772..7eb69b29c97 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Group.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Block/Adminhtml/Group/Edit.php b/app/code/Magento/Customer/Block/Adminhtml/Group/Edit.php index 3c2b1ecaf7f..73109be826e 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Group/Edit.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Group/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Group; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Group/Edit/Form.php b/app/code/Magento/Customer/Block/Adminhtml/Group/Edit/Form.php index 5c9df873527..61f5ff21561 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Group/Edit/Form.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Group/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Group\Edit; diff --git a/app/code/Magento/Customer/Block/Adminhtml/Sales/Order/Address/Form/Renderer/Vat.php b/app/code/Magento/Customer/Block/Adminhtml/Sales/Order/Address/Form/Renderer/Vat.php index 7954db71d57..95854180766 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Sales/Order/Address/Form/Renderer/Vat.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Sales/Order/Address/Form/Renderer/Vat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Adminhtml\Sales\Order\Address\Form\Renderer; diff --git a/app/code/Magento/Customer/Block/Adminhtml/System/Config/Validatevat.php b/app/code/Magento/Customer/Block/Adminhtml/System/Config/Validatevat.php index 75dca161fbf..97e0a78a4fc 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/System/Config/Validatevat.php +++ b/app/code/Magento/Customer/Block/Adminhtml/System/Config/Validatevat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Block/CustomerData.php b/app/code/Magento/Customer/Block/CustomerData.php index 087c3566c17..ab2d6bd9a42 100644 --- a/app/code/Magento/Customer/Block/CustomerData.php +++ b/app/code/Magento/Customer/Block/CustomerData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block; diff --git a/app/code/Magento/Customer/Block/Form/Edit.php b/app/code/Magento/Customer/Block/Form/Edit.php index 27ac60567ea..8ec66e38df0 100644 --- a/app/code/Magento/Customer/Block/Form/Edit.php +++ b/app/code/Magento/Customer/Block/Form/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Form; diff --git a/app/code/Magento/Customer/Block/Form/Login.php b/app/code/Magento/Customer/Block/Form/Login.php index bf6b019998d..e919a4fea06 100644 --- a/app/code/Magento/Customer/Block/Form/Login.php +++ b/app/code/Magento/Customer/Block/Form/Login.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Form; diff --git a/app/code/Magento/Customer/Block/Form/Login/Info.php b/app/code/Magento/Customer/Block/Form/Login/Info.php index 2c4185b2efd..e749b1ad195 100644 --- a/app/code/Magento/Customer/Block/Form/Login/Info.php +++ b/app/code/Magento/Customer/Block/Form/Login/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Form\Login; diff --git a/app/code/Magento/Customer/Block/Form/Register.php b/app/code/Magento/Customer/Block/Form/Register.php index f51279d86bd..bf1f9d048a5 100644 --- a/app/code/Magento/Customer/Block/Form/Register.php +++ b/app/code/Magento/Customer/Block/Form/Register.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Form; diff --git a/app/code/Magento/Customer/Block/Newsletter.php b/app/code/Magento/Customer/Block/Newsletter.php index 8ff3acbc20a..cd9bef12cfe 100644 --- a/app/code/Magento/Customer/Block/Newsletter.php +++ b/app/code/Magento/Customer/Block/Newsletter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block; diff --git a/app/code/Magento/Customer/Block/SectionConfig.php b/app/code/Magento/Customer/Block/SectionConfig.php index 6f519513fef..f17aee2bc62 100644 --- a/app/code/Magento/Customer/Block/SectionConfig.php +++ b/app/code/Magento/Customer/Block/SectionConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block; diff --git a/app/code/Magento/Customer/Block/Widget/AbstractWidget.php b/app/code/Magento/Customer/Block/Widget/AbstractWidget.php index c55e0404ae7..61d6836764b 100644 --- a/app/code/Magento/Customer/Block/Widget/AbstractWidget.php +++ b/app/code/Magento/Customer/Block/Widget/AbstractWidget.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Block/Widget/Dob.php b/app/code/Magento/Customer/Block/Widget/Dob.php index 641825d1e65..2df82df83f4 100644 --- a/app/code/Magento/Customer/Block/Widget/Dob.php +++ b/app/code/Magento/Customer/Block/Widget/Dob.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Widget; diff --git a/app/code/Magento/Customer/Block/Widget/Gender.php b/app/code/Magento/Customer/Block/Widget/Gender.php index 52217bbf0cb..1e29b22e751 100644 --- a/app/code/Magento/Customer/Block/Widget/Gender.php +++ b/app/code/Magento/Customer/Block/Widget/Gender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Widget; diff --git a/app/code/Magento/Customer/Block/Widget/Name.php b/app/code/Magento/Customer/Block/Widget/Name.php index 19edb68b6c7..2e2831e4151 100644 --- a/app/code/Magento/Customer/Block/Widget/Name.php +++ b/app/code/Magento/Customer/Block/Widget/Name.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Widget; diff --git a/app/code/Magento/Customer/Block/Widget/Taxvat.php b/app/code/Magento/Customer/Block/Widget/Taxvat.php index f4ace043ddf..bb54c7ea6a9 100644 --- a/app/code/Magento/Customer/Block/Widget/Taxvat.php +++ b/app/code/Magento/Customer/Block/Widget/Taxvat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Console/Command/UpgradeHashAlgorithmCommand.php b/app/code/Magento/Customer/Console/Command/UpgradeHashAlgorithmCommand.php index 2559df43e73..26d0b265539 100644 --- a/app/code/Magento/Customer/Console/Command/UpgradeHashAlgorithmCommand.php +++ b/app/code/Magento/Customer/Console/Command/UpgradeHashAlgorithmCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Console\Command; diff --git a/app/code/Magento/Customer/Controller/AbstractAccount.php b/app/code/Magento/Customer/Controller/AbstractAccount.php index 25c5b6b6894..14f19a7d197 100644 --- a/app/code/Magento/Customer/Controller/AbstractAccount.php +++ b/app/code/Magento/Customer/Controller/AbstractAccount.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller; diff --git a/app/code/Magento/Customer/Controller/Account/Confirm.php b/app/code/Magento/Customer/Controller/Account/Confirm.php index 2db820806d6..af64670ee40 100644 --- a/app/code/Magento/Customer/Controller/Account/Confirm.php +++ b/app/code/Magento/Customer/Controller/Account/Confirm.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/Confirmation.php b/app/code/Magento/Customer/Controller/Account/Confirmation.php index 46c40f462d3..5448abc4220 100644 --- a/app/code/Magento/Customer/Controller/Account/Confirmation.php +++ b/app/code/Magento/Customer/Controller/Account/Confirmation.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/Create.php b/app/code/Magento/Customer/Controller/Account/Create.php index 436164fce07..9e716077651 100644 --- a/app/code/Magento/Customer/Controller/Account/Create.php +++ b/app/code/Magento/Customer/Controller/Account/Create.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/CreatePassword.php b/app/code/Magento/Customer/Controller/Account/CreatePassword.php index c8a5cf9afbd..a1478caac1a 100644 --- a/app/code/Magento/Customer/Controller/Account/CreatePassword.php +++ b/app/code/Magento/Customer/Controller/Account/CreatePassword.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/CreatePost.php b/app/code/Magento/Customer/Controller/Account/CreatePost.php index 57487bde104..5fca7b7d2f8 100644 --- a/app/code/Magento/Customer/Controller/Account/CreatePost.php +++ b/app/code/Magento/Customer/Controller/Account/CreatePost.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/Edit.php b/app/code/Magento/Customer/Controller/Account/Edit.php index 7131f2f88c5..e4c2265b278 100644 --- a/app/code/Magento/Customer/Controller/Account/Edit.php +++ b/app/code/Magento/Customer/Controller/Account/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/EditPost.php b/app/code/Magento/Customer/Controller/Account/EditPost.php index 00d089209c5..639fc0ef2a6 100644 --- a/app/code/Magento/Customer/Controller/Account/EditPost.php +++ b/app/code/Magento/Customer/Controller/Account/EditPost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/ForgotPassword.php b/app/code/Magento/Customer/Controller/Account/ForgotPassword.php index 7cb5a4ce7fa..0c7cae6e1ae 100644 --- a/app/code/Magento/Customer/Controller/Account/ForgotPassword.php +++ b/app/code/Magento/Customer/Controller/Account/ForgotPassword.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/ForgotPasswordPost.php b/app/code/Magento/Customer/Controller/Account/ForgotPasswordPost.php index cdc7a8dfe5c..ac17bb52e9e 100644 --- a/app/code/Magento/Customer/Controller/Account/ForgotPasswordPost.php +++ b/app/code/Magento/Customer/Controller/Account/ForgotPasswordPost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/Index.php b/app/code/Magento/Customer/Controller/Account/Index.php index c9807732a65..f97f1a65e4c 100644 --- a/app/code/Magento/Customer/Controller/Account/Index.php +++ b/app/code/Magento/Customer/Controller/Account/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/Login.php b/app/code/Magento/Customer/Controller/Account/Login.php index 9ddf8c12f02..00d57200434 100644 --- a/app/code/Magento/Customer/Controller/Account/Login.php +++ b/app/code/Magento/Customer/Controller/Account/Login.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/LoginPost.php b/app/code/Magento/Customer/Controller/Account/LoginPost.php index 44db5da33c5..1632c54b40b 100644 --- a/app/code/Magento/Customer/Controller/Account/LoginPost.php +++ b/app/code/Magento/Customer/Controller/Account/LoginPost.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/Logout.php b/app/code/Magento/Customer/Controller/Account/Logout.php index 1f0dd1057e7..0c182b0da4f 100644 --- a/app/code/Magento/Customer/Controller/Account/Logout.php +++ b/app/code/Magento/Customer/Controller/Account/Logout.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/LogoutSuccess.php b/app/code/Magento/Customer/Controller/Account/LogoutSuccess.php index d925bcb8456..a83c898196c 100644 --- a/app/code/Magento/Customer/Controller/Account/LogoutSuccess.php +++ b/app/code/Magento/Customer/Controller/Account/LogoutSuccess.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/Account/ResetPasswordPost.php b/app/code/Magento/Customer/Controller/Account/ResetPasswordPost.php index 017b317be44..de77b4ea65f 100644 --- a/app/code/Magento/Customer/Controller/Account/ResetPasswordPost.php +++ b/app/code/Magento/Customer/Controller/Account/ResetPasswordPost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Account; diff --git a/app/code/Magento/Customer/Controller/AccountInterface.php b/app/code/Magento/Customer/Controller/AccountInterface.php index 96c881994f9..220d75d2b01 100644 --- a/app/code/Magento/Customer/Controller/AccountInterface.php +++ b/app/code/Magento/Customer/Controller/AccountInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller; diff --git a/app/code/Magento/Customer/Controller/Address.php b/app/code/Magento/Customer/Controller/Address.php index a71ed79a73b..432bb0d4677 100644 --- a/app/code/Magento/Customer/Controller/Address.php +++ b/app/code/Magento/Customer/Controller/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller; diff --git a/app/code/Magento/Customer/Controller/Address/Delete.php b/app/code/Magento/Customer/Controller/Address/Delete.php index 9b827e35c02..efebfd8ed7f 100644 --- a/app/code/Magento/Customer/Controller/Address/Delete.php +++ b/app/code/Magento/Customer/Controller/Address/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Address; diff --git a/app/code/Magento/Customer/Controller/Address/Edit.php b/app/code/Magento/Customer/Controller/Address/Edit.php index 7464369bb62..90eb5f8e3e1 100644 --- a/app/code/Magento/Customer/Controller/Address/Edit.php +++ b/app/code/Magento/Customer/Controller/Address/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Address; diff --git a/app/code/Magento/Customer/Controller/Address/Form.php b/app/code/Magento/Customer/Controller/Address/Form.php index 0f64977aa5b..816e20ab304 100644 --- a/app/code/Magento/Customer/Controller/Address/Form.php +++ b/app/code/Magento/Customer/Controller/Address/Form.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Address; diff --git a/app/code/Magento/Customer/Controller/Address/FormPost.php b/app/code/Magento/Customer/Controller/Address/FormPost.php index e1920f728b3..eb99e3a299e 100644 --- a/app/code/Magento/Customer/Controller/Address/FormPost.php +++ b/app/code/Magento/Customer/Controller/Address/FormPost.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Address; diff --git a/app/code/Magento/Customer/Controller/Address/Index.php b/app/code/Magento/Customer/Controller/Address/Index.php index 31c991b1a47..711f7b1753d 100644 --- a/app/code/Magento/Customer/Controller/Address/Index.php +++ b/app/code/Magento/Customer/Controller/Address/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Address; diff --git a/app/code/Magento/Customer/Controller/Address/NewAction.php b/app/code/Magento/Customer/Controller/Address/NewAction.php index 22cb1fd3a71..5d37f0a57e7 100644 --- a/app/code/Magento/Customer/Controller/Address/NewAction.php +++ b/app/code/Magento/Customer/Controller/Address/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Address; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart.php b/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart.php index 985fb70d084..ea0102e48f0 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Cart\Product\Composite; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Configure.php b/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Configure.php index e4c320a2779..114effafd23 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Configure.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Configure.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Cart\Product\Composite\Cart; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Update.php b/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Update.php index 42ed2bc30b2..0a9dc132807 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Update.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Update.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Cart\Product\Composite\Cart; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Customer/InvalidateToken.php b/app/code/Magento/Customer/Controller/Adminhtml/Customer/InvalidateToken.php index 4aa07e43034..1939e033ecf 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Customer/InvalidateToken.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Customer/InvalidateToken.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Controller/Adminhtml/File/Address/Upload.php b/app/code/Magento/Customer/Controller/Adminhtml/File/Address/Upload.php index d7f83ba6a63..8f70dee5ad6 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/File/Address/Upload.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/File/Address/Upload.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\File\Address; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/File/Customer/Upload.php b/app/code/Magento/Customer/Controller/Adminhtml/File/Customer/Upload.php index 47bda9f3005..5a73cb3cec6 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/File/Customer/Upload.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/File/Customer/Upload.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\File\Customer; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group.php b/app/code/Magento/Customer/Controller/Adminhtml/Group.php index 629a3819106..6387de18119 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Group.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group/Delete.php b/app/code/Magento/Customer/Controller/Adminhtml/Group/Delete.php index d7c4299f9ca..3b6c23f969d 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Group/Delete.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Group/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Group; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group/Edit.php b/app/code/Magento/Customer/Controller/Adminhtml/Group/Edit.php index 477db8b065e..8635561af81 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Group/Edit.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Group/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Group; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group/Index.php b/app/code/Magento/Customer/Controller/Adminhtml/Group/Index.php index 284508aaa47..680948d8803 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Group/Index.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Group/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Group; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group/NewAction.php b/app/code/Magento/Customer/Controller/Adminhtml/Group/NewAction.php index cce3adefa3c..caeb5c6558a 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Group/NewAction.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Group/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Group; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group/Save.php b/app/code/Magento/Customer/Controller/Adminhtml/Group/Save.php index 26a7eab8f96..5248141f437 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Group/Save.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Group/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Group; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index.php b/app/code/Magento/Customer/Controller/Adminhtml/Index.php index a86ccb6b461..3e820e3181a 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/AbstractMassAction.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/AbstractMassAction.php index f720165770e..0a64420125d 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/AbstractMassAction.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/AbstractMassAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Cart.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Cart.php index f7b15451d2c..982a993514e 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/Cart.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Carts.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Carts.php index 49d080d6539..5ee89a8dc64 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/Carts.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/Carts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Delete.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Delete.php index e5d9f020170..c93a8d99da3 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/Delete.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/Delete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Edit.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Edit.php index 4b4959126e6..7bd2be328c6 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/Edit.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Index.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Index.php index a0c4ae2097e..b00235df360 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/Index.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/InlineEdit.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/InlineEdit.php index 083b975c8ec..4918d8263f7 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/InlineEdit.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/InlineEdit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/LastOrders.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/LastOrders.php index 7a307f06d6c..4b2f1c057e8 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/LastOrders.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/LastOrders.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassAssignGroup.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassAssignGroup.php index 62391f6f20c..b673eced7a4 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassAssignGroup.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassAssignGroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassDelete.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassDelete.php index 8f186917c10..ed26708f6a4 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassDelete.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassDelete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassSubscribe.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassSubscribe.php index 85131bd8a7b..8a784ed3d64 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassSubscribe.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassSubscribe.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassUnsubscribe.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassUnsubscribe.php index c801ec920a2..75da6db6be9 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassUnsubscribe.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassUnsubscribe.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/NewAction.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/NewAction.php index 0431acb9fdb..9ad72aeff1e 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/NewAction.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/NewAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Newsletter.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Newsletter.php index d3b2df21fb2..b0d3e4c1c9e 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/Newsletter.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/Newsletter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Orders.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Orders.php index bd52d9b5668..4128b6d2c09 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/Orders.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/Orders.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/ProductReviews.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/ProductReviews.php index 58ca1b89cb6..a701b68dc91 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/ProductReviews.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/ProductReviews.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/ResetPassword.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/ResetPassword.php index 3c3fa73087e..50971f0db04 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/ResetPassword.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/ResetPassword.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Save.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Save.php index fd2ceaf0969..59518597cc1 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/Save.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Validate.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Validate.php index 2c9be2d013b..f353f35994b 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/Validate.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/Validate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewCart.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewCart.php index c880905e512..8107a7cb74c 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewCart.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewCart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewWishlist.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewWishlist.php index 19b4241b644..fe7808f8fb6 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewWishlist.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewWishlist.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Viewfile.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Viewfile.php index d69ec2b6bd5..d35b3ef1710 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/Viewfile.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/Viewfile.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Wishlist.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Wishlist.php index be379e810fc..39134fd6cb4 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Index/Wishlist.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Index/Wishlist.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Locks/Unlock.php b/app/code/Magento/Customer/Controller/Adminhtml/Locks/Unlock.php index 3156f0abe7e..e36b7342cf7 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Locks/Unlock.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Locks/Unlock.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Locks; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Online/Index.php b/app/code/Magento/Customer/Controller/Adminhtml/Online/Index.php index d76cb95bf3a..dd990c04aae 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Online/Index.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Online/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Online; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat.php b/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat.php index fdc2f56e738..17f13a75941 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\System\Config; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/Validate.php b/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/Validate.php index e90aafb0b78..b7b712aa01b 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/Validate.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/Validate.php @@ -1,6 +1,6 @@ <?php /** - * * Copyright © 2016 Magento. All rights reserved. + * * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\System\Config\Validatevat; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/ValidateAdvanced.php b/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/ValidateAdvanced.php index e3647ad87a0..4e15209244e 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/ValidateAdvanced.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/ValidateAdvanced.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\System\Config\Validatevat; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist.php b/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist.php index 1c3323d0dd8..4ae73ac8045 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Wishlist\Product\Composite; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Configure.php b/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Configure.php index c546bf44161..d8306f5d189 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Configure.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Configure.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Wishlist\Product\Composite\Wishlist; diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Update.php b/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Update.php index 9f6572c0fcc..a519a3a0d08 100644 --- a/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Update.php +++ b/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Update.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\Wishlist\Product\Composite\Wishlist; diff --git a/app/code/Magento/Customer/Controller/Ajax/Login.php b/app/code/Magento/Customer/Controller/Ajax/Login.php index 8937edcd04a..81caf7c10e3 100644 --- a/app/code/Magento/Customer/Controller/Ajax/Login.php +++ b/app/code/Magento/Customer/Controller/Ajax/Login.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Controller/Ajax/Logout.php b/app/code/Magento/Customer/Controller/Ajax/Logout.php index ba4da3dc104..2700f239afa 100644 --- a/app/code/Magento/Customer/Controller/Ajax/Logout.php +++ b/app/code/Magento/Customer/Controller/Ajax/Logout.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Controller/Plugin/Account.php b/app/code/Magento/Customer/Controller/Plugin/Account.php index 5da79b8aa46..4db8cdb2324 100644 --- a/app/code/Magento/Customer/Controller/Plugin/Account.php +++ b/app/code/Magento/Customer/Controller/Plugin/Account.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Plugin; diff --git a/app/code/Magento/Customer/Controller/RegistryConstants.php b/app/code/Magento/Customer/Controller/RegistryConstants.php index 861b290a39a..bb3f360b51e 100644 --- a/app/code/Magento/Customer/Controller/RegistryConstants.php +++ b/app/code/Magento/Customer/Controller/RegistryConstants.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller; diff --git a/app/code/Magento/Customer/Controller/Review.php b/app/code/Magento/Customer/Controller/Review.php index 15482232254..3204880c305 100644 --- a/app/code/Magento/Customer/Controller/Review.php +++ b/app/code/Magento/Customer/Controller/Review.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller; diff --git a/app/code/Magento/Customer/Controller/Review/Index.php b/app/code/Magento/Customer/Controller/Review/Index.php index e5db6f9d316..866fbfbf803 100644 --- a/app/code/Magento/Customer/Controller/Review/Index.php +++ b/app/code/Magento/Customer/Controller/Review/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Review; diff --git a/app/code/Magento/Customer/Controller/Review/View.php b/app/code/Magento/Customer/Controller/Review/View.php index 92a37e8c07c..2286a1d1518 100644 --- a/app/code/Magento/Customer/Controller/Review/View.php +++ b/app/code/Magento/Customer/Controller/Review/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Review; diff --git a/app/code/Magento/Customer/Controller/Section/Load.php b/app/code/Magento/Customer/Controller/Section/Load.php index c1ec593e4a7..bc401944772 100644 --- a/app/code/Magento/Customer/Controller/Section/Load.php +++ b/app/code/Magento/Customer/Controller/Section/Load.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Section; diff --git a/app/code/Magento/Customer/CustomerData/Customer.php b/app/code/Magento/Customer/CustomerData/Customer.php index 6b7d0e15f76..7a8b982ecdc 100644 --- a/app/code/Magento/Customer/CustomerData/Customer.php +++ b/app/code/Magento/Customer/CustomerData/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderInterface.php b/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderInterface.php index ca6e8f3870e..00cff7d20a0 100644 --- a/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderInterface.php +++ b/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPool.php b/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPool.php index 8377d30921d..7bd1d161339 100644 --- a/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPool.php +++ b/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPoolInterface.php b/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPoolInterface.php index 20593e67ba5..8bc047bbae9 100644 --- a/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPoolInterface.php +++ b/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPoolInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/CustomerData/Plugin/SessionChecker.php b/app/code/Magento/Customer/CustomerData/Plugin/SessionChecker.php index 2653b1a6acf..6ee04cea5f8 100644 --- a/app/code/Magento/Customer/CustomerData/Plugin/SessionChecker.php +++ b/app/code/Magento/Customer/CustomerData/Plugin/SessionChecker.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\CustomerData\Plugin; diff --git a/app/code/Magento/Customer/CustomerData/SchemaLocator.php b/app/code/Magento/Customer/CustomerData/SchemaLocator.php index 05f663c5bde..2970aff24f1 100644 --- a/app/code/Magento/Customer/CustomerData/SchemaLocator.php +++ b/app/code/Magento/Customer/CustomerData/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\CustomerData; diff --git a/app/code/Magento/Customer/CustomerData/Section/Identifier.php b/app/code/Magento/Customer/CustomerData/Section/Identifier.php index 9d8464b1fe4..da5753154f4 100644 --- a/app/code/Magento/Customer/CustomerData/Section/Identifier.php +++ b/app/code/Magento/Customer/CustomerData/Section/Identifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\CustomerData\Section; diff --git a/app/code/Magento/Customer/CustomerData/SectionConfigConverter.php b/app/code/Magento/Customer/CustomerData/SectionConfigConverter.php index a5c5a078255..028f9d92750 100644 --- a/app/code/Magento/Customer/CustomerData/SectionConfigConverter.php +++ b/app/code/Magento/Customer/CustomerData/SectionConfigConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\CustomerData; diff --git a/app/code/Magento/Customer/CustomerData/SectionPool.php b/app/code/Magento/Customer/CustomerData/SectionPool.php index e5482242de0..3839c407b09 100644 --- a/app/code/Magento/Customer/CustomerData/SectionPool.php +++ b/app/code/Magento/Customer/CustomerData/SectionPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\CustomerData; diff --git a/app/code/Magento/Customer/CustomerData/SectionPoolInterface.php b/app/code/Magento/Customer/CustomerData/SectionPoolInterface.php index 1c3fc7dade9..02ab844a37f 100644 --- a/app/code/Magento/Customer/CustomerData/SectionPoolInterface.php +++ b/app/code/Magento/Customer/CustomerData/SectionPoolInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\CustomerData; diff --git a/app/code/Magento/Customer/CustomerData/SectionSourceInterface.php b/app/code/Magento/Customer/CustomerData/SectionSourceInterface.php index f9c0b3744d8..3666bb4b927 100644 --- a/app/code/Magento/Customer/CustomerData/SectionSourceInterface.php +++ b/app/code/Magento/Customer/CustomerData/SectionSourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\CustomerData; diff --git a/app/code/Magento/Customer/Helper/Address.php b/app/code/Magento/Customer/Helper/Address.php index cde9fc903e4..3fb736493fe 100644 --- a/app/code/Magento/Customer/Helper/Address.php +++ b/app/code/Magento/Customer/Helper/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Helper; diff --git a/app/code/Magento/Customer/Helper/Session/CurrentCustomer.php b/app/code/Magento/Customer/Helper/Session/CurrentCustomer.php index b678dd62947..51b76cd2af6 100644 --- a/app/code/Magento/Customer/Helper/Session/CurrentCustomer.php +++ b/app/code/Magento/Customer/Helper/Session/CurrentCustomer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Helper\Session; diff --git a/app/code/Magento/Customer/Helper/Session/CurrentCustomerAddress.php b/app/code/Magento/Customer/Helper/Session/CurrentCustomerAddress.php index 6986927fbff..846c99b8130 100644 --- a/app/code/Magento/Customer/Helper/Session/CurrentCustomerAddress.php +++ b/app/code/Magento/Customer/Helper/Session/CurrentCustomerAddress.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Helper\Session; diff --git a/app/code/Magento/Customer/Helper/View.php b/app/code/Magento/Customer/Helper/View.php index 1aa7befeb8e..83c432482f4 100644 --- a/app/code/Magento/Customer/Helper/View.php +++ b/app/code/Magento/Customer/Helper/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Helper; diff --git a/app/code/Magento/Customer/Model/Account/Redirect.php b/app/code/Magento/Customer/Model/Account/Redirect.php index 5a1470959b6..5996da91cf5 100644 --- a/app/code/Magento/Customer/Model/Account/Redirect.php +++ b/app/code/Magento/Customer/Model/Account/Redirect.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Account; diff --git a/app/code/Magento/Customer/Model/AccountManagement.php b/app/code/Magento/Customer/Model/AccountManagement.php index 56125575e7e..75cc525b3bd 100644 --- a/app/code/Magento/Customer/Model/AccountManagement.php +++ b/app/code/Magento/Customer/Model/AccountManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Address.php b/app/code/Magento/Customer/Model/Address.php index fb761e2ac17..9349a64cc44 100644 --- a/app/code/Magento/Customer/Model/Address.php +++ b/app/code/Magento/Customer/Model/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Address/AbstractAddress.php b/app/code/Magento/Customer/Model/Address/AbstractAddress.php index 786c5f9770a..a34691143db 100644 --- a/app/code/Magento/Customer/Model/Address/AbstractAddress.php +++ b/app/code/Magento/Customer/Model/Address/AbstractAddress.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Address/AddressModelInterface.php b/app/code/Magento/Customer/Model/Address/AddressModelInterface.php index 3e3d7267128..f930c4c746a 100644 --- a/app/code/Magento/Customer/Model/Address/AddressModelInterface.php +++ b/app/code/Magento/Customer/Model/Address/AddressModelInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Address/Config.php b/app/code/Magento/Customer/Model/Address/Config.php index 18a043bc019..b36204814ab 100644 --- a/app/code/Magento/Customer/Model/Address/Config.php +++ b/app/code/Magento/Customer/Model/Address/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Address; diff --git a/app/code/Magento/Customer/Model/Address/Config/Converter.php b/app/code/Magento/Customer/Model/Address/Config/Converter.php index 5803779c8e6..cbf9ece8c5f 100644 --- a/app/code/Magento/Customer/Model/Address/Config/Converter.php +++ b/app/code/Magento/Customer/Model/Address/Config/Converter.php @@ -2,7 +2,7 @@ /** * Converter of customer address format configuration from \DOMDocument to array * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Address\Config; diff --git a/app/code/Magento/Customer/Model/Address/Config/Reader.php b/app/code/Magento/Customer/Model/Address/Config/Reader.php index 56ba5658e76..623dd8b78d2 100644 --- a/app/code/Magento/Customer/Model/Address/Config/Reader.php +++ b/app/code/Magento/Customer/Model/Address/Config/Reader.php @@ -2,7 +2,7 @@ /** * Customer address format configuration filesystem loader. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Address\Config; diff --git a/app/code/Magento/Customer/Model/Address/Config/SchemaLocator.php b/app/code/Magento/Customer/Model/Address/Config/SchemaLocator.php index e5db3232f68..e48c7985e82 100644 --- a/app/code/Magento/Customer/Model/Address/Config/SchemaLocator.php +++ b/app/code/Magento/Customer/Model/Address/Config/SchemaLocator.php @@ -2,7 +2,7 @@ /** * Customer address format configuration schema locator * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Address\Config; diff --git a/app/code/Magento/Customer/Model/Address/CustomAttributeList.php b/app/code/Magento/Customer/Model/Address/CustomAttributeList.php index f83b37c2a81..d0fe7c8dbd4 100644 --- a/app/code/Magento/Customer/Model/Address/CustomAttributeList.php +++ b/app/code/Magento/Customer/Model/Address/CustomAttributeList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Address; diff --git a/app/code/Magento/Customer/Model/Address/CustomAttributeListInterface.php b/app/code/Magento/Customer/Model/Address/CustomAttributeListInterface.php index c04cfe16f49..870f8212fbb 100644 --- a/app/code/Magento/Customer/Model/Address/CustomAttributeListInterface.php +++ b/app/code/Magento/Customer/Model/Address/CustomAttributeListInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Address; diff --git a/app/code/Magento/Customer/Model/Address/Form.php b/app/code/Magento/Customer/Model/Address/Form.php index e50a9560651..fda6dd26764 100644 --- a/app/code/Magento/Customer/Model/Address/Form.php +++ b/app/code/Magento/Customer/Model/Address/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Address/Mapper.php b/app/code/Magento/Customer/Model/Address/Mapper.php index 2090c6d0f96..283c6e96a4f 100644 --- a/app/code/Magento/Customer/Model/Address/Mapper.php +++ b/app/code/Magento/Customer/Model/Address/Mapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Address/Validator/Postcode.php b/app/code/Magento/Customer/Model/Address/Validator/Postcode.php index 227485768e1..7d0b9acc356 100644 --- a/app/code/Magento/Customer/Model/Address/Validator/Postcode.php +++ b/app/code/Magento/Customer/Model/Address/Validator/Postcode.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Address\Validator; diff --git a/app/code/Magento/Customer/Model/AddressRegistry.php b/app/code/Magento/Customer/Model/AddressRegistry.php index f8bf4d54a93..2715738c51d 100644 --- a/app/code/Magento/Customer/Model/AddressRegistry.php +++ b/app/code/Magento/Customer/Model/AddressRegistry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/App/Action/ContextPlugin.php b/app/code/Magento/Customer/Model/App/Action/ContextPlugin.php index 7518c4b4783..70abc840a76 100644 --- a/app/code/Magento/Customer/Model/App/Action/ContextPlugin.php +++ b/app/code/Magento/Customer/Model/App/Action/ContextPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Attribute.php b/app/code/Magento/Customer/Model/Attribute.php index d7bcdaef6ae..32d1d5ebbb6 100644 --- a/app/code/Magento/Customer/Model/Attribute.php +++ b/app/code/Magento/Customer/Model/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Attribute/Backend/Data/Boolean.php b/app/code/Magento/Customer/Model/Attribute/Backend/Data/Boolean.php index 608dab5d67b..78815ebf1d1 100644 --- a/app/code/Magento/Customer/Model/Attribute/Backend/Data/Boolean.php +++ b/app/code/Magento/Customer/Model/Attribute/Backend/Data/Boolean.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Attribute\Backend\Data; diff --git a/app/code/Magento/Customer/Model/Attribute/Data/AbstractData.php b/app/code/Magento/Customer/Model/Attribute/Data/AbstractData.php index 8fd2df4981d..307563497c8 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/AbstractData.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/AbstractData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Boolean.php b/app/code/Magento/Customer/Model/Attribute/Data/Boolean.php index 61eb2d60de3..8265c8c5c8a 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/Boolean.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/Boolean.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Date.php b/app/code/Magento/Customer/Model/Attribute/Data/Date.php index 3e3d43e72f4..abb41d8e4b9 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/Date.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/Date.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Attribute/Data/File.php b/app/code/Magento/Customer/Model/Attribute/Data/File.php index 43441b6f330..3f8520f36a1 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/File.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Hidden.php b/app/code/Magento/Customer/Model/Attribute/Data/Hidden.php index 0f10c96e975..471b4e3caa6 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/Hidden.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/Hidden.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Image.php b/app/code/Magento/Customer/Model/Attribute/Data/Image.php index f0f1bc7099e..95c2094ee16 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/Image.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Multiline.php b/app/code/Magento/Customer/Model/Attribute/Data/Multiline.php index 7ec7f0542b0..1dd7aa93587 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/Multiline.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/Multiline.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Multiselect.php b/app/code/Magento/Customer/Model/Attribute/Data/Multiselect.php index 9a1ed192531..565dc878593 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/Multiselect.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/Multiselect.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Postcode.php b/app/code/Magento/Customer/Model/Attribute/Data/Postcode.php index 955cf6127e5..95c82d0aee4 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/Postcode.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/Postcode.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Attribute\Data; diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Select.php b/app/code/Magento/Customer/Model/Attribute/Data/Select.php index 1cec705f7e9..1c27dea64ac 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/Select.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Text.php b/app/code/Magento/Customer/Model/Attribute/Data/Text.php index 694443d5bf7..dd9560446d9 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/Text.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/Text.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Textarea.php b/app/code/Magento/Customer/Model/Attribute/Data/Textarea.php index 78c7c9ad912..5342b1b005d 100644 --- a/app/code/Magento/Customer/Model/Attribute/Data/Textarea.php +++ b/app/code/Magento/Customer/Model/Attribute/Data/Textarea.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/AttributeMetadataConverter.php b/app/code/Magento/Customer/Model/AttributeMetadataConverter.php index 6167660854d..707ef64e3a3 100644 --- a/app/code/Magento/Customer/Model/AttributeMetadataConverter.php +++ b/app/code/Magento/Customer/Model/AttributeMetadataConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/AttributeMetadataDataProvider.php b/app/code/Magento/Customer/Model/AttributeMetadataDataProvider.php index 5195036fe5f..00a39b15673 100644 --- a/app/code/Magento/Customer/Model/AttributeMetadataDataProvider.php +++ b/app/code/Magento/Customer/Model/AttributeMetadataDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Authentication.php b/app/code/Magento/Customer/Model/Authentication.php index 9aad78f0428..d826a732abb 100644 --- a/app/code/Magento/Customer/Model/Authentication.php +++ b/app/code/Magento/Customer/Model/Authentication.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/AuthenticationInterface.php b/app/code/Magento/Customer/Model/AuthenticationInterface.php index ee1264186d0..3e056c8e489 100644 --- a/app/code/Magento/Customer/Model/AuthenticationInterface.php +++ b/app/code/Magento/Customer/Model/AuthenticationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Authorization/CustomerSessionUserContext.php b/app/code/Magento/Customer/Model/Authorization/CustomerSessionUserContext.php index 11462bb318c..19ca2630725 100644 --- a/app/code/Magento/Customer/Model/Authorization/CustomerSessionUserContext.php +++ b/app/code/Magento/Customer/Model/Authorization/CustomerSessionUserContext.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Backend/Customer.php b/app/code/Magento/Customer/Model/Backend/Customer.php index b5fa95f3f59..c5fdba2cdb9 100644 --- a/app/code/Magento/Customer/Model/Backend/Customer.php +++ b/app/code/Magento/Customer/Model/Backend/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Backend; diff --git a/app/code/Magento/Customer/Model/Cache/Type/Notification.php b/app/code/Magento/Customer/Model/Cache/Type/Notification.php index dcb595affac..66aa2760fac 100644 --- a/app/code/Magento/Customer/Model/Cache/Type/Notification.php +++ b/app/code/Magento/Customer/Model/Cache/Type/Notification.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Cache\Type; diff --git a/app/code/Magento/Customer/Model/Cart/ConfigPlugin.php b/app/code/Magento/Customer/Model/Cart/ConfigPlugin.php index 45b4bf3949d..de7baaf9aee 100644 --- a/app/code/Magento/Customer/Model/Cart/ConfigPlugin.php +++ b/app/code/Magento/Customer/Model/Cart/ConfigPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Cart; diff --git a/app/code/Magento/Customer/Model/Checkout/ConfigProvider.php b/app/code/Magento/Customer/Model/Checkout/ConfigProvider.php index 5a7c8f989d0..ea1fb8670ae 100644 --- a/app/code/Magento/Customer/Model/Checkout/ConfigProvider.php +++ b/app/code/Magento/Customer/Model/Checkout/ConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Checkout; diff --git a/app/code/Magento/Customer/Model/Config/Backend/Address/Street.php b/app/code/Magento/Customer/Model/Config/Backend/Address/Street.php index 4cd946f38da..e91204868a0 100644 --- a/app/code/Magento/Customer/Model/Config/Backend/Address/Street.php +++ b/app/code/Magento/Customer/Model/Config/Backend/Address/Street.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Config\Backend\Address; diff --git a/app/code/Magento/Customer/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefault.php b/app/code/Magento/Customer/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefault.php index c776b9fcaf2..c1d56944f80 100644 --- a/app/code/Magento/Customer/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefault.php +++ b/app/code/Magento/Customer/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefault.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Config\Backend\CreateAccount; diff --git a/app/code/Magento/Customer/Model/Config/Backend/Password/Link/Expirationperiod.php b/app/code/Magento/Customer/Model/Config/Backend/Password/Link/Expirationperiod.php index 5e586531cbc..5b5f1f2e130 100644 --- a/app/code/Magento/Customer/Model/Config/Backend/Password/Link/Expirationperiod.php +++ b/app/code/Magento/Customer/Model/Config/Backend/Password/Link/Expirationperiod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Config\Backend\Password\Link; diff --git a/app/code/Magento/Customer/Model/Config/Backend/Show/Address.php b/app/code/Magento/Customer/Model/Config/Backend/Show/Address.php index 4a8ad8d9669..1fe832d43dc 100644 --- a/app/code/Magento/Customer/Model/Config/Backend/Show/Address.php +++ b/app/code/Magento/Customer/Model/Config/Backend/Show/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Config\Backend\Show; diff --git a/app/code/Magento/Customer/Model/Config/Backend/Show/Customer.php b/app/code/Magento/Customer/Model/Config/Backend/Show/Customer.php index 6a245d71b57..2e515e07318 100644 --- a/app/code/Magento/Customer/Model/Config/Backend/Show/Customer.php +++ b/app/code/Magento/Customer/Model/Config/Backend/Show/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Config\Backend\Show; diff --git a/app/code/Magento/Customer/Model/Config/Share.php b/app/code/Magento/Customer/Model/Config/Share.php index add9b6af8b9..d8a61b4de16 100644 --- a/app/code/Magento/Customer/Model/Config/Share.php +++ b/app/code/Magento/Customer/Model/Config/Share.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Config; diff --git a/app/code/Magento/Customer/Model/Config/Source/Address/Type.php b/app/code/Magento/Customer/Model/Config/Source/Address/Type.php index 7898f2868c2..62e2d5eeabc 100644 --- a/app/code/Magento/Customer/Model/Config/Source/Address/Type.php +++ b/app/code/Magento/Customer/Model/Config/Source/Address/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Config/Source/Group.php b/app/code/Magento/Customer/Model/Config/Source/Group.php index e693bf7a3c4..c6c18ebfcc5 100644 --- a/app/code/Magento/Customer/Model/Config/Source/Group.php +++ b/app/code/Magento/Customer/Model/Config/Source/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Config\Source; diff --git a/app/code/Magento/Customer/Model/Config/Source/Group/Multiselect.php b/app/code/Magento/Customer/Model/Config/Source/Group/Multiselect.php index adfc78448cd..d2ef514a17e 100644 --- a/app/code/Magento/Customer/Model/Config/Source/Group/Multiselect.php +++ b/app/code/Magento/Customer/Model/Config/Source/Group/Multiselect.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Config\Source\Group; diff --git a/app/code/Magento/Customer/Model/Context.php b/app/code/Magento/Customer/Model/Context.php index f28882feafe..8634993e886 100644 --- a/app/code/Magento/Customer/Model/Context.php +++ b/app/code/Magento/Customer/Model/Context.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Customer.php b/app/code/Magento/Customer/Model/Customer.php index b7ab6ab9ff8..9866f65148d 100644 --- a/app/code/Magento/Customer/Model/Customer.php +++ b/app/code/Magento/Customer/Model/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Billing.php b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Billing.php index 778739310ea..c9fba742794 100644 --- a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Billing.php +++ b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Billing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer\Attribute\Backend; diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Password.php b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Password.php index 337cefd8b99..52e2b71b63f 100644 --- a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Password.php +++ b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Password.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer\Attribute\Backend; diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Shipping.php b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Shipping.php index 2f2e038cf40..69512068e94 100644 --- a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Shipping.php +++ b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer\Attribute\Backend; diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Store.php b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Store.php index f461b4d1bc1..bff31d98f43 100644 --- a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Store.php +++ b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer\Attribute\Backend; diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Website.php b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Website.php index e7053c8c277..68ec8a2becd 100644 --- a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Website.php +++ b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer\Attribute\Backend; diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Source/Group.php b/app/code/Magento/Customer/Model/Customer/Attribute/Source/Group.php index 9af4b7fc673..678e9909dad 100644 --- a/app/code/Magento/Customer/Model/Customer/Attribute/Source/Group.php +++ b/app/code/Magento/Customer/Model/Customer/Attribute/Source/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer\Attribute\Source; diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Source/GroupSourceLoggedInOnlyInterface.php b/app/code/Magento/Customer/Model/Customer/Attribute/Source/GroupSourceLoggedInOnlyInterface.php index 5570b4073df..43c1ebbd1c7 100644 --- a/app/code/Magento/Customer/Model/Customer/Attribute/Source/GroupSourceLoggedInOnlyInterface.php +++ b/app/code/Magento/Customer/Model/Customer/Attribute/Source/GroupSourceLoggedInOnlyInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Source/Store.php b/app/code/Magento/Customer/Model/Customer/Attribute/Source/Store.php index b78a8108f46..8557b1ee2c7 100644 --- a/app/code/Magento/Customer/Model/Customer/Attribute/Source/Store.php +++ b/app/code/Magento/Customer/Model/Customer/Attribute/Source/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer\Attribute\Source; diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Source/Website.php b/app/code/Magento/Customer/Model/Customer/Attribute/Source/Website.php index 254998795ad..2f412375c3e 100644 --- a/app/code/Magento/Customer/Model/Customer/Attribute/Source/Website.php +++ b/app/code/Magento/Customer/Model/Customer/Attribute/Source/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer\Attribute\Source; diff --git a/app/code/Magento/Customer/Model/Customer/DataProvider.php b/app/code/Magento/Customer/Model/Customer/DataProvider.php index b01b8b7d833..44e9fb3abf6 100644 --- a/app/code/Magento/Customer/Model/Customer/DataProvider.php +++ b/app/code/Magento/Customer/Model/Customer/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer; diff --git a/app/code/Magento/Customer/Model/Customer/Mapper.php b/app/code/Magento/Customer/Model/Customer/Mapper.php index e7671319b00..795878e3079 100644 --- a/app/code/Magento/Customer/Model/Customer/Mapper.php +++ b/app/code/Magento/Customer/Model/Customer/Mapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Customer/NotificationStorage.php b/app/code/Magento/Customer/Model/Customer/NotificationStorage.php index 67ee60971d9..2903e433fd0 100644 --- a/app/code/Magento/Customer/Model/Customer/NotificationStorage.php +++ b/app/code/Magento/Customer/Model/Customer/NotificationStorage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer; diff --git a/app/code/Magento/Customer/Model/Customer/Source/Group.php b/app/code/Magento/Customer/Model/Customer/Source/Group.php index 5973ec6ffaa..17792b98533 100644 --- a/app/code/Magento/Customer/Model/Customer/Source/Group.php +++ b/app/code/Magento/Customer/Model/Customer/Source/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer\Source; diff --git a/app/code/Magento/Customer/Model/Customer/Source/GroupSourceInterface.php b/app/code/Magento/Customer/Model/Customer/Source/GroupSourceInterface.php index c044740dc35..2bff3665bbb 100644 --- a/app/code/Magento/Customer/Model/Customer/Source/GroupSourceInterface.php +++ b/app/code/Magento/Customer/Model/Customer/Source/GroupSourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Customer\Source; diff --git a/app/code/Magento/Customer/Model/CustomerAuthUpdate.php b/app/code/Magento/Customer/Model/CustomerAuthUpdate.php index e9e08c088c5..2ed80caa405 100644 --- a/app/code/Magento/Customer/Model/CustomerAuthUpdate.php +++ b/app/code/Magento/Customer/Model/CustomerAuthUpdate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/CustomerExtractor.php b/app/code/Magento/Customer/Model/CustomerExtractor.php index ab215a7612a..467723806d0 100644 --- a/app/code/Magento/Customer/Model/CustomerExtractor.php +++ b/app/code/Magento/Customer/Model/CustomerExtractor.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/CustomerManagement.php b/app/code/Magento/Customer/Model/CustomerManagement.php index b0d2f41dd0c..8f583100434 100644 --- a/app/code/Magento/Customer/Model/CustomerManagement.php +++ b/app/code/Magento/Customer/Model/CustomerManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/CustomerRegistry.php b/app/code/Magento/Customer/Model/CustomerRegistry.php index 66bb90b18b1..37f8f68e59d 100644 --- a/app/code/Magento/Customer/Model/CustomerRegistry.php +++ b/app/code/Magento/Customer/Model/CustomerRegistry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Data/Address.php b/app/code/Magento/Customer/Model/Data/Address.php index 02bb2337d7e..28cb77dfc35 100644 --- a/app/code/Magento/Customer/Model/Data/Address.php +++ b/app/code/Magento/Customer/Model/Data/Address.php @@ -2,7 +2,7 @@ /** * Data Model implementing the Address interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Data; diff --git a/app/code/Magento/Customer/Model/Data/AttributeMetadata.php b/app/code/Magento/Customer/Model/Data/AttributeMetadata.php index 23139096395..c09f0c56bfe 100644 --- a/app/code/Magento/Customer/Model/Data/AttributeMetadata.php +++ b/app/code/Magento/Customer/Model/Data/AttributeMetadata.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Data/Customer.php b/app/code/Magento/Customer/Model/Data/Customer.php index ecc7b92f4f5..1e382cf6745 100644 --- a/app/code/Magento/Customer/Model/Data/Customer.php +++ b/app/code/Magento/Customer/Model/Data/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Data/CustomerSecure.php b/app/code/Magento/Customer/Model/Data/CustomerSecure.php index d3a33be0d54..694456667bc 100644 --- a/app/code/Magento/Customer/Model/Data/CustomerSecure.php +++ b/app/code/Magento/Customer/Model/Data/CustomerSecure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Data/Group.php b/app/code/Magento/Customer/Model/Data/Group.php index e8aa4a30bd0..ca64696aac5 100644 --- a/app/code/Magento/Customer/Model/Data/Group.php +++ b/app/code/Magento/Customer/Model/Data/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Data/Option.php b/app/code/Magento/Customer/Model/Data/Option.php index 70927eb3b0a..1949282ba88 100644 --- a/app/code/Magento/Customer/Model/Data/Option.php +++ b/app/code/Magento/Customer/Model/Data/Option.php @@ -2,7 +2,7 @@ /** * Eav attribute option * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Data/Region.php b/app/code/Magento/Customer/Model/Data/Region.php index 63f01ba3dfe..dd9334b1558 100644 --- a/app/code/Magento/Customer/Model/Data/Region.php +++ b/app/code/Magento/Customer/Model/Data/Region.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Data; diff --git a/app/code/Magento/Customer/Model/Data/ValidationResults.php b/app/code/Magento/Customer/Model/Data/ValidationResults.php index d7e62518b17..b896e81cadb 100644 --- a/app/code/Magento/Customer/Model/Data/ValidationResults.php +++ b/app/code/Magento/Customer/Model/Data/ValidationResults.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Data/ValidationRule.php b/app/code/Magento/Customer/Model/Data/ValidationRule.php index b0b37b57968..129f46767c1 100644 --- a/app/code/Magento/Customer/Model/Data/ValidationRule.php +++ b/app/code/Magento/Customer/Model/Data/ValidationRule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Data; diff --git a/app/code/Magento/Customer/Model/EmailNotification.php b/app/code/Magento/Customer/Model/EmailNotification.php index 1aed513ef07..73d2ff210fb 100644 --- a/app/code/Magento/Customer/Model/EmailNotification.php +++ b/app/code/Magento/Customer/Model/EmailNotification.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/EmailNotificationInterface.php b/app/code/Magento/Customer/Model/EmailNotificationInterface.php index 44da1a1472a..7a984eec0f7 100644 --- a/app/code/Magento/Customer/Model/EmailNotificationInterface.php +++ b/app/code/Magento/Customer/Model/EmailNotificationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/FileProcessor.php b/app/code/Magento/Customer/Model/FileProcessor.php index 3e0ae375fcf..8354f7095ee 100644 --- a/app/code/Magento/Customer/Model/FileProcessor.php +++ b/app/code/Magento/Customer/Model/FileProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/FileUploader.php b/app/code/Magento/Customer/Model/FileUploader.php index 97dfdafdf75..d6fb867af7f 100644 --- a/app/code/Magento/Customer/Model/FileUploader.php +++ b/app/code/Magento/Customer/Model/FileUploader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Form.php b/app/code/Magento/Customer/Model/Form.php index 43a7be5b664..ac23f656861 100644 --- a/app/code/Magento/Customer/Model/Form.php +++ b/app/code/Magento/Customer/Model/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Group.php b/app/code/Magento/Customer/Model/Group.php index b3f7716868e..db6794928dc 100644 --- a/app/code/Magento/Customer/Model/Group.php +++ b/app/code/Magento/Customer/Model/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/GroupManagement.php b/app/code/Magento/Customer/Model/GroupManagement.php index 1d2d5c14345..7956d14c60e 100644 --- a/app/code/Magento/Customer/Model/GroupManagement.php +++ b/app/code/Magento/Customer/Model/GroupManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/GroupRegistry.php b/app/code/Magento/Customer/Model/GroupRegistry.php index 98bd75747f7..a157208bc49 100644 --- a/app/code/Magento/Customer/Model/GroupRegistry.php +++ b/app/code/Magento/Customer/Model/GroupRegistry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Indexer/Address/AttributeProvider.php b/app/code/Magento/Customer/Model/Indexer/Address/AttributeProvider.php index c97456975e5..11fcc0dd8c2 100644 --- a/app/code/Magento/Customer/Model/Indexer/Address/AttributeProvider.php +++ b/app/code/Magento/Customer/Model/Indexer/Address/AttributeProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Indexer\Address; diff --git a/app/code/Magento/Customer/Model/Indexer/Attribute/Filter.php b/app/code/Magento/Customer/Model/Indexer/Attribute/Filter.php index 84bc406a23e..49ed86e7a38 100644 --- a/app/code/Magento/Customer/Model/Indexer/Attribute/Filter.php +++ b/app/code/Magento/Customer/Model/Indexer/Attribute/Filter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Indexer\Attribute; diff --git a/app/code/Magento/Customer/Model/Indexer/AttributeProvider.php b/app/code/Magento/Customer/Model/Indexer/AttributeProvider.php index 599d3a863c9..b66eb3161ab 100644 --- a/app/code/Magento/Customer/Model/Indexer/AttributeProvider.php +++ b/app/code/Magento/Customer/Model/Indexer/AttributeProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Indexer; diff --git a/app/code/Magento/Customer/Model/Indexer/Source.php b/app/code/Magento/Customer/Model/Indexer/Source.php index 60522227eb2..ecb9fdaf20a 100644 --- a/app/code/Magento/Customer/Model/Indexer/Source.php +++ b/app/code/Magento/Customer/Model/Indexer/Source.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Indexer; diff --git a/app/code/Magento/Customer/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/Customer/Model/Layout/DepersonalizePlugin.php index 9ec70096d58..bc616353c48 100644 --- a/app/code/Magento/Customer/Model/Layout/DepersonalizePlugin.php +++ b/app/code/Magento/Customer/Model/Layout/DepersonalizePlugin.php @@ -2,7 +2,7 @@ /** * Depersonalize customer session data * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Layout; diff --git a/app/code/Magento/Customer/Model/Log.php b/app/code/Magento/Customer/Model/Log.php index be2be8c3a55..a2e6a5b0919 100644 --- a/app/code/Magento/Customer/Model/Log.php +++ b/app/code/Magento/Customer/Model/Log.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Logger.php b/app/code/Magento/Customer/Model/Logger.php index ff7f90adf46..e5282ebab10 100644 --- a/app/code/Magento/Customer/Model/Logger.php +++ b/app/code/Magento/Customer/Model/Logger.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Metadata/AddressCachedMetadata.php b/app/code/Magento/Customer/Model/Metadata/AddressCachedMetadata.php index 505ad31aca8..4ff1b7658a4 100644 --- a/app/code/Magento/Customer/Model/Metadata/AddressCachedMetadata.php +++ b/app/code/Magento/Customer/Model/Metadata/AddressCachedMetadata.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Metadata/AddressMetadata.php b/app/code/Magento/Customer/Model/Metadata/AddressMetadata.php index 20776e73d81..ed87a6ab85a 100644 --- a/app/code/Magento/Customer/Model/Metadata/AddressMetadata.php +++ b/app/code/Magento/Customer/Model/Metadata/AddressMetadata.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Metadata/AddressMetadataManagement.php b/app/code/Magento/Customer/Model/Metadata/AddressMetadataManagement.php index fe4a711734a..2031444bacb 100644 --- a/app/code/Magento/Customer/Model/Metadata/AddressMetadataManagement.php +++ b/app/code/Magento/Customer/Model/Metadata/AddressMetadataManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata; diff --git a/app/code/Magento/Customer/Model/Metadata/AttributeResolver.php b/app/code/Magento/Customer/Model/Metadata/AttributeResolver.php index 79b8fe78661..c77d15de2a6 100644 --- a/app/code/Magento/Customer/Model/Metadata/AttributeResolver.php +++ b/app/code/Magento/Customer/Model/Metadata/AttributeResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata; diff --git a/app/code/Magento/Customer/Model/Metadata/CachedMetadata.php b/app/code/Magento/Customer/Model/Metadata/CachedMetadata.php index d284181f651..64a36bda379 100644 --- a/app/code/Magento/Customer/Model/Metadata/CachedMetadata.php +++ b/app/code/Magento/Customer/Model/Metadata/CachedMetadata.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Metadata/CustomerCachedMetadata.php b/app/code/Magento/Customer/Model/Metadata/CustomerCachedMetadata.php index d48c94f4aa2..fd21a64a9d2 100644 --- a/app/code/Magento/Customer/Model/Metadata/CustomerCachedMetadata.php +++ b/app/code/Magento/Customer/Model/Metadata/CustomerCachedMetadata.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Metadata/CustomerMetadata.php b/app/code/Magento/Customer/Model/Metadata/CustomerMetadata.php index cc0ef42e830..ff7dec3fc7d 100644 --- a/app/code/Magento/Customer/Model/Metadata/CustomerMetadata.php +++ b/app/code/Magento/Customer/Model/Metadata/CustomerMetadata.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Metadata/CustomerMetadataManagement.php b/app/code/Magento/Customer/Model/Metadata/CustomerMetadataManagement.php index 9c1ba68c968..ba956587121 100644 --- a/app/code/Magento/Customer/Model/Metadata/CustomerMetadataManagement.php +++ b/app/code/Magento/Customer/Model/Metadata/CustomerMetadataManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata; diff --git a/app/code/Magento/Customer/Model/Metadata/ElementFactory.php b/app/code/Magento/Customer/Model/Metadata/ElementFactory.php index 16067634213..bd503e1cfd3 100644 --- a/app/code/Magento/Customer/Model/Metadata/ElementFactory.php +++ b/app/code/Magento/Customer/Model/Metadata/ElementFactory.php @@ -2,7 +2,7 @@ /** * Customer Form Element Factory * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Metadata/Form.php b/app/code/Magento/Customer/Model/Metadata/Form.php index ca0c0398780..9875fb8041d 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form.php +++ b/app/code/Magento/Customer/Model/Metadata/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata; diff --git a/app/code/Magento/Customer/Model/Metadata/Form/AbstractData.php b/app/code/Magento/Customer/Model/Metadata/Form/AbstractData.php index ef698e83d23..cf545dbe72f 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/AbstractData.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/AbstractData.php @@ -2,7 +2,7 @@ /** * Form Element Abstract Data Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Boolean.php b/app/code/Magento/Customer/Model/Metadata/Form/Boolean.php index 0b2c8295f24..6f0eec34737 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/Boolean.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/Boolean.php @@ -2,7 +2,7 @@ /** * Form Element Boolean Data Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Date.php b/app/code/Magento/Customer/Model/Metadata/Form/Date.php index d6e908819a8..658dd5b3b46 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/Date.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/Date.php @@ -2,7 +2,7 @@ /** * Form Element Date Data Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Model/Metadata/Form/File.php b/app/code/Magento/Customer/Model/Metadata/Form/File.php index f3e722a75c6..c0a3d195f97 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/File.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/File.php @@ -2,7 +2,7 @@ /** * Form Element File Data Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Hidden.php b/app/code/Magento/Customer/Model/Metadata/Form/Hidden.php index d29ce525e8e..9d02ff295be 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/Hidden.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/Hidden.php @@ -2,7 +2,7 @@ /** * Form Element Hidden Data Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Image.php b/app/code/Magento/Customer/Model/Metadata/Form/Image.php index 4a03d1b3842..4a4c77739e2 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/Image.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/Image.php @@ -2,7 +2,7 @@ /** * Form Element Image Data Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Multiline.php b/app/code/Magento/Customer/Model/Metadata/Form/Multiline.php index f9b80b6c0a4..d9d7c1e71e6 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/Multiline.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/Multiline.php @@ -2,7 +2,7 @@ /** * Form Element Multiline Data Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Multiselect.php b/app/code/Magento/Customer/Model/Metadata/Form/Multiselect.php index a6c3b4b48eb..cfa864e8fc6 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/Multiselect.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/Multiselect.php @@ -2,7 +2,7 @@ /** * Form Element Multiselect Data Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Postcode.php b/app/code/Magento/Customer/Model/Metadata/Form/Postcode.php index 5d38d87f82e..18e32e89926 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/Postcode.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/Postcode.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Select.php b/app/code/Magento/Customer/Model/Metadata/Form/Select.php index 79c6e4eb111..491a70a688a 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/Select.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/Select.php @@ -2,7 +2,7 @@ /** * Form Element Select Data Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Text.php b/app/code/Magento/Customer/Model/Metadata/Form/Text.php index 6ff6a51a632..6bcd268916e 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/Text.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/Text.php @@ -2,7 +2,7 @@ /** * Form Element Text Data Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Textarea.php b/app/code/Magento/Customer/Model/Metadata/Form/Textarea.php index b8bfa3f9b69..4fd98105527 100644 --- a/app/code/Magento/Customer/Model/Metadata/Form/Textarea.php +++ b/app/code/Magento/Customer/Model/Metadata/Form/Textarea.php @@ -2,7 +2,7 @@ /** * Form Element Textarea Data Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Model/Metadata/FormFactory.php b/app/code/Magento/Customer/Model/Metadata/FormFactory.php index b2d924553cb..ac3730c419a 100644 --- a/app/code/Magento/Customer/Model/Metadata/FormFactory.php +++ b/app/code/Magento/Customer/Model/Metadata/FormFactory.php @@ -2,7 +2,7 @@ /** * Customer Form Element Factory * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata; diff --git a/app/code/Magento/Customer/Model/Metadata/Validator.php b/app/code/Magento/Customer/Model/Metadata/Validator.php index d6a087175b7..a2b6d63a907 100644 --- a/app/code/Magento/Customer/Model/Metadata/Validator.php +++ b/app/code/Magento/Customer/Model/Metadata/Validator.php @@ -1,7 +1,7 @@ <?php /** * Attribute data validator - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Metadata; diff --git a/app/code/Magento/Customer/Model/Observer/Grid.php b/app/code/Magento/Customer/Model/Observer/Grid.php index c7f3d09acd8..b7572464376 100644 --- a/app/code/Magento/Customer/Model/Observer/Grid.php +++ b/app/code/Magento/Customer/Model/Observer/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Observer; diff --git a/app/code/Magento/Customer/Model/Options.php b/app/code/Magento/Customer/Model/Options.php index 45823b19a43..8eb4b376270 100644 --- a/app/code/Magento/Customer/Model/Options.php +++ b/app/code/Magento/Customer/Model/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Plugin/AllowedCountries.php b/app/code/Magento/Customer/Model/Plugin/AllowedCountries.php index 157643bdfe5..c127fb9521e 100644 --- a/app/code/Magento/Customer/Model/Plugin/AllowedCountries.php +++ b/app/code/Magento/Customer/Model/Plugin/AllowedCountries.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Plugin/CustomerAuthorization.php b/app/code/Magento/Customer/Model/Plugin/CustomerAuthorization.php index 971ced8b037..e45d292742a 100644 --- a/app/code/Magento/Customer/Model/Plugin/CustomerAuthorization.php +++ b/app/code/Magento/Customer/Model/Plugin/CustomerAuthorization.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/Plugin/CustomerNotification.php b/app/code/Magento/Customer/Model/Plugin/CustomerNotification.php index 07d3cc7b06f..c064c07086d 100644 --- a/app/code/Magento/Customer/Model/Plugin/CustomerNotification.php +++ b/app/code/Magento/Customer/Model/Plugin/CustomerNotification.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Plugin; diff --git a/app/code/Magento/Customer/Model/Plugin/CustomerRepository/TransactionWrapper.php b/app/code/Magento/Customer/Model/Plugin/CustomerRepository/TransactionWrapper.php index 7b78cecdd1c..4b834c3e62d 100644 --- a/app/code/Magento/Customer/Model/Plugin/CustomerRepository/TransactionWrapper.php +++ b/app/code/Magento/Customer/Model/Plugin/CustomerRepository/TransactionWrapper.php @@ -2,7 +2,7 @@ /** * Plugin for \Magento\Customer\Api\CustomerRepositoryInterface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Plugin\CustomerRepository; diff --git a/app/code/Magento/Customer/Model/Registration.php b/app/code/Magento/Customer/Model/Registration.php index 228ceb0eaee..c794a9f7acb 100644 --- a/app/code/Magento/Customer/Model/Registration.php +++ b/app/code/Magento/Customer/Model/Registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Renderer/Region.php b/app/code/Magento/Customer/Model/Renderer/Region.php index 7f6be38c07a..d28eb7b0d3d 100644 --- a/app/code/Magento/Customer/Model/Renderer/Region.php +++ b/app/code/Magento/Customer/Model/Renderer/Region.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Renderer; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address.php b/app/code/Magento/Customer/Model/ResourceModel/Address.php index 1d4494dc0a8..c16b04d0447 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Address.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Address.php @@ -2,7 +2,7 @@ /** * Customer address entity resource model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Backend/Region.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Backend/Region.php index d6ccfe1cf3c..15558b4dc33 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Backend/Region.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Backend/Region.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Address\Attribute\Backend; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Collection.php index 8d689843e1f..16d52dfce69 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Collection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Country.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Country.php index 13d23d91880..6438d485ad4 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Country.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsites.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsites.php index 16ceee8a3f2..2fb02ee05ca 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsites.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsites.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Region.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Region.php index 7c312483842..0ab5a7dd0c1 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Region.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Region.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Collection.php index b9ced0ac408..62f263601d8 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Address/Collection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Address/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Address; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/DeleteRelation.php b/app/code/Magento/Customer/Model/ResourceModel/Address/DeleteRelation.php index 2813885d30f..8a29fdcab6f 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Address/DeleteRelation.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Address/DeleteRelation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Address; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Relation.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Relation.php index 4e55d6effd8..0872008d7bb 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Address/Relation.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Address/Relation.php @@ -2,7 +2,7 @@ /** * Customer address entity resource model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Address; diff --git a/app/code/Magento/Customer/Model/ResourceModel/AddressRepository.php b/app/code/Magento/Customer/Model/ResourceModel/AddressRepository.php index 24df57e07e8..44b43ad6e93 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/AddressRepository.php +++ b/app/code/Magento/Customer/Model/ResourceModel/AddressRepository.php @@ -2,7 +2,7 @@ /** * Customer address entity resource model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Attribute.php b/app/code/Magento/Customer/Model/ResourceModel/Attribute.php index f126b440106..2dfe24a351e 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Attribute.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/Attribute/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Attribute/Collection.php index 9fed88169bb..2f619be02be 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Attribute/Collection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Attribute/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/Customer.php b/app/code/Magento/Customer/Model/ResourceModel/Customer.php index a225dcdc189..b6124d61e2c 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Customer.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Customer/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Customer/Collection.php index 7c9201f64eb..5142bbca966 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Customer/Collection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Customer/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Customer; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Customer/Grid.php b/app/code/Magento/Customer/Model/ResourceModel/Customer/Grid.php index 12faa3c920f..52e2e64eaf3 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Customer/Grid.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Customer/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Customer; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Customer/Indexer/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Customer/Indexer/Collection.php index 5b9716af539..6ea6ca50855 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Customer/Indexer/Collection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Customer/Indexer/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Customer\Indexer; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Customer/Relation.php b/app/code/Magento/Customer/Model/ResourceModel/Customer/Relation.php index 7c168dfe887..729968df8ad 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Customer/Relation.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Customer/Relation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/CustomerRepository.php b/app/code/Magento/Customer/Model/ResourceModel/CustomerRepository.php index 16896063709..10f969db430 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/CustomerRepository.php +++ b/app/code/Magento/Customer/Model/ResourceModel/CustomerRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/Db/VersionControl/AddressSnapshot.php b/app/code/Magento/Customer/Model/ResourceModel/Db/VersionControl/AddressSnapshot.php index 27f335d125b..192a9ec4fe9 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Db/VersionControl/AddressSnapshot.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Db/VersionControl/AddressSnapshot.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Db\VersionControl; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute.php b/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute.php index 2465b1ec521..b50ee0528c6 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Form; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute/Collection.php index 7715633d253..36173cf9ae0 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute/Collection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Form\Attribute; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Grid/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Grid/Collection.php index 97c095656c5..2cc935942e6 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Grid/Collection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/Group.php b/app/code/Magento/Customer/Model/ResourceModel/Group.php index 5fb02997cd7..af1231a0a22 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Group.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Group/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Group/Collection.php index fa57ece5369..b93f3381b36 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Group/Collection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Group/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Group; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/Collection.php index 4adfb8b360b..0f0023b306f 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/Collection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/Collection.php @@ -2,7 +2,7 @@ /** * Customer group collection * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Group\Grid; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/ServiceCollection.php b/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/ServiceCollection.php index 30ed17dce34..e4d0a4e7fb0 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/ServiceCollection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/ServiceCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/GroupRepository.php b/app/code/Magento/Customer/Model/ResourceModel/GroupRepository.php index 044616f141c..95dfbb3c3ae 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/GroupRepository.php +++ b/app/code/Magento/Customer/Model/ResourceModel/GroupRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/Online/Grid/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Online/Grid/Collection.php index 85ab878b502..e75cd71ac4c 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Online/Grid/Collection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Online/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Online\Grid; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Setup/PropertyMapper.php b/app/code/Magento/Customer/Model/ResourceModel/Setup/PropertyMapper.php index cf802524842..9afcb76528e 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Setup/PropertyMapper.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Setup/PropertyMapper.php @@ -2,7 +2,7 @@ /** * Customer attribute property mapper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Setup; diff --git a/app/code/Magento/Customer/Model/ResourceModel/Visitor.php b/app/code/Magento/Customer/Model/ResourceModel/Visitor.php index 7ceebc352b1..8a86de63d67 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Visitor.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Visitor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Model/ResourceModel/Visitor/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Visitor/Collection.php index 9e3f8fab30a..6f4f8783ffa 100644 --- a/app/code/Magento/Customer/Model/ResourceModel/Visitor/Collection.php +++ b/app/code/Magento/Customer/Model/ResourceModel/Visitor/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\ResourceModel\Visitor; diff --git a/app/code/Magento/Customer/Model/Session.php b/app/code/Magento/Customer/Model/Session.php index 83e8dc2025d..e8a7775d900 100644 --- a/app/code/Magento/Customer/Model/Session.php +++ b/app/code/Magento/Customer/Model/Session.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Session/Storage.php b/app/code/Magento/Customer/Model/Session/Storage.php index cdb2514d48e..b182132b130 100644 --- a/app/code/Magento/Customer/Model/Session/Storage.php +++ b/app/code/Magento/Customer/Model/Session/Storage.php @@ -2,7 +2,7 @@ /** * Customer session storage * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Session; diff --git a/app/code/Magento/Customer/Model/Url.php b/app/code/Magento/Customer/Model/Url.php index 47009371754..3c667077d8c 100644 --- a/app/code/Magento/Customer/Model/Url.php +++ b/app/code/Magento/Customer/Model/Url.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Vat.php b/app/code/Magento/Customer/Model/Vat.php index a1d22ccf607..32b312e994c 100644 --- a/app/code/Magento/Customer/Model/Vat.php +++ b/app/code/Magento/Customer/Model/Vat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; diff --git a/app/code/Magento/Customer/Model/Visitor.php b/app/code/Magento/Customer/Model/Visitor.php index 9337ae482ba..bda877c92e7 100644 --- a/app/code/Magento/Customer/Model/Visitor.php +++ b/app/code/Magento/Customer/Model/Visitor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Observer/AfterAddressSaveObserver.php b/app/code/Magento/Customer/Observer/AfterAddressSaveObserver.php index 3641ead011d..89cd1758c64 100644 --- a/app/code/Magento/Customer/Observer/AfterAddressSaveObserver.php +++ b/app/code/Magento/Customer/Observer/AfterAddressSaveObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Observer/BeforeAddressSaveObserver.php b/app/code/Magento/Customer/Observer/BeforeAddressSaveObserver.php index 50ba1019894..84223ffecb5 100644 --- a/app/code/Magento/Customer/Observer/BeforeAddressSaveObserver.php +++ b/app/code/Magento/Customer/Observer/BeforeAddressSaveObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Observer/CustomerLoginSuccessObserver.php b/app/code/Magento/Customer/Observer/CustomerLoginSuccessObserver.php index ba79da51c2f..80d6008e63c 100644 --- a/app/code/Magento/Customer/Observer/CustomerLoginSuccessObserver.php +++ b/app/code/Magento/Customer/Observer/CustomerLoginSuccessObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Observer; diff --git a/app/code/Magento/Customer/Observer/LogLastLoginAtObserver.php b/app/code/Magento/Customer/Observer/LogLastLoginAtObserver.php index e36c174c224..9e6f1cb16b8 100644 --- a/app/code/Magento/Customer/Observer/LogLastLoginAtObserver.php +++ b/app/code/Magento/Customer/Observer/LogLastLoginAtObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Observer; diff --git a/app/code/Magento/Customer/Observer/LogLastLogoutAtObserver.php b/app/code/Magento/Customer/Observer/LogLastLogoutAtObserver.php index 22d5c206071..348fa816c62 100644 --- a/app/code/Magento/Customer/Observer/LogLastLogoutAtObserver.php +++ b/app/code/Magento/Customer/Observer/LogLastLogoutAtObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Observer; diff --git a/app/code/Magento/Customer/Observer/UpgradeCustomerPasswordObserver.php b/app/code/Magento/Customer/Observer/UpgradeCustomerPasswordObserver.php index 8566a0f5082..1c1bda2fa60 100644 --- a/app/code/Magento/Customer/Observer/UpgradeCustomerPasswordObserver.php +++ b/app/code/Magento/Customer/Observer/UpgradeCustomerPasswordObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Observer/Visitor/AbstractVisitorObserver.php b/app/code/Magento/Customer/Observer/Visitor/AbstractVisitorObserver.php index fb04b2e08a4..abc12504908 100644 --- a/app/code/Magento/Customer/Observer/Visitor/AbstractVisitorObserver.php +++ b/app/code/Magento/Customer/Observer/Visitor/AbstractVisitorObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Observer/Visitor/BindCustomerLoginObserver.php b/app/code/Magento/Customer/Observer/Visitor/BindCustomerLoginObserver.php index 76f4144807a..fee0dd6466f 100644 --- a/app/code/Magento/Customer/Observer/Visitor/BindCustomerLoginObserver.php +++ b/app/code/Magento/Customer/Observer/Visitor/BindCustomerLoginObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Observer/Visitor/BindCustomerLogoutObserver.php b/app/code/Magento/Customer/Observer/Visitor/BindCustomerLogoutObserver.php index c98bf9b6e88..47f5d9c375a 100644 --- a/app/code/Magento/Customer/Observer/Visitor/BindCustomerLogoutObserver.php +++ b/app/code/Magento/Customer/Observer/Visitor/BindCustomerLogoutObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Observer/Visitor/BindQuoteCreateObserver.php b/app/code/Magento/Customer/Observer/Visitor/BindQuoteCreateObserver.php index 806387f260f..8d909b88aeb 100644 --- a/app/code/Magento/Customer/Observer/Visitor/BindQuoteCreateObserver.php +++ b/app/code/Magento/Customer/Observer/Visitor/BindQuoteCreateObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Observer/Visitor/BindQuoteDestroyObserver.php b/app/code/Magento/Customer/Observer/Visitor/BindQuoteDestroyObserver.php index 54efb8e9dc8..00847b303e9 100644 --- a/app/code/Magento/Customer/Observer/Visitor/BindQuoteDestroyObserver.php +++ b/app/code/Magento/Customer/Observer/Visitor/BindQuoteDestroyObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Observer/Visitor/InitByRequestObserver.php b/app/code/Magento/Customer/Observer/Visitor/InitByRequestObserver.php index 1b6668530d5..1619b2a6e17 100644 --- a/app/code/Magento/Customer/Observer/Visitor/InitByRequestObserver.php +++ b/app/code/Magento/Customer/Observer/Visitor/InitByRequestObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Observer/Visitor/SaveByRequestObserver.php b/app/code/Magento/Customer/Observer/Visitor/SaveByRequestObserver.php index b3573e2dee1..3005df38e24 100644 --- a/app/code/Magento/Customer/Observer/Visitor/SaveByRequestObserver.php +++ b/app/code/Magento/Customer/Observer/Visitor/SaveByRequestObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Setup/CustomerSetup.php b/app/code/Magento/Customer/Setup/CustomerSetup.php index 2794db98ff6..5e7da6fbeb7 100644 --- a/app/code/Magento/Customer/Setup/CustomerSetup.php +++ b/app/code/Magento/Customer/Setup/CustomerSetup.php @@ -2,7 +2,7 @@ /** * Customer resource setup model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Setup; diff --git a/app/code/Magento/Customer/Setup/InstallData.php b/app/code/Magento/Customer/Setup/InstallData.php index 1e931be36fc..c7db0b88b57 100644 --- a/app/code/Magento/Customer/Setup/InstallData.php +++ b/app/code/Magento/Customer/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Setup/InstallSchema.php b/app/code/Magento/Customer/Setup/InstallSchema.php index 7420960e4a7..bba058cde83 100644 --- a/app/code/Magento/Customer/Setup/InstallSchema.php +++ b/app/code/Magento/Customer/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Setup/UpgradeData.php b/app/code/Magento/Customer/Setup/UpgradeData.php index c03a1dec02d..2131df16158 100644 --- a/app/code/Magento/Customer/Setup/UpgradeData.php +++ b/app/code/Magento/Customer/Setup/UpgradeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Setup/UpgradeSchema.php b/app/code/Magento/Customer/Setup/UpgradeSchema.php index 46ccd83fcaa..c4ab78f362f 100755 --- a/app/code/Magento/Customer/Setup/UpgradeSchema.php +++ b/app/code/Magento/Customer/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/AuthenticationPopupTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/AuthenticationPopupTest.php index 10191c68485..67a3fb8f3a5 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Account/AuthenticationPopupTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Account/AuthenticationPopupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/AuthorizationLinkTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/AuthorizationLinkTest.php index ed639e51b57..c5f71eb2220 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Account/AuthorizationLinkTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Account/AuthorizationLinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/CustomerTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/CustomerTest.php index e29f8dea18e..e04404bb4d8 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Account/CustomerTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Account/CustomerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/Dashboard/InfoTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/Dashboard/InfoTest.php index a4526236739..045d0e6c77b 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Account/Dashboard/InfoTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Account/Dashboard/InfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/LinkTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/LinkTest.php index 50f28e18163..bb19c065f49 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Account/LinkTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Account/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/RegisterLinkTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/RegisterLinkTest.php index d94640e4b7f..c8222c7a406 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Account/RegisterLinkTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Account/RegisterLinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/ResetpasswordTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/ResetpasswordTest.php index 82809ee47a7..4371b8d2657 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Account/ResetpasswordTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Account/ResetpasswordTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Address/EditTest.php b/app/code/Magento/Customer/Test/Unit/Block/Address/EditTest.php index be5c12a6476..bc924d56029 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Address/EditTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Address/EditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Address; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/NewsletterTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/NewsletterTest.php index 8ef4b576d2c..c6bcc24f50b 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/NewsletterTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/NewsletterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/ItemTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/ItemTest.php index 1b867d854af..2e4503b1843 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/ItemTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php index f0d56d5b099..f929cff6d31 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Adminhtml\Edit\Tab\View; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/ViewTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/ViewTest.php index 108ed908514..43cd3639358 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/ViewTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Adminhtml\Edit\Tab; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/UnlockButtonTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/UnlockButtonTest.php index 7cd1d79f2c9..4a77bf0bd87 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/UnlockButtonTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/UnlockButtonTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/From/Element/ImageTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/From/Element/ImageTest.php index 37bcdb5a5ae..9ba118e321a 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/From/Element/ImageTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/From/Element/ImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Adminhtml\From\Element; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Form/EditTest.php b/app/code/Magento/Customer/Test/Unit/Block/Form/EditTest.php index dd1fa910aa4..f3f7a34509a 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Form/EditTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Form/EditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Form/Login/InfoTest.php b/app/code/Magento/Customer/Test/Unit/Block/Form/Login/InfoTest.php index 078613f2cac..5149053a048 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Form/Login/InfoTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Form/Login/InfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Form\Login; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Form/RegisterTest.php b/app/code/Magento/Customer/Test/Unit/Block/Form/RegisterTest.php index c1cb0da772c..39a6370e652 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Form/RegisterTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Form/RegisterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Block/NewsletterTest.php b/app/code/Magento/Customer/Test/Unit/Block/NewsletterTest.php index 64b8e78e010..a771b4fb760 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/NewsletterTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/NewsletterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block; diff --git a/app/code/Magento/Customer/Test/Unit/Block/SectionConfigTest.php b/app/code/Magento/Customer/Test/Unit/Block/SectionConfigTest.php index 844dd3b1926..4fd2aed3cfd 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/SectionConfigTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/SectionConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Widget/AbstractWidgetTest.php b/app/code/Magento/Customer/Test/Unit/Block/Widget/AbstractWidgetTest.php index 9e8c94262f8..8619fdfbcab 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Widget/AbstractWidgetTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Widget/AbstractWidgetTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Block\Widget; diff --git a/app/code/Magento/Customer/Test/Unit/Block/Widget/DobTest.php b/app/code/Magento/Customer/Test/Unit/Block/Widget/DobTest.php index 7f90da4cb3b..61355bcb1bb 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Widget/DobTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Widget/DobTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Block/Widget/GenderTest.php b/app/code/Magento/Customer/Test/Unit/Block/Widget/GenderTest.php index bf3213f235b..7f8dd76141e 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Widget/GenderTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Widget/GenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Block/Widget/NameTest.php b/app/code/Magento/Customer/Test/Unit/Block/Widget/NameTest.php index a8c054abc94..3e96cecf32b 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Widget/NameTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Widget/NameTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Block/Widget/TaxvatTest.php b/app/code/Magento/Customer/Test/Unit/Block/Widget/TaxvatTest.php index 9b7067cefc0..df5eed7c651 100644 --- a/app/code/Magento/Customer/Test/Unit/Block/Widget/TaxvatTest.php +++ b/app/code/Magento/Customer/Test/Unit/Block/Widget/TaxvatTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Console/Command/UpgradeHashAlgorithmCommandTest.php b/app/code/Magento/Customer/Test/Unit/Console/Command/UpgradeHashAlgorithmCommandTest.php index 537c481b232..d999b5b127a 100644 --- a/app/code/Magento/Customer/Test/Unit/Console/Command/UpgradeHashAlgorithmCommandTest.php +++ b/app/code/Magento/Customer/Test/Unit/Console/Command/UpgradeHashAlgorithmCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Console\Command; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/ConfirmTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/ConfirmTest.php index 1ad64d2b519..435b1edd77a 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Account/ConfirmTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Account/ConfirmTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePasswordTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePasswordTest.php index 99f3b546eca..a339544d888 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePasswordTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePasswordTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePostTest.php index ab6bf9ac5ff..34437b2d10d 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePostTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePostTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/CreateTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/CreateTest.php index 185764c0546..dc4c80a7c24 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Account/CreateTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Account/CreateTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/EditPostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/EditPostTest.php index 667ea67ddd4..5376bb85178 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Account/EditPostTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Account/EditPostTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/ForgotPasswordPostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/ForgotPasswordPostTest.php index 18de7a0e88a..3a942e5faee 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Account/ForgotPasswordPostTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Account/ForgotPasswordPostTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/LoginPostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/LoginPostTest.php index cdfa46ddcc4..c130241ddd7 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Account/LoginPostTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Account/LoginPostTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/LogoutTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/LogoutTest.php index 27d3895a252..ee60af62ade 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Account/LogoutTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Account/LogoutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/ResetPasswordPostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/ResetPasswordPostTest.php index 6d2e06c4ddc..6b0181c341d 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Account/ResetPasswordPostTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Account/ResetPasswordPostTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Account; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Address/DeleteTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Address/DeleteTest.php index 44227ab13af..512fd10433c 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Address/DeleteTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Address/DeleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Address; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Address/FormPostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Address/FormPostTest.php index 966006c1c8f..22f8ae55490 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Address/FormPostTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Address/FormPostTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Address; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Address/UploadTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Address/UploadTest.php index 79ae5210d88..fa4759f9230 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Address/UploadTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Address/UploadTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Adminhtml\File\Address; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Customer/UploadTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Customer/UploadTest.php index 180713fe87a..1a9e6d09e65 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Customer/UploadTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Customer/UploadTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Adminhtml\File\Customer; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Group/SaveTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Group/SaveTest.php index b11fcdcf213..c26735ebb08 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Group/SaveTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Group/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Adminhtml\Group; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/IndexTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/IndexTest.php index 380602529d2..e7c468cf07c 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/IndexTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/InlineEditTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/InlineEditTest.php index 6aaa19b5620..e516a81e00e 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/InlineEditTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/InlineEditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassAssignGroupTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassAssignGroupTest.php index 0ebd13671ce..5a79b13e448 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassAssignGroupTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassAssignGroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassDeleteTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassDeleteTest.php index 41d35aa3240..1876989e1f2 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassDeleteTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassDeleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassSubscribeTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassSubscribeTest.php index 1a3c47dbc75..d80b3b3ed50 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassSubscribeTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassSubscribeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassUnsubscribeTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassUnsubscribeTest.php index bd47341f2c4..06c7ab0d9ff 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassUnsubscribeTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassUnsubscribeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/NewsletterTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/NewsletterTest.php index 6a3226c4421..b76142dea0f 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/NewsletterTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/NewsletterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ResetPasswordTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ResetPasswordTest.php index 44444935973..d2e13926c01 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ResetPasswordTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ResetPasswordTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/SaveTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/SaveTest.php index 11fd1b5a7fc..7fcb325ff35 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/SaveTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ValidateTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ValidateTest.php index 34b44671ce0..ace442a7ed0 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ValidateTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ValidateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ViewfileTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ViewfileTest.php index 853afa4024c..adc7cc0501e 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ViewfileTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ViewfileTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Locks/UnlockTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Locks/UnlockTest.php index ef9a3c8a7c8..a0f14b7592f 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Locks/UnlockTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Locks/UnlockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Adminhtml\Locks; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/System/Config/Validatevat/ValidateTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/System/Config/Validatevat/ValidateTest.php index 4463736c30e..2ab458bb103 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/System/Config/Validatevat/ValidateTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/System/Config/Validatevat/ValidateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Adminhtml\System\Config\Validatevat; diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Ajax/LoginTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Ajax/LoginTest.php index d678ac0eaf7..c399eac1f2d 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Ajax/LoginTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Ajax/LoginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Plugin/AccountTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Plugin/AccountTest.php index b9c05d4005b..66862cde062 100644 --- a/app/code/Magento/Customer/Test/Unit/Controller/Plugin/AccountTest.php +++ b/app/code/Magento/Customer/Test/Unit/Controller/Plugin/AccountTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Controller\Plugin; diff --git a/app/code/Magento/Customer/Test/Unit/CustomerData/Plugin/SessionCheckerTest.php b/app/code/Magento/Customer/Test/Unit/CustomerData/Plugin/SessionCheckerTest.php index 01a875c75a8..54d68e44220 100644 --- a/app/code/Magento/Customer/Test/Unit/CustomerData/Plugin/SessionCheckerTest.php +++ b/app/code/Magento/Customer/Test/Unit/CustomerData/Plugin/SessionCheckerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\CustomerData\Plugin; diff --git a/app/code/Magento/Customer/Test/Unit/CustomerData/Section/IdentifierTest.php b/app/code/Magento/Customer/Test/Unit/CustomerData/Section/IdentifierTest.php index 7e8531e0f59..5996cada64f 100644 --- a/app/code/Magento/Customer/Test/Unit/CustomerData/Section/IdentifierTest.php +++ b/app/code/Magento/Customer/Test/Unit/CustomerData/Section/IdentifierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/CustomerData/SectionConfigConverterTest.php b/app/code/Magento/Customer/Test/Unit/CustomerData/SectionConfigConverterTest.php index b14cb501226..037fdad3faa 100644 --- a/app/code/Magento/Customer/Test/Unit/CustomerData/SectionConfigConverterTest.php +++ b/app/code/Magento/Customer/Test/Unit/CustomerData/SectionConfigConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/CustomerData/SectionPoolTest.php b/app/code/Magento/Customer/Test/Unit/CustomerData/SectionPoolTest.php index 452573454ba..859b903dda8 100644 --- a/app/code/Magento/Customer/Test/Unit/CustomerData/SectionPoolTest.php +++ b/app/code/Magento/Customer/Test/Unit/CustomerData/SectionPoolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/CustomerData/_files/sections.xml b/app/code/Magento/Customer/Test/Unit/CustomerData/_files/sections.xml index 752642f2458..a634c6824be 100644 --- a/app/code/Magento/Customer/Test/Unit/CustomerData/_files/sections.xml +++ b/app/code/Magento/Customer/Test/Unit/CustomerData/_files/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/Test/Unit/Helper/AddressTest.php b/app/code/Magento/Customer/Test/Unit/Helper/AddressTest.php index 4329c33f316..13bd067dbff 100644 --- a/app/code/Magento/Customer/Test/Unit/Helper/AddressTest.php +++ b/app/code/Magento/Customer/Test/Unit/Helper/AddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerAddressTest.php b/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerAddressTest.php index c6b067cf661..1e46ac1ce82 100644 --- a/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerAddressTest.php +++ b/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerAddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Helper\Session; diff --git a/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerTest.php b/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerTest.php index 6ef8cb67751..4a9b78bc121 100644 --- a/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerTest.php +++ b/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Helper/ViewTest.php b/app/code/Magento/Customer/Test/Unit/Helper/ViewTest.php index c4617559d15..3efab06d383 100644 --- a/app/code/Magento/Customer/Test/Unit/Helper/ViewTest.php +++ b/app/code/Magento/Customer/Test/Unit/Helper/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Helper; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Account/RedirectTest.php b/app/code/Magento/Customer/Test/Unit/Model/Account/RedirectTest.php index 47b7ea669de..9c0a8cf20f7 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Account/RedirectTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Account/RedirectTest.php @@ -2,7 +2,7 @@ /** * Unit test for Magento\Customer\Test\Unit\Model\Account\Redirect * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/AccountManagementTest.php b/app/code/Magento/Customer/Test/Unit/Model/AccountManagementTest.php index 28697fa5cf8..ebb64e7e652 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/AccountManagementTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/AccountManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/AbstractAddressTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/AbstractAddressTest.php index ba833221aba..5b2d0afe7c7 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/AbstractAddressTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/AbstractAddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ConverterTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ConverterTest.php index 866a3cc622a..2ab773e698a 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ConverterTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Address\Config; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ReaderTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ReaderTest.php index 8c31fcaec72..2c99b7bba4b 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ReaderTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ReaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Address\Config; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/SchemaLocatorTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/SchemaLocatorTest.php index c5acccc7550..3a65468394a 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Address\Config; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/XsdTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/XsdTest.php index c0b0cd8fc92..1b8fc226aae 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/XsdTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/XsdTest.php @@ -2,7 +2,7 @@ /** * Test for validation rules implemented by XSD schema for customer address format configuration * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Address\Config; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.php index 05e5f369148..14e70d2a325 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.xml b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.xml index 13aeab6257e..11d1672e749 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.xml +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_one.xml b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_one.xml index cbb32e5347c..fe42eff100f 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_one.xml +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_one.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_two.xml b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_two.xml index c5a18ed44d4..0b46b5291ec 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_two.xml +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_two.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/ConfigTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/ConfigTest.php index 2b4a93084c7..9bb5f39d218 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/ConfigTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Address; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/MapperTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/MapperTest.php index cea1bc43001..2493272fb90 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/MapperTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/MapperTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Validator/PostcodeTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Validator/PostcodeTest.php index c03fe817b10..7584e9d505b 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Address/Validator/PostcodeTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Address/Validator/PostcodeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Address\Validator; diff --git a/app/code/Magento/Customer/Test/Unit/Model/AddressRegistryTest.php b/app/code/Magento/Customer/Test/Unit/Model/AddressRegistryTest.php index 11bed26ad97..88e53eca7bc 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/AddressRegistryTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/AddressRegistryTest.php @@ -2,7 +2,7 @@ /** * Unit test for converter \Magento\Customer\Model\AddressRegistry * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/AddressTest.php b/app/code/Magento/Customer/Test/Unit/Model/AddressTest.php index c8776211ff5..a1791083a4c 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/AddressTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/AddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/App/Action/ContextPluginTest.php b/app/code/Magento/Customer/Test/Unit/Model/App/Action/ContextPluginTest.php index 985e2ecb7ef..223957062c0 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/App/Action/ContextPluginTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/App/Action/ContextPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Attribute/Backend/BooleanTest.php b/app/code/Magento/Customer/Test/Unit/Model/Attribute/Backend/BooleanTest.php index 9c5e7ad697d..3510098503f 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Attribute/Backend/BooleanTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Attribute/Backend/BooleanTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Attribute/Data/PostcodeTest.php b/app/code/Magento/Customer/Test/Unit/Model/Attribute/Data/PostcodeTest.php index 2001cf0d898..ad0d1305986 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Attribute/Data/PostcodeTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Attribute/Data/PostcodeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/AttributeMetadatConverterTest.php b/app/code/Magento/Customer/Test/Unit/Model/AttributeMetadatConverterTest.php index c7182a51651..7e1ae0dbd6e 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/AttributeMetadatConverterTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/AttributeMetadatConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/AttributeTest.php b/app/code/Magento/Customer/Test/Unit/Model/AttributeTest.php index 0cec77e6380..ea1c783dd1b 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/AttributeTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/AuthenticationTest.php b/app/code/Magento/Customer/Test/Unit/Model/AuthenticationTest.php index 26c253d46d1..5a282486422 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/AuthenticationTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/AuthenticationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Authorization/CustomerSessionUserContextTest.php b/app/code/Magento/Customer/Test/Unit/Model/Authorization/CustomerSessionUserContextTest.php index 5255ee1b4ca..9d72a5c0fdb 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Authorization/CustomerSessionUserContextTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Authorization/CustomerSessionUserContextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Backend/CustomerTest.php b/app/code/Magento/Customer/Test/Unit/Model/Backend/CustomerTest.php index 9c423183922..751766b84a1 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Backend/CustomerTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Backend/CustomerTest.php @@ -2,7 +2,7 @@ /** * Unit test for customer adminhtml model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Checkout/ConfigProviderTest.php b/app/code/Magento/Customer/Test/Unit/Model/Checkout/ConfigProviderTest.php index c74eaf54549..c6bf6af0410 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Checkout/ConfigProviderTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Checkout/ConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Checkout; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefaultTest.php b/app/code/Magento/Customer/Test/Unit/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefaultTest.php index 08eb3ec761a..be0c6ed2bb5 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefaultTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefaultTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Config\Backend\CreateAccount; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Address/TypeTest.php b/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Address/TypeTest.php index 42f1b95d2c6..7c564fe0caf 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Address/TypeTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Address/TypeTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Config\Source\Address; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Group/MultiselectTest.php b/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Group/MultiselectTest.php index bc64351f3d0..0f530ba6f5a 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Group/MultiselectTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Group/MultiselectTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Config\Source\Group; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Config/Source/GroupTest.php b/app/code/Magento/Customer/Test/Unit/Model/Config/Source/GroupTest.php index 55b495f9c41..7602e13e80b 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Config/Source/GroupTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Config/Source/GroupTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/BillingTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/BillingTest.php index 4d7a9b96919..6d4d08e12e9 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/BillingTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/BillingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Customer\Attribute\Backend; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/PasswordTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/PasswordTest.php index 6d28c5df949..a0711484b90 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/PasswordTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/PasswordTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/ShippingTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/ShippingTest.php index fb2b212ab72..a72e60d7b2e 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/ShippingTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/ShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/StoreTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/StoreTest.php index 120f87acc02..d923cda1144 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/StoreTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/StoreTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/WebsiteTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/WebsiteTest.php index e3a26819688..0e5753e5ce8 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/WebsiteTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/WebsiteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Source/WebsiteTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Source/WebsiteTest.php index 32dfc277fa4..81b2bfb6296 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Source/WebsiteTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Source/WebsiteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Customer\Attribute\Source; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/DataProviderTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/DataProviderTest.php index 1077736bd44..45e9494804b 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Customer/DataProviderTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Customer/DataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Customer; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/NotificationStorageTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/NotificationStorageTest.php index 644d0a2d701..932361bd896 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Customer/NotificationStorageTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Customer/NotificationStorageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Customer; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Source/GroupTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Source/GroupTest.php index d9ca3bdc1ba..7a1eadb4b37 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Customer/Source/GroupTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Customer/Source/GroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Customer\Source; diff --git a/app/code/Magento/Customer/Test/Unit/Model/CustomerAuthUpdateTest.php b/app/code/Magento/Customer/Test/Unit/Model/CustomerAuthUpdateTest.php index f32338a6a32..d8fba56ff85 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/CustomerAuthUpdateTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/CustomerAuthUpdateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/CustomerExtractorTest.php b/app/code/Magento/Customer/Test/Unit/Model/CustomerExtractorTest.php index a5ee4b01d6b..0653b7fc727 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/CustomerExtractorTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/CustomerExtractorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/CustomerManagementTest.php b/app/code/Magento/Customer/Test/Unit/Model/CustomerManagementTest.php index d65535dabf3..6c1960d09c7 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/CustomerManagementTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/CustomerManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/CustomerRegistryTest.php b/app/code/Magento/Customer/Test/Unit/Model/CustomerRegistryTest.php index 91227f8609d..589cc599b55 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/CustomerRegistryTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/CustomerRegistryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/CustomerTest.php b/app/code/Magento/Customer/Test/Unit/Model/CustomerTest.php index 667f62e735e..50a8434ff8c 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/CustomerTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/CustomerTest.php @@ -2,7 +2,7 @@ /** * Unit test for customer service layer \Magento\Customer\Model\Customer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/EmailNotificationTest.php b/app/code/Magento/Customer/Test/Unit/Model/EmailNotificationTest.php index 5ffc9b05636..37e488d6469 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/EmailNotificationTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/EmailNotificationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/FileProcessorTest.php b/app/code/Magento/Customer/Test/Unit/Model/FileProcessorTest.php index 8a0cacf02ba..bb92ff41e88 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/FileProcessorTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/FileProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/FileUploaderTest.php b/app/code/Magento/Customer/Test/Unit/Model/FileUploaderTest.php index 8a415a88833..3285903e8c6 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/FileUploaderTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/FileUploaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/GroupRegistryTest.php b/app/code/Magento/Customer/Test/Unit/Model/GroupRegistryTest.php index 3211eb7e511..b1e2819f364 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/GroupRegistryTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/GroupRegistryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Indexer/Attribute/FilterTest.php b/app/code/Magento/Customer/Test/Unit/Model/Indexer/Attribute/FilterTest.php index 3762a48ec35..d2af6e15a5e 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Indexer/Attribute/FilterTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Indexer/Attribute/FilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Indexer\Attribute; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Indexer/AttributeProviderTest.php b/app/code/Magento/Customer/Test/Unit/Model/Indexer/AttributeProviderTest.php index b29a61c5748..a95f3649c9e 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Indexer/AttributeProviderTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Indexer/AttributeProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Indexer; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Layout/DepersonalizePluginTest.php b/app/code/Magento/Customer/Test/Unit/Model/Layout/DepersonalizePluginTest.php index 6f9c7f0854a..2388347254e 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Layout/DepersonalizePluginTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Layout/DepersonalizePluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Layout; diff --git a/app/code/Magento/Customer/Test/Unit/Model/LogTest.php b/app/code/Magento/Customer/Test/Unit/Model/LogTest.php index be4bd4027d1..1a00bb79acd 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/LogTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/LogTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/LoggerTest.php b/app/code/Magento/Customer/Test/Unit/Model/LoggerTest.php index 4022aa3327d..a6678ede285 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/LoggerTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/LoggerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataManagementTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataManagementTest.php index 0ecff45b6bd..22206f4dd98 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataManagementTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataTest.php index 1b1eadc5083..83235a357f7 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeResolverTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeResolverTest.php index 04159f95140..6165a3bad38 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeResolverTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/CustomerMetadataManagementTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/CustomerMetadataManagementTest.php index 66ae16c0c40..226638813da 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/CustomerMetadataManagementTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/CustomerMetadataManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/ElementFactoryTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/ElementFactoryTest.php index d5dd4dc4ace..04f7da946b5 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/ElementFactoryTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/ElementFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractDataTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractDataTest.php index 2e0f538e093..ad82529950f 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractDataTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractDataTest.php @@ -2,7 +2,7 @@ /** * test Magento\Customer\Model\Metadata\Form\AbstractData * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractFormTestCase.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractFormTestCase.php index a1d466e1901..7af99740db4 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractFormTestCase.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractFormTestCase.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/BooleanTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/BooleanTest.php index d2106d66624..7fbbf687333 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/BooleanTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/BooleanTest.php @@ -2,7 +2,7 @@ /** * test Magento\Customer\Model\Metadata\Form\Boolean * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/DateTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/DateTest.php index c244940de4e..dee3e3a98d0 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/DateTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/DateTest.php @@ -2,7 +2,7 @@ /** * test Magento\Customer\Model\Metadata\Form\Date * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ExtendsAbstractData.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ExtendsAbstractData.php index 21e0c2d928a..400d0514cec 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ExtendsAbstractData.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ExtendsAbstractData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/FileTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/FileTest.php index 081d0b88e63..48683299223 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/FileTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/FileTest.php @@ -2,7 +2,7 @@ /** * Magento\Customer\Model\Metadata\Form\File * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/HiddenTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/HiddenTest.php index 58bf6fbd6db..3692904580c 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/HiddenTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/HiddenTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ImageTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ImageTest.php index 8faaff706df..e6b192d224a 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ImageTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultilineTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultilineTest.php index 5922cc251a2..1e0f844cef0 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultilineTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultilineTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultiselectTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultiselectTest.php index 66c7945060a..82943ce791e 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultiselectTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultiselectTest.php @@ -2,7 +2,7 @@ /** * test Magento\Customer\Model\Metadata\Form\Multiselect * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/PostcodeTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/PostcodeTest.php index 44157bfae02..298ab8be008 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/PostcodeTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/PostcodeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/SelectTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/SelectTest.php index d90f63fdb8a..c455eca6049 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/SelectTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/SelectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextTest.php index 1e36f5cce64..a807539e126 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextTest.php @@ -2,7 +2,7 @@ /** * test Magento\Customer\Model\Metadata\Form\Text * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextareaTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextareaTest.php index 23f7a0ff0f5..c239f525f63 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextareaTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextareaTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata\Form; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/ValidatorTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/ValidatorTest.php index 39e0396dfa9..5e61620aa53 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Metadata/ValidatorTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Metadata/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Metadata; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Plugin/AllowedCountriesTest.php b/app/code/Magento/Customer/Test/Unit/Model/Plugin/AllowedCountriesTest.php index e332d5deca6..f8e9e35c1b3 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Plugin/AllowedCountriesTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Plugin/AllowedCountriesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerNotificationTest.php b/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerNotificationTest.php index b8da1b863aa..f5d106af276 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerNotificationTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerNotificationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerRepository/TransactionWrapperTest.php b/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerRepository/TransactionWrapperTest.php index 588c36c0e24..148d11e9dd0 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerRepository/TransactionWrapperTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerRepository/TransactionWrapperTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Plugin\CustomerRepository; diff --git a/app/code/Magento/Customer/Test/Unit/Model/Renderer/RegionTest.php b/app/code/Magento/Customer/Test/Unit/Model/Renderer/RegionTest.php index 4005ce0c42c..6bbeef008ec 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/Renderer/RegionTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/Renderer/RegionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\Renderer; diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Backend/RegionTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Backend/RegionTest.php index dc88f925d95..ab752535382 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Backend/RegionTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Backend/RegionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsitesTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsitesTest.php index c91070b139a..e9a3d3fdd28 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsitesTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsitesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/DeleteRelationTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/DeleteRelationTest.php index 15e3958dd49..2c391f5d611 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/DeleteRelationTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/DeleteRelationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\ResourceModel\Address; diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/RelationTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/RelationTest.php index 4818f16365d..c02f4bd8c74 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/RelationTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/RelationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\ResourceModel\Address; diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressRepositoryTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressRepositoryTest.php index 5f6bc315acd..4a08e5561f3 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressRepositoryTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressTest.php index 27358af3722..b25f63bcfc6 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Customer/GridTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Customer/GridTest.php index 8e67b5150d5..ca4b3710c20 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Customer/GridTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Customer/GridTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\ResourceModel\Customer; diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/CustomerRepositoryTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/CustomerRepositoryTest.php index 426548ce83c..54a0b8040d2 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/CustomerRepositoryTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/CustomerRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Db/VersionControl/AddressSnapshotTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Db/VersionControl/AddressSnapshotTest.php index e2de4e7e7d5..86189262403 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Db/VersionControl/AddressSnapshotTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Db/VersionControl/AddressSnapshotTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model\ResourceModel\Db\VersionControl; diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Group/Grid/ServiceCollectionTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Group/Grid/ServiceCollectionTest.php index 6cfb5b94e74..57b40a89c01 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Group/Grid/ServiceCollectionTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Group/Grid/ServiceCollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupRepositoryTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupRepositoryTest.php index 1524db8ab97..75eba733dc3 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupRepositoryTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupTest.php index 8305114ad70..8de1485e063 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Model/SessionTest.php b/app/code/Magento/Customer/Test/Unit/Model/SessionTest.php index 48de976aec8..784f5eaa59f 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/SessionTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/SessionTest.php @@ -2,7 +2,7 @@ /** * Unit test for session \Magento\Customer\Model\Session * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Model; diff --git a/app/code/Magento/Customer/Test/Unit/Model/VisitorTest.php b/app/code/Magento/Customer/Test/Unit/Model/VisitorTest.php index dfeb2cb3612..e70177d7955 100644 --- a/app/code/Magento/Customer/Test/Unit/Model/VisitorTest.php +++ b/app/code/Magento/Customer/Test/Unit/Model/VisitorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/Test/Unit/Observer/AfterAddressSaveObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/AfterAddressSaveObserverTest.php index f05349946ba..fc6308896e8 100644 --- a/app/code/Magento/Customer/Test/Unit/Observer/AfterAddressSaveObserverTest.php +++ b/app/code/Magento/Customer/Test/Unit/Observer/AfterAddressSaveObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Observer; diff --git a/app/code/Magento/Customer/Test/Unit/Observer/BeforeAddressSaveObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/BeforeAddressSaveObserverTest.php index 0a4ea7b95c9..8589f4d2884 100644 --- a/app/code/Magento/Customer/Test/Unit/Observer/BeforeAddressSaveObserverTest.php +++ b/app/code/Magento/Customer/Test/Unit/Observer/BeforeAddressSaveObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Observer; diff --git a/app/code/Magento/Customer/Test/Unit/Observer/CustomerLoginSuccessObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/CustomerLoginSuccessObserverTest.php index a715403f56a..dbcb85fc9dc 100644 --- a/app/code/Magento/Customer/Test/Unit/Observer/CustomerLoginSuccessObserverTest.php +++ b/app/code/Magento/Customer/Test/Unit/Observer/CustomerLoginSuccessObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Observer; diff --git a/app/code/Magento/Customer/Test/Unit/Observer/LogLastLoginAtObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/LogLastLoginAtObserverTest.php index 29baf77ef97..856784b6c0c 100644 --- a/app/code/Magento/Customer/Test/Unit/Observer/LogLastLoginAtObserverTest.php +++ b/app/code/Magento/Customer/Test/Unit/Observer/LogLastLoginAtObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Observer; diff --git a/app/code/Magento/Customer/Test/Unit/Observer/LogLastLogoutAtObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/LogLastLogoutAtObserverTest.php index 93fce4eb07c..a32934c0400 100644 --- a/app/code/Magento/Customer/Test/Unit/Observer/LogLastLogoutAtObserverTest.php +++ b/app/code/Magento/Customer/Test/Unit/Observer/LogLastLogoutAtObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Observer; diff --git a/app/code/Magento/Customer/Test/Unit/Observer/UpgradeCustomerPasswordObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/UpgradeCustomerPasswordObserverTest.php index 196254d8c6e..54e1a1066eb 100644 --- a/app/code/Magento/Customer/Test/Unit/Observer/UpgradeCustomerPasswordObserverTest.php +++ b/app/code/Magento/Customer/Test/Unit/Observer/UpgradeCustomerPasswordObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Observer; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/ColumnFactoryTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/ColumnFactoryTest.php index dbe8080ff35..040892c7194 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/ColumnFactoryTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/ColumnFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProvider/DocumentTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProvider/DocumentTest.php index 7d263bc05eb..ccea8265365 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProvider/DocumentTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProvider/DocumentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component\DataProvider; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProviderTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProviderTest.php index 409f9154781..cafa0ff997f 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProviderTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/FilterFactoryTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/FilterFactoryTest.php index d5af151efb0..8710a9d1bbd 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/FilterFactoryTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/FilterFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/AttributeRepositoryTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/AttributeRepositoryTest.php index 4731c8f6352..dec1c016fa6 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/AttributeRepositoryTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/AttributeRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component\Listing; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AccountLockTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AccountLockTest.php index c6f113d56c3..edb19e79213 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AccountLockTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AccountLockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ActionsTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ActionsTest.php index 9d5c1364091..9af626ffaee 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ActionsTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ActionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AttributeColumnTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AttributeColumnTest.php index 1f40026eb21..742120f0c0c 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AttributeColumnTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AttributeColumnTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ConfirmationTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ConfirmationTest.php index cd31a41c786..b120cf93e68 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ConfirmationTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ConfirmationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/InlineEditUpdaterTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/InlineEditUpdaterTest.php index 4af70e86a32..2574634c1f0 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/InlineEditUpdaterTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/InlineEditUpdaterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ValidationRulesTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ValidationRulesTest.php index 9a3ab3f030a..5ab5fe8bdfb 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ValidationRulesTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ValidationRulesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/ColumnsTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/ColumnsTest.php index 86e3016d237..71802f9eef6 100644 --- a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/ColumnsTest.php +++ b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/ColumnsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Test\Unit\Ui\Component\Listing; diff --git a/app/code/Magento/Customer/Ui/Component/ColumnFactory.php b/app/code/Magento/Customer/Ui/Component/ColumnFactory.php index 348fb2144cd..0c6bd63b27f 100644 --- a/app/code/Magento/Customer/Ui/Component/ColumnFactory.php +++ b/app/code/Magento/Customer/Ui/Component/ColumnFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component; diff --git a/app/code/Magento/Customer/Ui/Component/DataProvider.php b/app/code/Magento/Customer/Ui/Component/DataProvider.php index 4e9298dc924..3194d810d2f 100644 --- a/app/code/Magento/Customer/Ui/Component/DataProvider.php +++ b/app/code/Magento/Customer/Ui/Component/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component; diff --git a/app/code/Magento/Customer/Ui/Component/DataProvider/Document.php b/app/code/Magento/Customer/Ui/Component/DataProvider/Document.php index aa3d79c0695..2d3b0433132 100644 --- a/app/code/Magento/Customer/Ui/Component/DataProvider/Document.php +++ b/app/code/Magento/Customer/Ui/Component/DataProvider/Document.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\DataProvider; diff --git a/app/code/Magento/Customer/Ui/Component/FilterFactory.php b/app/code/Magento/Customer/Ui/Component/FilterFactory.php index fd3bc3b839b..8eda7b1bfa3 100644 --- a/app/code/Magento/Customer/Ui/Component/FilterFactory.php +++ b/app/code/Magento/Customer/Ui/Component/FilterFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/AttributeRepository.php b/app/code/Magento/Customer/Ui/Component/Listing/AttributeRepository.php index 3c71ee268d9..ad89b7cb056 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/AttributeRepository.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/AttributeRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/AccountLock.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/AccountLock.php index 3622829f53f..67370f64722 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/Column/AccountLock.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/Column/AccountLock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Actions.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Actions.php index 31ed8918e86..f9abe542e4d 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/Column/Actions.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/Column/Actions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/AttributeColumn.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/AttributeColumn.php index fb481684115..5d084daffdf 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/Column/AttributeColumn.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/Column/AttributeColumn.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Confirmation.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Confirmation.php index 36ad17dcb9d..4b777c0e53e 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/Column/Confirmation.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/Column/Confirmation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Group/Options.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Group/Options.php index 68993c99901..675970f298e 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/Column/Group/Options.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/Column/Group/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing\Column\Group; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/InlineEditUpdater.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/InlineEditUpdater.php index 67aedd08168..4fd5670eac6 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/Column/InlineEditUpdater.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/Column/InlineEditUpdater.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type.php index ac36a00041f..077a24a7fe3 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing\Column\Online; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type/Options.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type/Options.php index 523cda15a97..d386d7c3ff7 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type/Options.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing\Column\Online\Type; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/ValidationRules.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/ValidationRules.php index 76e33422475..18bc4c6faa6 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/Column/ValidationRules.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/Column/ValidationRules.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Websites.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Websites.php index 099b5e2f41d..0df5bb57231 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/Column/Websites.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/Column/Websites.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Columns.php b/app/code/Magento/Customer/Ui/Component/Listing/Columns.php index cde75cc75fa..0beae8e6360 100644 --- a/app/code/Magento/Customer/Ui/Component/Listing/Columns.php +++ b/app/code/Magento/Customer/Ui/Component/Listing/Columns.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing; diff --git a/app/code/Magento/Customer/Ui/Component/MassAction/Group/Options.php b/app/code/Magento/Customer/Ui/Component/MassAction/Group/Options.php index 37a28432139..4810b10fb88 100644 --- a/app/code/Magento/Customer/Ui/Component/MassAction/Group/Options.php +++ b/app/code/Magento/Customer/Ui/Component/MassAction/Group/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\MassAction\Group; diff --git a/app/code/Magento/Customer/etc/acl.xml b/app/code/Magento/Customer/etc/acl.xml index 810c4a08e85..42954e2f865 100644 --- a/app/code/Magento/Customer/etc/acl.xml +++ b/app/code/Magento/Customer/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/address_formats.xml b/app/code/Magento/Customer/etc/address_formats.xml index f501df2f3b6..c4d74375c32 100644 --- a/app/code/Magento/Customer/etc/address_formats.xml +++ b/app/code/Magento/Customer/etc/address_formats.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/address_formats.xsd b/app/code/Magento/Customer/etc/address_formats.xsd index f5df16ffcc5..14d0ad45980 100644 --- a/app/code/Magento/Customer/etc/address_formats.xsd +++ b/app/code/Magento/Customer/etc/address_formats.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/adminhtml/di.xml b/app/code/Magento/Customer/etc/adminhtml/di.xml index 08c9cb95efe..cf2254307a9 100644 --- a/app/code/Magento/Customer/etc/adminhtml/di.xml +++ b/app/code/Magento/Customer/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/adminhtml/menu.xml b/app/code/Magento/Customer/etc/adminhtml/menu.xml index 31765fa89e8..eaa65dc280b 100644 --- a/app/code/Magento/Customer/etc/adminhtml/menu.xml +++ b/app/code/Magento/Customer/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/adminhtml/routes.xml b/app/code/Magento/Customer/etc/adminhtml/routes.xml index 9f3b07f4860..4c68008dd14 100644 --- a/app/code/Magento/Customer/etc/adminhtml/routes.xml +++ b/app/code/Magento/Customer/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Customer" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Customer/etc/adminhtml/system.xml b/app/code/Magento/Customer/etc/adminhtml/system.xml index f542c2b6e0f..66c54016fc2 100644 --- a/app/code/Magento/Customer/etc/adminhtml/system.xml +++ b/app/code/Magento/Customer/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/cache.xml b/app/code/Magento/Customer/etc/cache.xml index 37d1a63f69a..553f1f6535d 100644 --- a/app/code/Magento/Customer/etc/cache.xml +++ b/app/code/Magento/Customer/etc/cache.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/config.xml b/app/code/Magento/Customer/etc/config.xml index dae84471918..540918d44c1 100644 --- a/app/code/Magento/Customer/etc/config.xml +++ b/app/code/Magento/Customer/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/crontab.xml b/app/code/Magento/Customer/etc/crontab.xml index 472a49feb39..eda64cf2eca 100644 --- a/app/code/Magento/Customer/etc/crontab.xml +++ b/app/code/Magento/Customer/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/di.xml b/app/code/Magento/Customer/etc/di.xml index 9113895f2e5..225290f35c7 100644 --- a/app/code/Magento/Customer/etc/di.xml +++ b/app/code/Magento/Customer/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/email_templates.xml b/app/code/Magento/Customer/etc/email_templates.xml index 0d6b4d58770..23fa73056b4 100644 --- a/app/code/Magento/Customer/etc/email_templates.xml +++ b/app/code/Magento/Customer/etc/email_templates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/events.xml b/app/code/Magento/Customer/etc/events.xml index 45caa32d680..0e65ddca449 100644 --- a/app/code/Magento/Customer/etc/events.xml +++ b/app/code/Magento/Customer/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/fieldset.xml b/app/code/Magento/Customer/etc/fieldset.xml index a43df718734..b219305e3b9 100644 --- a/app/code/Magento/Customer/etc/fieldset.xml +++ b/app/code/Magento/Customer/etc/fieldset.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/frontend/di.xml b/app/code/Magento/Customer/etc/frontend/di.xml index 389d0eea246..4562acb00fe 100644 --- a/app/code/Magento/Customer/etc/frontend/di.xml +++ b/app/code/Magento/Customer/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/frontend/events.xml b/app/code/Magento/Customer/etc/frontend/events.xml index 5bb0ffe3cb7..75cc5f7c929 100644 --- a/app/code/Magento/Customer/etc/frontend/events.xml +++ b/app/code/Magento/Customer/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/frontend/page_types.xml b/app/code/Magento/Customer/etc/frontend/page_types.xml index bfcda34cc31..77a0fb520bb 100644 --- a/app/code/Magento/Customer/etc/frontend/page_types.xml +++ b/app/code/Magento/Customer/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/frontend/routes.xml b/app/code/Magento/Customer/etc/frontend/routes.xml index d448185245a..eb91d26288a 100644 --- a/app/code/Magento/Customer/etc/frontend/routes.xml +++ b/app/code/Magento/Customer/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Customer" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Customer/etc/frontend/sections.xml b/app/code/Magento/Customer/etc/frontend/sections.xml index 83d6394cd09..877be8e0266 100644 --- a/app/code/Magento/Customer/etc/frontend/sections.xml +++ b/app/code/Magento/Customer/etc/frontend/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/indexer.xml b/app/code/Magento/Customer/etc/indexer.xml index 5f644426d81..1b831f77886 100644 --- a/app/code/Magento/Customer/etc/indexer.xml +++ b/app/code/Magento/Customer/etc/indexer.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/module.xml b/app/code/Magento/Customer/etc/module.xml index f505adb98a0..5d9ae7ae8f9 100644 --- a/app/code/Magento/Customer/etc/module.xml +++ b/app/code/Magento/Customer/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/mview.xml b/app/code/Magento/Customer/etc/mview.xml index 4f88d94f15e..ebeaac01141 100644 --- a/app/code/Magento/Customer/etc/mview.xml +++ b/app/code/Magento/Customer/etc/mview.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/sections.xsd b/app/code/Magento/Customer/etc/sections.xsd index 91a09129357..f2be0302db7 100644 --- a/app/code/Magento/Customer/etc/sections.xsd +++ b/app/code/Magento/Customer/etc/sections.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/validation.xml b/app/code/Magento/Customer/etc/validation.xml index b496a9345cb..d06164942c7 100644 --- a/app/code/Magento/Customer/etc/validation.xml +++ b/app/code/Magento/Customer/etc/validation.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/webapi.xml b/app/code/Magento/Customer/etc/webapi.xml index 3a492e73702..f78d9c01d16 100644 --- a/app/code/Magento/Customer/etc/webapi.xml +++ b/app/code/Magento/Customer/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/webapi_rest/di.xml b/app/code/Magento/Customer/etc/webapi_rest/di.xml index 045f16cc6d0..a9d21aea930 100644 --- a/app/code/Magento/Customer/etc/webapi_rest/di.xml +++ b/app/code/Magento/Customer/etc/webapi_rest/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/etc/webapi_soap/di.xml b/app/code/Magento/Customer/etc/webapi_soap/di.xml index ae882cfacba..61cdd928de4 100644 --- a/app/code/Magento/Customer/etc/webapi_soap/di.xml +++ b/app/code/Magento/Customer/etc/webapi_soap/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/registration.php b/app/code/Magento/Customer/registration.php index a1f00646431..4c1e81d195b 100644 --- a/app/code/Magento/Customer/registration.php +++ b/app/code/Magento/Customer/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_group_index.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_group_index.xml index bf5f2c2106a..442cf7f4a2e 100644 --- a/app/code/Magento/Customer/view/adminhtml/layout/customer_group_index.xml +++ b/app/code/Magento/Customer/view/adminhtml/layout/customer_group_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_cart.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_cart.xml index 965dc8fa4d3..1cb5d823237 100644 --- a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_cart.xml +++ b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_cart.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_carts.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_carts.xml index c5ffdc4fbae..3fa611ebd6e 100644 --- a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_carts.xml +++ b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_carts.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_edit.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_edit.xml index 7d13c2dcf9a..dfa8379891a 100644 --- a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_edit.xml +++ b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_index.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_index.xml index 2bf05d10369..c6f3c3e2ead 100644 --- a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_index.xml +++ b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_newsletter.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_newsletter.xml index 103b5ac2b38..10b4a31f5d9 100644 --- a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_newsletter.xml +++ b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_newsletter.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_orders.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_orders.xml index 031ae90eeab..e99d0a053eb 100644 --- a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_orders.xml +++ b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_orders.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_productreviews.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_productreviews.xml index 5b074b5095f..671ef7ec0e7 100644 --- a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_productreviews.xml +++ b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_productreviews.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewcart.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewcart.xml index b44f04157eb..cc5d9e0da82 100644 --- a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewcart.xml +++ b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewcart.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewwishlist.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewwishlist.xml index bad08a8f097..8cd4ec724e3 100644 --- a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewwishlist.xml +++ b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewwishlist.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_online_index.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_online_index.xml index fb34ba65f7e..1ae4259bc75 100644 --- a/app/code/Magento/Customer/view/adminhtml/layout/customer_online_index.xml +++ b/app/code/Magento/Customer/view/adminhtml/layout/customer_online_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/requirejs-config.js b/app/code/Magento/Customer/view/adminhtml/requirejs-config.js index 666193865f2..589ece5b141 100644 --- a/app/code/Magento/Customer/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/Customer/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -14,4 +14,4 @@ var config = { observableInputs: 'Magento_Customer/edit/tab/js/addresses' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Customer/view/adminhtml/templates/edit/js.phtml b/app/code/Magento/Customer/view/adminhtml/templates/edit/js.phtml index e5450890826..49cc0c8c739 100644 --- a/app/code/Magento/Customer/view/adminhtml/templates/edit/js.phtml +++ b/app/code/Magento/Customer/view/adminhtml/templates/edit/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/adminhtml/templates/sales/order/create/address/form/renderer/vat.phtml b/app/code/Magento/Customer/view/adminhtml/templates/sales/order/create/address/form/renderer/vat.phtml index 70896e096af..ca6b21a8eee 100644 --- a/app/code/Magento/Customer/view/adminhtml/templates/sales/order/create/address/form/renderer/vat.phtml +++ b/app/code/Magento/Customer/view/adminhtml/templates/sales/order/create/address/form/renderer/vat.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/adminhtml/templates/system/config/validatevat.phtml b/app/code/Magento/Customer/view/adminhtml/templates/system/config/validatevat.phtml index c20092554bf..6d983623f51 100644 --- a/app/code/Magento/Customer/view/adminhtml/templates/system/config/validatevat.phtml +++ b/app/code/Magento/Customer/view/adminhtml/templates/system/config/validatevat.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/adminhtml/templates/tab/cart.phtml b/app/code/Magento/Customer/view/adminhtml/templates/tab/cart.phtml index 0fda50241ab..e456e02f0b1 100644 --- a/app/code/Magento/Customer/view/adminhtml/templates/tab/cart.phtml +++ b/app/code/Magento/Customer/view/adminhtml/templates/tab/cart.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/adminhtml/templates/tab/newsletter.phtml b/app/code/Magento/Customer/view/adminhtml/templates/tab/newsletter.phtml index d18dc9a0839..fcb86ae16ff 100644 --- a/app/code/Magento/Customer/view/adminhtml/templates/tab/newsletter.phtml +++ b/app/code/Magento/Customer/view/adminhtml/templates/tab/newsletter.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/adminhtml/templates/tab/view.phtml b/app/code/Magento/Customer/view/adminhtml/templates/tab/view.phtml index 54b7ac4448d..16118955014 100644 --- a/app/code/Magento/Customer/view/adminhtml/templates/tab/view.phtml +++ b/app/code/Magento/Customer/view/adminhtml/templates/tab/view.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/adminhtml/templates/tab/view/personal_info.phtml b/app/code/Magento/Customer/view/adminhtml/templates/tab/view/personal_info.phtml index 0d049f1f242..cb59b6c1d89 100644 --- a/app/code/Magento/Customer/view/adminhtml/templates/tab/view/personal_info.phtml +++ b/app/code/Magento/Customer/view/adminhtml/templates/tab/view/personal_info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/adminhtml/templates/tab/view/sales.phtml b/app/code/Magento/Customer/view/adminhtml/templates/tab/view/sales.phtml index deb1d1ee40e..9a00e313a16 100644 --- a/app/code/Magento/Customer/view/adminhtml/templates/tab/view/sales.phtml +++ b/app/code/Magento/Customer/view/adminhtml/templates/tab/view/sales.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/adminhtml/ui_component/customer_listing.xml b/app/code/Magento/Customer/view/adminhtml/ui_component/customer_listing.xml index 05b419983d5..4b92177286b 100644 --- a/app/code/Magento/Customer/view/adminhtml/ui_component/customer_listing.xml +++ b/app/code/Magento/Customer/view/adminhtml/ui_component/customer_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/ui_component/customer_online_grid.xml b/app/code/Magento/Customer/view/adminhtml/ui_component/customer_online_grid.xml index 2dc9e89090c..4cb3547cb76 100644 --- a/app/code/Magento/Customer/view/adminhtml/ui_component/customer_online_grid.xml +++ b/app/code/Magento/Customer/view/adminhtml/ui_component/customer_online_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/adminhtml/web/edit/post-wrapper.js b/app/code/Magento/Customer/view/adminhtml/web/edit/post-wrapper.js index d6fc60b5fb9..9b368adcbe6 100644 --- a/app/code/Magento/Customer/view/adminhtml/web/edit/post-wrapper.js +++ b/app/code/Magento/Customer/view/adminhtml/web/edit/post-wrapper.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/adminhtml/web/edit/tab/js/addresses.js b/app/code/Magento/Customer/view/adminhtml/web/edit/tab/js/addresses.js index a3e04fc43fc..7242dc94517 100644 --- a/app/code/Magento/Customer/view/adminhtml/web/edit/tab/js/addresses.js +++ b/app/code/Magento/Customer/view/adminhtml/web/edit/tab/js/addresses.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ @@ -563,4 +563,4 @@ define([ observableInputs: $.mage.observableInputs, dataItemDeleteButton: $.mage.dataItemDeleteButton }; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Customer/view/adminhtml/web/js/bootstrap/customer-post-action.js b/app/code/Magento/Customer/view/adminhtml/web/js/bootstrap/customer-post-action.js index 7ea9247ecd9..661c4e3d471 100644 --- a/app/code/Magento/Customer/view/adminhtml/web/js/bootstrap/customer-post-action.js +++ b/app/code/Magento/Customer/view/adminhtml/web/js/bootstrap/customer-post-action.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/base/ui_component/customer_form.xml b/app/code/Magento/Customer/view/base/ui_component/customer_form.xml index 61d2900af4b..ab5a89f9d35 100644 --- a/app/code/Magento/Customer/view/base/ui_component/customer_form.xml +++ b/app/code/Magento/Customer/view/base/ui_component/customer_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/email/account_new.html b/app/code/Magento/Customer/view/frontend/email/account_new.html index 9d67e26e8e7..dac8e1ce575 100644 --- a/app/code/Magento/Customer/view/frontend/email/account_new.html +++ b/app/code/Magento/Customer/view/frontend/email/account_new.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/email/account_new_confirmation.html b/app/code/Magento/Customer/view/frontend/email/account_new_confirmation.html index 193a1faed66..5432956e8f0 100644 --- a/app/code/Magento/Customer/view/frontend/email/account_new_confirmation.html +++ b/app/code/Magento/Customer/view/frontend/email/account_new_confirmation.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/email/account_new_confirmed.html b/app/code/Magento/Customer/view/frontend/email/account_new_confirmed.html index 6e94fbdcc78..b50c944c18b 100644 --- a/app/code/Magento/Customer/view/frontend/email/account_new_confirmed.html +++ b/app/code/Magento/Customer/view/frontend/email/account_new_confirmed.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/email/account_new_no_password.html b/app/code/Magento/Customer/view/frontend/email/account_new_no_password.html index 14cd8e98f8b..1c5371bd486 100644 --- a/app/code/Magento/Customer/view/frontend/email/account_new_no_password.html +++ b/app/code/Magento/Customer/view/frontend/email/account_new_no_password.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/email/change_email.html b/app/code/Magento/Customer/view/frontend/email/change_email.html index ab24368c022..09d1537e1cc 100644 --- a/app/code/Magento/Customer/view/frontend/email/change_email.html +++ b/app/code/Magento/Customer/view/frontend/email/change_email.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/email/change_email_and_password.html b/app/code/Magento/Customer/view/frontend/email/change_email_and_password.html index d2ca4d4cae0..23280b2822b 100644 --- a/app/code/Magento/Customer/view/frontend/email/change_email_and_password.html +++ b/app/code/Magento/Customer/view/frontend/email/change_email_and_password.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/email/password_new.html b/app/code/Magento/Customer/view/frontend/email/password_new.html index 12c5a30ddf1..f5c2d871283 100644 --- a/app/code/Magento/Customer/view/frontend/email/password_new.html +++ b/app/code/Magento/Customer/view/frontend/email/password_new.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/email/password_reset.html b/app/code/Magento/Customer/view/frontend/email/password_reset.html index 061e6408107..a255e2f99e5 100644 --- a/app/code/Magento/Customer/view/frontend/email/password_reset.html +++ b/app/code/Magento/Customer/view/frontend/email/password_reset.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/email/password_reset_confirmation.html b/app/code/Magento/Customer/view/frontend/email/password_reset_confirmation.html index a07b36c1480..efdd89bbec7 100644 --- a/app/code/Magento/Customer/view/frontend/email/password_reset_confirmation.html +++ b/app/code/Magento/Customer/view/frontend/email/password_reset_confirmation.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account.xml index 0f95cde6798..12849c5b076 100644 --- a/app/code/Magento/Customer/view/frontend/layout/customer_account.xml +++ b/app/code/Magento/Customer/view/frontend/layout/customer_account.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_confirmation.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_confirmation.xml index 5bf52253bad..c2d7dc01dbb 100644 --- a/app/code/Magento/Customer/view/frontend/layout/customer_account_confirmation.xml +++ b/app/code/Magento/Customer/view/frontend/layout/customer_account_confirmation.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_create.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_create.xml index 8eaba5c75fe..8a42132dd01 100644 --- a/app/code/Magento/Customer/view/frontend/layout/customer_account_create.xml +++ b/app/code/Magento/Customer/view/frontend/layout/customer_account_create.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_createpassword.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_createpassword.xml index 298ad6e9c39..878fd569990 100644 --- a/app/code/Magento/Customer/view/frontend/layout/customer_account_createpassword.xml +++ b/app/code/Magento/Customer/view/frontend/layout/customer_account_createpassword.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_edit.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_edit.xml index aa09fecc681..452d9882110 100644 --- a/app/code/Magento/Customer/view/frontend/layout/customer_account_edit.xml +++ b/app/code/Magento/Customer/view/frontend/layout/customer_account_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_forgotpassword.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_forgotpassword.xml index e33da515e15..a39f15c201c 100644 --- a/app/code/Magento/Customer/view/frontend/layout/customer_account_forgotpassword.xml +++ b/app/code/Magento/Customer/view/frontend/layout/customer_account_forgotpassword.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_index.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_index.xml index c3a255192eb..6e738ac2980 100644 --- a/app/code/Magento/Customer/view/frontend/layout/customer_account_index.xml +++ b/app/code/Magento/Customer/view/frontend/layout/customer_account_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_login.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_login.xml index 32b471dff8b..e7c157acb1b 100644 --- a/app/code/Magento/Customer/view/frontend/layout/customer_account_login.xml +++ b/app/code/Magento/Customer/view/frontend/layout/customer_account_login.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_logoutsuccess.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_logoutsuccess.xml index 93b522c90dc..d76363eaffb 100644 --- a/app/code/Magento/Customer/view/frontend/layout/customer_account_logoutsuccess.xml +++ b/app/code/Magento/Customer/view/frontend/layout/customer_account_logoutsuccess.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_address_form.xml b/app/code/Magento/Customer/view/frontend/layout/customer_address_form.xml index 46bea310945..67ab9768157 100644 --- a/app/code/Magento/Customer/view/frontend/layout/customer_address_form.xml +++ b/app/code/Magento/Customer/view/frontend/layout/customer_address_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_address_index.xml b/app/code/Magento/Customer/view/frontend/layout/customer_address_index.xml index 8706ba25c56..42f7b5ea38a 100644 --- a/app/code/Magento/Customer/view/frontend/layout/customer_address_index.xml +++ b/app/code/Magento/Customer/view/frontend/layout/customer_address_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/layout/default.xml b/app/code/Magento/Customer/view/frontend/layout/default.xml index 278c16b324d..d80391c4973 100644 --- a/app/code/Magento/Customer/view/frontend/layout/default.xml +++ b/app/code/Magento/Customer/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Customer/view/frontend/requirejs-config.js b/app/code/Magento/Customer/view/frontend/requirejs-config.js index 508737742ca..99442b69ac0 100644 --- a/app/code/Magento/Customer/view/frontend/requirejs-config.js +++ b/app/code/Magento/Customer/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/account/authentication-popup.phtml b/app/code/Magento/Customer/view/frontend/templates/account/authentication-popup.phtml index f34cc41344e..bcf0cc92bc9 100644 --- a/app/code/Magento/Customer/view/frontend/templates/account/authentication-popup.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/account/authentication-popup.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/account/customer.phtml b/app/code/Magento/Customer/view/frontend/templates/account/customer.phtml index 016e4971783..904362e5032 100644 --- a/app/code/Magento/Customer/view/frontend/templates/account/customer.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/account/customer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/account/dashboard/address.phtml b/app/code/Magento/Customer/view/frontend/templates/account/dashboard/address.phtml index 6c4306e2718..cef85c90e6f 100644 --- a/app/code/Magento/Customer/view/frontend/templates/account/dashboard/address.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/account/dashboard/address.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/account/dashboard/info.phtml b/app/code/Magento/Customer/view/frontend/templates/account/dashboard/info.phtml index 574fe678646..c0f82144e36 100644 --- a/app/code/Magento/Customer/view/frontend/templates/account/dashboard/info.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/account/dashboard/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/account/link/authorization.phtml b/app/code/Magento/Customer/view/frontend/templates/account/link/authorization.phtml index 7638a8193f4..cf5f9831940 100644 --- a/app/code/Magento/Customer/view/frontend/templates/account/link/authorization.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/account/link/authorization.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/account/link/back.phtml b/app/code/Magento/Customer/view/frontend/templates/account/link/back.phtml index 2ca281890fe..2a577d2b18d 100644 --- a/app/code/Magento/Customer/view/frontend/templates/account/link/back.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/account/link/back.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/account/navigation-delimiter.phtml b/app/code/Magento/Customer/view/frontend/templates/account/navigation-delimiter.phtml index bbc80e6686c..2456862f445 100644 --- a/app/code/Magento/Customer/view/frontend/templates/account/navigation-delimiter.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/account/navigation-delimiter.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Customer/view/frontend/templates/account/navigation.phtml b/app/code/Magento/Customer/view/frontend/templates/account/navigation.phtml index 3c287e2b09d..9bd08ffedc9 100644 --- a/app/code/Magento/Customer/view/frontend/templates/account/navigation.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/account/navigation.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/additionalinfocustomer.phtml b/app/code/Magento/Customer/view/frontend/templates/additionalinfocustomer.phtml index 8a6e99597c5..3ca3a9d5b4a 100644 --- a/app/code/Magento/Customer/view/frontend/templates/additionalinfocustomer.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/additionalinfocustomer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/address/book.phtml b/app/code/Magento/Customer/view/frontend/templates/address/book.phtml index 37ab2584c84..e4704257325 100644 --- a/app/code/Magento/Customer/view/frontend/templates/address/book.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/address/book.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/address/edit.phtml b/app/code/Magento/Customer/view/frontend/templates/address/edit.phtml index 17d7c9852fc..94b545d1eb4 100644 --- a/app/code/Magento/Customer/view/frontend/templates/address/edit.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/address/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/form/confirmation.phtml b/app/code/Magento/Customer/view/frontend/templates/form/confirmation.phtml index b847b798163..d62a69f1e0f 100644 --- a/app/code/Magento/Customer/view/frontend/templates/form/confirmation.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/form/confirmation.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/form/edit.phtml b/app/code/Magento/Customer/view/frontend/templates/form/edit.phtml index 716378f4fc1..6d62ae76a62 100644 --- a/app/code/Magento/Customer/view/frontend/templates/form/edit.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/form/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/form/forgotpassword.phtml b/app/code/Magento/Customer/view/frontend/templates/form/forgotpassword.phtml index 537208335bd..8dfb3fcf185 100644 --- a/app/code/Magento/Customer/view/frontend/templates/form/forgotpassword.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/form/forgotpassword.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. * * @var $block \Magento\Customer\Block\Account\Forgotpassword diff --git a/app/code/Magento/Customer/view/frontend/templates/form/login.phtml b/app/code/Magento/Customer/view/frontend/templates/form/login.phtml index a4b79d6d0be..40724647854 100644 --- a/app/code/Magento/Customer/view/frontend/templates/form/login.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/form/login.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/form/newsletter.phtml b/app/code/Magento/Customer/view/frontend/templates/form/newsletter.phtml index 4be5cc17e55..644174662ae 100644 --- a/app/code/Magento/Customer/view/frontend/templates/form/newsletter.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/form/newsletter.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/form/register.phtml b/app/code/Magento/Customer/view/frontend/templates/form/register.phtml index c3cb58b345f..54206ea5fda 100644 --- a/app/code/Magento/Customer/view/frontend/templates/form/register.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/form/register.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/form/resetforgottenpassword.phtml b/app/code/Magento/Customer/view/frontend/templates/form/resetforgottenpassword.phtml index 9ab5db08f18..758bb41a93e 100644 --- a/app/code/Magento/Customer/view/frontend/templates/form/resetforgottenpassword.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/form/resetforgottenpassword.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/js/components.phtml b/app/code/Magento/Customer/view/frontend/templates/js/components.phtml index e490a6aa049..bdcb2e9bf77 100644 --- a/app/code/Magento/Customer/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/js/customer-data.phtml b/app/code/Magento/Customer/view/frontend/templates/js/customer-data.phtml index 55779df1c22..d8901f20f0a 100644 --- a/app/code/Magento/Customer/view/frontend/templates/js/customer-data.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/js/customer-data.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/js/section-config.phtml b/app/code/Magento/Customer/view/frontend/templates/js/section-config.phtml index d6986829a0c..b2cee46d557 100644 --- a/app/code/Magento/Customer/view/frontend/templates/js/section-config.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/js/section-config.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/logout.phtml b/app/code/Magento/Customer/view/frontend/templates/logout.phtml index c866a0d091f..162ad0fc766 100644 --- a/app/code/Magento/Customer/view/frontend/templates/logout.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/logout.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/newcustomer.phtml b/app/code/Magento/Customer/view/frontend/templates/newcustomer.phtml index ceee254897f..5769b1cae37 100644 --- a/app/code/Magento/Customer/view/frontend/templates/newcustomer.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/newcustomer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/widget/dob.phtml b/app/code/Magento/Customer/view/frontend/templates/widget/dob.phtml index 727dc43750a..9480917e40c 100644 --- a/app/code/Magento/Customer/view/frontend/templates/widget/dob.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/widget/dob.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/widget/gender.phtml b/app/code/Magento/Customer/view/frontend/templates/widget/gender.phtml index ba589d220c3..f38256d3d6c 100644 --- a/app/code/Magento/Customer/view/frontend/templates/widget/gender.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/widget/gender.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/widget/name.phtml b/app/code/Magento/Customer/view/frontend/templates/widget/name.phtml index 044500086bf..389f79e2573 100644 --- a/app/code/Magento/Customer/view/frontend/templates/widget/name.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/widget/name.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/templates/widget/taxvat.phtml b/app/code/Magento/Customer/view/frontend/templates/widget/taxvat.phtml index 809613a73b4..9bb7b6a7b6e 100644 --- a/app/code/Magento/Customer/view/frontend/templates/widget/taxvat.phtml +++ b/app/code/Magento/Customer/view/frontend/templates/widget/taxvat.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/web/address.js b/app/code/Magento/Customer/view/frontend/web/address.js index 78443af9a3a..043ad27194a 100644 --- a/app/code/Magento/Customer/view/frontend/web/address.js +++ b/app/code/Magento/Customer/view/frontend/web/address.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true, jquery:true*/ @@ -77,4 +77,4 @@ define([ }); return $.mage.address; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Customer/view/frontend/web/change-email-password.js b/app/code/Magento/Customer/view/frontend/web/change-email-password.js index 26b565e2139..a3ed0893817 100644 --- a/app/code/Magento/Customer/view/frontend/web/change-email-password.js +++ b/app/code/Magento/Customer/view/frontend/web/change-email-password.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true expr:true*/ diff --git a/app/code/Magento/Customer/view/frontend/web/js/action/check-email-availability.js b/app/code/Magento/Customer/view/frontend/web/js/action/check-email-availability.js index 46e90670340..3bdface5b6c 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/action/check-email-availability.js +++ b/app/code/Magento/Customer/view/frontend/web/js/action/check-email-availability.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Customer/view/frontend/web/js/action/login.js b/app/code/Magento/Customer/view/frontend/web/js/action/login.js index 56a1434a172..a7afac3e456 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/action/login.js +++ b/app/code/Magento/Customer/view/frontend/web/js/action/login.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Customer/view/frontend/web/js/addressValidation.js b/app/code/Magento/Customer/view/frontend/web/js/addressValidation.js index c01463b4046..1e6ef420145 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/addressValidation.js +++ b/app/code/Magento/Customer/view/frontend/web/js/addressValidation.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Customer/view/frontend/web/js/checkout-balance.js b/app/code/Magento/Customer/view/frontend/web/js/checkout-balance.js index 430106f6b90..777279e2121 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/checkout-balance.js +++ b/app/code/Magento/Customer/view/frontend/web/js/checkout-balance.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ @@ -36,4 +36,4 @@ define([ }); return $.mage.checkoutBalance; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Customer/view/frontend/web/js/customer-data.js b/app/code/Magento/Customer/view/frontend/web/js/customer-data.js index a3ef770fffd..a017eba4c79 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/customer-data.js +++ b/app/code/Magento/Customer/view/frontend/web/js/customer-data.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Customer/view/frontend/web/js/model/address-list.js b/app/code/Magento/Customer/view/frontend/web/js/model/address-list.js index f5a118fa90d..3c8e593a411 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/model/address-list.js +++ b/app/code/Magento/Customer/view/frontend/web/js/model/address-list.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ @@ -12,4 +12,4 @@ define( "use strict"; return ko.observableArray(defaultProvider.getAddressItems()); } -); \ No newline at end of file +); diff --git a/app/code/Magento/Customer/view/frontend/web/js/model/authentication-popup.js b/app/code/Magento/Customer/view/frontend/web/js/model/authentication-popup.js index 95092b758e9..9f0b13414a7 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/model/authentication-popup.js +++ b/app/code/Magento/Customer/view/frontend/web/js/model/authentication-popup.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Customer/view/frontend/web/js/model/customer-addresses.js b/app/code/Magento/Customer/view/frontend/web/js/model/customer-addresses.js index a96dca0002d..771dc1446cf 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/model/customer-addresses.js +++ b/app/code/Magento/Customer/view/frontend/web/js/model/customer-addresses.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Customer/view/frontend/web/js/model/customer.js b/app/code/Magento/Customer/view/frontend/web/js/model/customer.js index 61e9a3fdc20..fab10dc1204 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/model/customer.js +++ b/app/code/Magento/Customer/view/frontend/web/js/model/customer.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Customer/view/frontend/web/js/model/customer/address.js b/app/code/Magento/Customer/view/frontend/web/js/model/customer/address.js index e013a96e489..601fd09a056 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/model/customer/address.js +++ b/app/code/Magento/Customer/view/frontend/web/js/model/customer/address.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Customer/view/frontend/web/js/password-strength-indicator.js b/app/code/Magento/Customer/view/frontend/web/js/password-strength-indicator.js index 298af46103e..5131e251f8f 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/password-strength-indicator.js +++ b/app/code/Magento/Customer/view/frontend/web/js/password-strength-indicator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Customer/view/frontend/web/js/section-config.js b/app/code/Magento/Customer/view/frontend/web/js/section-config.js index a4b4a2cc3ba..f503fd291d3 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/section-config.js +++ b/app/code/Magento/Customer/view/frontend/web/js/section-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define(['underscore'], function (_) { diff --git a/app/code/Magento/Customer/view/frontend/web/js/view/authentication-popup.js b/app/code/Magento/Customer/view/frontend/web/js/view/authentication-popup.js index 0dca72ade73..98914a1fa2e 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/view/authentication-popup.js +++ b/app/code/Magento/Customer/view/frontend/web/js/view/authentication-popup.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Customer/view/frontend/web/js/view/customer.js b/app/code/Magento/Customer/view/frontend/web/js/view/customer.js index e85c33ae96e..ca8dc96bd6f 100644 --- a/app/code/Magento/Customer/view/frontend/web/js/view/customer.js +++ b/app/code/Magento/Customer/view/frontend/web/js/view/customer.js @@ -1,5 +1,5 @@ /** -* Copyright © 2016 Magento. All rights reserved. +* Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Customer/view/frontend/web/template/authentication-popup.html b/app/code/Magento/Customer/view/frontend/web/template/authentication-popup.html index db9c0a3819f..ad3e169337d 100644 --- a/app/code/Magento/Customer/view/frontend/web/template/authentication-popup.html +++ b/app/code/Magento/Customer/view/frontend/web/template/authentication-popup.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportCsv.php b/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportCsv.php index b54be91ad17..81a310be679 100644 --- a/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportCsv.php +++ b/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Controller\Adminhtml\Index; diff --git a/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportXml.php b/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportXml.php index 13d4dd87cb2..dbbc3fffb87 100644 --- a/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportXml.php +++ b/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportXml.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Controller\Adminhtml\Index; diff --git a/app/code/Magento/CustomerImportExport/Model/Export/Address.php b/app/code/Magento/CustomerImportExport/Model/Export/Address.php index 6f69fc6015a..d26f113cb05 100644 --- a/app/code/Magento/CustomerImportExport/Model/Export/Address.php +++ b/app/code/Magento/CustomerImportExport/Model/Export/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Model\Export; diff --git a/app/code/Magento/CustomerImportExport/Model/Export/Customer.php b/app/code/Magento/CustomerImportExport/Model/Export/Customer.php index 9c37a2dcfb1..58ce671ad08 100644 --- a/app/code/Magento/CustomerImportExport/Model/Export/Customer.php +++ b/app/code/Magento/CustomerImportExport/Model/Export/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Model\Export; diff --git a/app/code/Magento/CustomerImportExport/Model/Import/AbstractCustomer.php b/app/code/Magento/CustomerImportExport/Model/Import/AbstractCustomer.php index dbb4ca87d54..1cb17a9318e 100644 --- a/app/code/Magento/CustomerImportExport/Model/Import/AbstractCustomer.php +++ b/app/code/Magento/CustomerImportExport/Model/Import/AbstractCustomer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Model\Import; diff --git a/app/code/Magento/CustomerImportExport/Model/Import/Address.php b/app/code/Magento/CustomerImportExport/Model/Import/Address.php index 937eebc212f..c137475e7d6 100644 --- a/app/code/Magento/CustomerImportExport/Model/Import/Address.php +++ b/app/code/Magento/CustomerImportExport/Model/Import/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Model\Import; diff --git a/app/code/Magento/CustomerImportExport/Model/Import/Customer.php b/app/code/Magento/CustomerImportExport/Model/Import/Customer.php index 2035b663e07..21dc48274c8 100644 --- a/app/code/Magento/CustomerImportExport/Model/Import/Customer.php +++ b/app/code/Magento/CustomerImportExport/Model/Import/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Model\Import; diff --git a/app/code/Magento/CustomerImportExport/Model/Import/CustomerComposite.php b/app/code/Magento/CustomerImportExport/Model/Import/CustomerComposite.php index 7aa44b603c7..0ffa32f60c1 100644 --- a/app/code/Magento/CustomerImportExport/Model/Import/CustomerComposite.php +++ b/app/code/Magento/CustomerImportExport/Model/Import/CustomerComposite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Model\Import; diff --git a/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/Customer/Storage.php b/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/Customer/Storage.php index 635bd5877d0..4e6687bff28 100644 --- a/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/Customer/Storage.php +++ b/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/Customer/Storage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Model\ResourceModel\Import\Customer; diff --git a/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/CustomerComposite/Data.php b/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/CustomerComposite/Data.php index 5593068d454..45d5e14d7c7 100644 --- a/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/CustomerComposite/Data.php +++ b/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/CustomerComposite/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Model\ResourceModel\Import\CustomerComposite; diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/AddressTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/AddressTest.php index 67b21d4276b..88a3f367a20 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/AddressTest.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/AddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Test\Unit\Model\Export; diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/CustomerTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/CustomerTest.php index 68a05714b19..99190a6a503 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/CustomerTest.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/CustomerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Test\Unit\Model\Export; diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AbstractCustomerTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AbstractCustomerTest.php index d46e071bbaf..3e78a5a0dfa 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AbstractCustomerTest.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AbstractCustomerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AddressTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AddressTest.php index bb5a2411e80..9d82c61e8cc 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AddressTest.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerCompositeTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerCompositeTest.php index 317d2a24294..4f31066a37f 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerCompositeTest.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerCompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerTest.php index 5c56ac4e84c..32c254ce026 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerTest.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_email.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_email.php index 16abb1f7064..2fdd8a82dc4 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_email.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_email.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_website.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_website.php index 381c07786cc..382333ec549 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_website.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_email.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_email.php index 7e67727e54a..b42114f0b2c 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_email.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_email.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_website.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_website.php index 546ebba995b..5601d8f09cc 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_website.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_email.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_email.php index e92771bca0f..4bc07e7785b 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_email.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_email.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_website.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_website.php index c12bbe00ae6..1ef051d221d 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_website.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_valid.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_valid.php index 228f1658d08..5942c4db135 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_valid.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_valid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_address_not_found.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_address_not_found.php index e6c7bbc9e44..236dab560df 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_address_not_found.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_address_not_found.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_empty_address_id.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_empty_address_id.php index db5424a7b4f..2f78fb8c24f 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_empty_address_id.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_empty_address_id.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_no_customer.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_no_customer.php index 7140d962be1..3758cd509ba 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_no_customer.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_no_customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_valid.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_valid.php index 7d544776099..87b275d9484 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_valid.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_valid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_absent_required_attribute.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_absent_required_attribute.php index b6dfc80b153..b4d1bd86386 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_absent_required_attribute.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_absent_required_attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_empty_address_id.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_empty_address_id.php index b958e4d6170..2270aa166ad 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_empty_address_id.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_empty_address_id.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_invalid_region.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_invalid_region.php index 13b7bfed7a4..a04706c83e4 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_invalid_region.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_invalid_region.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_no_customer.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_no_customer.php index 7a9b5e5e381..16d5ed549fd 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_no_customer.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_no_customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_valid.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_valid.php index 55d94e17e1a..5eafe483934 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_valid.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_valid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/Customer/StorageTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/Customer/StorageTest.php index 08bbaadb5c3..440f43a94d2 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/Customer/StorageTest.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/Customer/StorageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CustomerImportExport\Test\Unit\Model\ResourceModel\Import\Customer; diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/CustomerComposite/DataTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/CustomerComposite/DataTest.php index ec6af8074de..36e1590a302 100644 --- a/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/CustomerComposite/DataTest.php +++ b/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/CustomerComposite/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/etc/adminhtml/routes.xml b/app/code/Magento/CustomerImportExport/etc/adminhtml/routes.xml index 36165400ee2..ddec353b29c 100644 --- a/app/code/Magento/CustomerImportExport/etc/adminhtml/routes.xml +++ b/app/code/Magento/CustomerImportExport/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_CustomerImportExport" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/CustomerImportExport/etc/config.xml b/app/code/Magento/CustomerImportExport/etc/config.xml index 4e520d21a7e..8240c002236 100644 --- a/app/code/Magento/CustomerImportExport/etc/config.xml +++ b/app/code/Magento/CustomerImportExport/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CustomerImportExport/etc/export.xml b/app/code/Magento/CustomerImportExport/etc/export.xml index 933f4e99c52..cf226c50ef6 100644 --- a/app/code/Magento/CustomerImportExport/etc/export.xml +++ b/app/code/Magento/CustomerImportExport/etc/export.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CustomerImportExport/etc/import.xml b/app/code/Magento/CustomerImportExport/etc/import.xml index cc6715f9995..316947ffaf0 100644 --- a/app/code/Magento/CustomerImportExport/etc/import.xml +++ b/app/code/Magento/CustomerImportExport/etc/import.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CustomerImportExport/etc/module.xml b/app/code/Magento/CustomerImportExport/etc/module.xml index f38e2ad0096..a2bb69023d2 100644 --- a/app/code/Magento/CustomerImportExport/etc/module.xml +++ b/app/code/Magento/CustomerImportExport/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CustomerImportExport/registration.php b/app/code/Magento/CustomerImportExport/registration.php index cbcf9244758..9aac304811a 100644 --- a/app/code/Magento/CustomerImportExport/registration.php +++ b/app/code/Magento/CustomerImportExport/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportcsv.xml b/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportcsv.xml index 63f0f5b51c4..581c23c8026 100644 --- a/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportcsv.xml +++ b/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportcsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportxml.xml b/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportxml.xml index 63f0f5b51c4..581c23c8026 100644 --- a/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportxml.xml +++ b/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportxml.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_index_grid_block.xml b/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_index_grid_block.xml index 513a2d02ff4..39f50e92aea 100644 --- a/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_index_grid_block.xml +++ b/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_index_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Deploy/Console/Command/App/ApplicationDumpCommand.php b/app/code/Magento/Deploy/Console/Command/App/ApplicationDumpCommand.php index 40b262e3e4f..b63357be6bf 100644 --- a/app/code/Magento/Deploy/Console/Command/App/ApplicationDumpCommand.php +++ b/app/code/Magento/Deploy/Console/Command/App/ApplicationDumpCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Console\Command\App; diff --git a/app/code/Magento/Deploy/Console/Command/DeployStaticOptionsInterface.php b/app/code/Magento/Deploy/Console/Command/DeployStaticOptionsInterface.php index 25457f5505f..d62a7ea6b64 100644 --- a/app/code/Magento/Deploy/Console/Command/DeployStaticOptionsInterface.php +++ b/app/code/Magento/Deploy/Console/Command/DeployStaticOptionsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Console/Command/SetModeCommand.php b/app/code/Magento/Deploy/Console/Command/SetModeCommand.php index 51509bdc85d..4629ebe8b7c 100644 --- a/app/code/Magento/Deploy/Console/Command/SetModeCommand.php +++ b/app/code/Magento/Deploy/Console/Command/SetModeCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Console/Command/ShowModeCommand.php b/app/code/Magento/Deploy/Console/Command/ShowModeCommand.php index 6b093dc6634..496791077ba 100644 --- a/app/code/Magento/Deploy/Console/Command/ShowModeCommand.php +++ b/app/code/Magento/Deploy/Console/Command/ShowModeCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/Deploy/DeployInterface.php b/app/code/Magento/Deploy/Model/Deploy/DeployInterface.php index 16168c2b284..e2eeb1032ba 100644 --- a/app/code/Magento/Deploy/Model/Deploy/DeployInterface.php +++ b/app/code/Magento/Deploy/Model/Deploy/DeployInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/Deploy/LocaleDeploy.php b/app/code/Magento/Deploy/Model/Deploy/LocaleDeploy.php index c879a512d26..22274b45b14 100644 --- a/app/code/Magento/Deploy/Model/Deploy/LocaleDeploy.php +++ b/app/code/Magento/Deploy/Model/Deploy/LocaleDeploy.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/Deploy/LocaleQuickDeploy.php b/app/code/Magento/Deploy/Model/Deploy/LocaleQuickDeploy.php index 8102afb3630..0d990b555cb 100644 --- a/app/code/Magento/Deploy/Model/Deploy/LocaleQuickDeploy.php +++ b/app/code/Magento/Deploy/Model/Deploy/LocaleQuickDeploy.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/Deploy/TemplateMinifier.php b/app/code/Magento/Deploy/Model/Deploy/TemplateMinifier.php index 7a5d8f92f3c..4693afeefdc 100644 --- a/app/code/Magento/Deploy/Model/Deploy/TemplateMinifier.php +++ b/app/code/Magento/Deploy/Model/Deploy/TemplateMinifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/DeployManager.php b/app/code/Magento/Deploy/Model/DeployManager.php index 57c6a78e6b5..a5cbd0eb93a 100644 --- a/app/code/Magento/Deploy/Model/DeployManager.php +++ b/app/code/Magento/Deploy/Model/DeployManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/DeployStrategyFactory.php b/app/code/Magento/Deploy/Model/DeployStrategyFactory.php index 884ff5b6284..536f344e600 100644 --- a/app/code/Magento/Deploy/Model/DeployStrategyFactory.php +++ b/app/code/Magento/Deploy/Model/DeployStrategyFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/DeployStrategyProvider.php b/app/code/Magento/Deploy/Model/DeployStrategyProvider.php index 9893aa1768f..cf6c1f1be9a 100644 --- a/app/code/Magento/Deploy/Model/DeployStrategyProvider.php +++ b/app/code/Magento/Deploy/Model/DeployStrategyProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/Deployer.php b/app/code/Magento/Deploy/Model/Deployer.php index 9c1781dcb08..53a2a7fec21 100644 --- a/app/code/Magento/Deploy/Model/Deployer.php +++ b/app/code/Magento/Deploy/Model/Deployer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/Filesystem.php b/app/code/Magento/Deploy/Model/Filesystem.php index f5b725dc5fb..83de641c444 100644 --- a/app/code/Magento/Deploy/Model/Filesystem.php +++ b/app/code/Magento/Deploy/Model/Filesystem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Model; diff --git a/app/code/Magento/Deploy/Model/Mode.php b/app/code/Magento/Deploy/Model/Mode.php index 788fb897a88..c3dace24996 100644 --- a/app/code/Magento/Deploy/Model/Mode.php +++ b/app/code/Magento/Deploy/Model/Mode.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/Process.php b/app/code/Magento/Deploy/Model/Process.php index 0737777f40d..0586fc7eece 100644 --- a/app/code/Magento/Deploy/Model/Process.php +++ b/app/code/Magento/Deploy/Model/Process.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/ProcessManager.php b/app/code/Magento/Deploy/Model/ProcessManager.php index 9490f6dc671..7715d0db2be 100644 --- a/app/code/Magento/Deploy/Model/ProcessManager.php +++ b/app/code/Magento/Deploy/Model/ProcessManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/ProcessQueueManager.php b/app/code/Magento/Deploy/Model/ProcessQueueManager.php index c96a2dbb30b..e5b2dd34108 100644 --- a/app/code/Magento/Deploy/Model/ProcessQueueManager.php +++ b/app/code/Magento/Deploy/Model/ProcessQueueManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Model/ProcessTask.php b/app/code/Magento/Deploy/Model/ProcessTask.php index 8db7439c3d6..bba6b03cf39 100644 --- a/app/code/Magento/Deploy/Model/ProcessTask.php +++ b/app/code/Magento/Deploy/Model/ProcessTask.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/ApplicationDumpCommandTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/ApplicationDumpCommandTest.php index 686cf19d8f3..c12c857c6c2 100644 --- a/app/code/Magento/Deploy/Test/Unit/Console/Command/ApplicationDumpCommandTest.php +++ b/app/code/Magento/Deploy/Test/Unit/Console/Command/ApplicationDumpCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Test\Unit\Console\Command; diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/SetModeCommandTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/SetModeCommandTest.php index 32a7d48c06f..e0318cfc917 100644 --- a/app/code/Magento/Deploy/Test/Unit/Console/Command/SetModeCommandTest.php +++ b/app/code/Magento/Deploy/Test/Unit/Console/Command/SetModeCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Test\Unit\Console\Command; diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/ShowModeCommandTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/ShowModeCommandTest.php index eeb5669e3f2..da187c34078 100644 --- a/app/code/Magento/Deploy/Test/Unit/Console/Command/ShowModeCommandTest.php +++ b/app/code/Magento/Deploy/Test/Unit/Console/Command/ShowModeCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Test\Unit\Console\Command; diff --git a/app/code/Magento/Deploy/Test/Unit/Model/Deploy/LocaleDeployTest.php b/app/code/Magento/Deploy/Test/Unit/Model/Deploy/LocaleDeployTest.php index f43c8f11114..691f5b6cd8e 100644 --- a/app/code/Magento/Deploy/Test/Unit/Model/Deploy/LocaleDeployTest.php +++ b/app/code/Magento/Deploy/Test/Unit/Model/Deploy/LocaleDeployTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Test\Unit\Model\Deploy; diff --git a/app/code/Magento/Deploy/Test/Unit/Model/Deploy/LocaleQuickDeployTest.php b/app/code/Magento/Deploy/Test/Unit/Model/Deploy/LocaleQuickDeployTest.php index 0c7d459964b..6c693fe5f3d 100644 --- a/app/code/Magento/Deploy/Test/Unit/Model/Deploy/LocaleQuickDeployTest.php +++ b/app/code/Magento/Deploy/Test/Unit/Model/Deploy/LocaleQuickDeployTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Test\Unit\Model\Deploy; diff --git a/app/code/Magento/Deploy/Test/Unit/Model/Deploy/TemplateMinifierTest.php b/app/code/Magento/Deploy/Test/Unit/Model/Deploy/TemplateMinifierTest.php index e6859faeca8..594f1ec5cd9 100644 --- a/app/code/Magento/Deploy/Test/Unit/Model/Deploy/TemplateMinifierTest.php +++ b/app/code/Magento/Deploy/Test/Unit/Model/Deploy/TemplateMinifierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Test\Unit\Model\Deploy; diff --git a/app/code/Magento/Deploy/Test/Unit/Model/DeployManagerTest.php b/app/code/Magento/Deploy/Test/Unit/Model/DeployManagerTest.php index b9a9f6049f0..95c9221ccbc 100644 --- a/app/code/Magento/Deploy/Test/Unit/Model/DeployManagerTest.php +++ b/app/code/Magento/Deploy/Test/Unit/Model/DeployManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Test\Unit\Model; diff --git a/app/code/Magento/Deploy/Test/Unit/Model/DeployStrategyFactoryTest.php b/app/code/Magento/Deploy/Test/Unit/Model/DeployStrategyFactoryTest.php index 2af443ef061..56ff3665720 100644 --- a/app/code/Magento/Deploy/Test/Unit/Model/DeployStrategyFactoryTest.php +++ b/app/code/Magento/Deploy/Test/Unit/Model/DeployStrategyFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Test\Unit\Model; diff --git a/app/code/Magento/Deploy/Test/Unit/Model/FilesystemTest.php b/app/code/Magento/Deploy/Test/Unit/Model/FilesystemTest.php index 861bf05a05b..8cbbc3cd6c4 100644 --- a/app/code/Magento/Deploy/Test/Unit/Model/FilesystemTest.php +++ b/app/code/Magento/Deploy/Test/Unit/Model/FilesystemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Test\Unit\Model; diff --git a/app/code/Magento/Deploy/Test/Unit/Model/ProcessQueueManagerTest.php b/app/code/Magento/Deploy/Test/Unit/Model/ProcessQueueManagerTest.php index e7706875503..e6bbdfb462e 100644 --- a/app/code/Magento/Deploy/Test/Unit/Model/ProcessQueueManagerTest.php +++ b/app/code/Magento/Deploy/Test/Unit/Model/ProcessQueueManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Test\Unit\Model; diff --git a/app/code/Magento/Deploy/etc/di.xml b/app/code/Magento/Deploy/etc/di.xml index f230238364a..68fa7d909e4 100644 --- a/app/code/Magento/Deploy/etc/di.xml +++ b/app/code/Magento/Deploy/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Deploy/etc/module.xml b/app/code/Magento/Deploy/etc/module.xml index aa7e755178c..9197c17ef09 100644 --- a/app/code/Magento/Deploy/etc/module.xml +++ b/app/code/Magento/Deploy/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Deploy/registration.php b/app/code/Magento/Deploy/registration.php index b692eb97c29..eda7bc5ea47 100644 --- a/app/code/Magento/Deploy/registration.php +++ b/app/code/Magento/Deploy/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Block/Adminhtml/System/Config/WorkflowType.php b/app/code/Magento/Developer/Block/Adminhtml/System/Config/WorkflowType.php index 40f1d52a9a7..7acee78ed32 100644 --- a/app/code/Magento/Developer/Block/Adminhtml/System/Config/WorkflowType.php +++ b/app/code/Magento/Developer/Block/Adminhtml/System/Config/WorkflowType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Console/Command/DevTestsRunCommand.php b/app/code/Magento/Developer/Console/Command/DevTestsRunCommand.php index 633be61bfc3..43fd727445c 100644 --- a/app/code/Magento/Developer/Console/Command/DevTestsRunCommand.php +++ b/app/code/Magento/Developer/Console/Command/DevTestsRunCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Console\Command; diff --git a/app/code/Magento/Developer/Console/Command/SourceThemeDeployCommand.php b/app/code/Magento/Developer/Console/Command/SourceThemeDeployCommand.php index 5e078975dd1..34894a0d000 100644 --- a/app/code/Magento/Developer/Console/Command/SourceThemeDeployCommand.php +++ b/app/code/Magento/Developer/Console/Command/SourceThemeDeployCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Console\Command; diff --git a/app/code/Magento/Developer/Console/Command/XmlCatalogGenerateCommand.php b/app/code/Magento/Developer/Console/Command/XmlCatalogGenerateCommand.php index 3f48ddb734b..b8dcbace5b6 100644 --- a/app/code/Magento/Developer/Console/Command/XmlCatalogGenerateCommand.php +++ b/app/code/Magento/Developer/Console/Command/XmlCatalogGenerateCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Console/Command/XmlConverterCommand.php b/app/code/Magento/Developer/Console/Command/XmlConverterCommand.php index 03894f3722f..0e8ca94c666 100644 --- a/app/code/Magento/Developer/Console/Command/XmlConverterCommand.php +++ b/app/code/Magento/Developer/Console/Command/XmlConverterCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Helper/Data.php b/app/code/Magento/Developer/Helper/Data.php index 0474c0c41d9..16755e25861 100644 --- a/app/code/Magento/Developer/Helper/Data.php +++ b/app/code/Magento/Developer/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Helper; diff --git a/app/code/Magento/Developer/Model/Config/Backend/AllowedIps.php b/app/code/Magento/Developer/Model/Config/Backend/AllowedIps.php index d421e25144e..99804c58d60 100644 --- a/app/code/Magento/Developer/Model/Config/Backend/AllowedIps.php +++ b/app/code/Magento/Developer/Model/Config/Backend/AllowedIps.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Model\Config\Backend; diff --git a/app/code/Magento/Developer/Model/Config/Backend/WorkflowType.php b/app/code/Magento/Developer/Model/Config/Backend/WorkflowType.php index 48295a444ca..9f57e1c517f 100644 --- a/app/code/Magento/Developer/Model/Config/Backend/WorkflowType.php +++ b/app/code/Magento/Developer/Model/Config/Backend/WorkflowType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Model\Config\Backend; diff --git a/app/code/Magento/Developer/Model/Config/Source/WorkflowType.php b/app/code/Magento/Developer/Model/Config/Source/WorkflowType.php index 9202b0b2595..50c54559ede 100644 --- a/app/code/Magento/Developer/Model/Config/Source/WorkflowType.php +++ b/app/code/Magento/Developer/Model/Config/Source/WorkflowType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Model\Config\Source; diff --git a/app/code/Magento/Developer/Model/Css/PreProcessor/FileGenerator/PublicationDecorator.php b/app/code/Magento/Developer/Model/Css/PreProcessor/FileGenerator/PublicationDecorator.php index 7dec471a8fa..1deb2d65f00 100644 --- a/app/code/Magento/Developer/Model/Css/PreProcessor/FileGenerator/PublicationDecorator.php +++ b/app/code/Magento/Developer/Model/Css/PreProcessor/FileGenerator/PublicationDecorator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Model\Css\PreProcessor\FileGenerator; diff --git a/app/code/Magento/Developer/Model/Logger/Handler/Debug.php b/app/code/Magento/Developer/Model/Logger/Handler/Debug.php index cdf2403fa40..df905de3563 100644 --- a/app/code/Magento/Developer/Model/Logger/Handler/Debug.php +++ b/app/code/Magento/Developer/Model/Logger/Handler/Debug.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Model\Logger\Handler; diff --git a/app/code/Magento/Developer/Model/TemplateEngine/Decorator/DebugHints.php b/app/code/Magento/Developer/Model/TemplateEngine/Decorator/DebugHints.php index 3340449820a..ee611996060 100644 --- a/app/code/Magento/Developer/Model/TemplateEngine/Decorator/DebugHints.php +++ b/app/code/Magento/Developer/Model/TemplateEngine/Decorator/DebugHints.php @@ -2,7 +2,7 @@ /** * Decorator that inserts debugging hints into the rendered block contents * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Model/TemplateEngine/Plugin/DebugHints.php b/app/code/Magento/Developer/Model/TemplateEngine/Plugin/DebugHints.php index bad8b9c5092..c57d744da47 100644 --- a/app/code/Magento/Developer/Model/TemplateEngine/Plugin/DebugHints.php +++ b/app/code/Magento/Developer/Model/TemplateEngine/Plugin/DebugHints.php @@ -2,7 +2,7 @@ /** * Plugin for the template engine factory that makes a decision of whether to activate debugging hints or not * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Model\TemplateEngine\Plugin; diff --git a/app/code/Magento/Developer/Model/Tools/Formatter.php b/app/code/Magento/Developer/Model/Tools/Formatter.php index bc58981d5aa..a8fcba13685 100644 --- a/app/code/Magento/Developer/Model/Tools/Formatter.php +++ b/app/code/Magento/Developer/Model/Tools/Formatter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Model/View/Asset/PreProcessor/FrontendCompilation.php b/app/code/Magento/Developer/Model/View/Asset/PreProcessor/FrontendCompilation.php index 8cd04f7d1e4..4d03e3cf9a5 100644 --- a/app/code/Magento/Developer/Model/View/Asset/PreProcessor/FrontendCompilation.php +++ b/app/code/Magento/Developer/Model/View/Asset/PreProcessor/FrontendCompilation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Model\View\Asset\PreProcessor; diff --git a/app/code/Magento/Developer/Model/View/Asset/PreProcessor/PreprocessorStrategy.php b/app/code/Magento/Developer/Model/View/Asset/PreProcessor/PreprocessorStrategy.php index b08f9830b1c..81b7d7e9e93 100644 --- a/app/code/Magento/Developer/Model/View/Asset/PreProcessor/PreprocessorStrategy.php +++ b/app/code/Magento/Developer/Model/View/Asset/PreProcessor/PreprocessorStrategy.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Model\View\Asset\PreProcessor; diff --git a/app/code/Magento/Developer/Model/View/Page/Config/ClientSideLessCompilation/Renderer.php b/app/code/Magento/Developer/Model/View/Page/Config/ClientSideLessCompilation/Renderer.php index 350c30932ef..2d7c0500d5c 100644 --- a/app/code/Magento/Developer/Model/View/Page/Config/ClientSideLessCompilation/Renderer.php +++ b/app/code/Magento/Developer/Model/View/Page/Config/ClientSideLessCompilation/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Model\View\Page\Config\ClientSideLessCompilation; diff --git a/app/code/Magento/Developer/Model/View/Page/Config/RendererFactory.php b/app/code/Magento/Developer/Model/View/Page/Config/RendererFactory.php index 3301d4b553c..a16a6cc9a36 100644 --- a/app/code/Magento/Developer/Model/View/Page/Config/RendererFactory.php +++ b/app/code/Magento/Developer/Model/View/Page/Config/RendererFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Model\View\Page\Config; diff --git a/app/code/Magento/Developer/Model/XmlCatalog/Format/FormatInterface.php b/app/code/Magento/Developer/Model/XmlCatalog/Format/FormatInterface.php index d6c54580f25..667c3618615 100644 --- a/app/code/Magento/Developer/Model/XmlCatalog/Format/FormatInterface.php +++ b/app/code/Magento/Developer/Model/XmlCatalog/Format/FormatInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Model/XmlCatalog/Format/PhpStorm.php b/app/code/Magento/Developer/Model/XmlCatalog/Format/PhpStorm.php index 17570a06109..cd0f8d77bae 100644 --- a/app/code/Magento/Developer/Model/XmlCatalog/Format/PhpStorm.php +++ b/app/code/Magento/Developer/Model/XmlCatalog/Format/PhpStorm.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Test/Unit/Block/Adminhtml/System/Config/WorkflowTypeTest.php b/app/code/Magento/Developer/Test/Unit/Block/Adminhtml/System/Config/WorkflowTypeTest.php index 2027ee17475..1905e94ac0d 100644 --- a/app/code/Magento/Developer/Test/Unit/Block/Adminhtml/System/Config/WorkflowTypeTest.php +++ b/app/code/Magento/Developer/Test/Unit/Block/Adminhtml/System/Config/WorkflowTypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Block\Adminhtml\System\Config; diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/DevTestsRunCommandTest.php b/app/code/Magento/Developer/Test/Unit/Console/Command/DevTestsRunCommandTest.php index 52ae1f11bfe..5d6d1669a88 100644 --- a/app/code/Magento/Developer/Test/Unit/Console/Command/DevTestsRunCommandTest.php +++ b/app/code/Magento/Developer/Test/Unit/Console/Command/DevTestsRunCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/SourceThemeDeployCommandTest.php b/app/code/Magento/Developer/Test/Unit/Console/Command/SourceThemeDeployCommandTest.php index 7ed80f766a1..2ab4f73e154 100644 --- a/app/code/Magento/Developer/Test/Unit/Console/Command/SourceThemeDeployCommandTest.php +++ b/app/code/Magento/Developer/Test/Unit/Console/Command/SourceThemeDeployCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Console\Command; diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/XmlCatalogGenerateCommandTest.php b/app/code/Magento/Developer/Test/Unit/Console/Command/XmlCatalogGenerateCommandTest.php index 8447d70b98f..0111b8a6ada 100644 --- a/app/code/Magento/Developer/Test/Unit/Console/Command/XmlCatalogGenerateCommandTest.php +++ b/app/code/Magento/Developer/Test/Unit/Console/Command/XmlCatalogGenerateCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/XmlConverterCommandTest.php b/app/code/Magento/Developer/Test/Unit/Console/Command/XmlConverterCommandTest.php index c9a43518346..a58499497b8 100644 --- a/app/code/Magento/Developer/Test/Unit/Console/Command/XmlConverterCommandTest.php +++ b/app/code/Magento/Developer/Test/Unit/Console/Command/XmlConverterCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/_files/test.xml b/app/code/Magento/Developer/Test/Unit/Console/Command/_files/test.xml index 6d197d16b78..288aa6fbec2 100644 --- a/app/code/Magento/Developer/Test/Unit/Console/Command/_files/test.xml +++ b/app/code/Magento/Developer/Test/Unit/Console/Command/_files/test.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Developer/Test/Unit/Helper/DataTest.php b/app/code/Magento/Developer/Test/Unit/Helper/DataTest.php index 8bb90eda5ad..4e4f0ab09fd 100644 --- a/app/code/Magento/Developer/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Developer/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Helper; diff --git a/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/AllowedIpsTest.php b/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/AllowedIpsTest.php index cb177a47916..c5ca71aed7a 100644 --- a/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/AllowedIpsTest.php +++ b/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/AllowedIpsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Model\Config\Backend; diff --git a/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/WorkflowTypeTest.php b/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/WorkflowTypeTest.php index 9b1fc00b39f..82330a74701 100644 --- a/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/WorkflowTypeTest.php +++ b/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/WorkflowTypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Model\Config\Backend; diff --git a/app/code/Magento/Developer/Test/Unit/Model/Config/Source/WorkflowTypeTest.php b/app/code/Magento/Developer/Test/Unit/Model/Config/Source/WorkflowTypeTest.php index 2fae07fe118..0847499e721 100644 --- a/app/code/Magento/Developer/Test/Unit/Model/Config/Source/WorkflowTypeTest.php +++ b/app/code/Magento/Developer/Test/Unit/Model/Config/Source/WorkflowTypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/Developer/Test/Unit/Model/Css/PreProcessor/FileGenerator/PublicationDecoratorTest.php b/app/code/Magento/Developer/Test/Unit/Model/Css/PreProcessor/FileGenerator/PublicationDecoratorTest.php index 8130599d538..ca0ac67f2c9 100644 --- a/app/code/Magento/Developer/Test/Unit/Model/Css/PreProcessor/FileGenerator/PublicationDecoratorTest.php +++ b/app/code/Magento/Developer/Test/Unit/Model/Css/PreProcessor/FileGenerator/PublicationDecoratorTest.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Model\Css\PreProcessor\FileGenerator; diff --git a/app/code/Magento/Developer/Test/Unit/Model/Logger/Handler/DebugTest.php b/app/code/Magento/Developer/Test/Unit/Model/Logger/Handler/DebugTest.php index e539e6b1772..f2fa1e23d7d 100644 --- a/app/code/Magento/Developer/Test/Unit/Model/Logger/Handler/DebugTest.php +++ b/app/code/Magento/Developer/Test/Unit/Model/Logger/Handler/DebugTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Model\Logger\Handler; diff --git a/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Decorator/DebugHintsTest.php b/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Decorator/DebugHintsTest.php index 572d2851410..ddc5c066630 100644 --- a/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Decorator/DebugHintsTest.php +++ b/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Decorator/DebugHintsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Model\TemplateEngine\Decorator; diff --git a/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Plugin/DebugHintsTest.php b/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Plugin/DebugHintsTest.php index bf472c7c9fa..fcb66b94c9f 100644 --- a/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Plugin/DebugHintsTest.php +++ b/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Plugin/DebugHintsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Model\TemplateEngine\Plugin; diff --git a/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/FrontendCompilationTest.php b/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/FrontendCompilationTest.php index b43d91c5e4d..3816043af76 100644 --- a/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/FrontendCompilationTest.php +++ b/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/FrontendCompilationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Model\View\Asset\PreProcessor; diff --git a/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/PreprocessorStrategyTest.php b/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/PreprocessorStrategyTest.php index 4be7767de42..97adda9b413 100644 --- a/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/PreprocessorStrategyTest.php +++ b/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/PreprocessorStrategyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Model\View\Asset\PreProcessor; diff --git a/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/ClientSideLessCompilation/RendererTest.php b/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/ClientSideLessCompilation/RendererTest.php index 77feafa67fd..e09ce94d4bd 100644 --- a/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/ClientSideLessCompilation/RendererTest.php +++ b/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/ClientSideLessCompilation/RendererTest.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/RendererFactoryTest.php b/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/RendererFactoryTest.php index 9ea3dcbaffb..a62451549b6 100644 --- a/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/RendererFactoryTest.php +++ b/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/RendererFactoryTest.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Test\Unit\Model\View\Page\Config; diff --git a/app/code/Magento/Developer/etc/adminhtml/di.xml b/app/code/Magento/Developer/etc/adminhtml/di.xml index 8e844b867df..5215e49ff2f 100644 --- a/app/code/Magento/Developer/etc/adminhtml/di.xml +++ b/app/code/Magento/Developer/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Developer/etc/adminhtml/system.xml b/app/code/Magento/Developer/etc/adminhtml/system.xml index 0f1d43c8a56..37a2cb58120 100644 --- a/app/code/Magento/Developer/etc/adminhtml/system.xml +++ b/app/code/Magento/Developer/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */--> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd"> diff --git a/app/code/Magento/Developer/etc/config.xml b/app/code/Magento/Developer/etc/config.xml index a39cd241fe6..4bdd425bca5 100644 --- a/app/code/Magento/Developer/etc/config.xml +++ b/app/code/Magento/Developer/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Developer/etc/di.xml b/app/code/Magento/Developer/etc/di.xml index 2362aaa0780..c0eaf8cfdd4 100644 --- a/app/code/Magento/Developer/etc/di.xml +++ b/app/code/Magento/Developer/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Developer/etc/frontend/di.xml b/app/code/Magento/Developer/etc/frontend/di.xml index 23be59086b8..6d526d8d02f 100644 --- a/app/code/Magento/Developer/etc/frontend/di.xml +++ b/app/code/Magento/Developer/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Developer/etc/module.xml b/app/code/Magento/Developer/etc/module.xml index 8069b14ddea..ebdc7587eda 100644 --- a/app/code/Magento/Developer/etc/module.xml +++ b/app/code/Magento/Developer/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Developer/registration.php b/app/code/Magento/Developer/registration.php index 95ae8d00e3e..5b0bab4b1d4 100644 --- a/app/code/Magento/Developer/registration.php +++ b/app/code/Magento/Developer/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Dhl/Block/Adminhtml/Unitofmeasure.php b/app/code/Magento/Dhl/Block/Adminhtml/Unitofmeasure.php index 9c4d01a1664..4433609b00f 100644 --- a/app/code/Magento/Dhl/Block/Adminhtml/Unitofmeasure.php +++ b/app/code/Magento/Dhl/Block/Adminhtml/Unitofmeasure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Block\Adminhtml; diff --git a/app/code/Magento/Dhl/Model/AbstractDhl.php b/app/code/Magento/Dhl/Model/AbstractDhl.php index 73351b2fbe8..3355e35aa5d 100644 --- a/app/code/Magento/Dhl/Model/AbstractDhl.php +++ b/app/code/Magento/Dhl/Model/AbstractDhl.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Model; diff --git a/app/code/Magento/Dhl/Model/Carrier.php b/app/code/Magento/Dhl/Model/Carrier.php index cd41f17b4da..0c9a7afebb0 100644 --- a/app/code/Magento/Dhl/Model/Carrier.php +++ b/app/code/Magento/Dhl/Model/Carrier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Dhl/Model/Plugin/Checkout/Block/Cart/Shipping.php b/app/code/Magento/Dhl/Model/Plugin/Checkout/Block/Cart/Shipping.php index 22f6c2b0ada..50853fdd433 100644 --- a/app/code/Magento/Dhl/Model/Plugin/Checkout/Block/Cart/Shipping.php +++ b/app/code/Magento/Dhl/Model/Plugin/Checkout/Block/Cart/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Dhl/Model/Source/Contenttype.php b/app/code/Magento/Dhl/Model/Source/Contenttype.php index a1527315c33..cef2d70366b 100644 --- a/app/code/Magento/Dhl/Model/Source/Contenttype.php +++ b/app/code/Magento/Dhl/Model/Source/Contenttype.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Model\Source; diff --git a/app/code/Magento/Dhl/Model/Source/Method/AbstractMethod.php b/app/code/Magento/Dhl/Model/Source/Method/AbstractMethod.php index 0d038596960..aa6331a3893 100644 --- a/app/code/Magento/Dhl/Model/Source/Method/AbstractMethod.php +++ b/app/code/Magento/Dhl/Model/Source/Method/AbstractMethod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Model\Source\Method; diff --git a/app/code/Magento/Dhl/Model/Source/Method/Doc.php b/app/code/Magento/Dhl/Model/Source/Method/Doc.php index 6bc3b13e87a..edfa6be4166 100644 --- a/app/code/Magento/Dhl/Model/Source/Method/Doc.php +++ b/app/code/Magento/Dhl/Model/Source/Method/Doc.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Model\Source\Method; diff --git a/app/code/Magento/Dhl/Model/Source/Method/Freedoc.php b/app/code/Magento/Dhl/Model/Source/Method/Freedoc.php index 2da5a9646ca..225a4c87ab6 100644 --- a/app/code/Magento/Dhl/Model/Source/Method/Freedoc.php +++ b/app/code/Magento/Dhl/Model/Source/Method/Freedoc.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Model\Source\Method; diff --git a/app/code/Magento/Dhl/Model/Source/Method/Freenondoc.php b/app/code/Magento/Dhl/Model/Source/Method/Freenondoc.php index a2ac9717fff..4c93e256598 100644 --- a/app/code/Magento/Dhl/Model/Source/Method/Freenondoc.php +++ b/app/code/Magento/Dhl/Model/Source/Method/Freenondoc.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Model\Source\Method; diff --git a/app/code/Magento/Dhl/Model/Source/Method/Generic.php b/app/code/Magento/Dhl/Model/Source/Method/Generic.php index 918bdbcb7fa..828234d6885 100644 --- a/app/code/Magento/Dhl/Model/Source/Method/Generic.php +++ b/app/code/Magento/Dhl/Model/Source/Method/Generic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Model\Source\Method; diff --git a/app/code/Magento/Dhl/Model/Source/Method/Nondoc.php b/app/code/Magento/Dhl/Model/Source/Method/Nondoc.php index 4d60a2c1760..6ab1069b5e6 100644 --- a/app/code/Magento/Dhl/Model/Source/Method/Nondoc.php +++ b/app/code/Magento/Dhl/Model/Source/Method/Nondoc.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Model\Source\Method; diff --git a/app/code/Magento/Dhl/Model/Source/Method/Size.php b/app/code/Magento/Dhl/Model/Source/Method/Size.php index 0f2589a885e..35f038c5e6b 100644 --- a/app/code/Magento/Dhl/Model/Source/Method/Size.php +++ b/app/code/Magento/Dhl/Model/Source/Method/Size.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Model\Source\Method; diff --git a/app/code/Magento/Dhl/Model/Source/Method/Unitofmeasure.php b/app/code/Magento/Dhl/Model/Source/Method/Unitofmeasure.php index ebcc5f223dc..195951ebe85 100644 --- a/app/code/Magento/Dhl/Model/Source/Method/Unitofmeasure.php +++ b/app/code/Magento/Dhl/Model/Source/Method/Unitofmeasure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Model\Source\Method; diff --git a/app/code/Magento/Dhl/Setup/InstallData.php b/app/code/Magento/Dhl/Setup/InstallData.php index c267bc00b23..b6f428d7684 100644 --- a/app/code/Magento/Dhl/Setup/InstallData.php +++ b/app/code/Magento/Dhl/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Dhl/Test/Unit/Model/CarrierTest.php b/app/code/Magento/Dhl/Test/Unit/Model/CarrierTest.php index 54411a08945..44adb2053c1 100644 --- a/app/code/Magento/Dhl/Test/Unit/Model/CarrierTest.php +++ b/app/code/Magento/Dhl/Test/Unit/Model/CarrierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Dhl\Test\Unit\Model; diff --git a/app/code/Magento/Dhl/Test/Unit/Model/_files/countries.xml b/app/code/Magento/Dhl/Test/Unit/Model/_files/countries.xml index 2cb4f2ef501..23385f1085c 100644 --- a/app/code/Magento/Dhl/Test/Unit/Model/_files/countries.xml +++ b/app/code/Magento/Dhl/Test/Unit/Model/_files/countries.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -1557,4 +1557,4 @@ <measure_unit>CM</measure_unit> <name>Zimbabwe</name> </ZW> -</countries> \ No newline at end of file +</countries> diff --git a/app/code/Magento/Dhl/Test/Unit/Model/_files/rates_request_data_dhl.php b/app/code/Magento/Dhl/Test/Unit/Model/_files/rates_request_data_dhl.php index 78e6dddb8c8..cbe3cf6b9f5 100644 --- a/app/code/Magento/Dhl/Test/Unit/Model/_files/rates_request_data_dhl.php +++ b/app/code/Magento/Dhl/Test/Unit/Model/_files/rates_request_data_dhl.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Dhl/Test/Unit/Model/_files/response_shipping_label.xml b/app/code/Magento/Dhl/Test/Unit/Model/_files/response_shipping_label.xml index 55a8e2e7d87..5dbdfc55bff 100644 --- a/app/code/Magento/Dhl/Test/Unit/Model/_files/response_shipping_label.xml +++ b/app/code/Magento/Dhl/Test/Unit/Model/_files/response_shipping_label.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Dhl/Test/Unit/Model/_files/success_dhl_response_rates.xml b/app/code/Magento/Dhl/Test/Unit/Model/_files/success_dhl_response_rates.xml index ac3a29e4a2e..1f8635a8b97 100644 --- a/app/code/Magento/Dhl/Test/Unit/Model/_files/success_dhl_response_rates.xml +++ b/app/code/Magento/Dhl/Test/Unit/Model/_files/success_dhl_response_rates.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Dhl/etc/adminhtml/system.xml b/app/code/Magento/Dhl/etc/adminhtml/system.xml index 4f28555021d..dbbfe2a9ff4 100644 --- a/app/code/Magento/Dhl/etc/adminhtml/system.xml +++ b/app/code/Magento/Dhl/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Dhl/etc/config.xml b/app/code/Magento/Dhl/etc/config.xml index 5f094005afa..416c6ab271e 100644 --- a/app/code/Magento/Dhl/etc/config.xml +++ b/app/code/Magento/Dhl/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Dhl/etc/countries.xml b/app/code/Magento/Dhl/etc/countries.xml index 6402094f08d..1b795fe8aad 100644 --- a/app/code/Magento/Dhl/etc/countries.xml +++ b/app/code/Magento/Dhl/etc/countries.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Dhl/etc/di.xml b/app/code/Magento/Dhl/etc/di.xml index cbe79579114..bfcf0ffafdb 100644 --- a/app/code/Magento/Dhl/etc/di.xml +++ b/app/code/Magento/Dhl/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Dhl/etc/module.xml b/app/code/Magento/Dhl/etc/module.xml index eccbdf0a0c1..9e3feb6517b 100644 --- a/app/code/Magento/Dhl/etc/module.xml +++ b/app/code/Magento/Dhl/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Dhl/registration.php b/app/code/Magento/Dhl/registration.php index 4bafb333809..0463140f126 100644 --- a/app/code/Magento/Dhl/registration.php +++ b/app/code/Magento/Dhl/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Dhl/view/adminhtml/templates/unitofmeasure.phtml b/app/code/Magento/Dhl/view/adminhtml/templates/unitofmeasure.phtml index 330820cb1cf..593de1f3eff 100644 --- a/app/code/Magento/Dhl/view/adminhtml/templates/unitofmeasure.phtml +++ b/app/code/Magento/Dhl/view/adminhtml/templates/unitofmeasure.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** diff --git a/app/code/Magento/Dhl/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Dhl/view/frontend/layout/checkout_cart_index.xml index 49d31ff3efb..07fd2a3aa16 100644 --- a/app/code/Magento/Dhl/view/frontend/layout/checkout_cart_index.xml +++ b/app/code/Magento/Dhl/view/frontend/layout/checkout_cart_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Dhl/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Dhl/view/frontend/layout/checkout_index_index.xml index df08f1b1234..5fc507914bc 100644 --- a/app/code/Magento/Dhl/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/Dhl/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validation-rules.js b/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validation-rules.js index 990f015e3e2..6752f87f527 100644 --- a/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validation-rules.js +++ b/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validation-rules.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validator.js b/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validator.js index e41297ad690..f193cb77b88 100644 --- a/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validator.js +++ b/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Dhl/view/frontend/web/js/view/shipping-rates-validation.js b/app/code/Magento/Dhl/view/frontend/web/js/view/shipping-rates-validation.js index 317c09864e6..3133ba35154 100644 --- a/app/code/Magento/Dhl/view/frontend/web/js/view/shipping-rates-validation.js +++ b/app/code/Magento/Dhl/view/frontend/web/js/view/shipping-rates-validation.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Directory/Api/CountryInformationAcquirerInterface.php b/app/code/Magento/Directory/Api/CountryInformationAcquirerInterface.php index 67c40e14983..b8790fad2d2 100644 --- a/app/code/Magento/Directory/Api/CountryInformationAcquirerInterface.php +++ b/app/code/Magento/Directory/Api/CountryInformationAcquirerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Api; diff --git a/app/code/Magento/Directory/Api/CurrencyInformationAcquirerInterface.php b/app/code/Magento/Directory/Api/CurrencyInformationAcquirerInterface.php index cd2b2147d21..5c431d087b8 100644 --- a/app/code/Magento/Directory/Api/CurrencyInformationAcquirerInterface.php +++ b/app/code/Magento/Directory/Api/CurrencyInformationAcquirerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Api; diff --git a/app/code/Magento/Directory/Api/Data/CountryInformationInterface.php b/app/code/Magento/Directory/Api/Data/CountryInformationInterface.php index a5c2a470760..5aee7e34f47 100644 --- a/app/code/Magento/Directory/Api/Data/CountryInformationInterface.php +++ b/app/code/Magento/Directory/Api/Data/CountryInformationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Api\Data; diff --git a/app/code/Magento/Directory/Api/Data/CurrencyInformationInterface.php b/app/code/Magento/Directory/Api/Data/CurrencyInformationInterface.php index 9bde2a69dfc..dd460feb7e4 100644 --- a/app/code/Magento/Directory/Api/Data/CurrencyInformationInterface.php +++ b/app/code/Magento/Directory/Api/Data/CurrencyInformationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Api\Data; diff --git a/app/code/Magento/Directory/Api/Data/ExchangeRateInterface.php b/app/code/Magento/Directory/Api/Data/ExchangeRateInterface.php index 0d2b6cdace1..dabeab01cfc 100644 --- a/app/code/Magento/Directory/Api/Data/ExchangeRateInterface.php +++ b/app/code/Magento/Directory/Api/Data/ExchangeRateInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Api\Data; diff --git a/app/code/Magento/Directory/Api/Data/RegionInformationInterface.php b/app/code/Magento/Directory/Api/Data/RegionInformationInterface.php index 31aa90608a0..4134457fd8a 100644 --- a/app/code/Magento/Directory/Api/Data/RegionInformationInterface.php +++ b/app/code/Magento/Directory/Api/Data/RegionInformationInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Api\Data; diff --git a/app/code/Magento/Directory/Block/Adminhtml/Frontend/Currency/Base.php b/app/code/Magento/Directory/Block/Adminhtml/Frontend/Currency/Base.php index 5a85ddb3599..80aa30d0094 100644 --- a/app/code/Magento/Directory/Block/Adminhtml/Frontend/Currency/Base.php +++ b/app/code/Magento/Directory/Block/Adminhtml/Frontend/Currency/Base.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Block/Adminhtml/Frontend/Region/Updater.php b/app/code/Magento/Directory/Block/Adminhtml/Frontend/Region/Updater.php index acabe0a919f..1f9f1b4da94 100644 --- a/app/code/Magento/Directory/Block/Adminhtml/Frontend/Region/Updater.php +++ b/app/code/Magento/Directory/Block/Adminhtml/Frontend/Region/Updater.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Block\Adminhtml\Frontend\Region; diff --git a/app/code/Magento/Directory/Block/Currency.php b/app/code/Magento/Directory/Block/Currency.php index cd3064ac2cb..ffaecdd0bfe 100644 --- a/app/code/Magento/Directory/Block/Currency.php +++ b/app/code/Magento/Directory/Block/Currency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Block/Data.php b/app/code/Magento/Directory/Block/Data.php index 3c8b682d1a1..432f9d29a9b 100644 --- a/app/code/Magento/Directory/Block/Data.php +++ b/app/code/Magento/Directory/Block/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Block; diff --git a/app/code/Magento/Directory/Controller/Adminhtml/Json/CountryRegion.php b/app/code/Magento/Directory/Controller/Adminhtml/Json/CountryRegion.php index 266c23a8953..89351f13178 100644 --- a/app/code/Magento/Directory/Controller/Adminhtml/Json/CountryRegion.php +++ b/app/code/Magento/Directory/Controller/Adminhtml/Json/CountryRegion.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Controller\Adminhtml\Json; diff --git a/app/code/Magento/Directory/Controller/Currency/SwitchAction.php b/app/code/Magento/Directory/Controller/Currency/SwitchAction.php index e02def6cd46..f750436a7db 100644 --- a/app/code/Magento/Directory/Controller/Currency/SwitchAction.php +++ b/app/code/Magento/Directory/Controller/Currency/SwitchAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Controller\Currency; diff --git a/app/code/Magento/Directory/Helper/Data.php b/app/code/Magento/Directory/Helper/Data.php index 99ac4ad3f77..41984fd444e 100644 --- a/app/code/Magento/Directory/Helper/Data.php +++ b/app/code/Magento/Directory/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/AllowedCountries.php b/app/code/Magento/Directory/Model/AllowedCountries.php index 9c8b0c51c2e..5b849dbcd0f 100644 --- a/app/code/Magento/Directory/Model/AllowedCountries.php +++ b/app/code/Magento/Directory/Model/AllowedCountries.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/Config/Source/Allregion.php b/app/code/Magento/Directory/Model/Config/Source/Allregion.php index 6da89878826..40b0bbc51a1 100644 --- a/app/code/Magento/Directory/Model/Config/Source/Allregion.php +++ b/app/code/Magento/Directory/Model/Config/Source/Allregion.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Config\Source; diff --git a/app/code/Magento/Directory/Model/Config/Source/Country.php b/app/code/Magento/Directory/Model/Config/Source/Country.php index a30d8677711..c6cc4468fd0 100644 --- a/app/code/Magento/Directory/Model/Config/Source/Country.php +++ b/app/code/Magento/Directory/Model/Config/Source/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Config\Source; diff --git a/app/code/Magento/Directory/Model/Config/Source/Country/Full.php b/app/code/Magento/Directory/Model/Config/Source/Country/Full.php index ea2db6a5974..c5a7159f5a6 100644 --- a/app/code/Magento/Directory/Model/Config/Source/Country/Full.php +++ b/app/code/Magento/Directory/Model/Config/Source/Country/Full.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Config\Source\Country; diff --git a/app/code/Magento/Directory/Model/Config/Source/WeightUnit.php b/app/code/Magento/Directory/Model/Config/Source/WeightUnit.php index e4e84266929..e7a3c8edfe8 100644 --- a/app/code/Magento/Directory/Model/Config/Source/WeightUnit.php +++ b/app/code/Magento/Directory/Model/Config/Source/WeightUnit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Config\Source; diff --git a/app/code/Magento/Directory/Model/Country.php b/app/code/Magento/Directory/Model/Country.php index 511c904a0f8..4c3168ec5c4 100644 --- a/app/code/Magento/Directory/Model/Country.php +++ b/app/code/Magento/Directory/Model/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/Country/Format.php b/app/code/Magento/Directory/Model/Country/Format.php index 5042c398a99..039cd494109 100644 --- a/app/code/Magento/Directory/Model/Country/Format.php +++ b/app/code/Magento/Directory/Model/Country/Format.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Country; diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Config.php b/app/code/Magento/Directory/Model/Country/Postcode/Config.php index 0b79ad89228..ca41bf39c33 100644 --- a/app/code/Magento/Directory/Model/Country/Postcode/Config.php +++ b/app/code/Magento/Directory/Model/Country/Postcode/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Country\Postcode; diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Config/Converter.php b/app/code/Magento/Directory/Model/Country/Postcode/Config/Converter.php index 5c18d3e0f97..4047652ad38 100644 --- a/app/code/Magento/Directory/Model/Country/Postcode/Config/Converter.php +++ b/app/code/Magento/Directory/Model/Country/Postcode/Config/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Country\Postcode\Config; diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Config/Data.php b/app/code/Magento/Directory/Model/Country/Postcode/Config/Data.php index c24da536e77..ded32822bd4 100644 --- a/app/code/Magento/Directory/Model/Country/Postcode/Config/Data.php +++ b/app/code/Magento/Directory/Model/Country/Postcode/Config/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Country\Postcode\Config; diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Config/Reader.php b/app/code/Magento/Directory/Model/Country/Postcode/Config/Reader.php index ed36ad3ace2..cc6cae370eb 100644 --- a/app/code/Magento/Directory/Model/Country/Postcode/Config/Reader.php +++ b/app/code/Magento/Directory/Model/Country/Postcode/Config/Reader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Country\Postcode\Config; diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Config/SchemaLocator.php b/app/code/Magento/Directory/Model/Country/Postcode/Config/SchemaLocator.php index 43adfa151f7..896fc6f819c 100644 --- a/app/code/Magento/Directory/Model/Country/Postcode/Config/SchemaLocator.php +++ b/app/code/Magento/Directory/Model/Country/Postcode/Config/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Country\Postcode\Config; diff --git a/app/code/Magento/Directory/Model/Country/Postcode/ConfigInterface.php b/app/code/Magento/Directory/Model/Country/Postcode/ConfigInterface.php index 588493ab69e..f6f13f6ecf6 100644 --- a/app/code/Magento/Directory/Model/Country/Postcode/ConfigInterface.php +++ b/app/code/Magento/Directory/Model/Country/Postcode/ConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Country\Postcode; diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Validator.php b/app/code/Magento/Directory/Model/Country/Postcode/Validator.php index d25fc7cd0fd..c5e852f5074 100644 --- a/app/code/Magento/Directory/Model/Country/Postcode/Validator.php +++ b/app/code/Magento/Directory/Model/Country/Postcode/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Country\Postcode; diff --git a/app/code/Magento/Directory/Model/Country/Postcode/ValidatorInterface.php b/app/code/Magento/Directory/Model/Country/Postcode/ValidatorInterface.php index b07cdfc3758..ee5a331d67d 100644 --- a/app/code/Magento/Directory/Model/Country/Postcode/ValidatorInterface.php +++ b/app/code/Magento/Directory/Model/Country/Postcode/ValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Country\Postcode; diff --git a/app/code/Magento/Directory/Model/CountryFactory.php b/app/code/Magento/Directory/Model/CountryFactory.php index 4b61fae77a3..ff1a4e2e634 100644 --- a/app/code/Magento/Directory/Model/CountryFactory.php +++ b/app/code/Magento/Directory/Model/CountryFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/CountryInformationAcquirer.php b/app/code/Magento/Directory/Model/CountryInformationAcquirer.php index 380a2b2de34..68f9c4fa8ef 100644 --- a/app/code/Magento/Directory/Model/CountryInformationAcquirer.php +++ b/app/code/Magento/Directory/Model/CountryInformationAcquirer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model; diff --git a/app/code/Magento/Directory/Model/Currency.php b/app/code/Magento/Directory/Model/Currency.php index 0be6c650912..5e09beb562c 100644 --- a/app/code/Magento/Directory/Model/Currency.php +++ b/app/code/Magento/Directory/Model/Currency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/Currency/DefaultLocator.php b/app/code/Magento/Directory/Model/Currency/DefaultLocator.php index fbcdd5a133e..02255186304 100644 --- a/app/code/Magento/Directory/Model/Currency/DefaultLocator.php +++ b/app/code/Magento/Directory/Model/Currency/DefaultLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Currency; diff --git a/app/code/Magento/Directory/Model/Currency/Filter.php b/app/code/Magento/Directory/Model/Currency/Filter.php index 60c5a01c083..72f178c2514 100644 --- a/app/code/Magento/Directory/Model/Currency/Filter.php +++ b/app/code/Magento/Directory/Model/Currency/Filter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/Currency/Import/AbstractImport.php b/app/code/Magento/Directory/Model/Currency/Import/AbstractImport.php index 7f996eee269..f05fcac7b67 100644 --- a/app/code/Magento/Directory/Model/Currency/Import/AbstractImport.php +++ b/app/code/Magento/Directory/Model/Currency/Import/AbstractImport.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/Currency/Import/Config.php b/app/code/Magento/Directory/Model/Currency/Import/Config.php index 22bcad12bdd..b14a0cc8c4e 100644 --- a/app/code/Magento/Directory/Model/Currency/Import/Config.php +++ b/app/code/Magento/Directory/Model/Currency/Import/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Currency\Import; diff --git a/app/code/Magento/Directory/Model/Currency/Import/Factory.php b/app/code/Magento/Directory/Model/Currency/Import/Factory.php index acc70389a59..fe862487307 100644 --- a/app/code/Magento/Directory/Model/Currency/Import/Factory.php +++ b/app/code/Magento/Directory/Model/Currency/Import/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/Currency/Import/FixerIo.php b/app/code/Magento/Directory/Model/Currency/Import/FixerIo.php index a2137e9bd6c..b4a572829bc 100644 --- a/app/code/Magento/Directory/Model/Currency/Import/FixerIo.php +++ b/app/code/Magento/Directory/Model/Currency/Import/FixerIo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Currency\Import; diff --git a/app/code/Magento/Directory/Model/Currency/Import/ImportInterface.php b/app/code/Magento/Directory/Model/Currency/Import/ImportInterface.php index 58388acbb62..f16f5ab8e75 100644 --- a/app/code/Magento/Directory/Model/Currency/Import/ImportInterface.php +++ b/app/code/Magento/Directory/Model/Currency/Import/ImportInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/Currency/Import/Source/Service.php b/app/code/Magento/Directory/Model/Currency/Import/Source/Service.php index 57936a2c86c..8df78380fcf 100644 --- a/app/code/Magento/Directory/Model/Currency/Import/Source/Service.php +++ b/app/code/Magento/Directory/Model/Currency/Import/Source/Service.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Currency\Import\Source; diff --git a/app/code/Magento/Directory/Model/Currency/Import/Webservicex.php b/app/code/Magento/Directory/Model/Currency/Import/Webservicex.php index ae5c9be25e8..f321666049f 100644 --- a/app/code/Magento/Directory/Model/Currency/Import/Webservicex.php +++ b/app/code/Magento/Directory/Model/Currency/Import/Webservicex.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/Currency/Import/YahooFinance.php b/app/code/Magento/Directory/Model/Currency/Import/YahooFinance.php index 177ab8e7bd1..a95acc734a0 100644 --- a/app/code/Magento/Directory/Model/Currency/Import/YahooFinance.php +++ b/app/code/Magento/Directory/Model/Currency/Import/YahooFinance.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Currency\Import; diff --git a/app/code/Magento/Directory/Model/CurrencyInformationAcquirer.php b/app/code/Magento/Directory/Model/CurrencyInformationAcquirer.php index 366b1044e6e..b45bf9f9685 100644 --- a/app/code/Magento/Directory/Model/CurrencyInformationAcquirer.php +++ b/app/code/Magento/Directory/Model/CurrencyInformationAcquirer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model; diff --git a/app/code/Magento/Directory/Model/Data/CountryInformation.php b/app/code/Magento/Directory/Model/Data/CountryInformation.php index f4c2c4bc511..6817ac53da7 100644 --- a/app/code/Magento/Directory/Model/Data/CountryInformation.php +++ b/app/code/Magento/Directory/Model/Data/CountryInformation.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Data; diff --git a/app/code/Magento/Directory/Model/Data/CurrencyInformation.php b/app/code/Magento/Directory/Model/Data/CurrencyInformation.php index eeabf3b1f58..f58f9b09734 100644 --- a/app/code/Magento/Directory/Model/Data/CurrencyInformation.php +++ b/app/code/Magento/Directory/Model/Data/CurrencyInformation.php @@ -2,7 +2,7 @@ /** * Data Model implementing the Address interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Data; diff --git a/app/code/Magento/Directory/Model/Data/ExchangeRate.php b/app/code/Magento/Directory/Model/Data/ExchangeRate.php index 906872237bd..6401baa68bf 100644 --- a/app/code/Magento/Directory/Model/Data/ExchangeRate.php +++ b/app/code/Magento/Directory/Model/Data/ExchangeRate.php @@ -2,7 +2,7 @@ /** * Data Model implementing the Address interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Data; diff --git a/app/code/Magento/Directory/Model/Data/RegionInformation.php b/app/code/Magento/Directory/Model/Data/RegionInformation.php index 9a50dc5d9f3..607b2923429 100644 --- a/app/code/Magento/Directory/Model/Data/RegionInformation.php +++ b/app/code/Magento/Directory/Model/Data/RegionInformation.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\Data; diff --git a/app/code/Magento/Directory/Model/Observer.php b/app/code/Magento/Directory/Model/Observer.php index a7f0f6f84b3..f1c073bf7c0 100644 --- a/app/code/Magento/Directory/Model/Observer.php +++ b/app/code/Magento/Directory/Model/Observer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/PriceCurrency.php b/app/code/Magento/Directory/Model/PriceCurrency.php index d4e1c75d3e2..52ed558f632 100644 --- a/app/code/Magento/Directory/Model/PriceCurrency.php +++ b/app/code/Magento/Directory/Model/PriceCurrency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model; diff --git a/app/code/Magento/Directory/Model/Region.php b/app/code/Magento/Directory/Model/Region.php index 34a75d8192f..6c88d1884a9 100644 --- a/app/code/Magento/Directory/Model/Region.php +++ b/app/code/Magento/Directory/Model/Region.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/RegionFactory.php b/app/code/Magento/Directory/Model/RegionFactory.php index cae28e3d6a1..4ad8056aeb5 100644 --- a/app/code/Magento/Directory/Model/RegionFactory.php +++ b/app/code/Magento/Directory/Model/RegionFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/ResourceModel/Country.php b/app/code/Magento/Directory/Model/ResourceModel/Country.php index 1abd344ce76..fa68a7c4b9a 100644 --- a/app/code/Magento/Directory/Model/ResourceModel/Country.php +++ b/app/code/Magento/Directory/Model/ResourceModel/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\ResourceModel; diff --git a/app/code/Magento/Directory/Model/ResourceModel/Country/Collection.php b/app/code/Magento/Directory/Model/ResourceModel/Country/Collection.php index 1093e41b6da..325acd18510 100644 --- a/app/code/Magento/Directory/Model/ResourceModel/Country/Collection.php +++ b/app/code/Magento/Directory/Model/ResourceModel/Country/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/ResourceModel/Country/Format.php b/app/code/Magento/Directory/Model/ResourceModel/Country/Format.php index 9ad4c485d26..c685bf80e21 100644 --- a/app/code/Magento/Directory/Model/ResourceModel/Country/Format.php +++ b/app/code/Magento/Directory/Model/ResourceModel/Country/Format.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\ResourceModel\Country; diff --git a/app/code/Magento/Directory/Model/ResourceModel/Country/Format/Collection.php b/app/code/Magento/Directory/Model/ResourceModel/Country/Format/Collection.php index da51dc68245..b67597aa428 100644 --- a/app/code/Magento/Directory/Model/ResourceModel/Country/Format/Collection.php +++ b/app/code/Magento/Directory/Model/ResourceModel/Country/Format/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Model\ResourceModel\Country\Format; diff --git a/app/code/Magento/Directory/Model/ResourceModel/Currency.php b/app/code/Magento/Directory/Model/ResourceModel/Currency.php index ff51fd2a922..dd9f9bf4137 100644 --- a/app/code/Magento/Directory/Model/ResourceModel/Currency.php +++ b/app/code/Magento/Directory/Model/ResourceModel/Currency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/ResourceModel/Region.php b/app/code/Magento/Directory/Model/ResourceModel/Region.php index 6f2ede88bfc..0454621dd6c 100644 --- a/app/code/Magento/Directory/Model/ResourceModel/Region.php +++ b/app/code/Magento/Directory/Model/ResourceModel/Region.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Model/ResourceModel/Region/Collection.php b/app/code/Magento/Directory/Model/ResourceModel/Region/Collection.php index 7d3f63e257e..8ec743f57ea 100644 --- a/app/code/Magento/Directory/Model/ResourceModel/Region/Collection.php +++ b/app/code/Magento/Directory/Model/ResourceModel/Region/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Setup/InstallData.php b/app/code/Magento/Directory/Setup/InstallData.php index bacf3e00047..ba259af6f85 100644 --- a/app/code/Magento/Directory/Setup/InstallData.php +++ b/app/code/Magento/Directory/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Setup/InstallSchema.php b/app/code/Magento/Directory/Setup/InstallSchema.php index 30a860cef00..ace5dfdf910 100644 --- a/app/code/Magento/Directory/Setup/InstallSchema.php +++ b/app/code/Magento/Directory/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Test/Unit/Block/CurrencyTest.php b/app/code/Magento/Directory/Test/Unit/Block/CurrencyTest.php index f9921ee5425..177b4098ff2 100644 --- a/app/code/Magento/Directory/Test/Unit/Block/CurrencyTest.php +++ b/app/code/Magento/Directory/Test/Unit/Block/CurrencyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Block; diff --git a/app/code/Magento/Directory/Test/Unit/Block/DataTest.php b/app/code/Magento/Directory/Test/Unit/Block/DataTest.php index 8bad1c1efee..4e61e38a2b0 100644 --- a/app/code/Magento/Directory/Test/Unit/Block/DataTest.php +++ b/app/code/Magento/Directory/Test/Unit/Block/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Block; diff --git a/app/code/Magento/Directory/Test/Unit/Helper/DataTest.php b/app/code/Magento/Directory/Test/Unit/Helper/DataTest.php index ded17085a40..30e022f1aa7 100644 --- a/app/code/Magento/Directory/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Directory/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Helper; diff --git a/app/code/Magento/Directory/Test/Unit/Model/AllowedCountriesTest.php b/app/code/Magento/Directory/Test/Unit/Model/AllowedCountriesTest.php index f5ed44753c4..e5efd7e6ae8 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/AllowedCountriesTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/AllowedCountriesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Test/Unit/Model/Config/Source/AllRegionTest.php b/app/code/Magento/Directory/Test/Unit/Model/Config/Source/AllRegionTest.php index e6cb73b8acb..b92476021d9 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Config/Source/AllRegionTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Config/Source/AllRegionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/Directory/Test/Unit/Model/Config/Source/CountryTest.php b/app/code/Magento/Directory/Test/Unit/Model/Config/Source/CountryTest.php index 12927f9a68f..9e0072b856b 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Config/Source/CountryTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Config/Source/CountryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ConverterTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ConverterTest.php index f1f38cf2f2a..4314227cb0a 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ConverterTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Country\Postcode\Config; diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/DataTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/DataTest.php index 57c86ab58c9..5ceedaea42d 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/DataTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Country\Postcode\Config; diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ReaderTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ReaderTest.php index 0018fe4c0c2..09b97a0fe47 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ReaderTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ReaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Country\Postcode\Config; diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/SchemaLocatorTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/SchemaLocatorTest.php index ea0fbf4f8df..0b891b1a2ec 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Country\Postcode\Config; diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ConfigTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ConfigTest.php index 277eb648f5e..4065b07c9a4 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ConfigTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Country\Postcode; diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ValidatorTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ValidatorTest.php index 49cbc258e81..61eb10e0ee7 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ValidatorTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Country\Postcode; diff --git a/app/code/Magento/Directory/Test/Unit/Model/CountryInformationAcquirerTest.php b/app/code/Magento/Directory/Test/Unit/Model/CountryInformationAcquirerTest.php index 6c2bfef29e8..1d3eda25db0 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/CountryInformationAcquirerTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/CountryInformationAcquirerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model; diff --git a/app/code/Magento/Directory/Test/Unit/Model/CountryTest.php b/app/code/Magento/Directory/Test/Unit/Model/CountryTest.php index 6108a0d7a00..cef04bbba78 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/CountryTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/CountryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/DefaultLocatorTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/DefaultLocatorTest.php index 33973353adc..17ef37abcba 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Currency/DefaultLocatorTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Currency/DefaultLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Currency; diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/ConfigTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/ConfigTest.php index 76dadd87bd6..4bedf5b55b0 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/ConfigTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Currency\Import; diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FactoryTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FactoryTest.php index 0ac0850745e..cacfa1e4495 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FactoryTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Currency\Import; diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FixerIoTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FixerIoTest.php index 357a29301db..3f4178b2ab7 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FixerIoTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FixerIoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/Source/ServiceTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/Source/ServiceTest.php index 2335e3a5ac3..2259a5389be 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/Source/ServiceTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/Source/ServiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\Currency\Import\Source; diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/YahooFinanceTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/YahooFinanceTest.php index f536db4aa2e..898d676e747 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/YahooFinanceTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/YahooFinanceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Test/Unit/Model/CurrencyInformationAcquirerTest.php b/app/code/Magento/Directory/Test/Unit/Model/CurrencyInformationAcquirerTest.php index d473cc788f0..c1759aed328 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/CurrencyInformationAcquirerTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/CurrencyInformationAcquirerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model; diff --git a/app/code/Magento/Directory/Test/Unit/Model/CurrencyTest.php b/app/code/Magento/Directory/Test/Unit/Model/CurrencyTest.php index 223cf3976c9..d5175e56a54 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/CurrencyTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/CurrencyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Test/Unit/Model/ObserverTest.php b/app/code/Magento/Directory/Test/Unit/Model/ObserverTest.php index 9f73947cbcd..aee41b17f5c 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/ObserverTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/ObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Test/Unit/Model/PriceCurrencyTest.php b/app/code/Magento/Directory/Test/Unit/Model/PriceCurrencyTest.php index bdc2390c6c8..37b519fae4c 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/PriceCurrencyTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/PriceCurrencyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Country/CollectionTest.php b/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Country/CollectionTest.php index 6170ed4407a..b63e4b1977b 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Country/CollectionTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Country/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Region/CollectionTest.php b/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Region/CollectionTest.php index 5c09ab11929..9467b6b24fb 100644 --- a/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Region/CollectionTest.php +++ b/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Region/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Directory\Test\Unit\Model\ResourceModel\Region; diff --git a/app/code/Magento/Directory/Test/Unit/_files/zip_codes.php b/app/code/Magento/Directory/Test/Unit/_files/zip_codes.php index b68b9145396..0abd98ce3fa 100644 --- a/app/code/Magento/Directory/Test/Unit/_files/zip_codes.php +++ b/app/code/Magento/Directory/Test/Unit/_files/zip_codes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/Test/Unit/_files/zip_codes.xml b/app/code/Magento/Directory/Test/Unit/_files/zip_codes.xml index 8a1b6420c35..e52bf2b20ae 100644 --- a/app/code/Magento/Directory/Test/Unit/_files/zip_codes.xml +++ b/app/code/Magento/Directory/Test/Unit/_files/zip_codes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/adminhtml/di.xml b/app/code/Magento/Directory/etc/adminhtml/di.xml index 04c02acb98b..8f85798987b 100644 --- a/app/code/Magento/Directory/etc/adminhtml/di.xml +++ b/app/code/Magento/Directory/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/adminhtml/routes.xml b/app/code/Magento/Directory/etc/adminhtml/routes.xml index f992e11ffb3..301b06c4c75 100644 --- a/app/code/Magento/Directory/etc/adminhtml/routes.xml +++ b/app/code/Magento/Directory/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/adminhtml/system.xml b/app/code/Magento/Directory/etc/adminhtml/system.xml index dc56a23d202..6232ddfdd28 100644 --- a/app/code/Magento/Directory/etc/adminhtml/system.xml +++ b/app/code/Magento/Directory/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/config.xml b/app/code/Magento/Directory/etc/config.xml index 5c4de023286..b434865e00c 100644 --- a/app/code/Magento/Directory/etc/config.xml +++ b/app/code/Magento/Directory/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/crontab.xml b/app/code/Magento/Directory/etc/crontab.xml index 5e7a1da6e6c..825fb3e37f1 100644 --- a/app/code/Magento/Directory/etc/crontab.xml +++ b/app/code/Magento/Directory/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/di.xml b/app/code/Magento/Directory/etc/di.xml index b4da40d119f..82e08bc8ec0 100644 --- a/app/code/Magento/Directory/etc/di.xml +++ b/app/code/Magento/Directory/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/email_templates.xml b/app/code/Magento/Directory/etc/email_templates.xml index 8d5d3ebf9bd..65567fd7c3a 100644 --- a/app/code/Magento/Directory/etc/email_templates.xml +++ b/app/code/Magento/Directory/etc/email_templates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/frontend/routes.xml b/app/code/Magento/Directory/etc/frontend/routes.xml index 79c92226d64..303a7ab360a 100644 --- a/app/code/Magento/Directory/etc/frontend/routes.xml +++ b/app/code/Magento/Directory/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Directory" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Directory/etc/frontend/sections.xml b/app/code/Magento/Directory/etc/frontend/sections.xml index fa489778726..6f615937874 100644 --- a/app/code/Magento/Directory/etc/frontend/sections.xml +++ b/app/code/Magento/Directory/etc/frontend/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/module.xml b/app/code/Magento/Directory/etc/module.xml index 394060b473f..9d464d27884 100644 --- a/app/code/Magento/Directory/etc/module.xml +++ b/app/code/Magento/Directory/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/webapi.xml b/app/code/Magento/Directory/etc/webapi.xml index 4794a2fe809..1edd1191134 100644 --- a/app/code/Magento/Directory/etc/webapi.xml +++ b/app/code/Magento/Directory/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/zip_codes.xml b/app/code/Magento/Directory/etc/zip_codes.xml index e48a3c196aa..1976c2cb46b 100644 --- a/app/code/Magento/Directory/etc/zip_codes.xml +++ b/app/code/Magento/Directory/etc/zip_codes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/etc/zip_codes.xsd b/app/code/Magento/Directory/etc/zip_codes.xsd index ac6262480d3..399f997acc4 100644 --- a/app/code/Magento/Directory/etc/zip_codes.xsd +++ b/app/code/Magento/Directory/etc/zip_codes.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -37,4 +37,4 @@ </xs:extension> </xs:simpleContent> </xs:complexType> -</xs:schema> \ No newline at end of file +</xs:schema> diff --git a/app/code/Magento/Directory/registration.php b/app/code/Magento/Directory/registration.php index 610af25ffff..58b24c70bdb 100644 --- a/app/code/Magento/Directory/registration.php +++ b/app/code/Magento/Directory/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/view/adminhtml/email/currency_update_notification.html b/app/code/Magento/Directory/view/adminhtml/email/currency_update_notification.html index 130483cf297..7e5a2940948 100644 --- a/app/code/Magento/Directory/view/adminhtml/email/currency_update_notification.html +++ b/app/code/Magento/Directory/view/adminhtml/email/currency_update_notification.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/view/adminhtml/templates/js/optional_zip_countries.phtml b/app/code/Magento/Directory/view/adminhtml/templates/js/optional_zip_countries.phtml index 4b849d6abf6..bae65bcb7d1 100644 --- a/app/code/Magento/Directory/view/adminhtml/templates/js/optional_zip_countries.phtml +++ b/app/code/Magento/Directory/view/adminhtml/templates/js/optional_zip_countries.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Directory/view/frontend/layout/catalog_category_view.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/Directory/view/frontend/layout/catalog_category_view.xml +++ b/app/code/Magento/Directory/view/frontend/layout/catalog_category_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_index.xml b/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_index.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_index.xml +++ b/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_result.xml b/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_result.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_result.xml +++ b/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_result.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/view/frontend/layout/catalogsearch_result_index.xml b/app/code/Magento/Directory/view/frontend/layout/catalogsearch_result_index.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/Directory/view/frontend/layout/catalogsearch_result_index.xml +++ b/app/code/Magento/Directory/view/frontend/layout/catalogsearch_result_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/view/frontend/layout/default.xml b/app/code/Magento/Directory/view/frontend/layout/default.xml index e2cea7afc99..979fcd6e3d1 100644 --- a/app/code/Magento/Directory/view/frontend/layout/default.xml +++ b/app/code/Magento/Directory/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Directory/view/frontend/templates/currency.phtml b/app/code/Magento/Directory/view/frontend/templates/currency.phtml index e5e4b0fa9f4..a3015d0ec4e 100644 --- a/app/code/Magento/Directory/view/frontend/templates/currency.phtml +++ b/app/code/Magento/Directory/view/frontend/templates/currency.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Directory/view/frontend/templates/currency/switch.phtml b/app/code/Magento/Directory/view/frontend/templates/currency/switch.phtml index f86b1c0f1fa..422cedc904f 100644 --- a/app/code/Magento/Directory/view/frontend/templates/currency/switch.phtml +++ b/app/code/Magento/Directory/view/frontend/templates/currency/switch.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Api/Data/DownloadableOptionInterface.php b/app/code/Magento/Downloadable/Api/Data/DownloadableOptionInterface.php index fb88f59c9a0..b5603d07808 100644 --- a/app/code/Magento/Downloadable/Api/Data/DownloadableOptionInterface.php +++ b/app/code/Magento/Downloadable/Api/Data/DownloadableOptionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Api\Data; diff --git a/app/code/Magento/Downloadable/Api/Data/File/ContentInterface.php b/app/code/Magento/Downloadable/Api/Data/File/ContentInterface.php index 5dd737828ac..29229579b95 100644 --- a/app/code/Magento/Downloadable/Api/Data/File/ContentInterface.php +++ b/app/code/Magento/Downloadable/Api/Data/File/ContentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Api\Data\File; diff --git a/app/code/Magento/Downloadable/Api/Data/File/ContentUploaderInterface.php b/app/code/Magento/Downloadable/Api/Data/File/ContentUploaderInterface.php index 19a5e5cec5f..f8875250042 100644 --- a/app/code/Magento/Downloadable/Api/Data/File/ContentUploaderInterface.php +++ b/app/code/Magento/Downloadable/Api/Data/File/ContentUploaderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Api\Data\File; diff --git a/app/code/Magento/Downloadable/Api/Data/LinkInterface.php b/app/code/Magento/Downloadable/Api/Data/LinkInterface.php index b4221e36859..61ffb6aa826 100644 --- a/app/code/Magento/Downloadable/Api/Data/LinkInterface.php +++ b/app/code/Magento/Downloadable/Api/Data/LinkInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Api\Data; diff --git a/app/code/Magento/Downloadable/Api/Data/ProductAttributeInterface.php b/app/code/Magento/Downloadable/Api/Data/ProductAttributeInterface.php index cb0ef4521d8..e96fbd8cbb4 100644 --- a/app/code/Magento/Downloadable/Api/Data/ProductAttributeInterface.php +++ b/app/code/Magento/Downloadable/Api/Data/ProductAttributeInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Api\Data; diff --git a/app/code/Magento/Downloadable/Api/Data/SampleInterface.php b/app/code/Magento/Downloadable/Api/Data/SampleInterface.php index d5f5c9d261e..ed25cb24eea 100644 --- a/app/code/Magento/Downloadable/Api/Data/SampleInterface.php +++ b/app/code/Magento/Downloadable/Api/Data/SampleInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Api\Data; diff --git a/app/code/Magento/Downloadable/Api/LinkRepositoryInterface.php b/app/code/Magento/Downloadable/Api/LinkRepositoryInterface.php index 8e84b8ca181..26a7ecda7fa 100644 --- a/app/code/Magento/Downloadable/Api/LinkRepositoryInterface.php +++ b/app/code/Magento/Downloadable/Api/LinkRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Api; diff --git a/app/code/Magento/Downloadable/Api/SampleRepositoryInterface.php b/app/code/Magento/Downloadable/Api/SampleRepositoryInterface.php index 6e3a3cb4f6f..459298a9046 100644 --- a/app/code/Magento/Downloadable/Api/SampleRepositoryInterface.php +++ b/app/code/Magento/Downloadable/Api/SampleRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Api; diff --git a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Downloadable.php b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Downloadable.php index 1d5095fd6b8..5dd8eec8ca4 100644 --- a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Downloadable.php +++ b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Downloadable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php index 708f7b1a7b4..4404f9b311b 100644 --- a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php +++ b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Block\Adminhtml\Catalog\Product\Edit\Tab; diff --git a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php index b7b513362a1..63ac550f802 100644 --- a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php +++ b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Block\Adminhtml\Catalog\Product\Edit\Tab\Downloadable; diff --git a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php index dac9a5a07db..9b73d335847 100644 --- a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php +++ b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Block\Adminhtml\Catalog\Product\Edit\Tab\Downloadable; diff --git a/app/code/Magento/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php b/app/code/Magento/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php index 3054692d4c0..5b5175d7f1f 100644 --- a/app/code/Magento/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php +++ b/app/code/Magento/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Block/Catalog/Product/Links.php b/app/code/Magento/Downloadable/Block/Catalog/Product/Links.php index 5429e01c0d9..5367ad5a12d 100644 --- a/app/code/Magento/Downloadable/Block/Catalog/Product/Links.php +++ b/app/code/Magento/Downloadable/Block/Catalog/Product/Links.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Block\Catalog\Product; diff --git a/app/code/Magento/Downloadable/Block/Catalog/Product/Samples.php b/app/code/Magento/Downloadable/Block/Catalog/Product/Samples.php index c79d7c1b71b..1080041ee88 100644 --- a/app/code/Magento/Downloadable/Block/Catalog/Product/Samples.php +++ b/app/code/Magento/Downloadable/Block/Catalog/Product/Samples.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Block/Catalog/Product/View/Type.php b/app/code/Magento/Downloadable/Block/Catalog/Product/View/Type.php index 6e02c14db52..f0e02417fc8 100644 --- a/app/code/Magento/Downloadable/Block/Catalog/Product/View/Type.php +++ b/app/code/Magento/Downloadable/Block/Catalog/Product/View/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Block/Checkout/Cart/Item/Renderer.php b/app/code/Magento/Downloadable/Block/Checkout/Cart/Item/Renderer.php index fe8a79721f7..254243f7af9 100644 --- a/app/code/Magento/Downloadable/Block/Checkout/Cart/Item/Renderer.php +++ b/app/code/Magento/Downloadable/Block/Checkout/Cart/Item/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Block/Checkout/Success.php b/app/code/Magento/Downloadable/Block/Checkout/Success.php index a422f38da40..3039ee7ed18 100644 --- a/app/code/Magento/Downloadable/Block/Checkout/Success.php +++ b/app/code/Magento/Downloadable/Block/Checkout/Success.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Block/Customer/Products/ListProducts.php b/app/code/Magento/Downloadable/Block/Customer/Products/ListProducts.php index c3249298543..8ecd12bf06e 100644 --- a/app/code/Magento/Downloadable/Block/Customer/Products/ListProducts.php +++ b/app/code/Magento/Downloadable/Block/Customer/Products/ListProducts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Downloadable.php b/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Downloadable.php index 35de2313a76..07757a975cb 100644 --- a/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Downloadable.php +++ b/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Downloadable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Order/Downloadable.php b/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Order/Downloadable.php index 2d68e06e20d..f2f16dc227a 100644 --- a/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Order/Downloadable.php +++ b/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Order/Downloadable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Block/Sales/Order/Item/Renderer/Downloadable.php b/app/code/Magento/Downloadable/Block/Sales/Order/Item/Renderer/Downloadable.php index f5d2212104e..2460f50bc5b 100644 --- a/app/code/Magento/Downloadable/Block/Sales/Order/Item/Renderer/Downloadable.php +++ b/app/code/Magento/Downloadable/Block/Sales/Order/Item/Renderer/Downloadable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File.php index 7335a41173b..5c1e0190c88 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File/Upload.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File/Upload.php index 2b9d71c71c8..f860a2c799e 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File/Upload.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File/Upload.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\File; @@ -39,7 +39,7 @@ class Upload extends \Magento\Downloadable\Controller\Adminhtml\Downloadable\Fil /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. * @param \Magento\Backend\App\Action\Context $context * @param \Magento\Downloadable\Model\Link $link diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AddAttributeToTemplate.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AddAttributeToTemplate.php index f98ab216c18..8b6dd921321 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AddAttributeToTemplate.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AddAttributeToTemplate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsPriceGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsPriceGrid.php index 2d094325978..5be2cf9b015 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsPriceGrid.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsPriceGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsStockGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsStockGrid.php index fa0bcd549d0..9a4c8204ff6 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsStockGrid.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsStockGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Categories.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Categories.php index cdf94b078e1..9bcf3da928d 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Categories.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Categories.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Crosssell.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Crosssell.php index 7c5c2df7a35..e58d8b83376 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Crosssell.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Crosssell.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CrosssellGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CrosssellGrid.php index ac63c4c2fea..3404801101c 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CrosssellGrid.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CrosssellGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CustomOptions.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CustomOptions.php index 826237e4b40..691798a7861 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CustomOptions.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CustomOptions.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Duplicate.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Duplicate.php index ab20fe30585..f0176a30a62 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Duplicate.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Duplicate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Edit.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Edit.php index 996aa029fd0..b419ccff679 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Edit.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Form.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Form.php index a676bc40162..3f4837b9868 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Form.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Form.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Grid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Grid.php index 0a49aea7465..a54a7385cd0 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Grid.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/GridOnly.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/GridOnly.php index 6e990c849c7..14d06222c7c 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/GridOnly.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/GridOnly.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Index.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Index.php index 260d8c34b7b..aff0b825b32 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Index.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Link.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Link.php index 128c3f274b0..4cdf9787453 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Link.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Link.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassDelete.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassDelete.php index 0f54a4e648f..d08f94f8f90 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassDelete.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassDelete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassStatus.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassStatus.php index 293a1b9e6ca..eaf880cb7a3 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassStatus.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassStatus.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/NewAction.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/NewAction.php index a20bf9c5a1e..30a27d20a1c 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/NewAction.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Options.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Options.php index 4071a584a8e..f8c24726c5f 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Options.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Options.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/OptionsImportGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/OptionsImportGrid.php index 1cbfaf4b73d..fd4e1464882 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/OptionsImportGrid.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/OptionsImportGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Related.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Related.php index ec2247564c2..7395163a5bf 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Related.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Related.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/RelatedGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/RelatedGrid.php index 7d13ae96a9e..377bf5c2ed4 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/RelatedGrid.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/RelatedGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Sample.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Sample.php index 8027f71fa87..c0c373424c2 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Sample.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Sample.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Save.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Save.php index 11a02cfb185..9737eb1e207 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Save.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/ShowUpdateResult.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/ShowUpdateResult.php index 33a317cdb77..ab9492e0811 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/ShowUpdateResult.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/ShowUpdateResult.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/SuggestAttributes.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/SuggestAttributes.php index dc581d1a428..f55388e8e3e 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/SuggestAttributes.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/SuggestAttributes.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Upsell.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Upsell.php index cec4cc8355a..569c83e9a2b 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Upsell.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Upsell.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/UpsellGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/UpsellGrid.php index 0fe7754831b..5371d406caa 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/UpsellGrid.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/UpsellGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Validate.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Validate.php index 959e305c576..1381ea061bc 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Validate.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Validate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Wysiwyg.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Wysiwyg.php index 5a326ba3645..e064a65bee7 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Wysiwyg.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Wysiwyg.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Downloadable\Product\Edit; diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Downloadable.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Downloadable.php index ece362c0287..50a7a33098d 100644 --- a/app/code/Magento/Downloadable/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Downloadable.php +++ b/app/code/Magento/Downloadable/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Downloadable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Adminhtml\Product\Initialization\Helper\Plugin; diff --git a/app/code/Magento/Downloadable/Controller/Customer/Products.php b/app/code/Magento/Downloadable/Controller/Customer/Products.php index 268ca2e5aae..b5661de84c8 100644 --- a/app/code/Magento/Downloadable/Controller/Customer/Products.php +++ b/app/code/Magento/Downloadable/Controller/Customer/Products.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Controller/Download.php b/app/code/Magento/Downloadable/Controller/Download.php index ccac7ccbd8c..2b8e487ea93 100644 --- a/app/code/Magento/Downloadable/Controller/Download.php +++ b/app/code/Magento/Downloadable/Controller/Download.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller; diff --git a/app/code/Magento/Downloadable/Controller/Download/Link.php b/app/code/Magento/Downloadable/Controller/Download/Link.php index 75dec0198b8..ce568ca079b 100644 --- a/app/code/Magento/Downloadable/Controller/Download/Link.php +++ b/app/code/Magento/Downloadable/Controller/Download/Link.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Download; diff --git a/app/code/Magento/Downloadable/Controller/Download/LinkSample.php b/app/code/Magento/Downloadable/Controller/Download/LinkSample.php index 2a25c1d9e96..01b7524dd19 100644 --- a/app/code/Magento/Downloadable/Controller/Download/LinkSample.php +++ b/app/code/Magento/Downloadable/Controller/Download/LinkSample.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Download; diff --git a/app/code/Magento/Downloadable/Controller/Download/Sample.php b/app/code/Magento/Downloadable/Controller/Download/Sample.php index 95f419ac148..16563099b2b 100644 --- a/app/code/Magento/Downloadable/Controller/Download/Sample.php +++ b/app/code/Magento/Downloadable/Controller/Download/Sample.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Controller\Download; diff --git a/app/code/Magento/Downloadable/Helper/Catalog/Product/Configuration.php b/app/code/Magento/Downloadable/Helper/Catalog/Product/Configuration.php index 4aabaa47102..aeb10949b4d 100644 --- a/app/code/Magento/Downloadable/Helper/Catalog/Product/Configuration.php +++ b/app/code/Magento/Downloadable/Helper/Catalog/Product/Configuration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Helper/Data.php b/app/code/Magento/Downloadable/Helper/Data.php index b0673a92095..be8db77a688 100644 --- a/app/code/Magento/Downloadable/Helper/Data.php +++ b/app/code/Magento/Downloadable/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Helper; diff --git a/app/code/Magento/Downloadable/Helper/Download.php b/app/code/Magento/Downloadable/Helper/Download.php index 53a69407cc3..0c11b2ced39 100644 --- a/app/code/Magento/Downloadable/Helper/Download.php +++ b/app/code/Magento/Downloadable/Helper/Download.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Helper/File.php b/app/code/Magento/Downloadable/Helper/File.php index 528436be179..27dfa40bc08 100644 --- a/app/code/Magento/Downloadable/Helper/File.php +++ b/app/code/Magento/Downloadable/Helper/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Helper; diff --git a/app/code/Magento/Downloadable/Model/ComponentInterface.php b/app/code/Magento/Downloadable/Model/ComponentInterface.php index 45f745243e6..30cad0c883b 100644 --- a/app/code/Magento/Downloadable/Model/ComponentInterface.php +++ b/app/code/Magento/Downloadable/Model/ComponentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model; diff --git a/app/code/Magento/Downloadable/Model/DownloadableOption.php b/app/code/Magento/Downloadable/Model/DownloadableOption.php index 65167fc119d..1f20342e797 100644 --- a/app/code/Magento/Downloadable/Model/DownloadableOption.php +++ b/app/code/Magento/Downloadable/Model/DownloadableOption.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model; diff --git a/app/code/Magento/Downloadable/Model/File/Content.php b/app/code/Magento/Downloadable/Model/File/Content.php index f23c9a0cb7e..c4473cd6397 100644 --- a/app/code/Magento/Downloadable/Model/File/Content.php +++ b/app/code/Magento/Downloadable/Model/File/Content.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\File; diff --git a/app/code/Magento/Downloadable/Model/File/ContentUploader.php b/app/code/Magento/Downloadable/Model/File/ContentUploader.php index 90e325928fa..9e984f5c8d2 100644 --- a/app/code/Magento/Downloadable/Model/File/ContentUploader.php +++ b/app/code/Magento/Downloadable/Model/File/ContentUploader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\File; diff --git a/app/code/Magento/Downloadable/Model/File/ContentValidator.php b/app/code/Magento/Downloadable/Model/File/ContentValidator.php index 815588539fd..e9995cd9000 100644 --- a/app/code/Magento/Downloadable/Model/File/ContentValidator.php +++ b/app/code/Magento/Downloadable/Model/File/ContentValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\File; diff --git a/app/code/Magento/Downloadable/Model/Link.php b/app/code/Magento/Downloadable/Model/Link.php index b330daa79ba..fa5f4130267 100644 --- a/app/code/Magento/Downloadable/Model/Link.php +++ b/app/code/Magento/Downloadable/Model/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model; diff --git a/app/code/Magento/Downloadable/Model/Link/Builder.php b/app/code/Magento/Downloadable/Model/Link/Builder.php index b0cdfc3589d..09ac2da2be5 100644 --- a/app/code/Magento/Downloadable/Model/Link/Builder.php +++ b/app/code/Magento/Downloadable/Model/Link/Builder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Link; diff --git a/app/code/Magento/Downloadable/Model/Link/ContentValidator.php b/app/code/Magento/Downloadable/Model/Link/ContentValidator.php index 85f001ea24d..8bfb6627827 100644 --- a/app/code/Magento/Downloadable/Model/Link/ContentValidator.php +++ b/app/code/Magento/Downloadable/Model/Link/ContentValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Link; diff --git a/app/code/Magento/Downloadable/Model/Link/CreateHandler.php b/app/code/Magento/Downloadable/Model/Link/CreateHandler.php index b9be52bb09c..aa8220635a6 100644 --- a/app/code/Magento/Downloadable/Model/Link/CreateHandler.php +++ b/app/code/Magento/Downloadable/Model/Link/CreateHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Link; diff --git a/app/code/Magento/Downloadable/Model/Link/DeleteHandler.php b/app/code/Magento/Downloadable/Model/Link/DeleteHandler.php index e97823ceed3..4a20cfb5520 100644 --- a/app/code/Magento/Downloadable/Model/Link/DeleteHandler.php +++ b/app/code/Magento/Downloadable/Model/Link/DeleteHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Link; diff --git a/app/code/Magento/Downloadable/Model/Link/Purchased.php b/app/code/Magento/Downloadable/Model/Link/Purchased.php index 63cfeb7c143..a9645d19411 100644 --- a/app/code/Magento/Downloadable/Model/Link/Purchased.php +++ b/app/code/Magento/Downloadable/Model/Link/Purchased.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Link; diff --git a/app/code/Magento/Downloadable/Model/Link/Purchased/Item.php b/app/code/Magento/Downloadable/Model/Link/Purchased/Item.php index e31844a37fb..b08a88bf748 100644 --- a/app/code/Magento/Downloadable/Model/Link/Purchased/Item.php +++ b/app/code/Magento/Downloadable/Model/Link/Purchased/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Link\Purchased; diff --git a/app/code/Magento/Downloadable/Model/Link/ReadHandler.php b/app/code/Magento/Downloadable/Model/Link/ReadHandler.php index ab2e3f18ebf..a3497f8bd8a 100644 --- a/app/code/Magento/Downloadable/Model/Link/ReadHandler.php +++ b/app/code/Magento/Downloadable/Model/Link/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Link; diff --git a/app/code/Magento/Downloadable/Model/Link/UpdateHandler.php b/app/code/Magento/Downloadable/Model/Link/UpdateHandler.php index 61e3ff47316..5ca1d64ebc5 100644 --- a/app/code/Magento/Downloadable/Model/Link/UpdateHandler.php +++ b/app/code/Magento/Downloadable/Model/Link/UpdateHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Link; diff --git a/app/code/Magento/Downloadable/Model/LinkRepository.php b/app/code/Magento/Downloadable/Model/LinkRepository.php index 15cba1e4ac9..46d66ae19d6 100644 --- a/app/code/Magento/Downloadable/Model/LinkRepository.php +++ b/app/code/Magento/Downloadable/Model/LinkRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model; diff --git a/app/code/Magento/Downloadable/Model/Product/CartConfiguration/Plugin/Downloadable.php b/app/code/Magento/Downloadable/Model/Product/CartConfiguration/Plugin/Downloadable.php index 99d1d73674b..e19262d1e8a 100644 --- a/app/code/Magento/Downloadable/Model/Product/CartConfiguration/Plugin/Downloadable.php +++ b/app/code/Magento/Downloadable/Model/Product/CartConfiguration/Plugin/Downloadable.php @@ -2,7 +2,7 @@ /** * Plugin for cart product configuration * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Product\CartConfiguration\Plugin; diff --git a/app/code/Magento/Downloadable/Model/Product/CopyConstructor/Downloadable.php b/app/code/Magento/Downloadable/Model/Product/CopyConstructor/Downloadable.php index 970aa73ab3e..5a9c137d0fb 100644 --- a/app/code/Magento/Downloadable/Model/Product/CopyConstructor/Downloadable.php +++ b/app/code/Magento/Downloadable/Model/Product/CopyConstructor/Downloadable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Downloadable/Model/Product/Price.php b/app/code/Magento/Downloadable/Model/Product/Price.php index c2bb1f0b607..05c6f39de79 100644 --- a/app/code/Magento/Downloadable/Model/Product/Price.php +++ b/app/code/Magento/Downloadable/Model/Product/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Model/Product/Type.php b/app/code/Magento/Downloadable/Model/Product/Type.php index 64c00d208b8..2a46bf2b232 100644 --- a/app/code/Magento/Downloadable/Model/Product/Type.php +++ b/app/code/Magento/Downloadable/Model/Product/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Product; diff --git a/app/code/Magento/Downloadable/Model/Product/TypeHandler/AbstractTypeHandler.php b/app/code/Magento/Downloadable/Model/Product/TypeHandler/AbstractTypeHandler.php index de13889153d..af203b7316a 100644 --- a/app/code/Magento/Downloadable/Model/Product/TypeHandler/AbstractTypeHandler.php +++ b/app/code/Magento/Downloadable/Model/Product/TypeHandler/AbstractTypeHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Model/Product/TypeHandler/Link.php b/app/code/Magento/Downloadable/Model/Product/TypeHandler/Link.php index 8cd13e9fa1b..32102bea440 100644 --- a/app/code/Magento/Downloadable/Model/Product/TypeHandler/Link.php +++ b/app/code/Magento/Downloadable/Model/Product/TypeHandler/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Product\TypeHandler; diff --git a/app/code/Magento/Downloadable/Model/Product/TypeHandler/Sample.php b/app/code/Magento/Downloadable/Model/Product/TypeHandler/Sample.php index e1650e239de..64429deae9b 100644 --- a/app/code/Magento/Downloadable/Model/Product/TypeHandler/Sample.php +++ b/app/code/Magento/Downloadable/Model/Product/TypeHandler/Sample.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Product\TypeHandler; diff --git a/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandler.php b/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandler.php index e8ddbeb6b30..1012c53622d 100644 --- a/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandler.php +++ b/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Product\TypeHandler; diff --git a/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandlerInterface.php b/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandlerInterface.php index 6e9536d0a1d..d2042d4720c 100644 --- a/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandlerInterface.php +++ b/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandlerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Product\TypeHandler; diff --git a/app/code/Magento/Downloadable/Model/Product/TypeTransitionManager/Plugin/Downloadable.php b/app/code/Magento/Downloadable/Model/Product/TypeTransitionManager/Plugin/Downloadable.php index d18fe79cacc..f53162add52 100644 --- a/app/code/Magento/Downloadable/Model/Product/TypeTransitionManager/Plugin/Downloadable.php +++ b/app/code/Magento/Downloadable/Model/Product/TypeTransitionManager/Plugin/Downloadable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Product\TypeTransitionManager\Plugin; diff --git a/app/code/Magento/Downloadable/Model/ProductOptionProcessor.php b/app/code/Magento/Downloadable/Model/ProductOptionProcessor.php index d458fedf0ea..ba39afae168 100644 --- a/app/code/Magento/Downloadable/Model/ProductOptionProcessor.php +++ b/app/code/Magento/Downloadable/Model/ProductOptionProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model; diff --git a/app/code/Magento/Downloadable/Model/Quote/Item/CartItemProcessor.php b/app/code/Magento/Downloadable/Model/Quote/Item/CartItemProcessor.php index f792258b1c0..58fceb8e342 100644 --- a/app/code/Magento/Downloadable/Model/Quote/Item/CartItemProcessor.php +++ b/app/code/Magento/Downloadable/Model/Quote/Item/CartItemProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Quote\Item; diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Indexer/Price.php b/app/code/Magento/Downloadable/Model/ResourceModel/Indexer/Price.php index e7e459450b9..843e690e342 100644 --- a/app/code/Magento/Downloadable/Model/ResourceModel/Indexer/Price.php +++ b/app/code/Magento/Downloadable/Model/ResourceModel/Indexer/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\ResourceModel\Indexer; diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link.php index 4a863949f97..150230ecf48 100644 --- a/app/code/Magento/Downloadable/Model/ResourceModel/Link.php +++ b/app/code/Magento/Downloadable/Model/ResourceModel/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\ResourceModel; diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Collection.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Collection.php index d325e01c6cf..d74a2dbf2cb 100644 --- a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Collection.php +++ b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\ResourceModel\Link; diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased.php index b4ac2f6371c..cb11d47805c 100644 --- a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased.php +++ b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\ResourceModel\Link; diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Collection.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Collection.php index 1570921ea9d..3a98a281215 100644 --- a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Collection.php +++ b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\ResourceModel\Link\Purchased; diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item.php index e7e962606e2..a2e707542e5 100644 --- a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item.php +++ b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\ResourceModel\Link\Purchased; diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item/Collection.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item/Collection.php index a7cc2b9b42b..9f587d69508 100644 --- a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item/Collection.php +++ b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\ResourceModel\Link\Purchased\Item; diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Sample.php b/app/code/Magento/Downloadable/Model/ResourceModel/Sample.php index 95a756ca6b5..35fbd7ae434 100644 --- a/app/code/Magento/Downloadable/Model/ResourceModel/Sample.php +++ b/app/code/Magento/Downloadable/Model/ResourceModel/Sample.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\ResourceModel; diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Sample/Collection.php b/app/code/Magento/Downloadable/Model/ResourceModel/Sample/Collection.php index c591fb6aebe..9db93c9c242 100644 --- a/app/code/Magento/Downloadable/Model/ResourceModel/Sample/Collection.php +++ b/app/code/Magento/Downloadable/Model/ResourceModel/Sample/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\ResourceModel\Sample; diff --git a/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/AbstractItems.php index bb816ee3120..96572eaaae4 100644 --- a/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/AbstractItems.php +++ b/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/AbstractItems.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php b/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php index d1946c1fddd..e5fd495a3a5 100644 --- a/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php +++ b/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Sales\Order\Pdf\Items; diff --git a/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php b/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php index 2411db7ab0f..5b443aa80b9 100644 --- a/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php +++ b/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Sales\Order\Pdf\Items; diff --git a/app/code/Magento/Downloadable/Model/Sample.php b/app/code/Magento/Downloadable/Model/Sample.php index 60358220596..807af9c3d21 100644 --- a/app/code/Magento/Downloadable/Model/Sample.php +++ b/app/code/Magento/Downloadable/Model/Sample.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model; diff --git a/app/code/Magento/Downloadable/Model/Sample/Builder.php b/app/code/Magento/Downloadable/Model/Sample/Builder.php index 774d72f2750..63fb921f52d 100644 --- a/app/code/Magento/Downloadable/Model/Sample/Builder.php +++ b/app/code/Magento/Downloadable/Model/Sample/Builder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Sample; diff --git a/app/code/Magento/Downloadable/Model/Sample/ContentValidator.php b/app/code/Magento/Downloadable/Model/Sample/ContentValidator.php index d14de565f74..6ad341601c8 100644 --- a/app/code/Magento/Downloadable/Model/Sample/ContentValidator.php +++ b/app/code/Magento/Downloadable/Model/Sample/ContentValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Sample; diff --git a/app/code/Magento/Downloadable/Model/Sample/CreateHandler.php b/app/code/Magento/Downloadable/Model/Sample/CreateHandler.php index 6c48d04d34b..02b257d5753 100644 --- a/app/code/Magento/Downloadable/Model/Sample/CreateHandler.php +++ b/app/code/Magento/Downloadable/Model/Sample/CreateHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Sample; diff --git a/app/code/Magento/Downloadable/Model/Sample/DeleteHandler.php b/app/code/Magento/Downloadable/Model/Sample/DeleteHandler.php index 2093da874e9..bfbecee3693 100644 --- a/app/code/Magento/Downloadable/Model/Sample/DeleteHandler.php +++ b/app/code/Magento/Downloadable/Model/Sample/DeleteHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Sample; diff --git a/app/code/Magento/Downloadable/Model/Sample/ReadHandler.php b/app/code/Magento/Downloadable/Model/Sample/ReadHandler.php index 91eef651c43..4f03fe87448 100644 --- a/app/code/Magento/Downloadable/Model/Sample/ReadHandler.php +++ b/app/code/Magento/Downloadable/Model/Sample/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Sample; diff --git a/app/code/Magento/Downloadable/Model/Sample/UpdateHandler.php b/app/code/Magento/Downloadable/Model/Sample/UpdateHandler.php index e844e8f718d..80a54e51fd2 100644 --- a/app/code/Magento/Downloadable/Model/Sample/UpdateHandler.php +++ b/app/code/Magento/Downloadable/Model/Sample/UpdateHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Sample; diff --git a/app/code/Magento/Downloadable/Model/SampleRepository.php b/app/code/Magento/Downloadable/Model/SampleRepository.php index 2723e002337..73beec570c9 100644 --- a/app/code/Magento/Downloadable/Model/SampleRepository.php +++ b/app/code/Magento/Downloadable/Model/SampleRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model; diff --git a/app/code/Magento/Downloadable/Model/Source/Shareable.php b/app/code/Magento/Downloadable/Model/Source/Shareable.php index aa6a19e7bd8..ac039a02645 100644 --- a/app/code/Magento/Downloadable/Model/Source/Shareable.php +++ b/app/code/Magento/Downloadable/Model/Source/Shareable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Source; diff --git a/app/code/Magento/Downloadable/Model/Source/TypeUpload.php b/app/code/Magento/Downloadable/Model/Source/TypeUpload.php index d0ac64ac63f..c21f8942a19 100644 --- a/app/code/Magento/Downloadable/Model/Source/TypeUpload.php +++ b/app/code/Magento/Downloadable/Model/Source/TypeUpload.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\Source; diff --git a/app/code/Magento/Downloadable/Model/System/Config/Source/Contentdisposition.php b/app/code/Magento/Downloadable/Model/System/Config/Source/Contentdisposition.php index 2fd6fda5135..60fda55fa72 100644 --- a/app/code/Magento/Downloadable/Model/System/Config/Source/Contentdisposition.php +++ b/app/code/Magento/Downloadable/Model/System/Config/Source/Contentdisposition.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\System\Config\Source; diff --git a/app/code/Magento/Downloadable/Model/System/Config/Source/Orderitemstatus.php b/app/code/Magento/Downloadable/Model/System/Config/Source/Orderitemstatus.php index fd8033e4295..cec666b693e 100644 --- a/app/code/Magento/Downloadable/Model/System/Config/Source/Orderitemstatus.php +++ b/app/code/Magento/Downloadable/Model/System/Config/Source/Orderitemstatus.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\System\Config\Source; diff --git a/app/code/Magento/Downloadable/Observer/InitOptionRendererObserver.php b/app/code/Magento/Downloadable/Observer/InitOptionRendererObserver.php index 654a952d415..08a02cc3eca 100644 --- a/app/code/Magento/Downloadable/Observer/InitOptionRendererObserver.php +++ b/app/code/Magento/Downloadable/Observer/InitOptionRendererObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Observer; diff --git a/app/code/Magento/Downloadable/Observer/IsAllowedGuestCheckoutObserver.php b/app/code/Magento/Downloadable/Observer/IsAllowedGuestCheckoutObserver.php index ef727c6ef0e..bd93e99e68a 100644 --- a/app/code/Magento/Downloadable/Observer/IsAllowedGuestCheckoutObserver.php +++ b/app/code/Magento/Downloadable/Observer/IsAllowedGuestCheckoutObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Observer; diff --git a/app/code/Magento/Downloadable/Observer/SaveDownloadableOrderItemObserver.php b/app/code/Magento/Downloadable/Observer/SaveDownloadableOrderItemObserver.php index d05ca0812c4..4c8884dfd50 100644 --- a/app/code/Magento/Downloadable/Observer/SaveDownloadableOrderItemObserver.php +++ b/app/code/Magento/Downloadable/Observer/SaveDownloadableOrderItemObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Observer; diff --git a/app/code/Magento/Downloadable/Observer/SetHasDownloadableProductsObserver.php b/app/code/Magento/Downloadable/Observer/SetHasDownloadableProductsObserver.php index f35bdb5f346..52cb4602a1d 100644 --- a/app/code/Magento/Downloadable/Observer/SetHasDownloadableProductsObserver.php +++ b/app/code/Magento/Downloadable/Observer/SetHasDownloadableProductsObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Observer; diff --git a/app/code/Magento/Downloadable/Observer/SetLinkStatusObserver.php b/app/code/Magento/Downloadable/Observer/SetLinkStatusObserver.php index 4aa219925d9..4962ac67bb7 100644 --- a/app/code/Magento/Downloadable/Observer/SetLinkStatusObserver.php +++ b/app/code/Magento/Downloadable/Observer/SetLinkStatusObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Observer; diff --git a/app/code/Magento/Downloadable/Pricing/Price/LinkPrice.php b/app/code/Magento/Downloadable/Pricing/Price/LinkPrice.php index 647bf386dff..ae4d56f5907 100644 --- a/app/code/Magento/Downloadable/Pricing/Price/LinkPrice.php +++ b/app/code/Magento/Downloadable/Pricing/Price/LinkPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Pricing/Price/LinkPriceInterface.php b/app/code/Magento/Downloadable/Pricing/Price/LinkPriceInterface.php index 0bc5943db2a..717bea51356 100644 --- a/app/code/Magento/Downloadable/Pricing/Price/LinkPriceInterface.php +++ b/app/code/Magento/Downloadable/Pricing/Price/LinkPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Setup/InstallData.php b/app/code/Magento/Downloadable/Setup/InstallData.php index c171ce796e6..d6145de8410 100644 --- a/app/code/Magento/Downloadable/Setup/InstallData.php +++ b/app/code/Magento/Downloadable/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Setup/InstallSchema.php b/app/code/Magento/Downloadable/Setup/InstallSchema.php index 27431ac04f7..01c3760913f 100644 --- a/app/code/Magento/Downloadable/Setup/InstallSchema.php +++ b/app/code/Magento/Downloadable/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Setup/UpgradeSchema.php b/app/code/Magento/Downloadable/Setup/UpgradeSchema.php index 76ed3f2aae2..9a0f8bc1f64 100755 --- a/app/code/Magento/Downloadable/Setup/UpgradeSchema.php +++ b/app/code/Magento/Downloadable/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php index ce646d58128..29dcdf90ed2 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Block\Adminhtml\Catalog\Product\Edit\Tab\Downloadable; diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php index 3b80d36f424..c025008d88b 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Block\Adminhtml\Catalog\Product\Edit\Tab\Downloadable; diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Sales/Items/Column/Downloadable/NameTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Sales/Items/Column/Downloadable/NameTest.php index 85372f35929..ac70585374f 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Sales/Items/Column/Downloadable/NameTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Sales/Items/Column/Downloadable/NameTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Catalog/Product/LinksTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Catalog/Product/LinksTest.php index b20e9793503..2fad64c0d49 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Block/Catalog/Product/LinksTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Block/Catalog/Product/LinksTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/DownloadableTest.php index 16340b9245b..524b01729ff 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/DownloadableTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/DownloadableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/Order/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/Order/DownloadableTest.php index f899d52efa8..ab08dfb94c8 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/Order/DownloadableTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/Order/DownloadableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Item/Renderer/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Item/Renderer/DownloadableTest.php index 611a027f96f..be109f4f13b 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Item/Renderer/DownloadableTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Item/Renderer/DownloadableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/File/UploadTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/File/UploadTest.php index 013783be410..a3f717d638d 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/File/UploadTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/File/UploadTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/LinkTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/LinkTest.php index 229f21eaf62..2120fe34921 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/LinkTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/SampleTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/SampleTest.php index 8f91864ba72..aa6a0c16e71 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/SampleTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/SampleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/DownloadableTest.php index 71fd56976a9..1b67cab3ba2 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/DownloadableTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/DownloadableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Controller\Adminhtml\Product\Initialization\Helper\Plugin; diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkSampleTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkSampleTest.php index 600e65d22d5..1eabe7c435c 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkSampleTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkSampleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Controller\Download; diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkTest.php index 45caa36dd99..8ffaca4d16c 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Controller\Download; diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Download/SampleTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Download/SampleTest.php index 7c13158a553..5f8bac287c8 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Controller/Download/SampleTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Controller/Download/SampleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Controller\Download; diff --git a/app/code/Magento/Downloadable/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php b/app/code/Magento/Downloadable/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php index e6b9797453d..328cef7269f 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Test/Unit/Helper/DownloadTest.php b/app/code/Magento/Downloadable/Test/Unit/Helper/DownloadTest.php index 281f7171288..14c2f5da121 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Helper/DownloadTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Helper/DownloadTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Helper; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/File/ContentValidatorTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/File/ContentValidatorTest.php index 45b5f5dc970..f40419ff515 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/File/ContentValidatorTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/File/ContentValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\File; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Link/BuilderTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Link/BuilderTest.php index bb3aab7bbdf..2a386700b84 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Link/BuilderTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Link/BuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Link; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Link/ContentValidatorTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Link/ContentValidatorTest.php index 51dd83d3b08..04e75196f98 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Link/ContentValidatorTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Link/ContentValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Link; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Link/CreateHandlerTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Link/CreateHandlerTest.php index 4d87cfddd6e..06692700920 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Link/CreateHandlerTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Link/CreateHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Link; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Link/UpdateHandlerTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Link/UpdateHandlerTest.php index 9a2000d673c..4ce51f2b89a 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Link/UpdateHandlerTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Link/UpdateHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Link; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/LinkRepositoryTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/LinkRepositoryTest.php index da9dfae5a9e..ede9c97e4a2 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/LinkRepositoryTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/LinkRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/DownloadableTest.php index 64764941854..a5e439a4e07 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/DownloadableTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/DownloadableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Product\CopyConstructor; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/_files/expected_data.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/_files/expected_data.php index ee2247412d8..0871bbc997b 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/_files/expected_data.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/_files/expected_data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/LinkTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/LinkTest.php index b3cc46038a8..c4cb56d0da7 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/LinkTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Product\TypeHandler; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/SampleTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/SampleTest.php index a7a04ed2367..5070cc5484e 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/SampleTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/SampleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Product\TypeHandler; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php index 61d66d47bc2..3c84a8e007c 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Product; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTransitionManager/Plugin/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTransitionManager/Plugin/DownloadableTest.php index 7f034266dfd..d05bf8a7070 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTransitionManager/Plugin/DownloadableTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTransitionManager/Plugin/DownloadableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Product\TypeTransitionManager\Plugin; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/ProductOptionProcessorTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/ProductOptionProcessorTest.php index 103962d62a2..9eb351c93bd 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/ProductOptionProcessorTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/ProductOptionProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php index 4e4b10104de..d01dce78470 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Quote\Item; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Sales/Order/Pdf/Items/CreditmemoTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Sales/Order/Pdf/Items/CreditmemoTest.php index d930a17c4cd..e687e057310 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Sales/Order/Pdf/Items/CreditmemoTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Sales/Order/Pdf/Items/CreditmemoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Sales\Order\Pdf\Items; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/BuilderTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/BuilderTest.php index 1bddb17f055..512fd4ebcc2 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/BuilderTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/BuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Sample; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/ContentValidatorTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/ContentValidatorTest.php index b96fd96da84..647f8e738c5 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/ContentValidatorTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/ContentValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Sample; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/CreateHandlerTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/CreateHandlerTest.php index 7127fd1cd18..d22d2f30918 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/CreateHandlerTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/CreateHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Sample; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/UpdateHandlerTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/UpdateHandlerTest.php index a2cb696162b..ebbe8265c82 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/UpdateHandlerTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/UpdateHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model\Sample; diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/SampleRepositoryTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/SampleRepositoryTest.php index 4b6f6325faf..132e8e4ef47 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Model/SampleRepositoryTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Model/SampleRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Model; diff --git a/app/code/Magento/Downloadable/Test/Unit/Observer/IsAllowedGuestCheckoutObserverTest.php b/app/code/Magento/Downloadable/Test/Unit/Observer/IsAllowedGuestCheckoutObserverTest.php index 8230690e278..a6a6b96479f 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Observer/IsAllowedGuestCheckoutObserverTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Observer/IsAllowedGuestCheckoutObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Observer; diff --git a/app/code/Magento/Downloadable/Test/Unit/Observer/SaveDownloadableOrderItemObserverTest.php b/app/code/Magento/Downloadable/Test/Unit/Observer/SaveDownloadableOrderItemObserverTest.php index 8bd07533dce..df86bc05941 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Observer/SaveDownloadableOrderItemObserverTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Observer/SaveDownloadableOrderItemObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Observer; diff --git a/app/code/Magento/Downloadable/Test/Unit/Observer/SetLinkStatusObserverTest.php b/app/code/Magento/Downloadable/Test/Unit/Observer/SetLinkStatusObserverTest.php index 900ff67fc3e..a76af749a9d 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Observer/SetLinkStatusObserverTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Observer/SetLinkStatusObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Observer; diff --git a/app/code/Magento/Downloadable/Test/Unit/Pricing/Price/LinkPriceTest.php b/app/code/Magento/Downloadable/Test/Unit/Pricing/Price/LinkPriceTest.php index 1d32f88f7fb..0364dc390e7 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Pricing/Price/LinkPriceTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Pricing/Price/LinkPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php index 9b322ed04da..5337d2b1481 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/Data/LinksTest.php b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/Data/LinksTest.php index bd62e58263d..422f17dd201 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/Data/LinksTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/Data/LinksTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Ui\DataProvider\Product\Form\Modifier\Data; diff --git a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/DownloadablePanelTest.php b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/DownloadablePanelTest.php index c4fbabd3efc..852c2c6dffd 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/DownloadablePanelTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/DownloadablePanelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/LinksTest.php b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/LinksTest.php index 2ed489cff38..90d5402d33b 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/LinksTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/LinksTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SamplesTest.php b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SamplesTest.php index f788a4cffeb..08882d64c08 100644 --- a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SamplesTest.php +++ b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SamplesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Downloadable/Test/Unit/_files/download_mock.php b/app/code/Magento/Downloadable/Test/Unit/_files/download_mock.php index fba7e8b30ee..87b072ff22a 100644 --- a/app/code/Magento/Downloadable/Test/Unit/_files/download_mock.php +++ b/app/code/Magento/Downloadable/Test/Unit/_files/download_mock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Helper; diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Composite.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Composite.php index 821a0a236c5..cda37993e82 100644 --- a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Composite.php +++ b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Composite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Links.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Links.php index 738ac5f68a0..bd4adb6a715 100644 --- a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Links.php +++ b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Links.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Ui\DataProvider\Product\Form\Modifier\Data; diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Samples.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Samples.php index 2be605da776..66f4fabda3c 100644 --- a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Samples.php +++ b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Samples.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Ui\DataProvider\Product\Form\Modifier\Data; diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/DownloadablePanel.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/DownloadablePanel.php index 903ff365417..3ddc0b41de9 100644 --- a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/DownloadablePanel.php +++ b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/DownloadablePanel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Links.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Links.php index ce61fea4c7d..c9007e280b7 100644 --- a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Links.php +++ b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Links.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Samples.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Samples.php index 48e1c5d3460..cc2004c9ee3 100644 --- a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Samples.php +++ b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Samples.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/UsedDefault.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/UsedDefault.php index 88163ff1e24..e19bf9f5848 100644 --- a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/UsedDefault.php +++ b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/UsedDefault.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Downloadable/etc/acl.xml b/app/code/Magento/Downloadable/etc/acl.xml index 6340fcd048d..c3bc4a5d8cb 100644 --- a/app/code/Magento/Downloadable/etc/acl.xml +++ b/app/code/Magento/Downloadable/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/adminhtml/di.xml b/app/code/Magento/Downloadable/etc/adminhtml/di.xml index a4f24ced94f..d6af2661df0 100644 --- a/app/code/Magento/Downloadable/etc/adminhtml/di.xml +++ b/app/code/Magento/Downloadable/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/adminhtml/menu.xml b/app/code/Magento/Downloadable/etc/adminhtml/menu.xml index 0fa664accfb..55359b30455 100644 --- a/app/code/Magento/Downloadable/etc/adminhtml/menu.xml +++ b/app/code/Magento/Downloadable/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/adminhtml/routes.xml b/app/code/Magento/Downloadable/etc/adminhtml/routes.xml index c2d077bdd68..a3fca453395 100644 --- a/app/code/Magento/Downloadable/etc/adminhtml/routes.xml +++ b/app/code/Magento/Downloadable/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/adminhtml/system.xml b/app/code/Magento/Downloadable/etc/adminhtml/system.xml index 2fdf6be5b88..a8f83153603 100644 --- a/app/code/Magento/Downloadable/etc/adminhtml/system.xml +++ b/app/code/Magento/Downloadable/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/catalog_attributes.xml b/app/code/Magento/Downloadable/etc/catalog_attributes.xml index 7f3ae728853..081f9e8764b 100644 --- a/app/code/Magento/Downloadable/etc/catalog_attributes.xml +++ b/app/code/Magento/Downloadable/etc/catalog_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/config.xml b/app/code/Magento/Downloadable/etc/config.xml index d434ac16d06..9582cea6da0 100644 --- a/app/code/Magento/Downloadable/etc/config.xml +++ b/app/code/Magento/Downloadable/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/di.xml b/app/code/Magento/Downloadable/etc/di.xml index 8e3d0bb6c5c..62e15cddca4 100644 --- a/app/code/Magento/Downloadable/etc/di.xml +++ b/app/code/Magento/Downloadable/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/events.xml b/app/code/Magento/Downloadable/etc/events.xml index eeafbf26ba4..da7cc5b5c91 100644 --- a/app/code/Magento/Downloadable/etc/events.xml +++ b/app/code/Magento/Downloadable/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/extension_attributes.xml b/app/code/Magento/Downloadable/etc/extension_attributes.xml index 63789663921..c1d5f9e37c4 100644 --- a/app/code/Magento/Downloadable/etc/extension_attributes.xml +++ b/app/code/Magento/Downloadable/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/fieldset.xml b/app/code/Magento/Downloadable/etc/fieldset.xml index 680857d7e5d..dfc475f4b27 100644 --- a/app/code/Magento/Downloadable/etc/fieldset.xml +++ b/app/code/Magento/Downloadable/etc/fieldset.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/frontend/di.xml b/app/code/Magento/Downloadable/etc/frontend/di.xml index a4b6dcd23e8..7920c2a5cf4 100644 --- a/app/code/Magento/Downloadable/etc/frontend/di.xml +++ b/app/code/Magento/Downloadable/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/frontend/events.xml b/app/code/Magento/Downloadable/etc/frontend/events.xml index 0ea805bbfc9..3c024793a37 100644 --- a/app/code/Magento/Downloadable/etc/frontend/events.xml +++ b/app/code/Magento/Downloadable/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/frontend/page_types.xml b/app/code/Magento/Downloadable/etc/frontend/page_types.xml index f8514e050a7..aabe2d70a3e 100644 --- a/app/code/Magento/Downloadable/etc/frontend/page_types.xml +++ b/app/code/Magento/Downloadable/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/frontend/routes.xml b/app/code/Magento/Downloadable/etc/frontend/routes.xml index 2e4df8f6543..0f5d7a97498 100644 --- a/app/code/Magento/Downloadable/etc/frontend/routes.xml +++ b/app/code/Magento/Downloadable/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Downloadable" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Downloadable/etc/module.xml b/app/code/Magento/Downloadable/etc/module.xml index c6fd9c6a982..fd4d885b3e4 100644 --- a/app/code/Magento/Downloadable/etc/module.xml +++ b/app/code/Magento/Downloadable/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/pdf.xml b/app/code/Magento/Downloadable/etc/pdf.xml index 2e71823cc69..efc0e038a89 100644 --- a/app/code/Magento/Downloadable/etc/pdf.xml +++ b/app/code/Magento/Downloadable/etc/pdf.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/product_types.xml b/app/code/Magento/Downloadable/etc/product_types.xml index 2f262cba218..08e02028965 100644 --- a/app/code/Magento/Downloadable/etc/product_types.xml +++ b/app/code/Magento/Downloadable/etc/product_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/sales.xml b/app/code/Magento/Downloadable/etc/sales.xml index adaddcdf672..2a10842dd33 100644 --- a/app/code/Magento/Downloadable/etc/sales.xml +++ b/app/code/Magento/Downloadable/etc/sales.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/webapi.xml b/app/code/Magento/Downloadable/etc/webapi.xml index 06902aa6466..773b31ab2be 100644 --- a/app/code/Magento/Downloadable/etc/webapi.xml +++ b/app/code/Magento/Downloadable/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/webapi_rest/di.xml b/app/code/Magento/Downloadable/etc/webapi_rest/di.xml index a4aa62194a3..6e1c41b1c96 100644 --- a/app/code/Magento/Downloadable/etc/webapi_rest/di.xml +++ b/app/code/Magento/Downloadable/etc/webapi_rest/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/etc/webapi_soap/di.xml b/app/code/Magento/Downloadable/etc/webapi_soap/di.xml index a4aa62194a3..6e1c41b1c96 100644 --- a/app/code/Magento/Downloadable/etc/webapi_soap/di.xml +++ b/app/code/Magento/Downloadable/etc/webapi_soap/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/registration.php b/app/code/Magento/Downloadable/registration.php index 0164a72a02b..516a177e10c 100644 --- a/app/code/Magento/Downloadable/registration.php +++ b/app/code/Magento/Downloadable/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_downloadable.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_downloadable.xml index d96cafa41f4..b502b9bb54c 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_downloadable.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_downloadable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_simple.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_simple.xml index 0eeed489a5e..5866d21ff46 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_simple.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_simple.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_view_type_downloadable.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_view_type_downloadable.xml index 1661a7be27d..823b83c7cdf 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_view_type_downloadable.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_view_type_downloadable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_virtual.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_virtual.xml index 0eeed489a5e..5866d21ff46 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_virtual.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_virtual.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/customer_index_wishlist.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/customer_index_wishlist.xml index be88b8b8877..1355e7a0c85 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/customer_index_wishlist.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/customer_index_wishlist.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/downloadable_items.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/downloadable_items.xml index 0d7bb35904d..5a805610644 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/downloadable_items.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/downloadable_items.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_new.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_new.xml index 7206a5e8aa8..50c7e06227a 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_new.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml index 7206a5e8aa8..50c7e06227a 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_view.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_view.xml index 9c221ebbfe4..d06b8007189 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_view.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_new.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_new.xml index 0aa400ff3a5..9b3c2af9d0f 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_new.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_updateqty.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_updateqty.xml index 0aa400ff3a5..9b3c2af9d0f 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_updateqty.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_updateqty.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_view.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_view.xml index 8eb1288dd4c..dfbbe17392e 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_view.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_view.xml index 61d85ae24f5..d2e76586399 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_view.xml +++ b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/product/composite/fieldset/downloadable.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/product/composite/fieldset/downloadable.phtml index ace16699931..ff66ccd5dc7 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/templates/product/composite/fieldset/downloadable.phtml +++ b/app/code/Magento/Downloadable/view/adminhtml/templates/product/composite/fieldset/downloadable.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable.phtml index e21e2a70c15..0c86062a89b 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable.phtml +++ b/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/links.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/links.phtml index d4fe3ec72a0..073090ed8ed 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/links.phtml +++ b/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/links.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/samples.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/samples.phtml index 510a3d3fcc8..db3b3bf7024 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/samples.phtml +++ b/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/samples.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/creditmemo/name.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/creditmemo/name.phtml index 7c49deda417..749798cbd76 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/creditmemo/name.phtml +++ b/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/creditmemo/name.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/invoice/name.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/invoice/name.phtml index 92cece62b57..d626fd8e2c4 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/invoice/name.phtml +++ b/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/invoice/name.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/name.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/name.phtml index e9cfe9ad207..9edfbe89fc6 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/name.phtml +++ b/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/name.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/downloadable-type-handler.js b/app/code/Magento/Downloadable/view/adminhtml/web/downloadable-type-handler.js index 293492c6c1c..0077d49ec5c 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/web/downloadable-type-handler.js +++ b/app/code/Magento/Downloadable/view/adminhtml/web/downloadable-type-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true expr:true*/ diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/file-uploader.js b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/file-uploader.js index 7fec33835a4..a551f75da92 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/file-uploader.js +++ b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/file-uploader.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/is-downloadable-handler.js b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/is-downloadable-handler.js index 8fc6508cd87..b93867e2a6d 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/is-downloadable-handler.js +++ b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/is-downloadable-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/price-handler.js b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/price-handler.js index fb11f9998c1..0c6268ed93e 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/price-handler.js +++ b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/price-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/upload-type-handler.js b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/upload-type-handler.js index a6294a17961..5583e381cca 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/upload-type-handler.js +++ b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/upload-type-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/use-price-default-handler.js b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/use-price-default-handler.js index 43e31d469d1..1c4be39d149 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/use-price-default-handler.js +++ b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/use-price-default-handler.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/template/components/file-uploader.html b/app/code/Magento/Downloadable/view/adminhtml/web/template/components/file-uploader.html index 8cbe03034aa..95d41fac4bc 100644 --- a/app/code/Magento/Downloadable/view/adminhtml/web/template/components/file-uploader.html +++ b/app/code/Magento/Downloadable/view/adminhtml/web/template/components/file-uploader.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/catalog_product_view_type_downloadable.xml b/app/code/Magento/Downloadable/view/frontend/layout/catalog_product_view_type_downloadable.xml index 2d31df0711a..f5ca22b19fd 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/catalog_product_view_type_downloadable.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/catalog_product_view_type_downloadable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_configure_type_downloadable.xml b/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_configure_type_downloadable.xml index f1e267b259c..6d0c8b366f8 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_configure_type_downloadable.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_configure_type_downloadable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_item_renderers.xml index 6caf33617e6..4840c49e24c 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_item_renderers.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_review_item_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_review_item_renderers.xml index 586b24e0701..104ba3cba6a 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_review_item_renderers.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_review_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_success.xml b/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_success.xml index f3fc88ae57a..8307b3f4630 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_success.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_success.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/customer_account.xml b/app/code/Magento/Downloadable/view/frontend/layout/customer_account.xml index 96bcb556edf..2dec0b76fea 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/customer_account.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/customer_account.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/downloadable_customer_products.xml b/app/code/Magento/Downloadable/view/frontend/layout/downloadable_customer_products.xml index 991015cba9a..b548547224a 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/downloadable_customer_products.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/downloadable_customer_products.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/multishipping_checkout_success.xml b/app/code/Magento/Downloadable/view/frontend/layout/multishipping_checkout_success.xml index 29902fd0701..62080117ae5 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/multishipping_checkout_success.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/multishipping_checkout_success.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_creditmemo_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_creditmemo_renderers.xml index 6b58d2be20e..b7519ba763a 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_creditmemo_renderers.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_invoice_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_invoice_renderers.xml index d8e04774ba9..8fd23a49cd9 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_invoice_renderers.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_renderers.xml index c8a59438f7a..e3d68ac505f 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_renderers.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_creditmemo_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_creditmemo_renderers.xml index 17c2dc18037..b08ad837991 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_creditmemo_renderers.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_invoice_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_invoice_renderers.xml index a6456830b40..243dd2124f4 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_invoice_renderers.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_item_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_item_renderers.xml index 85aa800ca9e..ca8af720a7c 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_item_renderers.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_creditmemo_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_creditmemo_renderers.xml index 393428217da..82ce1a00df1 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_creditmemo_renderers.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_invoice_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_invoice_renderers.xml index 903266531c9..565567d0835 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_invoice_renderers.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_renderers.xml index 1bc8a1feb1d..7053a0643a3 100644 --- a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_renderers.xml +++ b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Downloadable/view/frontend/requirejs-config.js b/app/code/Magento/Downloadable/view/frontend/requirejs-config.js index b96ac9961b1..1a27eb7d5ff 100644 --- a/app/code/Magento/Downloadable/view/frontend/requirejs-config.js +++ b/app/code/Magento/Downloadable/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { downloadable: 'Magento_Downloadable/downloadable' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/links.phtml b/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/links.phtml index 908a956fec1..e8f8d2d93f2 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/links.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/links.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/samples.phtml b/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/samples.phtml index a8b029b9192..7f75074b3dd 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/samples.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/samples.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/type.phtml b/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/type.phtml index bfa18eb735c..9f8300bd52e 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/type.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/type.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/templates/checkout/success.phtml b/app/code/Magento/Downloadable/view/frontend/templates/checkout/success.phtml index 122440c6306..e44987c40c3 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/checkout/success.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/checkout/success.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/templates/customer/products/list.phtml b/app/code/Magento/Downloadable/view/frontend/templates/customer/products/list.phtml index 3c6bc9811f0..0c9370b509d 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/customer/products/list.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/customer/products/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/creditmemo/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/creditmemo/downloadable.phtml index d56996a8b96..dddc5643364 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/creditmemo/downloadable.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/creditmemo/downloadable.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/invoice/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/invoice/downloadable.phtml index a1cfeeda79f..87056836661 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/invoice/downloadable.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/invoice/downloadable.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/order/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/order/downloadable.phtml index 8a8f82e31a9..c8fab0e3db6 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/order/downloadable.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/order/downloadable.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/templates/js/components.phtml b/app/code/Magento/Downloadable/view/frontend/templates/js/components.phtml index e490a6aa049..bdcb2e9bf77 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/templates/sales/order/creditmemo/items/renderer/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/sales/order/creditmemo/items/renderer/downloadable.phtml index 6e60291a102..cc79b8a542e 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/sales/order/creditmemo/items/renderer/downloadable.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/sales/order/creditmemo/items/renderer/downloadable.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/templates/sales/order/invoice/items/renderer/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/sales/order/invoice/items/renderer/downloadable.phtml index 2833b12cd0a..c256441cc0a 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/sales/order/invoice/items/renderer/downloadable.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/sales/order/invoice/items/renderer/downloadable.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/templates/sales/order/items/renderer/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/sales/order/items/renderer/downloadable.phtml index 59ef8855b0a..7084aac3307 100644 --- a/app/code/Magento/Downloadable/view/frontend/templates/sales/order/items/renderer/downloadable.phtml +++ b/app/code/Magento/Downloadable/view/frontend/templates/sales/order/items/renderer/downloadable.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Downloadable/view/frontend/web/downloadable.js b/app/code/Magento/Downloadable/view/frontend/web/downloadable.js index cc4abd032f6..bace48ba787 100644 --- a/app/code/Magento/Downloadable/view/frontend/web/downloadable.js +++ b/app/code/Magento/Downloadable/view/frontend/web/downloadable.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true expr:true*/ @@ -59,4 +59,4 @@ define([ }); return $.mage.downloadable; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/DownloadableImportExport/Helper/Data.php b/app/code/Magento/DownloadableImportExport/Helper/Data.php index 21d20da5a1a..420da9acf7c 100644 --- a/app/code/Magento/DownloadableImportExport/Helper/Data.php +++ b/app/code/Magento/DownloadableImportExport/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\DownloadableImportExport\Helper; diff --git a/app/code/Magento/DownloadableImportExport/Helper/Uploader.php b/app/code/Magento/DownloadableImportExport/Helper/Uploader.php index 8a557da53fb..b8412435a5f 100644 --- a/app/code/Magento/DownloadableImportExport/Helper/Uploader.php +++ b/app/code/Magento/DownloadableImportExport/Helper/Uploader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\DownloadableImportExport\Helper; diff --git a/app/code/Magento/DownloadableImportExport/Model/Import/Product/Type/Downloadable.php b/app/code/Magento/DownloadableImportExport/Model/Import/Product/Type/Downloadable.php index 7a447aa90ee..14a4c73eddb 100644 --- a/app/code/Magento/DownloadableImportExport/Model/Import/Product/Type/Downloadable.php +++ b/app/code/Magento/DownloadableImportExport/Model/Import/Product/Type/Downloadable.php @@ -2,7 +2,7 @@ /** * Import entity of downloadable product type * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\DownloadableImportExport\Model\Import\Product\Type; diff --git a/app/code/Magento/DownloadableImportExport/Test/Unit/Model/Import/Product/Type/DownloadableTest.php b/app/code/Magento/DownloadableImportExport/Test/Unit/Model/Import/Product/Type/DownloadableTest.php index c4799bcc42a..fcb13b95c3b 100644 --- a/app/code/Magento/DownloadableImportExport/Test/Unit/Model/Import/Product/Type/DownloadableTest.php +++ b/app/code/Magento/DownloadableImportExport/Test/Unit/Model/Import/Product/Type/DownloadableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/DownloadableImportExport/etc/import.xml b/app/code/Magento/DownloadableImportExport/etc/import.xml index 7a29118d5bf..50b2204985f 100644 --- a/app/code/Magento/DownloadableImportExport/etc/import.xml +++ b/app/code/Magento/DownloadableImportExport/etc/import.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/DownloadableImportExport/etc/module.xml b/app/code/Magento/DownloadableImportExport/etc/module.xml index e3be073f074..be3e7a67690 100644 --- a/app/code/Magento/DownloadableImportExport/etc/module.xml +++ b/app/code/Magento/DownloadableImportExport/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/DownloadableImportExport/registration.php b/app/code/Magento/DownloadableImportExport/registration.php index bd61216c039..e94d3ff9b41 100644 --- a/app/code/Magento/DownloadableImportExport/registration.php +++ b/app/code/Magento/DownloadableImportExport/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Api/AttributeGroupRepositoryInterface.php b/app/code/Magento/Eav/Api/AttributeGroupRepositoryInterface.php index 23cdba5d63f..465978b426c 100644 --- a/app/code/Magento/Eav/Api/AttributeGroupRepositoryInterface.php +++ b/app/code/Magento/Eav/Api/AttributeGroupRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api; diff --git a/app/code/Magento/Eav/Api/AttributeManagementInterface.php b/app/code/Magento/Eav/Api/AttributeManagementInterface.php index c7912c11c65..d9ad81fc26c 100644 --- a/app/code/Magento/Eav/Api/AttributeManagementInterface.php +++ b/app/code/Magento/Eav/Api/AttributeManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api; diff --git a/app/code/Magento/Eav/Api/AttributeOptionManagementInterface.php b/app/code/Magento/Eav/Api/AttributeOptionManagementInterface.php index f9d94dc34c4..aecaaaa96c5 100644 --- a/app/code/Magento/Eav/Api/AttributeOptionManagementInterface.php +++ b/app/code/Magento/Eav/Api/AttributeOptionManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api; diff --git a/app/code/Magento/Eav/Api/AttributeRepositoryInterface.php b/app/code/Magento/Eav/Api/AttributeRepositoryInterface.php index 2de7f704eaf..23bae1a62ea 100644 --- a/app/code/Magento/Eav/Api/AttributeRepositoryInterface.php +++ b/app/code/Magento/Eav/Api/AttributeRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api; diff --git a/app/code/Magento/Eav/Api/AttributeSetManagementInterface.php b/app/code/Magento/Eav/Api/AttributeSetManagementInterface.php index f94a946cd2b..1bb6908ad85 100644 --- a/app/code/Magento/Eav/Api/AttributeSetManagementInterface.php +++ b/app/code/Magento/Eav/Api/AttributeSetManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api; diff --git a/app/code/Magento/Eav/Api/AttributeSetRepositoryInterface.php b/app/code/Magento/Eav/Api/AttributeSetRepositoryInterface.php index 6c5e9d4ad2d..0ee2d09e029 100644 --- a/app/code/Magento/Eav/Api/AttributeSetRepositoryInterface.php +++ b/app/code/Magento/Eav/Api/AttributeSetRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api; diff --git a/app/code/Magento/Eav/Api/Data/AttributeDefaultValueInterface.php b/app/code/Magento/Eav/Api/Data/AttributeDefaultValueInterface.php index e4b33833eb7..0a07d1b0581 100644 --- a/app/code/Magento/Eav/Api/Data/AttributeDefaultValueInterface.php +++ b/app/code/Magento/Eav/Api/Data/AttributeDefaultValueInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; diff --git a/app/code/Magento/Eav/Api/Data/AttributeFrontendLabelInterface.php b/app/code/Magento/Eav/Api/Data/AttributeFrontendLabelInterface.php index 6c994268b40..468db1216c5 100644 --- a/app/code/Magento/Eav/Api/Data/AttributeFrontendLabelInterface.php +++ b/app/code/Magento/Eav/Api/Data/AttributeFrontendLabelInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; diff --git a/app/code/Magento/Eav/Api/Data/AttributeGroupInterface.php b/app/code/Magento/Eav/Api/Data/AttributeGroupInterface.php index 828fa1996ec..215ad74d7e4 100644 --- a/app/code/Magento/Eav/Api/Data/AttributeGroupInterface.php +++ b/app/code/Magento/Eav/Api/Data/AttributeGroupInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; diff --git a/app/code/Magento/Eav/Api/Data/AttributeGroupSearchResultsInterface.php b/app/code/Magento/Eav/Api/Data/AttributeGroupSearchResultsInterface.php index 85a39a38d8b..de49744d0e1 100644 --- a/app/code/Magento/Eav/Api/Data/AttributeGroupSearchResultsInterface.php +++ b/app/code/Magento/Eav/Api/Data/AttributeGroupSearchResultsInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; diff --git a/app/code/Magento/Eav/Api/Data/AttributeInterface.php b/app/code/Magento/Eav/Api/Data/AttributeInterface.php index 9d5a1b9c02b..388d7d90481 100644 --- a/app/code/Magento/Eav/Api/Data/AttributeInterface.php +++ b/app/code/Magento/Eav/Api/Data/AttributeInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; diff --git a/app/code/Magento/Eav/Api/Data/AttributeOptionInterface.php b/app/code/Magento/Eav/Api/Data/AttributeOptionInterface.php index 0117ef78c0e..4a15a050541 100644 --- a/app/code/Magento/Eav/Api/Data/AttributeOptionInterface.php +++ b/app/code/Magento/Eav/Api/Data/AttributeOptionInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; diff --git a/app/code/Magento/Eav/Api/Data/AttributeOptionLabelInterface.php b/app/code/Magento/Eav/Api/Data/AttributeOptionLabelInterface.php index 0ebd1196f37..5ae6d23b378 100644 --- a/app/code/Magento/Eav/Api/Data/AttributeOptionLabelInterface.php +++ b/app/code/Magento/Eav/Api/Data/AttributeOptionLabelInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; diff --git a/app/code/Magento/Eav/Api/Data/AttributeSearchResultsInterface.php b/app/code/Magento/Eav/Api/Data/AttributeSearchResultsInterface.php index 7349d325faf..762ef38b4d4 100644 --- a/app/code/Magento/Eav/Api/Data/AttributeSearchResultsInterface.php +++ b/app/code/Magento/Eav/Api/Data/AttributeSearchResultsInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; diff --git a/app/code/Magento/Eav/Api/Data/AttributeSetInterface.php b/app/code/Magento/Eav/Api/Data/AttributeSetInterface.php index 2bad02c9fc0..5afa8deb2c5 100644 --- a/app/code/Magento/Eav/Api/Data/AttributeSetInterface.php +++ b/app/code/Magento/Eav/Api/Data/AttributeSetInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; diff --git a/app/code/Magento/Eav/Api/Data/AttributeSetSearchResultsInterface.php b/app/code/Magento/Eav/Api/Data/AttributeSetSearchResultsInterface.php index d003c0d573e..3b627cb8465 100644 --- a/app/code/Magento/Eav/Api/Data/AttributeSetSearchResultsInterface.php +++ b/app/code/Magento/Eav/Api/Data/AttributeSetSearchResultsInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; diff --git a/app/code/Magento/Eav/Api/Data/AttributeValidationRuleInterface.php b/app/code/Magento/Eav/Api/Data/AttributeValidationRuleInterface.php index dbbe9356787..bc186fca4a3 100644 --- a/app/code/Magento/Eav/Api/Data/AttributeValidationRuleInterface.php +++ b/app/code/Magento/Eav/Api/Data/AttributeValidationRuleInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Api\Data; diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Js.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Js.php index d9b02cb1143..b3884a30140 100644 --- a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Js.php +++ b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Js.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Block\Adminhtml\Attribute\Edit; diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php index ae09351a4f2..898e8d60854 100644 --- a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php +++ b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/AbstractOptions.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/AbstractOptions.php index 9ed64a2a92a..921d84d5afe 100644 --- a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/AbstractOptions.php +++ b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/AbstractOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Labels.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Labels.php index 8dbf586bd18..7a325e81ef1 100644 --- a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Labels.php +++ b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Labels.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Block\Adminhtml\Attribute\Edit\Options; diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Options.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Options.php index 77b89b018ba..5ec997b7689 100644 --- a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Options.php +++ b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Grid/AbstractGrid.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Grid/AbstractGrid.php index a6e2173a743..acec490d211 100644 --- a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Grid/AbstractGrid.php +++ b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Grid/AbstractGrid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Block\Adminhtml\Attribute\Grid; diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/PropertyLocker.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/PropertyLocker.php index 36a874a74d4..f7f199aab40 100644 --- a/app/code/Magento/Eav/Block/Adminhtml/Attribute/PropertyLocker.php +++ b/app/code/Magento/Eav/Block/Adminhtml/Attribute/PropertyLocker.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Block\Adminhtml\Attribute; diff --git a/app/code/Magento/Eav/Helper/Data.php b/app/code/Magento/Eav/Helper/Data.php index 69366117be2..29c98bbf45c 100644 --- a/app/code/Magento/Eav/Helper/Data.php +++ b/app/code/Magento/Eav/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Adminhtml/Attribute/Validation/Rules/Options.php b/app/code/Magento/Eav/Model/Adminhtml/Attribute/Validation/Rules/Options.php index 737cbea0f9b..5c5d75fd235 100644 --- a/app/code/Magento/Eav/Model/Adminhtml/Attribute/Validation/Rules/Options.php +++ b/app/code/Magento/Eav/Model/Adminhtml/Attribute/Validation/Rules/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Adminhtml\Attribute\Validation\Rules; diff --git a/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype.php b/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype.php index 4c58f9aa089..6bfc84d2b2e 100644 --- a/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype.php +++ b/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Adminhtml\System\Config\Source; diff --git a/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php b/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php index ea876f9059a..23f108ea22a 100644 --- a/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php +++ b/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Adminhtml\System\Config\Source\Inputtype; diff --git a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor.php b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor.php index 63c71bd1bb1..e9be8150ec7 100644 --- a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor.php +++ b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Api\SearchCriteria\CollectionProcessor; diff --git a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilter.php b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilter.php index f9e2e154ca5..5cb7585048e 100644 --- a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilter.php +++ b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilter.php b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilter.php index b7972fc88f9..28078f3d504 100644 --- a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilter.php +++ b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilter.php b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilter.php index ac5a267ef31..de3f50a2387 100644 --- a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilter.php +++ b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Eav/Model/Attribute.php b/app/code/Magento/Eav/Model/Attribute.php index 825f2ed4635..1bfc566e024 100644 --- a/app/code/Magento/Eav/Model/Attribute.php +++ b/app/code/Magento/Eav/Model/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Attribute/Data/AbstractData.php b/app/code/Magento/Eav/Model/Attribute/Data/AbstractData.php index 1b4070d439a..9cf2e078674 100644 --- a/app/code/Magento/Eav/Model/Attribute/Data/AbstractData.php +++ b/app/code/Magento/Eav/Model/Attribute/Data/AbstractData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Boolean.php b/app/code/Magento/Eav/Model/Attribute/Data/Boolean.php index fb5fb46effd..1b7855c69d9 100644 --- a/app/code/Magento/Eav/Model/Attribute/Data/Boolean.php +++ b/app/code/Magento/Eav/Model/Attribute/Data/Boolean.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Date.php b/app/code/Magento/Eav/Model/Attribute/Data/Date.php index 4e08430bea6..d2bb22e387b 100644 --- a/app/code/Magento/Eav/Model/Attribute/Data/Date.php +++ b/app/code/Magento/Eav/Model/Attribute/Data/Date.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Model/Attribute/Data/File.php b/app/code/Magento/Eav/Model/Attribute/Data/File.php index 2960c0cfc27..85e7f73412f 100644 --- a/app/code/Magento/Eav/Model/Attribute/Data/File.php +++ b/app/code/Magento/Eav/Model/Attribute/Data/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Hidden.php b/app/code/Magento/Eav/Model/Attribute/Data/Hidden.php index c54d7f0e663..8f895bfa0c3 100644 --- a/app/code/Magento/Eav/Model/Attribute/Data/Hidden.php +++ b/app/code/Magento/Eav/Model/Attribute/Data/Hidden.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Image.php b/app/code/Magento/Eav/Model/Attribute/Data/Image.php index 0fe0760b1f2..9a7a076aa92 100644 --- a/app/code/Magento/Eav/Model/Attribute/Data/Image.php +++ b/app/code/Magento/Eav/Model/Attribute/Data/Image.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Multiline.php b/app/code/Magento/Eav/Model/Attribute/Data/Multiline.php index 8600f03fa33..30628ac9e89 100644 --- a/app/code/Magento/Eav/Model/Attribute/Data/Multiline.php +++ b/app/code/Magento/Eav/Model/Attribute/Data/Multiline.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Multiselect.php b/app/code/Magento/Eav/Model/Attribute/Data/Multiselect.php index f5ea5109b3a..e16e02f6fc2 100644 --- a/app/code/Magento/Eav/Model/Attribute/Data/Multiselect.php +++ b/app/code/Magento/Eav/Model/Attribute/Data/Multiselect.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Select.php b/app/code/Magento/Eav/Model/Attribute/Data/Select.php index 4bda9d570d3..edd520dc9e0 100644 --- a/app/code/Magento/Eav/Model/Attribute/Data/Select.php +++ b/app/code/Magento/Eav/Model/Attribute/Data/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Text.php b/app/code/Magento/Eav/Model/Attribute/Data/Text.php index 01aa9402c35..0aae1b1f6f1 100644 --- a/app/code/Magento/Eav/Model/Attribute/Data/Text.php +++ b/app/code/Magento/Eav/Model/Attribute/Data/Text.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Textarea.php b/app/code/Magento/Eav/Model/Attribute/Data/Textarea.php index bcf3f9de687..cecc08c4761 100644 --- a/app/code/Magento/Eav/Model/Attribute/Data/Textarea.php +++ b/app/code/Magento/Eav/Model/Attribute/Data/Textarea.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Model/Attribute/GroupRepository.php b/app/code/Magento/Eav/Model/Attribute/GroupRepository.php index 20315edfbe8..54105f8dcf7 100644 --- a/app/code/Magento/Eav/Model/Attribute/GroupRepository.php +++ b/app/code/Magento/Eav/Model/Attribute/GroupRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Attribute; diff --git a/app/code/Magento/Eav/Model/AttributeDataFactory.php b/app/code/Magento/Eav/Model/AttributeDataFactory.php index 6605f4bcdaa..7b28c757d6f 100644 --- a/app/code/Magento/Eav/Model/AttributeDataFactory.php +++ b/app/code/Magento/Eav/Model/AttributeDataFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/AttributeFactory.php b/app/code/Magento/Eav/Model/AttributeFactory.php index f17ec797ed7..2024933351e 100644 --- a/app/code/Magento/Eav/Model/AttributeFactory.php +++ b/app/code/Magento/Eav/Model/AttributeFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model; diff --git a/app/code/Magento/Eav/Model/AttributeManagement.php b/app/code/Magento/Eav/Model/AttributeManagement.php index 102aafbd39f..db382766618 100644 --- a/app/code/Magento/Eav/Model/AttributeManagement.php +++ b/app/code/Magento/Eav/Model/AttributeManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model; diff --git a/app/code/Magento/Eav/Model/AttributeProvider.php b/app/code/Magento/Eav/Model/AttributeProvider.php index d18c143e542..50fa85db20b 100644 --- a/app/code/Magento/Eav/Model/AttributeProvider.php +++ b/app/code/Magento/Eav/Model/AttributeProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/AttributeRepository.php b/app/code/Magento/Eav/Model/AttributeRepository.php index 1b3e1cb76d1..a46c2567414 100644 --- a/app/code/Magento/Eav/Model/AttributeRepository.php +++ b/app/code/Magento/Eav/Model/AttributeRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model; diff --git a/app/code/Magento/Eav/Model/AttributeSetManagement.php b/app/code/Magento/Eav/Model/AttributeSetManagement.php index 1ccf9878c78..5db5f65de53 100644 --- a/app/code/Magento/Eav/Model/AttributeSetManagement.php +++ b/app/code/Magento/Eav/Model/AttributeSetManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model; diff --git a/app/code/Magento/Eav/Model/AttributeSetRepository.php b/app/code/Magento/Eav/Model/AttributeSetRepository.php index f1c71373840..ef67cd4e246 100644 --- a/app/code/Magento/Eav/Model/AttributeSetRepository.php +++ b/app/code/Magento/Eav/Model/AttributeSetRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model; diff --git a/app/code/Magento/Eav/Model/Cache/Type.php b/app/code/Magento/Eav/Model/Cache/Type.php index f84c0ef38d2..26d07229716 100644 --- a/app/code/Magento/Eav/Model/Cache/Type.php +++ b/app/code/Magento/Eav/Model/Cache/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Cache; diff --git a/app/code/Magento/Eav/Model/Config.php b/app/code/Magento/Eav/Model/Config.php index 0d0237a1f67..61d3f046fb8 100644 --- a/app/code/Magento/Eav/Model/Config.php +++ b/app/code/Magento/Eav/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model; diff --git a/app/code/Magento/Eav/Model/CustomAttributesMapper.php b/app/code/Magento/Eav/Model/CustomAttributesMapper.php index 51b92777142..8fb31324822 100644 --- a/app/code/Magento/Eav/Model/CustomAttributesMapper.php +++ b/app/code/Magento/Eav/Model/CustomAttributesMapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model; diff --git a/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator.php b/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator.php index 1ddaca7f47c..f842a2bce36 100644 --- a/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator.php +++ b/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/ComplexType.php b/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/ComplexType.php index 21cb3d6ffe1..5c4e7b47710 100644 --- a/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/ComplexType.php +++ b/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/ComplexType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/SimpleType.php b/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/SimpleType.php index 9e612506ddb..e06b00b18d0 100644 --- a/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/SimpleType.php +++ b/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/SimpleType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity.php b/app/code/Magento/Eav/Model/Entity.php index 3e6a3fe8a7e..30fd4bab47e 100644 --- a/app/code/Magento/Eav/Model/Entity.php +++ b/app/code/Magento/Eav/Model/Entity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model; diff --git a/app/code/Magento/Eav/Model/Entity/AbstractEntity.php b/app/code/Magento/Eav/Model/Entity/AbstractEntity.php index 5a88c601e17..d77232b9186 100644 --- a/app/code/Magento/Eav/Model/Entity/AbstractEntity.php +++ b/app/code/Magento/Eav/Model/Entity/AbstractEntity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Attribute.php b/app/code/Magento/Eav/Model/Entity/Attribute.php index b9ae0103ca9..f28df240c60 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/AbstractAttribute.php b/app/code/Magento/Eav/Model/Entity/Attribute/AbstractAttribute.php index 1841a9efb6c..7b661b573bf 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/AbstractAttribute.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/AbstractAttribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/AttributeGroupAlreadyExistsException.php b/app/code/Magento/Eav/Model/Entity/Attribute/AttributeGroupAlreadyExistsException.php index ca80ca089a2..78df67cbcc8 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/AttributeGroupAlreadyExistsException.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/AttributeGroupAlreadyExistsException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/AttributeInterface.php b/app/code/Magento/Eav/Model/Entity/Attribute/AttributeInterface.php index f620bd0c903..44a74777515 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/AttributeInterface.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/AttributeInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/AbstractBackend.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/AbstractBackend.php index bb0f7f8fb05..af48676f2f1 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/AbstractBackend.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/AbstractBackend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Backend; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/ArrayBackend.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/ArrayBackend.php index 135d05d146c..47a998a95ec 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/ArrayBackend.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/ArrayBackend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Backend; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/BackendInterface.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/BackendInterface.php index 292ffa5ce67..74e7ee9b88b 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/BackendInterface.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/BackendInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Backend; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Datetime.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Datetime.php index d06b4e99c2f..41d2a81f177 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Datetime.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Datetime.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/DefaultBackend.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/DefaultBackend.php index 76d09ea1ad5..508bf6ebca5 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/DefaultBackend.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/DefaultBackend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Backend; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Increment.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Increment.php index a0cca6bd508..005785806ba 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Increment.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Increment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Backend; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Serialized.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Serialized.php index 872f293479c..dab68ae3b10 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Serialized.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Serialized.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Backend; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Store.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Store.php index de9c26cf2d2..b685ae86454 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Store.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Backend; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Created.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Created.php index d2788277032..f6f62dbb352 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Created.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Created.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Backend\Time; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Updated.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Updated.php index bf4cbd92b3b..f56d1d7f9ac 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Updated.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Updated.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Backend\Time; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Config.php b/app/code/Magento/Eav/Model/Entity/Attribute/Config.php index 1bc5bba6d5e..55234cfedc0 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Config.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Config/Converter.php b/app/code/Magento/Eav/Model/Entity/Attribute/Config/Converter.php index 38f512d1d49..13836f3db04 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Config/Converter.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Config/Converter.php @@ -2,7 +2,7 @@ /** * Attributes configuration converter * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Config; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Config/Reader.php b/app/code/Magento/Eav/Model/Entity/Attribute/Config/Reader.php index abebfa80b59..9a45e499cff 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Config/Reader.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Config/Reader.php @@ -2,7 +2,7 @@ /** * Attribute configuration reader * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Config; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Config/SchemaLocator.php b/app/code/Magento/Eav/Model/Entity/Attribute/Config/SchemaLocator.php index a1410bd07ab..c0518b9a701 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Config/SchemaLocator.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Config/SchemaLocator.php @@ -2,7 +2,7 @@ /** * Entity attribute configuration schema locator * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Config; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Exception.php b/app/code/Magento/Eav/Model/Entity/Attribute/Exception.php index c1c6c15951d..79035d64f81 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Exception.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Exception.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/AbstractFrontend.php b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/AbstractFrontend.php index 4a58dbd5ed3..1496cf9a1ab 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/AbstractFrontend.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/AbstractFrontend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/Datetime.php b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/Datetime.php index 2fe234f05fd..4180ef91163 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/Datetime.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/Datetime.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/DefaultFrontend.php b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/DefaultFrontend.php index 3d3ac75f99e..306307a162e 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/DefaultFrontend.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/DefaultFrontend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Frontend; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/FrontendInterface.php b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/FrontendInterface.php index 84d15f33785..075a5e612a5 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/FrontendInterface.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/FrontendInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/FrontendLabel.php b/app/code/Magento/Eav/Model/Entity/Attribute/FrontendLabel.php index 36d4febca1d..7c87fa4a38d 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/FrontendLabel.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/FrontendLabel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Group.php b/app/code/Magento/Eav/Model/Entity/Attribute/Group.php index 9d7aa4d0a54..45fa3351d8c 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Group.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Option.php b/app/code/Magento/Eav/Model/Entity/Attribute/Option.php index b757eaa0498..953eedb68c4 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Option.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/OptionLabel.php b/app/code/Magento/Eav/Model/Entity/Attribute/OptionLabel.php index e5ca9f26cc0..a587aaea5e6 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/OptionLabel.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/OptionLabel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/OptionManagement.php b/app/code/Magento/Eav/Model/Entity/Attribute/OptionManagement.php index 7abe968ad84..b4ac2d53d56 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/OptionManagement.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/OptionManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/ScopedAttributeInterface.php b/app/code/Magento/Eav/Model/Entity/Attribute/ScopedAttributeInterface.php index 097cd3dcd91..cd78aa642a7 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/ScopedAttributeInterface.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/ScopedAttributeInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Set.php b/app/code/Magento/Eav/Model/Entity/Attribute/Set.php index b6702c65d31..79476a4079f 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Set.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Set.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/AbstractSource.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/AbstractSource.php index e9caaacf93e..1fc365bf8f6 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Source/AbstractSource.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Source/AbstractSource.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Source; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Boolean.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Boolean.php index 09195f4f52d..76e3a0af766 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Boolean.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Boolean.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Source; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Config.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Config.php index 1e13f5e2e14..89ed40354c2 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Config.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Source; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/SourceInterface.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/SourceInterface.php index b64d61729ec..7d4929adbec 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Source/SourceInterface.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Source/SourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Store.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Store.php index fbb5107e1bf..b48eb9b4460 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Store.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Source; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Table.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Table.php index 2b5bbc406d4..9e850865945 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Table.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Table.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Source; diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/ValidationRule.php b/app/code/Magento/Eav/Model/Entity/Attribute/ValidationRule.php index 23a7abb0fb3..9caf22dc038 100644 --- a/app/code/Magento/Eav/Model/Entity/Attribute/ValidationRule.php +++ b/app/code/Magento/Eav/Model/Entity/Attribute/ValidationRule.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/Entity/AttributeCache.php b/app/code/Magento/Eav/Model/Entity/AttributeCache.php index f4f52e154cd..27847d11d8d 100644 --- a/app/code/Magento/Eav/Model/Entity/AttributeCache.php +++ b/app/code/Magento/Eav/Model/Entity/AttributeCache.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/AttributeLoader.php b/app/code/Magento/Eav/Model/Entity/AttributeLoader.php index 456f041dba5..683c4dbb96e 100644 --- a/app/code/Magento/Eav/Model/Entity/AttributeLoader.php +++ b/app/code/Magento/Eav/Model/Entity/AttributeLoader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/AttributeLoaderInterface.php b/app/code/Magento/Eav/Model/Entity/AttributeLoaderInterface.php index 640175c341e..6e796bae488 100644 --- a/app/code/Magento/Eav/Model/Entity/AttributeLoaderInterface.php +++ b/app/code/Magento/Eav/Model/Entity/AttributeLoaderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Collection/AbstractCollection.php b/app/code/Magento/Eav/Model/Entity/Collection/AbstractCollection.php index bc225717411..966ba82f5e2 100644 --- a/app/code/Magento/Eav/Model/Entity/Collection/AbstractCollection.php +++ b/app/code/Magento/Eav/Model/Entity/Collection/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Collection; diff --git a/app/code/Magento/Eav/Model/Entity/Collection/VersionControl/AbstractCollection.php b/app/code/Magento/Eav/Model/Entity/Collection/VersionControl/AbstractCollection.php index 6a8c59b595b..315bf1a8bd4 100644 --- a/app/code/Magento/Eav/Model/Entity/Collection/VersionControl/AbstractCollection.php +++ b/app/code/Magento/Eav/Model/Entity/Collection/VersionControl/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Collection\VersionControl; diff --git a/app/code/Magento/Eav/Model/Entity/Context.php b/app/code/Magento/Eav/Model/Entity/Context.php index 7c1539268e1..244e658d52e 100644 --- a/app/code/Magento/Eav/Model/Entity/Context.php +++ b/app/code/Magento/Eav/Model/Entity/Context.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/EntityInterface.php b/app/code/Magento/Eav/Model/Entity/EntityInterface.php index 2c18545d6df..b4851556602 100644 --- a/app/code/Magento/Eav/Model/Entity/EntityInterface.php +++ b/app/code/Magento/Eav/Model/Entity/EntityInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity; diff --git a/app/code/Magento/Eav/Model/Entity/Increment/AbstractIncrement.php b/app/code/Magento/Eav/Model/Entity/Increment/AbstractIncrement.php index b93973b54c3..faaa795f114 100644 --- a/app/code/Magento/Eav/Model/Entity/Increment/AbstractIncrement.php +++ b/app/code/Magento/Eav/Model/Entity/Increment/AbstractIncrement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Increment/Alphanum.php b/app/code/Magento/Eav/Model/Entity/Increment/Alphanum.php index 105a48b9462..b75d20f6510 100644 --- a/app/code/Magento/Eav/Model/Entity/Increment/Alphanum.php +++ b/app/code/Magento/Eav/Model/Entity/Increment/Alphanum.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/Entity/Increment/IncrementInterface.php b/app/code/Magento/Eav/Model/Entity/Increment/IncrementInterface.php index 0fd4ab485f6..862271370bc 100644 --- a/app/code/Magento/Eav/Model/Entity/Increment/IncrementInterface.php +++ b/app/code/Magento/Eav/Model/Entity/Increment/IncrementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Increment; diff --git a/app/code/Magento/Eav/Model/Entity/Increment/NumericValue.php b/app/code/Magento/Eav/Model/Entity/Increment/NumericValue.php index 116aa1d88dd..e8470f861e5 100644 --- a/app/code/Magento/Eav/Model/Entity/Increment/NumericValue.php +++ b/app/code/Magento/Eav/Model/Entity/Increment/NumericValue.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Increment; diff --git a/app/code/Magento/Eav/Model/Entity/Setup/Context.php b/app/code/Magento/Eav/Model/Entity/Setup/Context.php index 660e2f1a688..d3ca6c342a3 100644 --- a/app/code/Magento/Eav/Model/Entity/Setup/Context.php +++ b/app/code/Magento/Eav/Model/Entity/Setup/Context.php @@ -2,7 +2,7 @@ /** * Eav setup context object * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Setup; diff --git a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper.php b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper.php index 5919527a0d5..9dd35ee71f2 100644 --- a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper.php +++ b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper.php @@ -2,7 +2,7 @@ /** * Default entity attribute mapper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Setup; diff --git a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper/Composite.php b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper/Composite.php index 6ce8484ab7d..31e1a6e8464 100644 --- a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper/Composite.php +++ b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper/Composite.php @@ -2,7 +2,7 @@ /** * Composite attribute property mapper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Setup\PropertyMapper; diff --git a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperAbstract.php b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperAbstract.php index d92d51b3845..4bbeca71ffa 100644 --- a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperAbstract.php +++ b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperAbstract.php @@ -2,7 +2,7 @@ /** * Abstract attribute property mapper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Setup; diff --git a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperInterface.php b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperInterface.php index b36a486d065..133756c2ede 100644 --- a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperInterface.php +++ b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperInterface.php @@ -2,7 +2,7 @@ /** * Attribute property mapper interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Setup; diff --git a/app/code/Magento/Eav/Model/Entity/Store.php b/app/code/Magento/Eav/Model/Entity/Store.php index 55a6a89709b..7217dad8f1f 100644 --- a/app/code/Magento/Eav/Model/Entity/Store.php +++ b/app/code/Magento/Eav/Model/Entity/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity; diff --git a/app/code/Magento/Eav/Model/Entity/Type.php b/app/code/Magento/Eav/Model/Entity/Type.php index 8415bb8b73c..ec4323cbf4d 100644 --- a/app/code/Magento/Eav/Model/Entity/Type.php +++ b/app/code/Magento/Eav/Model/Entity/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity; diff --git a/app/code/Magento/Eav/Model/Entity/VersionControl/AbstractEntity.php b/app/code/Magento/Eav/Model/Entity/VersionControl/AbstractEntity.php index 82acc01e0fe..a37fdcd40ed 100644 --- a/app/code/Magento/Eav/Model/Entity/VersionControl/AbstractEntity.php +++ b/app/code/Magento/Eav/Model/Entity/VersionControl/AbstractEntity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\VersionControl; diff --git a/app/code/Magento/Eav/Model/Entity/VersionControl/Metadata.php b/app/code/Magento/Eav/Model/Entity/VersionControl/Metadata.php index ff716df87cb..8bb45f05433 100644 --- a/app/code/Magento/Eav/Model/Entity/VersionControl/Metadata.php +++ b/app/code/Magento/Eav/Model/Entity/VersionControl/Metadata.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\VersionControl; diff --git a/app/code/Magento/Eav/Model/Form.php b/app/code/Magento/Eav/Model/Form.php index 89996e3178a..1a8a9490475 100644 --- a/app/code/Magento/Eav/Model/Form.php +++ b/app/code/Magento/Eav/Model/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model; diff --git a/app/code/Magento/Eav/Model/Form/Element.php b/app/code/Magento/Eav/Model/Form/Element.php index 78e2f9f76a4..e6ea6bbd5d0 100644 --- a/app/code/Magento/Eav/Model/Form/Element.php +++ b/app/code/Magento/Eav/Model/Form/Element.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Form; diff --git a/app/code/Magento/Eav/Model/Form/Factory.php b/app/code/Magento/Eav/Model/Form/Factory.php index 3858b5b6b8b..b7a5b7f3447 100644 --- a/app/code/Magento/Eav/Model/Form/Factory.php +++ b/app/code/Magento/Eav/Model/Form/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Form; diff --git a/app/code/Magento/Eav/Model/Form/Fieldset.php b/app/code/Magento/Eav/Model/Form/Fieldset.php index ff0fa1c508e..e6de2095151 100644 --- a/app/code/Magento/Eav/Model/Form/Fieldset.php +++ b/app/code/Magento/Eav/Model/Form/Fieldset.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Form; diff --git a/app/code/Magento/Eav/Model/Form/Type.php b/app/code/Magento/Eav/Model/Form/Type.php index 708acbf84aa..87fec580df1 100644 --- a/app/code/Magento/Eav/Model/Form/Type.php +++ b/app/code/Magento/Eav/Model/Form/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Form; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Attribute.php b/app/code/Magento/Eav/Model/ResourceModel/Attribute.php index 8f451d52e6d..884f2ee6668 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Attribute.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/ResourceModel/Attribute/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Attribute/Collection.php index 6e6fea549bb..5c762fd50cb 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Attribute/Collection.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Attribute/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Attribute; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Attribute/DefaultEntityAttributes/ProviderInterface.php b/app/code/Magento/Eav/Model/ResourceModel/Attribute/DefaultEntityAttributes/ProviderInterface.php index ec46ef4b032..c187b6bd63d 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Attribute/DefaultEntityAttributes/ProviderInterface.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Attribute/DefaultEntityAttributes/ProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Attribute\DefaultEntityAttributes; diff --git a/app/code/Magento/Eav/Model/ResourceModel/AttributeLoader.php b/app/code/Magento/Eav/Model/ResourceModel/AttributeLoader.php index 439f550a2bf..b67a3b3f5aa 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/AttributeLoader.php +++ b/app/code/Magento/Eav/Model/ResourceModel/AttributeLoader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel; diff --git a/app/code/Magento/Eav/Model/ResourceModel/AttributePersistor.php b/app/code/Magento/Eav/Model/ResourceModel/AttributePersistor.php index 5e340595df9..e983b0de200 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/AttributePersistor.php +++ b/app/code/Magento/Eav/Model/ResourceModel/AttributePersistor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/ResourceModel/Config.php b/app/code/Magento/Eav/Model/ResourceModel/Config.php index 661861e6924..00fe4472d7d 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Config.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel; diff --git a/app/code/Magento/Eav/Model/ResourceModel/CreateHandler.php b/app/code/Magento/Eav/Model/ResourceModel/CreateHandler.php index df411b6a216..38429c97d2f 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/CreateHandler.php +++ b/app/code/Magento/Eav/Model/ResourceModel/CreateHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute.php index ab269e8f1f7..0df7eaeca22 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Collection.php index 0f61480090d..3f80794a15a 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Collection.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Grid/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Grid/Collection.php index ff7d30eedb7..11b6db176a9 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Grid/Collection.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity\Attribute\Grid; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group.php index 9515bbc6643..5348d227716 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group/Collection.php index ca8553b35b5..1b0530c29f1 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group/Collection.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity\Attribute\Group; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option.php index 020ce8e71ab..fc1755a1d7a 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option/Collection.php index 85e2b62c2d7..5014a8fbac6 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option/Collection.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity\Attribute\Option; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php index b3e7bf2bc39..2d6fe782799 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity\Attribute; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set/Collection.php index 0d4ea18034c..d0f89aaa1f0 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set/Collection.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity\Attribute\Set; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Store.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Store.php index 599be1d908b..617133b31a1 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Store.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Type.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Type.php index bf72db86227..87bdf456449 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Type.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Type/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Type/Collection.php index b47fe3cb832..a106146646a 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Entity/Type/Collection.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Entity/Type/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Entity\Type; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute.php index cb51200650e..858cdd05ac0 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute/Collection.php index 3514f40e55b..06c389ec34b 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute/Collection.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Form\Attribute; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Element.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Element.php index 14dbebfb501..56c1ef9ca33 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Form/Element.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Form/Element.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Form; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Element/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Element/Collection.php index 46ca19da3f4..d34565cfafd 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Form/Element/Collection.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Form/Element/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Form\Element; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset.php index 7d471bfc56a..2c038fc4378 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Form; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset/Collection.php index 0463ea164f6..ed902da57c8 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset/Collection.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Type.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Type.php index 67b0997974a..5d0d51d1867 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Form/Type.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Form/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel\Form; diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Type/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Type/Collection.php index d109c1aae7b..a8dca2e9e9a 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Form/Type/Collection.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Form/Type/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/ResourceModel/Helper.php b/app/code/Magento/Eav/Model/ResourceModel/Helper.php index 8792e25ea03..39dc1578d8f 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/Helper.php +++ b/app/code/Magento/Eav/Model/ResourceModel/Helper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel; diff --git a/app/code/Magento/Eav/Model/ResourceModel/ReadHandler.php b/app/code/Magento/Eav/Model/ResourceModel/ReadHandler.php index 723d05b92c5..67578731e6a 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/ReadHandler.php +++ b/app/code/Magento/Eav/Model/ResourceModel/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel; diff --git a/app/code/Magento/Eav/Model/ResourceModel/ReadSnapshot.php b/app/code/Magento/Eav/Model/ResourceModel/ReadSnapshot.php index 4ef01cb59dd..3060ce7aaef 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/ReadSnapshot.php +++ b/app/code/Magento/Eav/Model/ResourceModel/ReadSnapshot.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Model/ResourceModel/UpdateHandler.php b/app/code/Magento/Eav/Model/ResourceModel/UpdateHandler.php index bcaf11aaf55..382d2efc5a0 100644 --- a/app/code/Magento/Eav/Model/ResourceModel/UpdateHandler.php +++ b/app/code/Magento/Eav/Model/ResourceModel/UpdateHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\ResourceModel; diff --git a/app/code/Magento/Eav/Model/Validator/Attribute/Backend.php b/app/code/Magento/Eav/Model/Validator/Attribute/Backend.php index ed76965e02f..1b572180ab9 100644 --- a/app/code/Magento/Eav/Model/Validator/Attribute/Backend.php +++ b/app/code/Magento/Eav/Model/Validator/Attribute/Backend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Validator\Attribute; diff --git a/app/code/Magento/Eav/Model/Validator/Attribute/Data.php b/app/code/Magento/Eav/Model/Validator/Attribute/Data.php index 161c7a3ba70..e8a78a1da74 100644 --- a/app/code/Magento/Eav/Model/Validator/Attribute/Data.php +++ b/app/code/Magento/Eav/Model/Validator/Attribute/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php b/app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php index 56bad8bf75e..3aa52b36188 100644 --- a/app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php +++ b/app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Plugin\Model\ResourceModel\Entity; diff --git a/app/code/Magento/Eav/Setup/EavSetup.php b/app/code/Magento/Eav/Setup/EavSetup.php index 9ed8ffcdc93..5872057bebf 100644 --- a/app/code/Magento/Eav/Setup/EavSetup.php +++ b/app/code/Magento/Eav/Setup/EavSetup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Setup; diff --git a/app/code/Magento/Eav/Setup/InstallData.php b/app/code/Magento/Eav/Setup/InstallData.php index fa6b329d376..75bafe1520c 100644 --- a/app/code/Magento/Eav/Setup/InstallData.php +++ b/app/code/Magento/Eav/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Setup/InstallSchema.php b/app/code/Magento/Eav/Setup/InstallSchema.php index 9b005cddeb8..3494cf02f96 100644 --- a/app/code/Magento/Eav/Setup/InstallSchema.php +++ b/app/code/Magento/Eav/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Setup/UpgradeSchema.php b/app/code/Magento/Eav/Setup/UpgradeSchema.php index 2b52bba7c2e..256f4c8e2ed 100644 --- a/app/code/Magento/Eav/Setup/UpgradeSchema.php +++ b/app/code/Magento/Eav/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Block/Adminhtml/Attribute/PropertyLockerTest.php b/app/code/Magento/Eav/Test/Unit/Block/Adminhtml/Attribute/PropertyLockerTest.php index 7653447e0ec..33a80d27691 100644 --- a/app/code/Magento/Eav/Test/Unit/Block/Adminhtml/Attribute/PropertyLockerTest.php +++ b/app/code/Magento/Eav/Test/Unit/Block/Adminhtml/Attribute/PropertyLockerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Block\Adminhtml\Attribute; diff --git a/app/code/Magento/Eav/Test/Unit/Helper/DataTest.php b/app/code/Magento/Eav/Test/Unit/Helper/DataTest.php index 40075c99fa1..d9f484045ac 100644 --- a/app/code/Magento/Eav/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Eav/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/Attribute/Validation/Rules/OptionsTest.php b/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/Attribute/Validation/Rules/OptionsTest.php index 9759ef4939f..cf0e705cef3 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/Attribute/Validation/Rules/OptionsTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/Attribute/Validation/Rules/OptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Adminhtml\Attribute\Validation\Rules; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/Inputtype/ValidatorTest.php b/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/Inputtype/ValidatorTest.php index fd4a9d5be15..77024ca87a1 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/Inputtype/ValidatorTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/Inputtype/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Adminhtml\System\Config\Source\Inputtype; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/InputtypeTest.php b/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/InputtypeTest.php index bef7734114d..a3753df2308 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/InputtypeTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/InputtypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Adminhtml\System\Config\Source; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilterTest.php b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilterTest.php index 0f3611b7636..1af51ff23ee 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilterTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilterTest.php b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilterTest.php index 00937023c34..ac67535b4d5 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilterTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilterTest.php b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilterTest.php index 7bc9706b324..90a3e49e3d6 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilterTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Api\SearchCriteria\CollectionProcessor\FilterProcessor; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessorTest.php b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessorTest.php index 06f618ab470..6ee8d619198 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessorTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Api\SearchCriteria\CollectionProcessor; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/AbstractDataTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/AbstractDataTest.php index 9a431d21e4e..66d9bfa21f2 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/AbstractDataTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/AbstractDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/BooleanTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/BooleanTest.php index b2bceaf26f5..aa25c5bdcf7 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/BooleanTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/BooleanTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/DateTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/DateTest.php index f3db9dedced..8d67f81ba19 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/DateTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/DateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/FileTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/FileTest.php index e5c2c2ce81d..63afe832ec4 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/FileTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/FileTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/ImageTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/ImageTest.php index 535fe551ed3..e691f17a99c 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/ImageTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/ImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultilineTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultilineTest.php index 4bf7fc21912..abaefecc978 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultilineTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultilineTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultiselectTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultiselectTest.php index 65c2081dcf7..993b305ebd3 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultiselectTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultiselectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/SelectTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/SelectTest.php index 976e57b60a2..3dfaea21a2e 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/SelectTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/SelectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/TextTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/TextTest.php index edcf7725c2e..43d7a924876 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/TextTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/TextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Attribute\Data; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/GroupRepositoryTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/GroupRepositoryTest.php index 2d9eb22cfd9..3a8d000c43a 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Attribute/GroupRepositoryTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Attribute/GroupRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Attribute; diff --git a/app/code/Magento/Eav/Test/Unit/Model/AttributeFactoryTest.php b/app/code/Magento/Eav/Test/Unit/Model/AttributeFactoryTest.php index d3f561c3260..ebdf9d9e221 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/AttributeFactoryTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/AttributeFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model; diff --git a/app/code/Magento/Eav/Test/Unit/Model/AttributeManagementTest.php b/app/code/Magento/Eav/Test/Unit/Model/AttributeManagementTest.php index c45c575dffc..7fe219851bb 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/AttributeManagementTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/AttributeManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/AttributeRepositoryTest.php b/app/code/Magento/Eav/Test/Unit/Model/AttributeRepositoryTest.php index d90363e40bf..0bcbc2f6f99 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/AttributeRepositoryTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/AttributeRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model; diff --git a/app/code/Magento/Eav/Test/Unit/Model/AttributeSetManagementTest.php b/app/code/Magento/Eav/Test/Unit/Model/AttributeSetManagementTest.php index e8d453575df..c707aee849b 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/AttributeSetManagementTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/AttributeSetManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model; diff --git a/app/code/Magento/Eav/Test/Unit/Model/AttributeSetRepositoryTest.php b/app/code/Magento/Eav/Test/Unit/Model/AttributeSetRepositoryTest.php index b2d20926161..b3a2001c4dd 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/AttributeSetRepositoryTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/AttributeSetRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model; diff --git a/app/code/Magento/Eav/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Eav/Test/Unit/Model/ConfigTest.php index ff1e186de60..b585772ceeb 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/ConfigTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model; diff --git a/app/code/Magento/Eav/Test/Unit/Model/CustomAttributesMapperTest.php b/app/code/Magento/Eav/Test/Unit/Model/CustomAttributesMapperTest.php index f7e98f75149..8f16e3e7930 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/CustomAttributesMapperTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/CustomAttributesMapperTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model; diff --git a/app/code/Magento/Eav/Test/Unit/Model/EavCustomAttributeTypeLocatorTest.php b/app/code/Magento/Eav/Test/Unit/Model/EavCustomAttributeTypeLocatorTest.php index 0d59f3f646b..3582a556b29 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/EavCustomAttributeTypeLocatorTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/EavCustomAttributeTypeLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/AbstractEntityTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/AbstractEntityTest.php index 7628207e25a..5a745be00fb 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/AbstractEntityTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/AbstractEntityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/AbstractAttributeTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/AbstractAttributeTest.php index 3c0e77408ba..8879edbbe8e 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/AbstractAttributeTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/AbstractAttributeTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/AbstractTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/AbstractTest.php index 87c94023fff..1ee5182289d 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/AbstractTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/AbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Attribute\Backend; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/ArrayTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/ArrayTest.php index a5b61c30fdf..24969add7a3 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/ArrayTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/ArrayTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Attribute\Backend; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/ConverterTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/ConverterTest.php index 3f5470d6e3e..7c2c9e3a2ae 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/ConverterTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Attribute\Config; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/XsdTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/XsdTest.php index b76259e0ce8..77d5810c075 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/XsdTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Attribute\Config; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.php index eb3ddad99e4..708b159a3c0 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.xml b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.xml index 48a7b9b6af8..24cc54bce3f 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.xml +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/invalidEavAttributeXmlArray.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/invalidEavAttributeXmlArray.php index 3e56fdaa079..7a78f5d3319 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/invalidEavAttributeXmlArray.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/invalidEavAttributeXmlArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/ConfigTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/ConfigTest.php index 5ae74a16b27..eafcbee6d67 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/ConfigTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DatetimeTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DatetimeTest.php index cf590b40518..3de503866cb 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DatetimeTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DatetimeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Attribute\Frontend; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DefaultFrontendTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DefaultFrontendTest.php index 80badeea2b2..ee31a4a35e8 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DefaultFrontendTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DefaultFrontendTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Attribute\Frontend; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/GroupTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/GroupTest.php index a35db39fdae..e7d8f564a78 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/GroupTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/GroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Attribute; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/OptionManagementTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/OptionManagementTest.php index 4dc0a0e8e2e..37c35fe4183 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/OptionManagementTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/OptionManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Attribute; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/SetTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/SetTest.php index 68d423cb18c..7168a7ecb7c 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/SetTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/SetTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/BooleanTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/BooleanTest.php index ae8db110da0..84c458b706b 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/BooleanTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/BooleanTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/TableTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/TableTest.php index 9b893bf9017..2c75f117647 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/TableTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/TableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Attribute\Source; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/AttributeTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/AttributeTest.php index 59acfd74635..463f81c1ade 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/AttributeTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionStub.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionStub.php index 1e85d191ebc..a577a708e28 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionStub.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionStub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Collection; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionTest.php index 7e8a0dc727f..afc4760ded4 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Collection; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionStub.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionStub.php index bf32b6629e7..69c3dda7f28 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionStub.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionStub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Collection\VersionControl; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionTest.php index cb7cec9eb2e..80f24d65649 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Collection\VersionControl; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/AlphanumTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/AlphanumTest.php index bf75e4b052f..0e8c73fe564 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/AlphanumTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/AlphanumTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Increment; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/NumericTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/NumericTest.php index b1fa6d9e1b4..b0dce0bfd26 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/NumericTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/NumericTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\Increment; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/TypeTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/TypeTest.php index 3aa42fe837f..23e47d898ed 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/TypeTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/TypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/AbstractEntityTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/AbstractEntityTest.php index adb1aa2b15c..ab1e0aa676c 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/AbstractEntityTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/AbstractEntityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\VersionControl; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/MetadataTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/MetadataTest.php index dcdcf14ee36..c7f3d0d15b7 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/MetadataTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/MetadataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Entity\VersionControl; diff --git a/app/code/Magento/Eav/Test/Unit/Model/FormTest.php b/app/code/Magento/Eav/Test/Unit/Model/FormTest.php index 9b512a62ba1..3c3d749828b 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/FormTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Attribute/CollectionTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Attribute/CollectionTest.php index f64afa911e3..e6e43fbe059 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Attribute/CollectionTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Attribute/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/Option/CollectionTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/Option/CollectionTest.php index de6c3fd6e1a..a6ba1b3b53e 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/Option/CollectionTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/Option/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\ResourceModel\Entity\Attribute\Option; diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php index e00a8ee9764..d9b7b46d544 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\ResourceModel\Entity\Attribute; diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/AttributeTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/AttributeTest.php index c18af6380a3..d23f6e47faf 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/AttributeTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/BackendTest.php b/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/BackendTest.php index f51fd6a19bb..05cea0617b0 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/BackendTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/BackendTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Model\Validator\Attribute; diff --git a/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/DataTest.php b/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/DataTest.php index 31f97b96eed..bae6525f59a 100644 --- a/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/DataTest.php +++ b/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/Test/Unit/Plugin/Model/ResourceModel/Entity/AttributeTest.php b/app/code/Magento/Eav/Test/Unit/Plugin/Model/ResourceModel/Entity/AttributeTest.php index 3fa739d4096..c5517313ac6 100644 --- a/app/code/Magento/Eav/Test/Unit/Plugin/Model/ResourceModel/Entity/AttributeTest.php +++ b/app/code/Magento/Eav/Test/Unit/Plugin/Model/ResourceModel/Entity/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Test\Unit\Plugin\Model\ResourceModel\Entity; diff --git a/app/code/Magento/Eav/Test/Unit/_files/describe_table_eav_attribute.php b/app/code/Magento/Eav/Test/Unit/_files/describe_table_eav_attribute.php index 0b55966655b..fd6937583ad 100644 --- a/app/code/Magento/Eav/Test/Unit/_files/describe_table_eav_attribute.php +++ b/app/code/Magento/Eav/Test/Unit/_files/describe_table_eav_attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/etc/cache.xml b/app/code/Magento/Eav/etc/cache.xml index bba2fb050fc..382c504a554 100644 --- a/app/code/Magento/Eav/etc/cache.xml +++ b/app/code/Magento/Eav/etc/cache.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Eav/etc/config.xml b/app/code/Magento/Eav/etc/config.xml index f7ef6bb4456..2271c370266 100644 --- a/app/code/Magento/Eav/etc/config.xml +++ b/app/code/Magento/Eav/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Eav/etc/di.xml b/app/code/Magento/Eav/etc/di.xml index 2de184b01d7..95625392efd 100644 --- a/app/code/Magento/Eav/etc/di.xml +++ b/app/code/Magento/Eav/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Eav/etc/eav_attributes.xsd b/app/code/Magento/Eav/etc/eav_attributes.xsd index d6669c042f2..578838d8da2 100644 --- a/app/code/Magento/Eav/etc/eav_attributes.xsd +++ b/app/code/Magento/Eav/etc/eav_attributes.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Eav/etc/extension_attributes.xml b/app/code/Magento/Eav/etc/extension_attributes.xml index 19e2e8a66fb..d2cf83bd8ae 100644 --- a/app/code/Magento/Eav/etc/extension_attributes.xml +++ b/app/code/Magento/Eav/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Eav/etc/module.xml b/app/code/Magento/Eav/etc/module.xml index d03606d1eeb..76c34cd1ec5 100644 --- a/app/code/Magento/Eav/etc/module.xml +++ b/app/code/Magento/Eav/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Eav/etc/validation.xml b/app/code/Magento/Eav/etc/validation.xml index b7f7016a4e9..4afe79aac15 100644 --- a/app/code/Magento/Eav/etc/validation.xml +++ b/app/code/Magento/Eav/etc/validation.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Eav/etc/webapi.xml b/app/code/Magento/Eav/etc/webapi.xml index b14ab4514e0..2c84241ac9d 100644 --- a/app/code/Magento/Eav/etc/webapi.xml +++ b/app/code/Magento/Eav/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Eav/registration.php b/app/code/Magento/Eav/registration.php index fba2c277fc2..ce31dcc9e67 100644 --- a/app/code/Magento/Eav/registration.php +++ b/app/code/Magento/Eav/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Eav/view/adminhtml/templates/attribute/edit/js.phtml b/app/code/Magento/Eav/view/adminhtml/templates/attribute/edit/js.phtml index 526d2f98ead..2928eff384d 100644 --- a/app/code/Magento/Eav/view/adminhtml/templates/attribute/edit/js.phtml +++ b/app/code/Magento/Eav/view/adminhtml/templates/attribute/edit/js.phtml @@ -1,5 +1,5 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */; diff --git a/app/code/Magento/Email/Block/Adminhtml/Template.php b/app/code/Magento/Email/Block/Adminhtml/Template.php index fad5a74ccb3..5bf91fb370c 100644 --- a/app/code/Magento/Email/Block/Adminhtml/Template.php +++ b/app/code/Magento/Email/Block/Adminhtml/Template.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Edit.php b/app/code/Magento/Email/Block/Adminhtml/Template/Edit.php index c5325c2f138..dd563e292a4 100644 --- a/app/code/Magento/Email/Block/Adminhtml/Template/Edit.php +++ b/app/code/Magento/Email/Block/Adminhtml/Template/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Block\Adminhtml\Template; diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Edit/Form.php b/app/code/Magento/Email/Block/Adminhtml/Template/Edit/Form.php index 1c6ea30b230..18a6ef19676 100644 --- a/app/code/Magento/Email/Block/Adminhtml/Template/Edit/Form.php +++ b/app/code/Magento/Email/Block/Adminhtml/Template/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Filter/Type.php b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Filter/Type.php index 4370e83b5dd..3ab34098ac7 100644 --- a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Filter/Type.php +++ b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Filter/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Block\Adminhtml\Template\Grid\Filter; diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Action.php b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Action.php index 4060e431b6b..a6d38391a84 100644 --- a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Action.php +++ b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Block\Adminhtml\Template\Grid\Renderer; diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Sender.php b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Sender.php index db4f26c3ae0..f1de9206491 100644 --- a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Sender.php +++ b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Sender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Block\Adminhtml\Template\Grid\Renderer; diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Type.php b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Type.php index 874f42bb7dc..5109d7e0d23 100644 --- a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Type.php +++ b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Block\Adminhtml\Template\Grid\Renderer; diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Preview.php b/app/code/Magento/Email/Block/Adminhtml/Template/Preview.php index 847085faf2e..e02d43f245a 100644 --- a/app/code/Magento/Email/Block/Adminhtml/Template/Preview.php +++ b/app/code/Magento/Email/Block/Adminhtml/Template/Preview.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template.php index 090052f1832..49366608165 100644 --- a/app/code/Magento/Email/Controller/Adminhtml/Email/Template.php +++ b/app/code/Magento/Email/Controller/Adminhtml/Email/Template.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Controller\Adminhtml\Email; diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/DefaultTemplate.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/DefaultTemplate.php index 5b300a449c0..3a646ff19db 100644 --- a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/DefaultTemplate.php +++ b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/DefaultTemplate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Controller\Adminhtml\Email\Template; diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Delete.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Delete.php index e21f1d32714..916e85c699d 100644 --- a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Delete.php +++ b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Controller\Adminhtml\Email\Template; diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Edit.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Edit.php index c179465e03a..83d8e636beb 100644 --- a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Edit.php +++ b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Controller\Adminhtml\Email\Template; diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Grid.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Grid.php index 9e17e0ef68d..efe1881a853 100644 --- a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Grid.php +++ b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Controller\Adminhtml\Email\Template; diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Index.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Index.php index fd389a36721..6e5933b8591 100644 --- a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Index.php +++ b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Controller\Adminhtml\Email\Template; diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/NewAction.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/NewAction.php index 7d2ad0662e0..5594064d240 100644 --- a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/NewAction.php +++ b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Controller\Adminhtml\Email\Template; diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Preview.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Preview.php index 4066f497bda..30a14bbe7b8 100644 --- a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Preview.php +++ b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Preview.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Controller\Adminhtml\Email\Template; diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Save.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Save.php index 47bc9f47d15..c5e0f4f0fab 100644 --- a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Save.php +++ b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Controller\Adminhtml\Email\Template; diff --git a/app/code/Magento/Email/Model/AbstractTemplate.php b/app/code/Magento/Email/Model/AbstractTemplate.php index e85ef27e134..96daa5b33d5 100644 --- a/app/code/Magento/Email/Model/AbstractTemplate.php +++ b/app/code/Magento/Email/Model/AbstractTemplate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model; diff --git a/app/code/Magento/Email/Model/BackendTemplate.php b/app/code/Magento/Email/Model/BackendTemplate.php index a58f046ec91..49a8dec6143 100644 --- a/app/code/Magento/Email/Model/BackendTemplate.php +++ b/app/code/Magento/Email/Model/BackendTemplate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model; diff --git a/app/code/Magento/Email/Model/Design/Backend/Logo.php b/app/code/Magento/Email/Model/Design/Backend/Logo.php index f315af490d2..cee848737ad 100644 --- a/app/code/Magento/Email/Model/Design/Backend/Logo.php +++ b/app/code/Magento/Email/Model/Design/Backend/Logo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Design\Backend; diff --git a/app/code/Magento/Email/Model/Mail/TransportInterfacePlugin.php b/app/code/Magento/Email/Model/Mail/TransportInterfacePlugin.php index 02c1fee1b07..6142e92bc23 100644 --- a/app/code/Magento/Email/Model/Mail/TransportInterfacePlugin.php +++ b/app/code/Magento/Email/Model/Mail/TransportInterfacePlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Mail; diff --git a/app/code/Magento/Email/Model/Plugin/WindowsSmtpConfig.php b/app/code/Magento/Email/Model/Plugin/WindowsSmtpConfig.php index 742716cb36d..77b2bf99f95 100644 --- a/app/code/Magento/Email/Model/Plugin/WindowsSmtpConfig.php +++ b/app/code/Magento/Email/Model/Plugin/WindowsSmtpConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Plugin; diff --git a/app/code/Magento/Email/Model/ResourceModel/Template.php b/app/code/Magento/Email/Model/ResourceModel/Template.php index 77519d8841e..eb2d87d714a 100644 --- a/app/code/Magento/Email/Model/ResourceModel/Template.php +++ b/app/code/Magento/Email/Model/ResourceModel/Template.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\ResourceModel; diff --git a/app/code/Magento/Email/Model/ResourceModel/Template/Collection.php b/app/code/Magento/Email/Model/ResourceModel/Template/Collection.php index d5f7babdfd6..7f3a6783318 100644 --- a/app/code/Magento/Email/Model/ResourceModel/Template/Collection.php +++ b/app/code/Magento/Email/Model/ResourceModel/Template/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\ResourceModel\Template; diff --git a/app/code/Magento/Email/Model/Source/Variables.php b/app/code/Magento/Email/Model/Source/Variables.php index 87f07db0281..60f947643a4 100644 --- a/app/code/Magento/Email/Model/Source/Variables.php +++ b/app/code/Magento/Email/Model/Source/Variables.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Source; diff --git a/app/code/Magento/Email/Model/Template.php b/app/code/Magento/Email/Model/Template.php index c42c4088793..3bdbfca13ce 100644 --- a/app/code/Magento/Email/Model/Template.php +++ b/app/code/Magento/Email/Model/Template.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model; diff --git a/app/code/Magento/Email/Model/Template/Config.php b/app/code/Magento/Email/Model/Template/Config.php index 9e7240b30ef..dedc9462e39 100644 --- a/app/code/Magento/Email/Model/Template/Config.php +++ b/app/code/Magento/Email/Model/Template/Config.php @@ -2,7 +2,7 @@ /** * High-level interface for email templates data that hides format from the client code * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Template; diff --git a/app/code/Magento/Email/Model/Template/Config/Converter.php b/app/code/Magento/Email/Model/Template/Config/Converter.php index 995997d5b8a..33716b9c488 100644 --- a/app/code/Magento/Email/Model/Template/Config/Converter.php +++ b/app/code/Magento/Email/Model/Template/Config/Converter.php @@ -2,7 +2,7 @@ /** * Converter of email templates configuration from \DOMDocument to array * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Template\Config; diff --git a/app/code/Magento/Email/Model/Template/Config/Data.php b/app/code/Magento/Email/Model/Template/Config/Data.php index 1f6a4beb166..a2a462e1c6c 100644 --- a/app/code/Magento/Email/Model/Template/Config/Data.php +++ b/app/code/Magento/Email/Model/Template/Config/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Template\Config; diff --git a/app/code/Magento/Email/Model/Template/Config/FileIterator.php b/app/code/Magento/Email/Model/Template/Config/FileIterator.php index 8fe29ac8f59..e070adb6a77 100644 --- a/app/code/Magento/Email/Model/Template/Config/FileIterator.php +++ b/app/code/Magento/Email/Model/Template/Config/FileIterator.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Template\Config; diff --git a/app/code/Magento/Email/Model/Template/Config/FileResolver.php b/app/code/Magento/Email/Model/Template/Config/FileResolver.php index 85a83d7ba87..8203ab8496b 100644 --- a/app/code/Magento/Email/Model/Template/Config/FileResolver.php +++ b/app/code/Magento/Email/Model/Template/Config/FileResolver.php @@ -2,7 +2,7 @@ /** * Hierarchy config file resolver * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Template\Config; diff --git a/app/code/Magento/Email/Model/Template/Config/Reader.php b/app/code/Magento/Email/Model/Template/Config/Reader.php index 5b30f2e80c9..0057d18a3f0 100644 --- a/app/code/Magento/Email/Model/Template/Config/Reader.php +++ b/app/code/Magento/Email/Model/Template/Config/Reader.php @@ -2,7 +2,7 @@ /** * Loads email template configuration from multiple XML files by merging them together * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Template\Config; diff --git a/app/code/Magento/Email/Model/Template/Config/SchemaLocator.php b/app/code/Magento/Email/Model/Template/Config/SchemaLocator.php index cf23eb32d8e..c56a2d69373 100644 --- a/app/code/Magento/Email/Model/Template/Config/SchemaLocator.php +++ b/app/code/Magento/Email/Model/Template/Config/SchemaLocator.php @@ -2,7 +2,7 @@ /** * Email templates config schema locator * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Template\Config; diff --git a/app/code/Magento/Email/Model/Template/Css/Processor.php b/app/code/Magento/Email/Model/Template/Css/Processor.php index 0386a9ace5e..d734f242c27 100644 --- a/app/code/Magento/Email/Model/Template/Css/Processor.php +++ b/app/code/Magento/Email/Model/Template/Css/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Template\Css; diff --git a/app/code/Magento/Email/Model/Template/Filter.php b/app/code/Magento/Email/Model/Template/Filter.php index 658b2977fdf..efb797df806 100644 --- a/app/code/Magento/Email/Model/Template/Filter.php +++ b/app/code/Magento/Email/Model/Template/Filter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Template; diff --git a/app/code/Magento/Email/Model/Template/SenderResolver.php b/app/code/Magento/Email/Model/Template/SenderResolver.php index 853c9274a65..1ee8d3880de 100644 --- a/app/code/Magento/Email/Model/Template/SenderResolver.php +++ b/app/code/Magento/Email/Model/Template/SenderResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Model\Template; diff --git a/app/code/Magento/Email/Setup/InstallSchema.php b/app/code/Magento/Email/Setup/InstallSchema.php index e9c19aceab8..7aa58ff4517 100644 --- a/app/code/Magento/Email/Setup/InstallSchema.php +++ b/app/code/Magento/Email/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Edit/FormTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Edit/FormTest.php index 2b3b74fdf26..b5093e38b95 100644 --- a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Edit/FormTest.php +++ b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Edit/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Block\Adminhtml\Template\Edit; diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/EditTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/EditTest.php index 4eced67af28..807d9950dcb 100644 --- a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/EditTest.php +++ b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/EditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Block\Adminhtml\Template; diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/ActionTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/ActionTest.php index 4ead5e4a17a..8d3d4fefdca 100644 --- a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/ActionTest.php +++ b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/ActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Block\Adminhtml\Template\Grid\Renderer; diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/SenderTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/SenderTest.php index c0d873a624d..9110cecb34e 100644 --- a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/SenderTest.php +++ b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/SenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Block\Adminhtml\Template\Grid\Renderer; diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/TypeTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/TypeTest.php index b8bf5133052..1665a22555d 100644 --- a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/TypeTest.php +++ b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/TypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Block\Adminhtml\Template\Grid\Renderer; diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/PreviewTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/PreviewTest.php index fd52d57ff93..8300576f529 100644 --- a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/PreviewTest.php +++ b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/PreviewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/TemplateTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/TemplateTest.php index 0a40da42538..3426f859033 100644 --- a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/TemplateTest.php +++ b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/TemplateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Block\Adminhtml; diff --git a/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/EditTest.php b/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/EditTest.php index 4f75ee1d0cd..72c40b032f8 100644 --- a/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/EditTest.php +++ b/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/EditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Controller\Adminhtml\Email\Template; diff --git a/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/IndexTest.php b/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/IndexTest.php index 09f9cb263fc..5887af235af 100644 --- a/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/IndexTest.php +++ b/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Controller\Adminhtml\Email\Template; diff --git a/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/PreviewTest.php b/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/PreviewTest.php index 7601d11dc61..ce7239e6efb 100644 --- a/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/PreviewTest.php +++ b/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/PreviewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Controller\Adminhtml\Email\Template; diff --git a/app/code/Magento/Email/Test/Unit/Model/AbstractTemplateTest.php b/app/code/Magento/Email/Test/Unit/Model/AbstractTemplateTest.php index 761e293768c..248a6300235 100644 --- a/app/code/Magento/Email/Test/Unit/Model/AbstractTemplateTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/AbstractTemplateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/Test/Unit/Model/BackendTemplateTest.php b/app/code/Magento/Email/Test/Unit/Model/BackendTemplateTest.php index 52cbee829a0..c28bee9027a 100644 --- a/app/code/Magento/Email/Test/Unit/Model/BackendTemplateTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/BackendTemplateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/Test/Unit/Model/Source/VariablesTest.php b/app/code/Magento/Email/Test/Unit/Model/Source/VariablesTest.php index c09a8f19c01..f565e83b606 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Source/VariablesTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/Source/VariablesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Model\Source; diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/ConverterTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/ConverterTest.php index 26ceae144a7..b4a2bf98d22 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/Config/ConverterTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/Template/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Model\Template\Config; diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileIteratorTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileIteratorTest.php index c4637fc9f0a..6c8a108617b 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileIteratorTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileIteratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Model\Template\Config; diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileResolverTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileResolverTest.php index dfcbfdf8be0..2fcab54534b 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileResolverTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Model\Template\Config; diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/ReaderTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/ReaderTest.php index 181bf464b3d..d195ac7ca11 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/Config/ReaderTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/Template/Config/ReaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Model\Template\Config; diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/SchemaLocatorTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/SchemaLocatorTest.php index 86771d1ba29..a1f7a409c0b 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/Template/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Model\Template\Config; diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/XsdTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/XsdTest.php index 38befadeea5..ffb0fcb02e2 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/Config/XsdTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/Template/Config/XsdTest.php @@ -2,7 +2,7 @@ /** * Test for validation rules implemented by XSD schemas for email templates configuration * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleOne/etc/email_templates_one.xml b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleOne/etc/email_templates_one.xml index e4d17e88154..444b5bde087 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleOne/etc/email_templates_one.xml +++ b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleOne/etc/email_templates_one.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleTwo/etc/email_templates_two.xml b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleTwo/etc/email_templates_two.xml index 6d98d47380e..8b698fb496f 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleTwo/etc/email_templates_two.xml +++ b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleTwo/etc/email_templates_two.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.php index b6cddd94f00..9ca1a4395ce 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.php +++ b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.xml b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.xml index 5b4a4b86108..2f895ff4648 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.xml +++ b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/ConfigTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/ConfigTest.php index 46366488e62..d83b280da00 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/ConfigTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/Template/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Model\Template; diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Css/ProcessorTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Css/ProcessorTest.php index fac9ba0f1b5..147b5a7046d 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/Css/ProcessorTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/Template/Css/ProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Model\Template\Css; diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/FilterTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/FilterTest.php index bcfd95d897d..27bf9193af2 100644 --- a/app/code/Magento/Email/Test/Unit/Model/Template/FilterTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/Template/FilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Model\Template; diff --git a/app/code/Magento/Email/Test/Unit/Model/TemplateTest.php b/app/code/Magento/Email/Test/Unit/Model/TemplateTest.php index 3ee95954c0a..491b3466fd6 100644 --- a/app/code/Magento/Email/Test/Unit/Model/TemplateTest.php +++ b/app/code/Magento/Email/Test/Unit/Model/TemplateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Email\Test\Unit\Model; @@ -303,7 +303,7 @@ class TemplateTest extends \PHPUnit_Framework_TestCase ], 'copyright in Plain Text Removed' => [ 'templateType' => 'text', - 'templateText' => '<!-- Copyright © 2016 Magento. All rights reserved. -->', + 'templateText' => '<!-- Copyright © 2013-2017 Magento, Inc. All rights reserved. -->', 'parsedTemplateText' => '', 'expectedTemplateSubject' => null, 'expectedOrigTemplateVariables' => null, @@ -311,7 +311,7 @@ class TemplateTest extends \PHPUnit_Framework_TestCase ], 'copyright in HTML Removed' => [ 'templateType' => 'html', - 'templateText' => '<!-- Copyright © 2016 Magento. All rights reserved. -->', + 'templateText' => '<!-- Copyright © 2013-2017 Magento, Inc. All rights reserved. -->', 'parsedTemplateText' => '', 'expectedTemplateSubject' => null, 'expectedOrigTemplateVariables' => null, diff --git a/app/code/Magento/Email/etc/acl.xml b/app/code/Magento/Email/etc/acl.xml index 196cad452d8..9d70af504cb 100644 --- a/app/code/Magento/Email/etc/acl.xml +++ b/app/code/Magento/Email/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/etc/adminhtml/di.xml b/app/code/Magento/Email/etc/adminhtml/di.xml index 0d1730aeb17..d276e099a3c 100644 --- a/app/code/Magento/Email/etc/adminhtml/di.xml +++ b/app/code/Magento/Email/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/etc/adminhtml/menu.xml b/app/code/Magento/Email/etc/adminhtml/menu.xml index 88de0d3712b..74392027f8b 100644 --- a/app/code/Magento/Email/etc/adminhtml/menu.xml +++ b/app/code/Magento/Email/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/etc/adminhtml/routes.xml b/app/code/Magento/Email/etc/adminhtml/routes.xml index d0467273062..ca44e51bdb4 100644 --- a/app/code/Magento/Email/etc/adminhtml/routes.xml +++ b/app/code/Magento/Email/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/etc/config.xml b/app/code/Magento/Email/etc/config.xml index 1b4063eaab2..ac1b27f737f 100644 --- a/app/code/Magento/Email/etc/config.xml +++ b/app/code/Magento/Email/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/etc/di.xml b/app/code/Magento/Email/etc/di.xml index 380e5e6248f..b1c3aacc3f4 100644 --- a/app/code/Magento/Email/etc/di.xml +++ b/app/code/Magento/Email/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/etc/email_templates.xml b/app/code/Magento/Email/etc/email_templates.xml index 8ae04e8f8d8..db40f8a4ea3 100644 --- a/app/code/Magento/Email/etc/email_templates.xml +++ b/app/code/Magento/Email/etc/email_templates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/etc/email_templates.xsd b/app/code/Magento/Email/etc/email_templates.xsd index 1b76c112c9d..0d0040804e3 100644 --- a/app/code/Magento/Email/etc/email_templates.xsd +++ b/app/code/Magento/Email/etc/email_templates.xsd @@ -3,7 +3,7 @@ /** * Format of merged email templates configuration * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/etc/frontend/di.xml b/app/code/Magento/Email/etc/frontend/di.xml index efa8fdc2c95..c3a5c476051 100644 --- a/app/code/Magento/Email/etc/frontend/di.xml +++ b/app/code/Magento/Email/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/etc/module.xml b/app/code/Magento/Email/etc/module.xml index 0c3262ff0e7..eb2b5cdf25a 100644 --- a/app/code/Magento/Email/etc/module.xml +++ b/app/code/Magento/Email/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/registration.php b/app/code/Magento/Email/registration.php index bd8a5770770..0a8cf96b09c 100644 --- a/app/code/Magento/Email/registration.php +++ b/app/code/Magento/Email/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid.xml b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid.xml index 1402eda9490..29dde3f39e8 100644 --- a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid.xml +++ b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid_block.xml b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid_block.xml index f5411da7ff4..5a5cd07e99c 100644 --- a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid_block.xml +++ b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_index.xml b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_index.xml index 2fe95e1279a..66638e24af5 100644 --- a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_index.xml +++ b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_preview.xml b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_preview.xml index 7cf8aa41675..47bdaf01809 100644 --- a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_preview.xml +++ b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_preview.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/view/adminhtml/templates/template/edit.phtml b/app/code/Magento/Email/view/adminhtml/templates/template/edit.phtml index 91b4300ddad..04002deae01 100644 --- a/app/code/Magento/Email/view/adminhtml/templates/template/edit.phtml +++ b/app/code/Magento/Email/view/adminhtml/templates/template/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/view/adminhtml/templates/template/list.phtml b/app/code/Magento/Email/view/adminhtml/templates/template/list.phtml index 6f83b52e47d..ad98f382f23 100644 --- a/app/code/Magento/Email/view/adminhtml/templates/template/list.phtml +++ b/app/code/Magento/Email/view/adminhtml/templates/template/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/view/adminhtml/templates/template/preview.phtml b/app/code/Magento/Email/view/adminhtml/templates/template/preview.phtml index f030b675577..70a62c0f14e 100644 --- a/app/code/Magento/Email/view/adminhtml/templates/template/preview.phtml +++ b/app/code/Magento/Email/view/adminhtml/templates/template/preview.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Email/view/adminhtml/ui_component/design_config_form.xml b/app/code/Magento/Email/view/adminhtml/ui_component/design_config_form.xml index d72435abe99..7de81247eaa 100644 --- a/app/code/Magento/Email/view/adminhtml/ui_component/design_config_form.xml +++ b/app/code/Magento/Email/view/adminhtml/ui_component/design_config_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/view/frontend/email/footer.html b/app/code/Magento/Email/view/frontend/email/footer.html index af97c24bacd..e877e29bda5 100644 --- a/app/code/Magento/Email/view/frontend/email/footer.html +++ b/app/code/Magento/Email/view/frontend/email/footer.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Email/view/frontend/email/header.html b/app/code/Magento/Email/view/frontend/email/header.html index 09b6b155d63..c86cbab461f 100644 --- a/app/code/Magento/Email/view/frontend/email/header.html +++ b/app/code/Magento/Email/view/frontend/email/header.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Edit.php b/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Edit.php index a79257a965f..3386dd95d60 100644 --- a/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Edit.php +++ b/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\EncryptionKey\Block\Adminhtml\Crypt\Key; diff --git a/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Form.php b/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Form.php index b7dc17135c3..b14dd74deee 100644 --- a/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Form.php +++ b/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\EncryptionKey\Block\Adminhtml\Crypt\Key; diff --git a/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key.php b/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key.php index 317c4967d85..cd71b4357fc 100644 --- a/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key.php +++ b/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Index.php b/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Index.php index 4f8b2301482..a0d65c58a49 100644 --- a/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Index.php +++ b/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\EncryptionKey\Controller\Adminhtml\Crypt\Key; diff --git a/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Save.php b/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Save.php index 2715d81e444..0a970ace9f5 100644 --- a/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Save.php +++ b/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/EncryptionKey/Model/ResourceModel/Key/Change.php b/app/code/Magento/EncryptionKey/Model/ResourceModel/Key/Change.php index 8f3aaf0043d..4ad5077ea18 100644 --- a/app/code/Magento/EncryptionKey/Model/ResourceModel/Key/Change.php +++ b/app/code/Magento/EncryptionKey/Model/ResourceModel/Key/Change.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\EncryptionKey\Model\ResourceModel\Key; diff --git a/app/code/Magento/EncryptionKey/Test/Unit/Controller/Adminhtml/Crypt/Key/SaveTest.php b/app/code/Magento/EncryptionKey/Test/Unit/Controller/Adminhtml/Crypt/Key/SaveTest.php index 94ff64c9248..b358adb2dfe 100644 --- a/app/code/Magento/EncryptionKey/Test/Unit/Controller/Adminhtml/Crypt/Key/SaveTest.php +++ b/app/code/Magento/EncryptionKey/Test/Unit/Controller/Adminhtml/Crypt/Key/SaveTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/EncryptionKey/Test/Unit/Model/ResourceModel/Key/ChangeTest.php b/app/code/Magento/EncryptionKey/Test/Unit/Model/ResourceModel/Key/ChangeTest.php index 0539b067535..273050b955f 100644 --- a/app/code/Magento/EncryptionKey/Test/Unit/Model/ResourceModel/Key/ChangeTest.php +++ b/app/code/Magento/EncryptionKey/Test/Unit/Model/ResourceModel/Key/ChangeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/EncryptionKey/etc/acl.xml b/app/code/Magento/EncryptionKey/etc/acl.xml index 0dc65ad4a4a..aad97f7cc9f 100644 --- a/app/code/Magento/EncryptionKey/etc/acl.xml +++ b/app/code/Magento/EncryptionKey/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/EncryptionKey/etc/adminhtml/menu.xml b/app/code/Magento/EncryptionKey/etc/adminhtml/menu.xml index e06fd7c57d5..71a0ff54701 100644 --- a/app/code/Magento/EncryptionKey/etc/adminhtml/menu.xml +++ b/app/code/Magento/EncryptionKey/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/EncryptionKey/etc/adminhtml/routes.xml b/app/code/Magento/EncryptionKey/etc/adminhtml/routes.xml index f01babac199..89ee76a7e3b 100644 --- a/app/code/Magento/EncryptionKey/etc/adminhtml/routes.xml +++ b/app/code/Magento/EncryptionKey/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/EncryptionKey/etc/config.xml b/app/code/Magento/EncryptionKey/etc/config.xml index 92847ba8641..25a789115d9 100644 --- a/app/code/Magento/EncryptionKey/etc/config.xml +++ b/app/code/Magento/EncryptionKey/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/EncryptionKey/etc/module.xml b/app/code/Magento/EncryptionKey/etc/module.xml index 36688aeaa8e..5c4d2a35219 100644 --- a/app/code/Magento/EncryptionKey/etc/module.xml +++ b/app/code/Magento/EncryptionKey/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/EncryptionKey/registration.php b/app/code/Magento/EncryptionKey/registration.php index 69f7efd1680..bcb8f627b4b 100644 --- a/app/code/Magento/EncryptionKey/registration.php +++ b/app/code/Magento/EncryptionKey/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/EncryptionKey/view/adminhtml/layout/adminhtml_crypt_key_index.xml b/app/code/Magento/EncryptionKey/view/adminhtml/layout/adminhtml_crypt_key_index.xml index eb5207508af..994cdb7a253 100644 --- a/app/code/Magento/EncryptionKey/view/adminhtml/layout/adminhtml_crypt_key_index.xml +++ b/app/code/Magento/EncryptionKey/view/adminhtml/layout/adminhtml_crypt_key_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Fedex/Model/Carrier.php b/app/code/Magento/Fedex/Model/Carrier.php index 3fe23389ea7..f00b4e3164c 100644 --- a/app/code/Magento/Fedex/Model/Carrier.php +++ b/app/code/Magento/Fedex/Model/Carrier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Fedex/Model/Source/Dropoff.php b/app/code/Magento/Fedex/Model/Source/Dropoff.php index ed8899ed38d..133514618df 100644 --- a/app/code/Magento/Fedex/Model/Source/Dropoff.php +++ b/app/code/Magento/Fedex/Model/Source/Dropoff.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Fedex/Model/Source/Freemethod.php b/app/code/Magento/Fedex/Model/Source/Freemethod.php index e123d9a92ed..78cfbe4e51a 100644 --- a/app/code/Magento/Fedex/Model/Source/Freemethod.php +++ b/app/code/Magento/Fedex/Model/Source/Freemethod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Fedex\Model\Source; diff --git a/app/code/Magento/Fedex/Model/Source/Generic.php b/app/code/Magento/Fedex/Model/Source/Generic.php index 0bb1354226e..c6397184e12 100644 --- a/app/code/Magento/Fedex/Model/Source/Generic.php +++ b/app/code/Magento/Fedex/Model/Source/Generic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Fedex\Model\Source; diff --git a/app/code/Magento/Fedex/Model/Source/Method.php b/app/code/Magento/Fedex/Model/Source/Method.php index f3020e1e869..527151586b3 100644 --- a/app/code/Magento/Fedex/Model/Source/Method.php +++ b/app/code/Magento/Fedex/Model/Source/Method.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Fedex/Model/Source/Packaging.php b/app/code/Magento/Fedex/Model/Source/Packaging.php index b38d9819bb1..a47851d0d19 100644 --- a/app/code/Magento/Fedex/Model/Source/Packaging.php +++ b/app/code/Magento/Fedex/Model/Source/Packaging.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Fedex/Model/Source/Unitofmeasure.php b/app/code/Magento/Fedex/Model/Source/Unitofmeasure.php index 703a1e06c1a..8db416f1495 100644 --- a/app/code/Magento/Fedex/Model/Source/Unitofmeasure.php +++ b/app/code/Magento/Fedex/Model/Source/Unitofmeasure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Fedex/Setup/InstallData.php b/app/code/Magento/Fedex/Setup/InstallData.php index 184114bdd43..f59decdbeef 100644 --- a/app/code/Magento/Fedex/Setup/InstallData.php +++ b/app/code/Magento/Fedex/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Fedex/Test/Unit/Model/CarrierTest.php b/app/code/Magento/Fedex/Test/Unit/Model/CarrierTest.php index 385ddf84148..04d4ce7ea24 100644 --- a/app/code/Magento/Fedex/Test/Unit/Model/CarrierTest.php +++ b/app/code/Magento/Fedex/Test/Unit/Model/CarrierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Fedex\Test\Unit\Model; diff --git a/app/code/Magento/Fedex/etc/adminhtml/system.xml b/app/code/Magento/Fedex/etc/adminhtml/system.xml index 16966322f25..792171c0a28 100644 --- a/app/code/Magento/Fedex/etc/adminhtml/system.xml +++ b/app/code/Magento/Fedex/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Fedex/etc/config.xml b/app/code/Magento/Fedex/etc/config.xml index d3dc876d670..0e7a178fe50 100644 --- a/app/code/Magento/Fedex/etc/config.xml +++ b/app/code/Magento/Fedex/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Fedex/etc/module.xml b/app/code/Magento/Fedex/etc/module.xml index af58dd2e800..f435c72c601 100644 --- a/app/code/Magento/Fedex/etc/module.xml +++ b/app/code/Magento/Fedex/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Fedex/registration.php b/app/code/Magento/Fedex/registration.php index 23e968edcd3..4cfeeb8940d 100644 --- a/app/code/Magento/Fedex/registration.php +++ b/app/code/Magento/Fedex/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Fedex/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Fedex/view/frontend/layout/checkout_cart_index.xml index 012ee7aa385..4b8bbd584db 100644 --- a/app/code/Magento/Fedex/view/frontend/layout/checkout_cart_index.xml +++ b/app/code/Magento/Fedex/view/frontend/layout/checkout_cart_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Fedex/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Fedex/view/frontend/layout/checkout_index_index.xml index 758217c58b8..f5ab9ee82e0 100644 --- a/app/code/Magento/Fedex/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/Fedex/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validation-rules.js b/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validation-rules.js index 990f015e3e2..6752f87f527 100644 --- a/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validation-rules.js +++ b/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validation-rules.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validator.js b/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validator.js index 326c3462e25..18c88cccbd0 100644 --- a/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validator.js +++ b/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Fedex/view/frontend/web/js/view/shipping-rates-validation.js b/app/code/Magento/Fedex/view/frontend/web/js/view/shipping-rates-validation.js index 74d58b5ee64..906c23040e7 100644 --- a/app/code/Magento/Fedex/view/frontend/web/js/view/shipping-rates-validation.js +++ b/app/code/Magento/Fedex/view/frontend/web/js/view/shipping-rates-validation.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/GiftMessage/Api/CartRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/CartRepositoryInterface.php index bd6b02b0ce4..08c373973ba 100644 --- a/app/code/Magento/GiftMessage/Api/CartRepositoryInterface.php +++ b/app/code/Magento/GiftMessage/Api/CartRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Api; diff --git a/app/code/Magento/GiftMessage/Api/Data/MessageInterface.php b/app/code/Magento/GiftMessage/Api/Data/MessageInterface.php index 7bca9462747..1646cf4b7db 100644 --- a/app/code/Magento/GiftMessage/Api/Data/MessageInterface.php +++ b/app/code/Magento/GiftMessage/Api/Data/MessageInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Api\Data; diff --git a/app/code/Magento/GiftMessage/Api/GuestCartRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/GuestCartRepositoryInterface.php index 555f42adc60..383e5497183 100644 --- a/app/code/Magento/GiftMessage/Api/GuestCartRepositoryInterface.php +++ b/app/code/Magento/GiftMessage/Api/GuestCartRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Api; diff --git a/app/code/Magento/GiftMessage/Api/GuestItemRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/GuestItemRepositoryInterface.php index 865e6b2de44..dd2969650b0 100644 --- a/app/code/Magento/GiftMessage/Api/GuestItemRepositoryInterface.php +++ b/app/code/Magento/GiftMessage/Api/GuestItemRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Api; diff --git a/app/code/Magento/GiftMessage/Api/ItemRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/ItemRepositoryInterface.php index f1d168e0e4f..7071ca18187 100644 --- a/app/code/Magento/GiftMessage/Api/ItemRepositoryInterface.php +++ b/app/code/Magento/GiftMessage/Api/ItemRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Api; diff --git a/app/code/Magento/GiftMessage/Api/OrderItemRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/OrderItemRepositoryInterface.php index c54d7762699..3daa55ad931 100644 --- a/app/code/Magento/GiftMessage/Api/OrderItemRepositoryInterface.php +++ b/app/code/Magento/GiftMessage/Api/OrderItemRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Api; diff --git a/app/code/Magento/GiftMessage/Api/OrderRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/OrderRepositoryInterface.php index 0cb6c906df9..b3c21fc14fd 100644 --- a/app/code/Magento/GiftMessage/Api/OrderRepositoryInterface.php +++ b/app/code/Magento/GiftMessage/Api/OrderRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Api; diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Product/Helper/Form/Config.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Product/Helper/Form/Config.php index 0e781aa1e6a..519495ba4b5 100644 --- a/app/code/Magento/GiftMessage/Block/Adminhtml/Product/Helper/Form/Config.php +++ b/app/code/Magento/GiftMessage/Block/Adminhtml/Product/Helper/Form/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Adminhtml\Product\Helper\Form; diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php index dedfe79b757..c85fa278766 100644 --- a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php +++ b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Adminhtml\Sales\Order\Create; diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Giftoptions.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Giftoptions.php index 6e505b6fab6..8afcd6e5d54 100644 --- a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Giftoptions.php +++ b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Giftoptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Adminhtml\Sales\Order\Create; diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php index fc32ffd7635..caf059d30ee 100644 --- a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php +++ b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Adminhtml\Sales\Order\Create; diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php index f141f72dfb6..5b40a665288 100644 --- a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php +++ b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Adminhtml\Sales\Order\View; diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Giftoptions.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Giftoptions.php index 9efcceec3fa..fdf230643df 100644 --- a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Giftoptions.php +++ b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Giftoptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Adminhtml\Sales\Order\View; diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php index 39dfde88d6c..2043f0c941d 100644 --- a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php +++ b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Adminhtml\Sales\Order\View; diff --git a/app/code/Magento/GiftMessage/Block/Cart/GiftOptions.php b/app/code/Magento/GiftMessage/Block/Cart/GiftOptions.php index 0784b4de5a1..984061909a5 100644 --- a/app/code/Magento/GiftMessage/Block/Cart/GiftOptions.php +++ b/app/code/Magento/GiftMessage/Block/Cart/GiftOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Cart; diff --git a/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/GiftOptions.php b/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/GiftOptions.php index 7a0dfeec34c..12e467322fd 100644 --- a/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/GiftOptions.php +++ b/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/GiftOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Cart\Item\Renderer\Actions; diff --git a/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/ItemIdProcessor.php b/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/ItemIdProcessor.php index e53ac8ffb93..f52ded241cb 100644 --- a/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/ItemIdProcessor.php +++ b/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/ItemIdProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Cart\Item\Renderer\Actions; diff --git a/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/LayoutProcessorInterface.php b/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/LayoutProcessorInterface.php index 7b1527b59e0..433a7007aef 100644 --- a/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/LayoutProcessorInterface.php +++ b/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/LayoutProcessorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Cart\Item\Renderer\Actions; diff --git a/app/code/Magento/GiftMessage/Block/Message/Inline.php b/app/code/Magento/GiftMessage/Block/Message/Inline.php index a7bfe9c8b70..6d4d7c3982e 100644 --- a/app/code/Magento/GiftMessage/Block/Message/Inline.php +++ b/app/code/Magento/GiftMessage/Block/Message/Inline.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Message; diff --git a/app/code/Magento/GiftMessage/Block/Message/Multishipping/Plugin/ItemsBox.php b/app/code/Magento/GiftMessage/Block/Message/Multishipping/Plugin/ItemsBox.php index acc5fb484ad..d8b3a591a21 100644 --- a/app/code/Magento/GiftMessage/Block/Message/Multishipping/Plugin/ItemsBox.php +++ b/app/code/Magento/GiftMessage/Block/Message/Multishipping/Plugin/ItemsBox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Message\Multishipping\Plugin; diff --git a/app/code/Magento/GiftMessage/Helper/Message.php b/app/code/Magento/GiftMessage/Helper/Message.php index 9a3db03ab49..d510f45ddbc 100644 --- a/app/code/Magento/GiftMessage/Helper/Message.php +++ b/app/code/Magento/GiftMessage/Helper/Message.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Model/CartRepository.php b/app/code/Magento/GiftMessage/Model/CartRepository.php index e9181f58f83..d74fe73e645 100644 --- a/app/code/Magento/GiftMessage/Model/CartRepository.php +++ b/app/code/Magento/GiftMessage/Model/CartRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Model/CompositeConfigProvider.php b/app/code/Magento/GiftMessage/Model/CompositeConfigProvider.php index 2880a8d499a..4e2462defae 100644 --- a/app/code/Magento/GiftMessage/Model/CompositeConfigProvider.php +++ b/app/code/Magento/GiftMessage/Model/CompositeConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Model; diff --git a/app/code/Magento/GiftMessage/Model/GiftMessageConfigProvider.php b/app/code/Magento/GiftMessage/Model/GiftMessageConfigProvider.php index 6395d074d29..585f75dfe10 100644 --- a/app/code/Magento/GiftMessage/Model/GiftMessageConfigProvider.php +++ b/app/code/Magento/GiftMessage/Model/GiftMessageConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Model; diff --git a/app/code/Magento/GiftMessage/Model/GiftMessageManager.php b/app/code/Magento/GiftMessage/Model/GiftMessageManager.php index 734f669b615..593aaedcb6f 100644 --- a/app/code/Magento/GiftMessage/Model/GiftMessageManager.php +++ b/app/code/Magento/GiftMessage/Model/GiftMessageManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Model; diff --git a/app/code/Magento/GiftMessage/Model/GuestCartRepository.php b/app/code/Magento/GiftMessage/Model/GuestCartRepository.php index 42711dff26b..d6ba30720fd 100644 --- a/app/code/Magento/GiftMessage/Model/GuestCartRepository.php +++ b/app/code/Magento/GiftMessage/Model/GuestCartRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Model/GuestItemRepository.php b/app/code/Magento/GiftMessage/Model/GuestItemRepository.php index 2fd0408600b..ed841033e12 100644 --- a/app/code/Magento/GiftMessage/Model/GuestItemRepository.php +++ b/app/code/Magento/GiftMessage/Model/GuestItemRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Model/ItemRepository.php b/app/code/Magento/GiftMessage/Model/ItemRepository.php index a5de0c75a07..fee17c954c2 100644 --- a/app/code/Magento/GiftMessage/Model/ItemRepository.php +++ b/app/code/Magento/GiftMessage/Model/ItemRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Model/Message.php b/app/code/Magento/GiftMessage/Model/Message.php index 1e3ab8de8bb..379d67fddc0 100644 --- a/app/code/Magento/GiftMessage/Model/Message.php +++ b/app/code/Magento/GiftMessage/Model/Message.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Model; diff --git a/app/code/Magento/GiftMessage/Model/OrderItemRepository.php b/app/code/Magento/GiftMessage/Model/OrderItemRepository.php index 2cf597e5f19..bc22a1a64ba 100644 --- a/app/code/Magento/GiftMessage/Model/OrderItemRepository.php +++ b/app/code/Magento/GiftMessage/Model/OrderItemRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Model/OrderRepository.php b/app/code/Magento/GiftMessage/Model/OrderRepository.php index e2885bae328..950b31bfaee 100644 --- a/app/code/Magento/GiftMessage/Model/OrderRepository.php +++ b/app/code/Magento/GiftMessage/Model/OrderRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Model/Plugin/OrderGet.php b/app/code/Magento/GiftMessage/Model/Plugin/OrderGet.php index ea186d18a4d..a5b189ed686 100644 --- a/app/code/Magento/GiftMessage/Model/Plugin/OrderGet.php +++ b/app/code/Magento/GiftMessage/Model/Plugin/OrderGet.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Model/Plugin/OrderSave.php b/app/code/Magento/GiftMessage/Model/Plugin/OrderSave.php index f9e1a3fa4ea..0f064dc72b7 100644 --- a/app/code/Magento/GiftMessage/Model/Plugin/OrderSave.php +++ b/app/code/Magento/GiftMessage/Model/Plugin/OrderSave.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Model/Plugin/QuoteItem.php b/app/code/Magento/GiftMessage/Model/Plugin/QuoteItem.php index 6367fd7ced4..7807708d2d9 100644 --- a/app/code/Magento/GiftMessage/Model/Plugin/QuoteItem.php +++ b/app/code/Magento/GiftMessage/Model/Plugin/QuoteItem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Model\Plugin; diff --git a/app/code/Magento/GiftMessage/Model/ResourceModel/Message.php b/app/code/Magento/GiftMessage/Model/ResourceModel/Message.php index 3d5b72f1f9c..ea2e7a39b34 100644 --- a/app/code/Magento/GiftMessage/Model/ResourceModel/Message.php +++ b/app/code/Magento/GiftMessage/Model/ResourceModel/Message.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Model\ResourceModel; diff --git a/app/code/Magento/GiftMessage/Model/ResourceModel/Message/Collection.php b/app/code/Magento/GiftMessage/Model/ResourceModel/Message/Collection.php index 6862ebf973c..8cc0c27ca8f 100644 --- a/app/code/Magento/GiftMessage/Model/ResourceModel/Message/Collection.php +++ b/app/code/Magento/GiftMessage/Model/ResourceModel/Message/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Model\ResourceModel\Message; diff --git a/app/code/Magento/GiftMessage/Model/Save.php b/app/code/Magento/GiftMessage/Model/Save.php index 0689d702f63..108a6bb3714 100644 --- a/app/code/Magento/GiftMessage/Model/Save.php +++ b/app/code/Magento/GiftMessage/Model/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Model; diff --git a/app/code/Magento/GiftMessage/Model/Type/Plugin/Multishipping.php b/app/code/Magento/GiftMessage/Model/Type/Plugin/Multishipping.php index b89fdf7ba00..257772ba5b2 100644 --- a/app/code/Magento/GiftMessage/Model/Type/Plugin/Multishipping.php +++ b/app/code/Magento/GiftMessage/Model/Type/Plugin/Multishipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Model\Type\Plugin; diff --git a/app/code/Magento/GiftMessage/Model/Type/Plugin/Onepage.php b/app/code/Magento/GiftMessage/Model/Type/Plugin/Onepage.php index 63307ab0f2e..8d30e405320 100644 --- a/app/code/Magento/GiftMessage/Model/Type/Plugin/Onepage.php +++ b/app/code/Magento/GiftMessage/Model/Type/Plugin/Onepage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Model\Type\Plugin; diff --git a/app/code/Magento/GiftMessage/Model/TypeFactory.php b/app/code/Magento/GiftMessage/Model/TypeFactory.php index 1d2180f0773..13ae82b2f99 100644 --- a/app/code/Magento/GiftMessage/Model/TypeFactory.php +++ b/app/code/Magento/GiftMessage/Model/TypeFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Model; diff --git a/app/code/Magento/GiftMessage/Observer/MultishippingEventCreateOrdersObserver.php b/app/code/Magento/GiftMessage/Observer/MultishippingEventCreateOrdersObserver.php index 2903e512ca8..74aeb95dc52 100644 --- a/app/code/Magento/GiftMessage/Observer/MultishippingEventCreateOrdersObserver.php +++ b/app/code/Magento/GiftMessage/Observer/MultishippingEventCreateOrdersObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Observer; diff --git a/app/code/Magento/GiftMessage/Observer/SalesEventOrderItemToQuoteItemObserver.php b/app/code/Magento/GiftMessage/Observer/SalesEventOrderItemToQuoteItemObserver.php index 5126d362f7b..d36a78385d0 100644 --- a/app/code/Magento/GiftMessage/Observer/SalesEventOrderItemToQuoteItemObserver.php +++ b/app/code/Magento/GiftMessage/Observer/SalesEventOrderItemToQuoteItemObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Observer; diff --git a/app/code/Magento/GiftMessage/Observer/SalesEventOrderToQuoteObserver.php b/app/code/Magento/GiftMessage/Observer/SalesEventOrderToQuoteObserver.php index 4f069aab584..9b66261202e 100644 --- a/app/code/Magento/GiftMessage/Observer/SalesEventOrderToQuoteObserver.php +++ b/app/code/Magento/GiftMessage/Observer/SalesEventOrderToQuoteObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Observer; diff --git a/app/code/Magento/GiftMessage/Observer/SalesEventQuoteSubmitBeforeObserver.php b/app/code/Magento/GiftMessage/Observer/SalesEventQuoteSubmitBeforeObserver.php index 90612a3ea0b..4bacb2ce60f 100644 --- a/app/code/Magento/GiftMessage/Observer/SalesEventQuoteSubmitBeforeObserver.php +++ b/app/code/Magento/GiftMessage/Observer/SalesEventQuoteSubmitBeforeObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Observer; diff --git a/app/code/Magento/GiftMessage/Setup/InstallData.php b/app/code/Magento/GiftMessage/Setup/InstallData.php index d2b30f983f1..3608324eab9 100644 --- a/app/code/Magento/GiftMessage/Setup/InstallData.php +++ b/app/code/Magento/GiftMessage/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Setup/InstallSchema.php b/app/code/Magento/GiftMessage/Setup/InstallSchema.php index b2ca6c648fe..a3deb694aa2 100644 --- a/app/code/Magento/GiftMessage/Setup/InstallSchema.php +++ b/app/code/Magento/GiftMessage/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Setup/UpgradeData.php b/app/code/Magento/GiftMessage/Setup/UpgradeData.php index 60e2eed8944..16ae64a6d5a 100644 --- a/app/code/Magento/GiftMessage/Setup/UpgradeData.php +++ b/app/code/Magento/GiftMessage/Setup/UpgradeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Setup; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/GiftOptionsTest.php b/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/GiftOptionsTest.php index 75f699713c5..8d6be874a8f 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/GiftOptionsTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/GiftOptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Block\Cart; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/GiftOptionsTest.php b/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/GiftOptionsTest.php index a187d24179c..f507283e935 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/GiftOptionsTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/GiftOptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Block\Cart\Item\Renderer\Actions; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/ItemIdProcessorTest.php b/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/ItemIdProcessorTest.php index 9a6fdfe449a..58d2e2aab49 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/ItemIdProcessorTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/ItemIdProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Block\Cart\Item\Renderer\Actions; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Block/Message/InlineTest.php b/app/code/Magento/GiftMessage/Test/Unit/Block/Message/InlineTest.php index 6f2c674161a..6d193a02d32 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Block/Message/InlineTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Block/Message/InlineTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Block\Message; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Helper/MessageTest.php b/app/code/Magento/GiftMessage/Test/Unit/Helper/MessageTest.php index 0e256dc1ed2..f2515d4447f 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Helper/MessageTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Helper/MessageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Helper; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/CartRepositoryTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/CartRepositoryTest.php index 307fb5072bf..558bc5892af 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/CartRepositoryTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/CartRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Model; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/CompositeConfigProviderTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/CompositeConfigProviderTest.php index 73313f15f73..d9484b7d6dd 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/CompositeConfigProviderTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/CompositeConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Model; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageConfigProviderTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageConfigProviderTest.php index fdb769a6b2b..1b9d827a7bd 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageConfigProviderTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Model; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageManagerTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageManagerTest.php index 9794ebd1467..48bf40bbd52 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageManagerTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageManagerTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/GuestCartRepositoryTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/GuestCartRepositoryTest.php index 8601deb9b92..8a01c2bf970 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/GuestCartRepositoryTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/GuestCartRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Model; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/GuestItemRepositoryTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/GuestItemRepositoryTest.php index 365b9801fe0..c6dd5e6c8aa 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/GuestItemRepositoryTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/GuestItemRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Model; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/ItemRepositoryTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/ItemRepositoryTest.php index 46c26add475..be9ed04d24d 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/ItemRepositoryTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/ItemRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Model; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderGetTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderGetTest.php index 565c8ff9f16..023bb500479 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderGetTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderGetTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderSaveTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderSaveTest.php index d4ae167341e..3b455893ed1 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderSaveTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderSaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/QuoteItemTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/QuoteItemTest.php index cfb8f1463d6..4cc78238501 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/QuoteItemTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/QuoteItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/SaveTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/SaveTest.php index f05e6f21d6b..49cf8730eb4 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/SaveTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/SaveTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Model; diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/MultishippingTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/MultishippingTest.php index 86fc1fb5945..126c00b9d3f 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/MultishippingTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/MultishippingTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/OnepageTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/OnepageTest.php index 5f31718a7ac..cb471bdf066 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/OnepageTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/OnepageTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Test/Unit/Observer/MultishippingEventCreateOrdersObserverTest.php b/app/code/Magento/GiftMessage/Test/Unit/Observer/MultishippingEventCreateOrdersObserverTest.php index 82eee5057cb..b7e179d5bd3 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Observer/MultishippingEventCreateOrdersObserverTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Observer/MultishippingEventCreateOrdersObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Test/Unit/Observer/SalesEventQuoteSubmitBeforeObserverTest.php b/app/code/Magento/GiftMessage/Test/Unit/Observer/SalesEventQuoteSubmitBeforeObserverTest.php index 26f119287a4..2fa174f8fec 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Observer/SalesEventQuoteSubmitBeforeObserverTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Observer/SalesEventQuoteSubmitBeforeObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/Test/Unit/Ui/DataProvider/Product/Modifier/GiftMessageTest.php b/app/code/Magento/GiftMessage/Test/Unit/Ui/DataProvider/Product/Modifier/GiftMessageTest.php index 5906aaf1430..c469f7254ea 100644 --- a/app/code/Magento/GiftMessage/Test/Unit/Ui/DataProvider/Product/Modifier/GiftMessageTest.php +++ b/app/code/Magento/GiftMessage/Test/Unit/Ui/DataProvider/Product/Modifier/GiftMessageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Test\Unit\Ui\DataProvider\Product\Modifier; diff --git a/app/code/Magento/GiftMessage/Ui/DataProvider/Product/Modifier/GiftMessage.php b/app/code/Magento/GiftMessage/Ui/DataProvider/Product/Modifier/GiftMessage.php index b4c3e65bc4c..6d4fda58848 100644 --- a/app/code/Magento/GiftMessage/Ui/DataProvider/Product/Modifier/GiftMessage.php +++ b/app/code/Magento/GiftMessage/Ui/DataProvider/Product/Modifier/GiftMessage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Ui\DataProvider\Product\Modifier; diff --git a/app/code/Magento/GiftMessage/etc/adminhtml/di.xml b/app/code/Magento/GiftMessage/etc/adminhtml/di.xml index 585c53a7119..ac9582bebc4 100644 --- a/app/code/Magento/GiftMessage/etc/adminhtml/di.xml +++ b/app/code/Magento/GiftMessage/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/etc/adminhtml/events.xml b/app/code/Magento/GiftMessage/etc/adminhtml/events.xml index 2741ed49dbb..6ac8eb1411e 100644 --- a/app/code/Magento/GiftMessage/etc/adminhtml/events.xml +++ b/app/code/Magento/GiftMessage/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/etc/adminhtml/system.xml b/app/code/Magento/GiftMessage/etc/adminhtml/system.xml index 89228928a65..b8e28717c42 100644 --- a/app/code/Magento/GiftMessage/etc/adminhtml/system.xml +++ b/app/code/Magento/GiftMessage/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/etc/catalog_attributes.xml b/app/code/Magento/GiftMessage/etc/catalog_attributes.xml index 6d112591eda..20596c9b646 100644 --- a/app/code/Magento/GiftMessage/etc/catalog_attributes.xml +++ b/app/code/Magento/GiftMessage/etc/catalog_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/etc/config.xml b/app/code/Magento/GiftMessage/etc/config.xml index 9f4e1996f7d..fd78b91ee0d 100644 --- a/app/code/Magento/GiftMessage/etc/config.xml +++ b/app/code/Magento/GiftMessage/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/etc/di.xml b/app/code/Magento/GiftMessage/etc/di.xml index d660115822d..7486b32099b 100644 --- a/app/code/Magento/GiftMessage/etc/di.xml +++ b/app/code/Magento/GiftMessage/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/etc/extension_attributes.xml b/app/code/Magento/GiftMessage/etc/extension_attributes.xml index 1bc636cb664..8ca36ce1507 100644 --- a/app/code/Magento/GiftMessage/etc/extension_attributes.xml +++ b/app/code/Magento/GiftMessage/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/etc/fieldset.xml b/app/code/Magento/GiftMessage/etc/fieldset.xml index dfc40cc5c1c..99c6da99ecf 100644 --- a/app/code/Magento/GiftMessage/etc/fieldset.xml +++ b/app/code/Magento/GiftMessage/etc/fieldset.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -14,4 +14,4 @@ </field> </fieldset> </scope> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/GiftMessage/etc/frontend/di.xml b/app/code/Magento/GiftMessage/etc/frontend/di.xml index 19f0f5c95fa..cb7365b7947 100644 --- a/app/code/Magento/GiftMessage/etc/frontend/di.xml +++ b/app/code/Magento/GiftMessage/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/etc/frontend/events.xml b/app/code/Magento/GiftMessage/etc/frontend/events.xml index 381edb01119..fd7c77dc499 100644 --- a/app/code/Magento/GiftMessage/etc/frontend/events.xml +++ b/app/code/Magento/GiftMessage/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/etc/frontend/routes.xml b/app/code/Magento/GiftMessage/etc/frontend/routes.xml index 5b2f62b0753..f1454b3a426 100644 --- a/app/code/Magento/GiftMessage/etc/frontend/routes.xml +++ b/app/code/Magento/GiftMessage/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_GiftMessage" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/GiftMessage/etc/module.xml b/app/code/Magento/GiftMessage/etc/module.xml index 33df6bf08e0..b2deceb6b6d 100644 --- a/app/code/Magento/GiftMessage/etc/module.xml +++ b/app/code/Magento/GiftMessage/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/etc/webapi.xml b/app/code/Magento/GiftMessage/etc/webapi.xml index a24fbe74c55..aee7d444325 100644 --- a/app/code/Magento/GiftMessage/etc/webapi.xml +++ b/app/code/Magento/GiftMessage/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/etc/webapi_rest/events.xml b/app/code/Magento/GiftMessage/etc/webapi_rest/events.xml index 7afd66acace..ce2e2ac39d9 100644 --- a/app/code/Magento/GiftMessage/etc/webapi_rest/events.xml +++ b/app/code/Magento/GiftMessage/etc/webapi_rest/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/registration.php b/app/code/Magento/GiftMessage/registration.php index a8a77dadb86..49add57ba47 100644 --- a/app/code/Magento/GiftMessage/registration.php +++ b/app/code/Magento/GiftMessage/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_index.xml b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_index.xml index 307ba157cd1..b705fa78a06 100644 --- a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_index.xml +++ b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_data.xml b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_data.xml index 307ba157cd1..b705fa78a06 100644 --- a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_data.xml +++ b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_data.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_items.xml b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_items.xml index 307ba157cd1..b705fa78a06 100644 --- a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_items.xml +++ b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_items.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_view.xml index be90cf4e300..dc3de7bf917 100644 --- a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_view.xml +++ b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/giftoptionsform.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/giftoptionsform.phtml index f76e24958f4..9e8fbf1c5b6 100644 --- a/app/code/Magento/GiftMessage/view/adminhtml/templates/giftoptionsform.phtml +++ b/app/code/Magento/GiftMessage/view/adminhtml/templates/giftoptionsform.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/popup.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/popup.phtml index e2189d54945..a6dd0f81655 100644 --- a/app/code/Magento/GiftMessage/view/adminhtml/templates/popup.phtml +++ b/app/code/Magento/GiftMessage/view/adminhtml/templates/popup.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/giftoptions.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/giftoptions.phtml index 30685058412..30c5ed59aa6 100644 --- a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/giftoptions.phtml +++ b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/giftoptions.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/items.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/items.phtml index 2bcba9786d3..f9828210e2d 100644 --- a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/items.phtml +++ b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/giftoptions.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/giftoptions.phtml index 9ebcc83f7c8..4e261f862dc 100644 --- a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/giftoptions.phtml +++ b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/giftoptions.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/items.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/items.phtml index 2920e0e0db9..9e019370c69 100644 --- a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/items.phtml +++ b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_index.xml index ec0062698a2..9cc36078596 100644 --- a/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_index.xml +++ b/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_item_renderers.xml index fb2d4fd68f6..ac5e728a828 100644 --- a/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_item_renderers.xml +++ b/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/view/frontend/requirejs-config.js b/app/code/Magento/GiftMessage/view/frontend/requirejs-config.js index 208964d20c0..b59db70335d 100644 --- a/app/code/Magento/GiftMessage/view/frontend/requirejs-config.js +++ b/app/code/Magento/GiftMessage/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -10,4 +10,4 @@ var config = { extraOptions: 'Magento_GiftMessage/extra-options' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/GiftMessage/view/frontend/templates/cart/gift_options.phtml b/app/code/Magento/GiftMessage/view/frontend/templates/cart/gift_options.phtml index ed4b5d2f5de..230515897d2 100644 --- a/app/code/Magento/GiftMessage/view/frontend/templates/cart/gift_options.phtml +++ b/app/code/Magento/GiftMessage/view/frontend/templates/cart/gift_options.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/GiftMessage/view/frontend/templates/cart/item/renderer/actions/gift_options.phtml b/app/code/Magento/GiftMessage/view/frontend/templates/cart/item/renderer/actions/gift_options.phtml index 703c27b82e1..095a97d6630 100644 --- a/app/code/Magento/GiftMessage/view/frontend/templates/cart/item/renderer/actions/gift_options.phtml +++ b/app/code/Magento/GiftMessage/view/frontend/templates/cart/item/renderer/actions/gift_options.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/view/frontend/templates/inline.phtml b/app/code/Magento/GiftMessage/view/frontend/templates/inline.phtml index 250410fc3b5..2a4effdd25c 100644 --- a/app/code/Magento/GiftMessage/view/frontend/templates/inline.phtml +++ b/app/code/Magento/GiftMessage/view/frontend/templates/inline.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GiftMessage/view/frontend/web/extra-options.js b/app/code/Magento/GiftMessage/view/frontend/web/extra-options.js index 746e7cc5b02..c2e4306575e 100644 --- a/app/code/Magento/GiftMessage/view/frontend/web/extra-options.js +++ b/app/code/Magento/GiftMessage/view/frontend/web/extra-options.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint jquery:true*/ @@ -42,4 +42,4 @@ define([ }); return $.mage.extraOptions; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/GiftMessage/view/frontend/web/gift-options.js b/app/code/Magento/GiftMessage/view/frontend/web/gift-options.js index cd34a65a001..8e741307019 100644 --- a/app/code/Magento/GiftMessage/view/frontend/web/gift-options.js +++ b/app/code/Magento/GiftMessage/view/frontend/web/gift-options.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint jquery:true*/ @@ -78,4 +78,4 @@ define([ }); return $.mage.giftOptions; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/GiftMessage/view/frontend/web/js/action/gift-options.js b/app/code/Magento/GiftMessage/view/frontend/web/js/action/gift-options.js index 0b3e967a0f9..933dbc67e9e 100644 --- a/app/code/Magento/GiftMessage/view/frontend/web/js/action/gift-options.js +++ b/app/code/Magento/GiftMessage/view/frontend/web/js/action/gift-options.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-message.js b/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-message.js index 40e3bd3ed8c..bd9da994f96 100644 --- a/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-message.js +++ b/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-message.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-options.js b/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-options.js index 1b3b248851d..a3ff13c1f2e 100644 --- a/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-options.js +++ b/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-options.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/GiftMessage/view/frontend/web/js/model/url-builder.js b/app/code/Magento/GiftMessage/view/frontend/web/js/model/url-builder.js index 1520de20d57..60180ceae37 100644 --- a/app/code/Magento/GiftMessage/view/frontend/web/js/model/url-builder.js +++ b/app/code/Magento/GiftMessage/view/frontend/web/js/model/url-builder.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/GiftMessage/view/frontend/web/js/view/gift-message.js b/app/code/Magento/GiftMessage/view/frontend/web/js/view/gift-message.js index 5d58e0a21fe..7c34f58e8d2 100644 --- a/app/code/Magento/GiftMessage/view/frontend/web/js/view/gift-message.js +++ b/app/code/Magento/GiftMessage/view/frontend/web/js/view/gift-message.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-form.html b/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-form.html index 301fa93cbfc..7ca062c32cc 100644 --- a/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-form.html +++ b/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-form.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-item-level.html b/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-item-level.html index a310dcddf6a..15d7da8fc80 100644 --- a/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-item-level.html +++ b/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-item-level.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message.html b/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message.html index ca929146d5e..dc7f50107d2 100644 --- a/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message.html +++ b/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAdwords/Block/Code.php b/app/code/Magento/GoogleAdwords/Block/Code.php index f0fd7222de1..84ba572a503 100644 --- a/app/code/Magento/GoogleAdwords/Block/Code.php +++ b/app/code/Magento/GoogleAdwords/Block/Code.php @@ -2,7 +2,7 @@ /** * Google AdWords Code block * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Block; diff --git a/app/code/Magento/GoogleAdwords/Helper/Data.php b/app/code/Magento/GoogleAdwords/Helper/Data.php index d04c3687627..900447e2da3 100644 --- a/app/code/Magento/GoogleAdwords/Helper/Data.php +++ b/app/code/Magento/GoogleAdwords/Helper/Data.php @@ -2,7 +2,7 @@ /** * Google AdWords Data Helper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Helper; diff --git a/app/code/Magento/GoogleAdwords/Model/Config/Backend/AbstractConversion.php b/app/code/Magento/GoogleAdwords/Model/Config/Backend/AbstractConversion.php index 626f4b99fe7..a3b8c31157b 100644 --- a/app/code/Magento/GoogleAdwords/Model/Config/Backend/AbstractConversion.php +++ b/app/code/Magento/GoogleAdwords/Model/Config/Backend/AbstractConversion.php @@ -2,7 +2,7 @@ /** * Google AdWords Conversion Abstract Backend model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Model\Config\Backend; diff --git a/app/code/Magento/GoogleAdwords/Model/Config/Backend/Color.php b/app/code/Magento/GoogleAdwords/Model/Config/Backend/Color.php index 2e7e27daa62..5a133a09887 100644 --- a/app/code/Magento/GoogleAdwords/Model/Config/Backend/Color.php +++ b/app/code/Magento/GoogleAdwords/Model/Config/Backend/Color.php @@ -2,7 +2,7 @@ /** * Google AdWords Color Backend model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Model\Config\Backend; diff --git a/app/code/Magento/GoogleAdwords/Model/Config/Backend/ConversionId.php b/app/code/Magento/GoogleAdwords/Model/Config/Backend/ConversionId.php index bb894f3b692..3e3d3190999 100644 --- a/app/code/Magento/GoogleAdwords/Model/Config/Backend/ConversionId.php +++ b/app/code/Magento/GoogleAdwords/Model/Config/Backend/ConversionId.php @@ -2,7 +2,7 @@ /** * Google AdWords Conversion Id Backend model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Model\Config\Backend; diff --git a/app/code/Magento/GoogleAdwords/Model/Config/Source/Language.php b/app/code/Magento/GoogleAdwords/Model/Config/Source/Language.php index 4d5c399cdba..01e2bebeeff 100644 --- a/app/code/Magento/GoogleAdwords/Model/Config/Source/Language.php +++ b/app/code/Magento/GoogleAdwords/Model/Config/Source/Language.php @@ -2,7 +2,7 @@ /** * Google AdWords language source * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Model\Config\Source; diff --git a/app/code/Magento/GoogleAdwords/Model/Config/Source/ValueType.php b/app/code/Magento/GoogleAdwords/Model/Config/Source/ValueType.php index bc11e17b6a5..35dd325af3a 100644 --- a/app/code/Magento/GoogleAdwords/Model/Config/Source/ValueType.php +++ b/app/code/Magento/GoogleAdwords/Model/Config/Source/ValueType.php @@ -2,7 +2,7 @@ /** * Google AdWords conversation value type source * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Model\Config\Source; diff --git a/app/code/Magento/GoogleAdwords/Model/Filter/UppercaseTitle.php b/app/code/Magento/GoogleAdwords/Model/Filter/UppercaseTitle.php index bd35e76d59b..d984abd2de5 100644 --- a/app/code/Magento/GoogleAdwords/Model/Filter/UppercaseTitle.php +++ b/app/code/Magento/GoogleAdwords/Model/Filter/UppercaseTitle.php @@ -2,7 +2,7 @@ /** * Filter to uppercase the first character of each word in a string * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Model\Filter; diff --git a/app/code/Magento/GoogleAdwords/Model/Validator/Factory.php b/app/code/Magento/GoogleAdwords/Model/Validator/Factory.php index c78a8a12009..506d3a6ba8c 100644 --- a/app/code/Magento/GoogleAdwords/Model/Validator/Factory.php +++ b/app/code/Magento/GoogleAdwords/Model/Validator/Factory.php @@ -2,7 +2,7 @@ /** * Google AdWords Validator Factory * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. * @SuppressWarnings(PHPMD.LongVariable) */ diff --git a/app/code/Magento/GoogleAdwords/Observer/SetConversionValueObserver.php b/app/code/Magento/GoogleAdwords/Observer/SetConversionValueObserver.php index 5f1578f7ee6..2c62a670c34 100644 --- a/app/code/Magento/GoogleAdwords/Observer/SetConversionValueObserver.php +++ b/app/code/Magento/GoogleAdwords/Observer/SetConversionValueObserver.php @@ -2,7 +2,7 @@ /** * Google AdWords module observer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Observer; diff --git a/app/code/Magento/GoogleAdwords/Test/Unit/Helper/DataTest.php b/app/code/Magento/GoogleAdwords/Test/Unit/Helper/DataTest.php index 5aafb1129c4..76124bcd63d 100644 --- a/app/code/Magento/GoogleAdwords/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/GoogleAdwords/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Test\Unit\Helper; diff --git a/app/code/Magento/GoogleAdwords/Test/Unit/Model/Config/Source/ValueTypeTest.php b/app/code/Magento/GoogleAdwords/Test/Unit/Model/Config/Source/ValueTypeTest.php index 0f967ee41e6..5fc0222bea9 100644 --- a/app/code/Magento/GoogleAdwords/Test/Unit/Model/Config/Source/ValueTypeTest.php +++ b/app/code/Magento/GoogleAdwords/Test/Unit/Model/Config/Source/ValueTypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/GoogleAdwords/Test/Unit/Model/Filter/UppercaseTitleTest.php b/app/code/Magento/GoogleAdwords/Test/Unit/Model/Filter/UppercaseTitleTest.php index 5a6eb821b8c..4628e59e582 100644 --- a/app/code/Magento/GoogleAdwords/Test/Unit/Model/Filter/UppercaseTitleTest.php +++ b/app/code/Magento/GoogleAdwords/Test/Unit/Model/Filter/UppercaseTitleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Test\Unit\Model\Filter; diff --git a/app/code/Magento/GoogleAdwords/Test/Unit/Model/Validator/FactoryTest.php b/app/code/Magento/GoogleAdwords/Test/Unit/Model/Validator/FactoryTest.php index 25f157a9945..4b5e7f8571b 100644 --- a/app/code/Magento/GoogleAdwords/Test/Unit/Model/Validator/FactoryTest.php +++ b/app/code/Magento/GoogleAdwords/Test/Unit/Model/Validator/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. * @SuppressWarnings(PHPMD.LongVariable) */ diff --git a/app/code/Magento/GoogleAdwords/Test/Unit/Observer/SetConversionValueObserverTest.php b/app/code/Magento/GoogleAdwords/Test/Unit/Observer/SetConversionValueObserverTest.php index ec3c80fbd0b..0ee8acee904 100644 --- a/app/code/Magento/GoogleAdwords/Test/Unit/Observer/SetConversionValueObserverTest.php +++ b/app/code/Magento/GoogleAdwords/Test/Unit/Observer/SetConversionValueObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAdwords\Test\Unit\Observer; diff --git a/app/code/Magento/GoogleAdwords/etc/adminhtml/system.xml b/app/code/Magento/GoogleAdwords/etc/adminhtml/system.xml index fbedc21a733..3b399c989c4 100644 --- a/app/code/Magento/GoogleAdwords/etc/adminhtml/system.xml +++ b/app/code/Magento/GoogleAdwords/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAdwords/etc/config.xml b/app/code/Magento/GoogleAdwords/etc/config.xml index a27ef2ae596..33278c81226 100644 --- a/app/code/Magento/GoogleAdwords/etc/config.xml +++ b/app/code/Magento/GoogleAdwords/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -69,4 +69,4 @@ </adwords> </google> </default> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/GoogleAdwords/etc/di.xml b/app/code/Magento/GoogleAdwords/etc/di.xml index ab368af2952..8e6bfa9f583 100644 --- a/app/code/Magento/GoogleAdwords/etc/di.xml +++ b/app/code/Magento/GoogleAdwords/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAdwords/etc/frontend/events.xml b/app/code/Magento/GoogleAdwords/etc/frontend/events.xml index 08e4497f4b4..ee30ac6cc09 100644 --- a/app/code/Magento/GoogleAdwords/etc/frontend/events.xml +++ b/app/code/Magento/GoogleAdwords/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAdwords/etc/module.xml b/app/code/Magento/GoogleAdwords/etc/module.xml index 1e34c30b937..c0549848ea4 100644 --- a/app/code/Magento/GoogleAdwords/etc/module.xml +++ b/app/code/Magento/GoogleAdwords/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAdwords/registration.php b/app/code/Magento/GoogleAdwords/registration.php index 9d1ca0a3dae..816ca597014 100644 --- a/app/code/Magento/GoogleAdwords/registration.php +++ b/app/code/Magento/GoogleAdwords/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleAdwords/view/frontend/layout/checkout_onepage_success.xml b/app/code/Magento/GoogleAdwords/view/frontend/layout/checkout_onepage_success.xml index f80dcbb8367..7abac63b663 100644 --- a/app/code/Magento/GoogleAdwords/view/frontend/layout/checkout_onepage_success.xml +++ b/app/code/Magento/GoogleAdwords/view/frontend/layout/checkout_onepage_success.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAdwords/view/frontend/templates/code.phtml b/app/code/Magento/GoogleAdwords/view/frontend/templates/code.phtml index dae452b9373..27717a2fade 100644 --- a/app/code/Magento/GoogleAdwords/view/frontend/templates/code.phtml +++ b/app/code/Magento/GoogleAdwords/view/frontend/templates/code.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleAnalytics/Block/Ga.php b/app/code/Magento/GoogleAnalytics/Block/Ga.php index 710dd494995..cb1cb1c3bdd 100644 --- a/app/code/Magento/GoogleAnalytics/Block/Ga.php +++ b/app/code/Magento/GoogleAnalytics/Block/Ga.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleAnalytics/Helper/Data.php b/app/code/Magento/GoogleAnalytics/Helper/Data.php index 12bad4a60dc..fcf1f4c3f06 100644 --- a/app/code/Magento/GoogleAnalytics/Helper/Data.php +++ b/app/code/Magento/GoogleAnalytics/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleAnalytics/Observer/SetGoogleAnalyticsOnOrderSuccessPageViewObserver.php b/app/code/Magento/GoogleAnalytics/Observer/SetGoogleAnalyticsOnOrderSuccessPageViewObserver.php index b42443e37bc..fd9ddc20d91 100644 --- a/app/code/Magento/GoogleAnalytics/Observer/SetGoogleAnalyticsOnOrderSuccessPageViewObserver.php +++ b/app/code/Magento/GoogleAnalytics/Observer/SetGoogleAnalyticsOnOrderSuccessPageViewObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleAnalytics\Observer; diff --git a/app/code/Magento/GoogleAnalytics/etc/acl.xml b/app/code/Magento/GoogleAnalytics/etc/acl.xml index 23ecdb6f2db..bff6ed2cb4f 100644 --- a/app/code/Magento/GoogleAnalytics/etc/acl.xml +++ b/app/code/Magento/GoogleAnalytics/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAnalytics/etc/adminhtml/system.xml b/app/code/Magento/GoogleAnalytics/etc/adminhtml/system.xml index a5a5df5d685..1238ab525e1 100644 --- a/app/code/Magento/GoogleAnalytics/etc/adminhtml/system.xml +++ b/app/code/Magento/GoogleAnalytics/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAnalytics/etc/di.xml b/app/code/Magento/GoogleAnalytics/etc/di.xml index c837007469a..9865bf935e4 100644 --- a/app/code/Magento/GoogleAnalytics/etc/di.xml +++ b/app/code/Magento/GoogleAnalytics/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAnalytics/etc/frontend/events.xml b/app/code/Magento/GoogleAnalytics/etc/frontend/events.xml index a325d25a972..bf2d3695ef1 100644 --- a/app/code/Magento/GoogleAnalytics/etc/frontend/events.xml +++ b/app/code/Magento/GoogleAnalytics/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAnalytics/etc/module.xml b/app/code/Magento/GoogleAnalytics/etc/module.xml index ff0205f27a3..2f19cf9e032 100644 --- a/app/code/Magento/GoogleAnalytics/etc/module.xml +++ b/app/code/Magento/GoogleAnalytics/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAnalytics/registration.php b/app/code/Magento/GoogleAnalytics/registration.php index 8781279105f..778faafb34e 100644 --- a/app/code/Magento/GoogleAnalytics/registration.php +++ b/app/code/Magento/GoogleAnalytics/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleAnalytics/view/frontend/layout/default.xml b/app/code/Magento/GoogleAnalytics/view/frontend/layout/default.xml index e150f58fcc3..db2ee06a9c8 100644 --- a/app/code/Magento/GoogleAnalytics/view/frontend/layout/default.xml +++ b/app/code/Magento/GoogleAnalytics/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleAnalytics/view/frontend/templates/ga.phtml b/app/code/Magento/GoogleAnalytics/view/frontend/templates/ga.phtml index 0093f91e6cd..52a7f186a19 100644 --- a/app/code/Magento/GoogleAnalytics/view/frontend/templates/ga.phtml +++ b/app/code/Magento/GoogleAnalytics/view/frontend/templates/ga.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleOptimizer/Block/AbstractCode.php b/app/code/Magento/GoogleOptimizer/Block/AbstractCode.php index 6ea7d4a305d..17963c02d2f 100644 --- a/app/code/Magento/GoogleOptimizer/Block/AbstractCode.php +++ b/app/code/Magento/GoogleOptimizer/Block/AbstractCode.php @@ -2,7 +2,7 @@ /** * Google Optimizer Scripts Block * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Block; diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/AbstractTab.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/AbstractTab.php index 1c078bb5a1e..2d853b81fbd 100644 --- a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/AbstractTab.php +++ b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/AbstractTab.php @@ -2,7 +2,7 @@ /** * Abstract Google Experiment Tab * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Block\Adminhtml; diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/Googleoptimizer.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/Googleoptimizer.php index a378890c277..6c00301754e 100644 --- a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/Googleoptimizer.php +++ b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/Googleoptimizer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/GoogleoptimizerForm.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/GoogleoptimizerForm.php index ab8bab7389c..4dea840cb46 100644 --- a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/GoogleoptimizerForm.php +++ b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/GoogleoptimizerForm.php @@ -2,7 +2,7 @@ /** * Google Optimizer Category Tab * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Block\Adminhtml\Catalog\Category\Edit; diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php index 76df44d823b..1fafac96fea 100644 --- a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php +++ b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php @@ -2,7 +2,7 @@ /** * Google Optimizer Product Tab * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Block\Adminhtml\Catalog\Product\Edit\Tab; diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php index be1ead22380..96278897788 100644 --- a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php +++ b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php @@ -2,7 +2,7 @@ /** * Google Optimizer Cms Page Tab * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Block\Adminhtml\Cms\Page\Edit\Tab; diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/EntityCmsPage.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/EntityCmsPage.php index 6d4c96172d1..a421da51129 100644 --- a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/EntityCmsPage.php +++ b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/EntityCmsPage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Block\Adminhtml\Cms\Page; diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Form.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Form.php index 40a50e3c87e..9f7aa1458c7 100644 --- a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Form.php +++ b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Form.php @@ -2,7 +2,7 @@ /** * Google Optimizer Category Tab * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Block\Adminhtml; diff --git a/app/code/Magento/GoogleOptimizer/Block/Code/Category.php b/app/code/Magento/GoogleOptimizer/Block/Code/Category.php index aa7177458dd..40c9597386a 100644 --- a/app/code/Magento/GoogleOptimizer/Block/Code/Category.php +++ b/app/code/Magento/GoogleOptimizer/Block/Code/Category.php @@ -2,7 +2,7 @@ /** * Google Optimizer Category Block * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleOptimizer/Block/Code/Page.php b/app/code/Magento/GoogleOptimizer/Block/Code/Page.php index 8e0ba9ce2f4..05a42e4f058 100644 --- a/app/code/Magento/GoogleOptimizer/Block/Code/Page.php +++ b/app/code/Magento/GoogleOptimizer/Block/Code/Page.php @@ -2,7 +2,7 @@ /** * Google Optimizer Page Block * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Block\Code; diff --git a/app/code/Magento/GoogleOptimizer/Block/Code/Product.php b/app/code/Magento/GoogleOptimizer/Block/Code/Product.php index 2c5c355be48..e4e6e60731e 100644 --- a/app/code/Magento/GoogleOptimizer/Block/Code/Product.php +++ b/app/code/Magento/GoogleOptimizer/Block/Code/Product.php @@ -2,7 +2,7 @@ /** * Google Optmizer Product Block * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleOptimizer/Helper/Code.php b/app/code/Magento/GoogleOptimizer/Helper/Code.php index 65e63ab8a34..671691c1622 100644 --- a/app/code/Magento/GoogleOptimizer/Helper/Code.php +++ b/app/code/Magento/GoogleOptimizer/Helper/Code.php @@ -2,7 +2,7 @@ /** * Google Optimizer Scripts Helper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Helper; diff --git a/app/code/Magento/GoogleOptimizer/Helper/Data.php b/app/code/Magento/GoogleOptimizer/Helper/Data.php index c2336e2553a..fbd8f50787a 100644 --- a/app/code/Magento/GoogleOptimizer/Helper/Data.php +++ b/app/code/Magento/GoogleOptimizer/Helper/Data.php @@ -2,7 +2,7 @@ /** * Google Optimizer Data Helper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleOptimizer/Helper/Form.php b/app/code/Magento/GoogleOptimizer/Helper/Form.php index 9f27c6184e6..0d110c4a3cd 100644 --- a/app/code/Magento/GoogleOptimizer/Helper/Form.php +++ b/app/code/Magento/GoogleOptimizer/Helper/Form.php @@ -2,7 +2,7 @@ /** * Google Optimizer Form Helper * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Helper; diff --git a/app/code/Magento/GoogleOptimizer/Model/Code.php b/app/code/Magento/GoogleOptimizer/Model/Code.php index 140d7d9f09d..8776a464ceb 100644 --- a/app/code/Magento/GoogleOptimizer/Model/Code.php +++ b/app/code/Magento/GoogleOptimizer/Model/Code.php @@ -4,7 +4,7 @@ namespace Magento\GoogleOptimizer\Model; /** * Google Experiment Code Model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. * @method \Magento\GoogleOptimizer\Model\ResourceModel\Code _getResource() * @method \Magento\GoogleOptimizer\Model\ResourceModel\Code getResource() diff --git a/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Category/DataProvider.php b/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Category/DataProvider.php index 7d16c505dcc..9d160c42949 100644 --- a/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Category/DataProvider.php +++ b/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Category/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Product/Category/DataProvider.php b/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Product/Category/DataProvider.php index 9b576fe6b29..4ca79de3fa9 100644 --- a/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Product/Category/DataProvider.php +++ b/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Product/Category/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleOptimizer/Model/Plugin/Cms/Page/DataProvider.php b/app/code/Magento/GoogleOptimizer/Model/Plugin/Cms/Page/DataProvider.php index 26fd70e7474..8a8f923618c 100644 --- a/app/code/Magento/GoogleOptimizer/Model/Plugin/Cms/Page/DataProvider.php +++ b/app/code/Magento/GoogleOptimizer/Model/Plugin/Cms/Page/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleOptimizer/Model/ResourceModel/Code.php b/app/code/Magento/GoogleOptimizer/Model/ResourceModel/Code.php index 6fe6be64101..3e879cd976d 100644 --- a/app/code/Magento/GoogleOptimizer/Model/ResourceModel/Code.php +++ b/app/code/Magento/GoogleOptimizer/Model/ResourceModel/Code.php @@ -2,7 +2,7 @@ /** * Google Experiment Code resource model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Model\ResourceModel; diff --git a/app/code/Magento/GoogleOptimizer/Observer/AbstractSave.php b/app/code/Magento/GoogleOptimizer/Observer/AbstractSave.php index e435da5cca1..01ea9d77170 100644 --- a/app/code/Magento/GoogleOptimizer/Observer/AbstractSave.php +++ b/app/code/Magento/GoogleOptimizer/Observer/AbstractSave.php @@ -2,7 +2,7 @@ /** * Google Experiment Abstract Save observer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Observer; diff --git a/app/code/Magento/GoogleOptimizer/Observer/Category/DeleteCategoryGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/Category/DeleteCategoryGoogleExperimentScriptObserver.php index 6d557549502..2678ed0d5bf 100644 --- a/app/code/Magento/GoogleOptimizer/Observer/Category/DeleteCategoryGoogleExperimentScriptObserver.php +++ b/app/code/Magento/GoogleOptimizer/Observer/Category/DeleteCategoryGoogleExperimentScriptObserver.php @@ -2,7 +2,7 @@ /** * Google Experiment Category Delete observer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Observer\Category; diff --git a/app/code/Magento/GoogleOptimizer/Observer/Category/SaveGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/Category/SaveGoogleExperimentScriptObserver.php index 49861d9f98f..4240c1e3310 100644 --- a/app/code/Magento/GoogleOptimizer/Observer/Category/SaveGoogleExperimentScriptObserver.php +++ b/app/code/Magento/GoogleOptimizer/Observer/Category/SaveGoogleExperimentScriptObserver.php @@ -2,7 +2,7 @@ /** * Google Experiment Category Save observer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Observer\Category; diff --git a/app/code/Magento/GoogleOptimizer/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserver.php index b3da76b0367..b2595eb085e 100644 --- a/app/code/Magento/GoogleOptimizer/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserver.php +++ b/app/code/Magento/GoogleOptimizer/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserver.php @@ -2,7 +2,7 @@ /** * Google Experiment Cms Page Delete observer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Observer\CmsPage; diff --git a/app/code/Magento/GoogleOptimizer/Observer/CmsPage/SaveGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/CmsPage/SaveGoogleExperimentScriptObserver.php index 851a8f889ee..a6d224a85a9 100644 --- a/app/code/Magento/GoogleOptimizer/Observer/CmsPage/SaveGoogleExperimentScriptObserver.php +++ b/app/code/Magento/GoogleOptimizer/Observer/CmsPage/SaveGoogleExperimentScriptObserver.php @@ -2,7 +2,7 @@ /** * Google Experiment Cms Page Save observer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Observer\CmsPage; diff --git a/app/code/Magento/GoogleOptimizer/Observer/Product/DeleteProductGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/Product/DeleteProductGoogleExperimentScriptObserver.php index 099dc2c95e0..b259d429fa3 100644 --- a/app/code/Magento/GoogleOptimizer/Observer/Product/DeleteProductGoogleExperimentScriptObserver.php +++ b/app/code/Magento/GoogleOptimizer/Observer/Product/DeleteProductGoogleExperimentScriptObserver.php @@ -2,7 +2,7 @@ /** * Google Experiment Product observer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Observer\Product; diff --git a/app/code/Magento/GoogleOptimizer/Observer/Product/SaveGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/Product/SaveGoogleExperimentScriptObserver.php index d0292186fcb..12bb8abb87b 100644 --- a/app/code/Magento/GoogleOptimizer/Observer/Product/SaveGoogleExperimentScriptObserver.php +++ b/app/code/Magento/GoogleOptimizer/Observer/Product/SaveGoogleExperimentScriptObserver.php @@ -2,7 +2,7 @@ /** * Google Experiment Product Save observer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Observer\Product; diff --git a/app/code/Magento/GoogleOptimizer/Setup/InstallSchema.php b/app/code/Magento/GoogleOptimizer/Setup/InstallSchema.php index 4acb1edbdbb..eb6664af94d 100644 --- a/app/code/Magento/GoogleOptimizer/Setup/InstallSchema.php +++ b/app/code/Magento/GoogleOptimizer/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/CategoryTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/CategoryTest.php index 3b4b65af6c2..136637ccf3d 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/CategoryTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/CategoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Block\Code; diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/ProductTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/ProductTest.php index a2829588d2d..1b693306b7e 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/ProductTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Block\Code; diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/CodeTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/CodeTest.php index d9231ed9b2e..9d23e5ee229 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/CodeTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/CodeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Helper; diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/DataTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/DataTest.php index 5d1198ff4c5..ca494aef241 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. * */ diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/FormTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/FormTest.php index f187836e79b..4382ea6228d 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/FormTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Helper; diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Model/Plugin/Catalog/Product/Category/DataProviderTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Model/Plugin/Catalog/Product/Category/DataProviderTest.php index 89ca1441dbf..a8fe5164987 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Model/Plugin/Catalog/Product/Category/DataProviderTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Model/Plugin/Catalog/Product/Category/DataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Model\Plugin\Catalog\Product\Category; diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/DeleteCategoryGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/DeleteCategoryGoogleExperimentScriptObserverTest.php index e765d36a2ff..af003842358 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/DeleteCategoryGoogleExperimentScriptObserverTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/DeleteCategoryGoogleExperimentScriptObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Observer\Category; diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/SaveGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/SaveGoogleExperimentScriptObserverTest.php index ab6a3c31989..7e2d3e2107d 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/SaveGoogleExperimentScriptObserverTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/SaveGoogleExperimentScriptObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Observer\Category; diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserverTest.php index e76dc3b33f4..dc3b7bb16ed 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserverTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Observer\CmsPage; diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/SaveGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/SaveGoogleExperimentScriptObserverTest.php index d0653f60018..d5000ac5124 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/SaveGoogleExperimentScriptObserverTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/SaveGoogleExperimentScriptObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Observer\CmsPage; diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/DeleteProductGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/DeleteProductGoogleExperimentScriptObserverTest.php index 72f68b3c84b..a8cb65b2f43 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/DeleteProductGoogleExperimentScriptObserverTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/DeleteProductGoogleExperimentScriptObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Observer\Product; diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/SaveGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/SaveGoogleExperimentScriptObserverTest.php index f3543154e1a..3f40b579563 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/SaveGoogleExperimentScriptObserverTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/SaveGoogleExperimentScriptObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Observer\Product; diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizerTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizerTest.php index d4ca96cfb21..f56f66b17d7 100644 --- a/app/code/Magento/GoogleOptimizer/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizerTest.php +++ b/app/code/Magento/GoogleOptimizer/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/GoogleOptimizer/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizer.php b/app/code/Magento/GoogleOptimizer/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizer.php index ac6d4807528..6ae3e3240b8 100644 --- a/app/code/Magento/GoogleOptimizer/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizer.php +++ b/app/code/Magento/GoogleOptimizer/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GoogleOptimizer\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/GoogleOptimizer/etc/adminhtml/di.xml b/app/code/Magento/GoogleOptimizer/etc/adminhtml/di.xml index af6326d312f..abb3dee4222 100644 --- a/app/code/Magento/GoogleOptimizer/etc/adminhtml/di.xml +++ b/app/code/Magento/GoogleOptimizer/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/etc/adminhtml/system.xml b/app/code/Magento/GoogleOptimizer/etc/adminhtml/system.xml index 50b5ad1f81c..ff58c7a6467 100644 --- a/app/code/Magento/GoogleOptimizer/etc/adminhtml/system.xml +++ b/app/code/Magento/GoogleOptimizer/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/etc/config.xml b/app/code/Magento/GoogleOptimizer/etc/config.xml index 9704a13537f..fd0cf59f568 100644 --- a/app/code/Magento/GoogleOptimizer/etc/config.xml +++ b/app/code/Magento/GoogleOptimizer/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/etc/events.xml b/app/code/Magento/GoogleOptimizer/etc/events.xml index 41a8917513c..d637f28fe47 100644 --- a/app/code/Magento/GoogleOptimizer/etc/events.xml +++ b/app/code/Magento/GoogleOptimizer/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/etc/module.xml b/app/code/Magento/GoogleOptimizer/etc/module.xml index 692a5960f89..1c5f5c124a9 100644 --- a/app/code/Magento/GoogleOptimizer/etc/module.xml +++ b/app/code/Magento/GoogleOptimizer/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/registration.php b/app/code/Magento/GoogleOptimizer/registration.php index 52517d100db..1d648a2983e 100644 --- a/app/code/Magento/GoogleOptimizer/registration.php +++ b/app/code/Magento/GoogleOptimizer/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/catalog_product_new.xml index a189feaaada..660ef962bc0 100644 --- a/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/catalog_product_new.xml +++ b/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/catalog_product_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/cms_page_edit.xml b/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/cms_page_edit.xml index 3b337f5a333..d2c8863956d 100644 --- a/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/cms_page_edit.xml +++ b/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/cms_page_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/category_form.xml b/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/category_form.xml index 3fc937e6f1c..1387e4a2e67 100644 --- a/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/category_form.xml +++ b/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/category_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/cms_page_form.xml b/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/cms_page_form.xml index c27ea723a05..235b216d8fb 100644 --- a/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/cms_page_form.xml +++ b/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/cms_page_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/new_category_form.xml b/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/new_category_form.xml index 632dc91b45b..264dabcc861 100644 --- a/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/new_category_form.xml +++ b/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/new_category_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_category_view.xml index 3725ba5fc5e..f2d1a03d1fd 100644 --- a/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_category_view.xml +++ b/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_category_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_product_view.xml index 89ac360a8ce..50a5e534cb5 100644 --- a/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_product_view.xml +++ b/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_product_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GoogleOptimizer/view/frontend/layout/cms_page_view.xml b/app/code/Magento/GoogleOptimizer/view/frontend/layout/cms_page_view.xml index 3890610f9c3..f2c032e7bed 100644 --- a/app/code/Magento/GoogleOptimizer/view/frontend/layout/cms_page_view.xml +++ b/app/code/Magento/GoogleOptimizer/view/frontend/layout/cms_page_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedImportExport/Model/Export/Product/Type/Grouped.php b/app/code/Magento/GroupedImportExport/Model/Export/Product/Type/Grouped.php index ad153c297b3..3e7b4a39769 100644 --- a/app/code/Magento/GroupedImportExport/Model/Export/Product/Type/Grouped.php +++ b/app/code/Magento/GroupedImportExport/Model/Export/Product/Type/Grouped.php @@ -2,7 +2,7 @@ /** * Export entity of grouped product type * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedImportExport\Model\Export\Product\Type; diff --git a/app/code/Magento/GroupedImportExport/Model/Export/RowCustomizer.php b/app/code/Magento/GroupedImportExport/Model/Export/RowCustomizer.php index 62cd9c6aa99..dff2663dea9 100644 --- a/app/code/Magento/GroupedImportExport/Model/Export/RowCustomizer.php +++ b/app/code/Magento/GroupedImportExport/Model/Export/RowCustomizer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedImportExport\Model\Export; diff --git a/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped.php b/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped.php index f28190603b8..900861c672b 100644 --- a/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped.php +++ b/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped.php @@ -2,7 +2,7 @@ /** * Import entity of grouped product type * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedImportExport\Model\Import\Product\Type; diff --git a/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped/Links.php b/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped/Links.php index 4c6f399b599..b4d0fad961a 100644 --- a/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped/Links.php +++ b/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped/Links.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedImportExport\Model\Import\Product\Type\Grouped; diff --git a/app/code/Magento/GroupedImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php b/app/code/Magento/GroupedImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php index 6d2c08201c5..7ab096bcbf6 100644 --- a/app/code/Magento/GroupedImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php +++ b/app/code/Magento/GroupedImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedImportExport\Test\Unit\Model\Export\Product; diff --git a/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/Grouped/LinksTest.php b/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/Grouped/LinksTest.php index 3e2dc30f82b..4e78c61dfb0 100644 --- a/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/Grouped/LinksTest.php +++ b/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/Grouped/LinksTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/GroupedTest.php b/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/GroupedTest.php index 3c2d2e083cd..01554ea95e2 100644 --- a/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/GroupedTest.php +++ b/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/GroupedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedImportExport/etc/di.xml b/app/code/Magento/GroupedImportExport/etc/di.xml index 457e5d67767..86f19dfb6df 100644 --- a/app/code/Magento/GroupedImportExport/etc/di.xml +++ b/app/code/Magento/GroupedImportExport/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedImportExport/etc/export.xml b/app/code/Magento/GroupedImportExport/etc/export.xml index a41343cbfae..5271ad58bbb 100644 --- a/app/code/Magento/GroupedImportExport/etc/export.xml +++ b/app/code/Magento/GroupedImportExport/etc/export.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedImportExport/etc/import.xml b/app/code/Magento/GroupedImportExport/etc/import.xml index 9e25ef3addc..d82507f622b 100644 --- a/app/code/Magento/GroupedImportExport/etc/import.xml +++ b/app/code/Magento/GroupedImportExport/etc/import.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedImportExport/etc/module.xml b/app/code/Magento/GroupedImportExport/etc/module.xml index 60a23f6122a..1051080c6c0 100644 --- a/app/code/Magento/GroupedImportExport/etc/module.xml +++ b/app/code/Magento/GroupedImportExport/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedImportExport/registration.php b/app/code/Magento/GroupedImportExport/registration.php index 284dc9b4eff..1f5d2158a51 100644 --- a/app/code/Magento/GroupedImportExport/registration.php +++ b/app/code/Magento/GroupedImportExport/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Block/Adminhtml/Items/Column/Name/Grouped.php b/app/code/Magento/GroupedProduct/Block/Adminhtml/Items/Column/Name/Grouped.php index 9526eb87589..b26232c9e10 100644 --- a/app/code/Magento/GroupedProduct/Block/Adminhtml/Items/Column/Name/Grouped.php +++ b/app/code/Magento/GroupedProduct/Block/Adminhtml/Items/Column/Name/Grouped.php @@ -2,7 +2,7 @@ /** * Sales Order items name column renderer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Block\Adminhtml\Items\Column\Name; diff --git a/app/code/Magento/GroupedProduct/Block/Adminhtml/Order/Create/Sidebar.php b/app/code/Magento/GroupedProduct/Block/Adminhtml/Order/Create/Sidebar.php index 7134f07764c..82b51bec9ea 100644 --- a/app/code/Magento/GroupedProduct/Block/Adminhtml/Order/Create/Sidebar.php +++ b/app/code/Magento/GroupedProduct/Block/Adminhtml/Order/Create/Sidebar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/GroupedProduct/Block/Adminhtml/Product/Composite/Fieldset/Grouped.php b/app/code/Magento/GroupedProduct/Block/Adminhtml/Product/Composite/Fieldset/Grouped.php index 45eb4dfcd3c..c02b11e9ddf 100644 --- a/app/code/Magento/GroupedProduct/Block/Adminhtml/Product/Composite/Fieldset/Grouped.php +++ b/app/code/Magento/GroupedProduct/Block/Adminhtml/Product/Composite/Fieldset/Grouped.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Block/Cart/Item/Renderer/Grouped.php b/app/code/Magento/GroupedProduct/Block/Cart/Item/Renderer/Grouped.php index c48946bde45..50e7afacb60 100644 --- a/app/code/Magento/GroupedProduct/Block/Cart/Item/Renderer/Grouped.php +++ b/app/code/Magento/GroupedProduct/Block/Cart/Item/Renderer/Grouped.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Block\Cart\Item\Renderer; diff --git a/app/code/Magento/GroupedProduct/Block/Order/Email/Items/Order/Grouped.php b/app/code/Magento/GroupedProduct/Block/Order/Email/Items/Order/Grouped.php index 4ce093ed906..262889eb76b 100644 --- a/app/code/Magento/GroupedProduct/Block/Order/Email/Items/Order/Grouped.php +++ b/app/code/Magento/GroupedProduct/Block/Order/Email/Items/Order/Grouped.php @@ -2,7 +2,7 @@ /** * Order Email items grouped renderer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Block\Order\Email\Items\Order; diff --git a/app/code/Magento/GroupedProduct/Block/Order/Item/Renderer/Grouped.php b/app/code/Magento/GroupedProduct/Block/Order/Item/Renderer/Grouped.php index 73e6462ca0a..9c62740faec 100644 --- a/app/code/Magento/GroupedProduct/Block/Order/Item/Renderer/Grouped.php +++ b/app/code/Magento/GroupedProduct/Block/Order/Item/Renderer/Grouped.php @@ -2,7 +2,7 @@ /** * Order item render block for grouped product type * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Block\Order\Item\Renderer; diff --git a/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts.php b/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts.php index 47ff6cca04b..5b11648dbd4 100644 --- a/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts.php +++ b/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Block\Product\Grouped; diff --git a/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php b/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php index 33b664ec5bd..cd51e440e05 100644 --- a/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php +++ b/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Block/Product/View/Type/Grouped.php b/app/code/Magento/GroupedProduct/Block/Product/View/Type/Grouped.php index bc559c0872e..0a51e0c2572 100644 --- a/app/code/Magento/GroupedProduct/Block/Product/View/Type/Grouped.php +++ b/app/code/Magento/GroupedProduct/Block/Product/View/Type/Grouped.php @@ -2,7 +2,7 @@ /** * Catalog grouped product info block * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Block\Product\View\Type; diff --git a/app/code/Magento/GroupedProduct/Block/Stockqty/Type/Grouped.php b/app/code/Magento/GroupedProduct/Block/Stockqty/Type/Grouped.php index 54c73efba5d..0965023ca18 100644 --- a/app/code/Magento/GroupedProduct/Block/Stockqty/Type/Grouped.php +++ b/app/code/Magento/GroupedProduct/Block/Stockqty/Type/Grouped.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Block\Stockqty\Type; diff --git a/app/code/Magento/GroupedProduct/Controller/Adminhtml/Edit/Popup.php b/app/code/Magento/GroupedProduct/Controller/Adminhtml/Edit/Popup.php index facf3a52d53..7a21219f338 100644 --- a/app/code/Magento/GroupedProduct/Controller/Adminhtml/Edit/Popup.php +++ b/app/code/Magento/GroupedProduct/Controller/Adminhtml/Edit/Popup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Controller\Adminhtml\Edit; diff --git a/app/code/Magento/GroupedProduct/CustomerData/GroupedItem.php b/app/code/Magento/GroupedProduct/CustomerData/GroupedItem.php index a5674e9b075..9721a2e7564 100644 --- a/app/code/Magento/GroupedProduct/CustomerData/GroupedItem.php +++ b/app/code/Magento/GroupedProduct/CustomerData/GroupedItem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\CustomerData; diff --git a/app/code/Magento/GroupedProduct/Helper/Product/Configuration/Plugin/Grouped.php b/app/code/Magento/GroupedProduct/Helper/Product/Configuration/Plugin/Grouped.php index 7b826f39819..02661c11032 100644 --- a/app/code/Magento/GroupedProduct/Helper/Product/Configuration/Plugin/Grouped.php +++ b/app/code/Magento/GroupedProduct/Helper/Product/Configuration/Plugin/Grouped.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Helper\Product\Configuration\Plugin; diff --git a/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Creditmemo/Grouped.php b/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Creditmemo/Grouped.php index 2257a51c851..661f3298c29 100644 --- a/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Creditmemo/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Creditmemo/Grouped.php @@ -2,7 +2,7 @@ /** * Sales Order Creditmemo Pdf grouped items renderer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\Order\Pdf\Items\Creditmemo; diff --git a/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Invoice/Grouped.php b/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Invoice/Grouped.php index 7b2263f456f..6caeaf1c119 100644 --- a/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Invoice/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Invoice/Grouped.php @@ -2,7 +2,7 @@ /** * Sales Order Invoice Pdf grouped items renderer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\Order\Pdf\Items\Invoice; diff --git a/app/code/Magento/GroupedProduct/Model/Product/Cart/Configuration/Plugin/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Cart/Configuration/Plugin/Grouped.php index 150d68d344d..77b5099e07f 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Cart/Configuration/Plugin/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Cart/Configuration/Plugin/Grouped.php @@ -2,7 +2,7 @@ /** * Plugin for cart product configuration * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\Product\Cart\Configuration\Plugin; diff --git a/app/code/Magento/GroupedProduct/Model/Product/CatalogPrice.php b/app/code/Magento/GroupedProduct/Model/Product/CatalogPrice.php index 6b198a6cfeb..94817b86cfa 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/CatalogPrice.php +++ b/app/code/Magento/GroupedProduct/Model/Product/CatalogPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\Product; diff --git a/app/code/Magento/GroupedProduct/Model/Product/CopyConstructor/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/CopyConstructor/Grouped.php index 3c4b096aa20..4278777a610 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/CopyConstructor/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/Product/CopyConstructor/Grouped.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\Product\CopyConstructor; diff --git a/app/code/Magento/GroupedProduct/Model/Product/Initialization/Helper/ProductLinks/Plugin/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Initialization/Helper/ProductLinks/Plugin/Grouped.php index 0a430e5f973..8f9115e7375 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Initialization/Helper/ProductLinks/Plugin/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Initialization/Helper/ProductLinks/Plugin/Grouped.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\Product\Initialization\Helper\ProductLinks\Plugin; diff --git a/app/code/Magento/GroupedProduct/Model/Product/Link/CollectionProvider/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Link/CollectionProvider/Grouped.php index c1e4273adc3..7085093765b 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Link/CollectionProvider/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Link/CollectionProvider/Grouped.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Model/Product/Link/ProductEntity/Converter.php b/app/code/Magento/GroupedProduct/Model/Product/Link/ProductEntity/Converter.php index 3aa762d85a7..4ae88399a5e 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Link/ProductEntity/Converter.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Link/ProductEntity/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php index 74a7e8112aa..aa6e9b1ad1f 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php @@ -2,7 +2,7 @@ /** * Grouped product type implementation * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\Product\Type; diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Backend.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Backend.php index 2236feb59a4..a28ec75f17d 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Backend.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Backend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\Product\Type\Grouped; diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Price.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Price.php index a0fd2d69b12..bbcc9a916c0 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Price.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Price.php @@ -2,7 +2,7 @@ /** * Grouped product price model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\Product\Type\Grouped; diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Plugin.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Plugin.php index e8e0ef81d13..7e4b42a3690 100644 --- a/app/code/Magento/GroupedProduct/Model/Product/Type/Plugin.php +++ b/app/code/Magento/GroupedProduct/Model/Product/Type/Plugin.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\Product\Type; diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Indexer/Stock/Grouped.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Indexer/Stock/Grouped.php index 8a3f0f1d0e9..740dec1aa27 100644 --- a/app/code/Magento/GroupedProduct/Model/ResourceModel/Indexer/Stock/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/ResourceModel/Indexer/Stock/Grouped.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/Grouped.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/Grouped.php index 681256a4dc0..eaed75a967c 100644 --- a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/Grouped.php +++ b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/Grouped.php @@ -2,7 +2,7 @@ /** * Grouped Products Price Indexer Resource model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\ResourceModel\Product\Indexer\Price; diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/GroupedInterface.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/GroupedInterface.php index 9bed2e04ab1..4b15b5418be 100644 --- a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/GroupedInterface.php +++ b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/GroupedInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\ResourceModel\Product\Indexer\Price; diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link.php index 5af791c4508..e86bc9f182e 100644 --- a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link.php +++ b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\ResourceModel\Product; diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link/RelationPersister.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link/RelationPersister.php index f431bf3af95..e8d3c41908f 100644 --- a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link/RelationPersister.php +++ b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link/RelationPersister.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Type/Grouped/AssociatedProductsCollection.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Type/Grouped/AssociatedProductsCollection.php index 7541a39b2b5..7a3fd76a9fa 100644 --- a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Type/Grouped/AssociatedProductsCollection.php +++ b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Type/Grouped/AssociatedProductsCollection.php @@ -2,7 +2,7 @@ /** * Associated products collection * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Model\ResourceModel\Product\Type\Grouped; diff --git a/app/code/Magento/GroupedProduct/Model/Sales/AdminOrder/Product/Quote/Plugin/Initializer.php b/app/code/Magento/GroupedProduct/Model/Sales/AdminOrder/Product/Quote/Plugin/Initializer.php index 2ab99856df3..b5799ed0f5f 100644 --- a/app/code/Magento/GroupedProduct/Model/Sales/AdminOrder/Product/Quote/Plugin/Initializer.php +++ b/app/code/Magento/GroupedProduct/Model/Sales/AdminOrder/Product/Quote/Plugin/Initializer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Pricing/Price/ConfiguredPrice.php b/app/code/Magento/GroupedProduct/Pricing/Price/ConfiguredPrice.php index 8b81ff066b4..e443875bcd6 100644 --- a/app/code/Magento/GroupedProduct/Pricing/Price/ConfiguredPrice.php +++ b/app/code/Magento/GroupedProduct/Pricing/Price/ConfiguredPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Pricing/Price/FinalPrice.php b/app/code/Magento/GroupedProduct/Pricing/Price/FinalPrice.php index c9c6531a30d..3a3c0bd94ca 100644 --- a/app/code/Magento/GroupedProduct/Pricing/Price/FinalPrice.php +++ b/app/code/Magento/GroupedProduct/Pricing/Price/FinalPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Setup/InstallData.php b/app/code/Magento/GroupedProduct/Setup/InstallData.php index 00b79cec2af..f06f25382e5 100644 --- a/app/code/Magento/GroupedProduct/Setup/InstallData.php +++ b/app/code/Magento/GroupedProduct/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Setup/UpgradeData.php b/app/code/Magento/GroupedProduct/Setup/UpgradeData.php index 83dab45c428..3dc0b613266 100644 --- a/app/code/Magento/GroupedProduct/Setup/UpgradeData.php +++ b/app/code/Magento/GroupedProduct/Setup/UpgradeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Setup; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Order/Create/SidebarTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Order/Create/SidebarTest.php index c339499a07d..bc6207aad57 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Order/Create/SidebarTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Order/Create/SidebarTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/GroupedTest.php index b29f668fbbc..80984f8b345 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/GroupedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Block\Adminhtml\Product\Composite\Fieldset; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Cart/Item/Renderer/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Cart/Item/Renderer/GroupedTest.php index a9eda9bc488..33263a716d8 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Block/Cart/Item/Renderer/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Block/Cart/Item/Renderer/GroupedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Block\Cart\Item\Renderer; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProducts/ListAssociatedProductsTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProducts/ListAssociatedProductsTest.php index 58250bc08cf..d76729073b4 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProducts/ListAssociatedProductsTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProducts/ListAssociatedProductsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Block\Product\Grouped\AssociatedProducts; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProductsTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProductsTest.php index aaf4cd3cf23..947e842bd99 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProductsTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProductsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Block\Product\Grouped; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/View/Type/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/View/Type/GroupedTest.php index 18473fa7346..a7a18d14f8d 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/View/Type/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/View/Type/GroupedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Block\Product\View\Type; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Stockqty/Type/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Stockqty/Type/GroupedTest.php index 4a1633c7574..b6e7cd04a8d 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Block/Stockqty/Type/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Block/Stockqty/Type/GroupedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Block\Stockqty\Type; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Controller/Adminhtml/Edit/PopupTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Controller/Adminhtml/Edit/PopupTest.php index 02120db4ac1..70f4d9addaf 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Controller/Adminhtml/Edit/PopupTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Controller/Adminhtml/Edit/PopupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Controller\Adminhtml\Edit; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Helper/Product/Configuration/Plugin/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Helper/Product/Configuration/Plugin/GroupedTest.php index c2884cd9e88..bc3dc9237f5 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Helper/Product/Configuration/Plugin/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Helper/Product/Configuration/Plugin/GroupedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Helper\Product\Configuration\Plugin; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Cart/Configuration/Plugin/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Cart/Configuration/Plugin/GroupedTest.php index e72f50d6a7f..b3890aac3d6 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Cart/Configuration/Plugin/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Cart/Configuration/Plugin/GroupedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Model\Product\Cart\Configuration\Plugin; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CatalogPriceTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CatalogPriceTest.php index 93d9d902060..e93f22e074a 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CatalogPriceTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CatalogPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Model\Product; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CopyConstructor/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CopyConstructor/GroupedTest.php index 4f5058b25b4..c2b0c7e4eed 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CopyConstructor/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CopyConstructor/GroupedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Model\Product\CopyConstructor; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Initialization/Helper/ProductLinks/Plugin/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Initialization/Helper/ProductLinks/Plugin/GroupedTest.php index 2acbdc98c48..ed8424809a1 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Initialization/Helper/ProductLinks/Plugin/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Initialization/Helper/ProductLinks/Plugin/GroupedTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Model\Product\Initialization\Helper\ProductLinks\Plugin; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/Grouped/PriceTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/Grouped/PriceTest.php index 7e6c54c2c09..7062954edac 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/Grouped/PriceTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/Grouped/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Model\Product\Type\Grouped; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php index 3efc0b7058b..36d49b1b3af 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Model\Product\Type; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/PluginTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/PluginTest.php index 0b260cc97d2..4d769499f52 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/PluginTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/PluginTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Model\Product\Type; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/ProductTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/ProductTest.php index 9282dac6bc7..4b09865a6c7 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/ProductTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/ResourceModel/Product/Link/RelationPersisterTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/ResourceModel/Product/Link/RelationPersisterTest.php index 49bcd76cc2b..034164d5801 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/ResourceModel/Product/Link/RelationPersisterTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/ResourceModel/Product/Link/RelationPersisterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Model\ResourceModel\Product\Link; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Sales/AdminOrder/Product/Quote/Plugin/InitializerTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Sales/AdminOrder/Product/Quote/Plugin/InitializerTest.php index 43d7aa93dd0..b76025007d3 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Model/Sales/AdminOrder/Product/Quote/Plugin/InitializerTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Model/Sales/AdminOrder/Product/Quote/Plugin/InitializerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Model\Sales\AdminOrder\Product\Quote\Plugin; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/ConfiguredPriceTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/ConfiguredPriceTest.php index 67e579d486d..5d3b268142e 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/ConfiguredPriceTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/ConfiguredPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/FinalPriceTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/FinalPriceTest.php index cab6c729144..d1276e600cb 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/FinalPriceTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/FinalPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php index 0c3b59efcbc..e7a94b528e3 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GroupedTest.php index d6fb1bdc1a2..be9a613a877 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GroupedTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GroupedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/GroupedProductDataProviderTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/GroupedProductDataProviderTest.php index 1d0596a5653..98252a786b4 100644 --- a/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/GroupedProductDataProviderTest.php +++ b/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/GroupedProductDataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Test\Unit\Ui\DataProvider\Product; diff --git a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php index d79d1af23dc..6821cb6dd1e 100644 --- a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php +++ b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/Grouped.php b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/Grouped.php index 9739470ff5a..e809ab57e1d 100644 --- a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/Grouped.php +++ b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/Grouped.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php index dcfb28d6b6c..1dc3c354bff 100644 --- a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php +++ b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/GroupedProductDataProvider.php b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/GroupedProductDataProvider.php index 48a3289bf4d..e5729598499 100644 --- a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/GroupedProductDataProvider.php +++ b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/GroupedProductDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GroupedProduct\Ui\DataProvider\Product; diff --git a/app/code/Magento/GroupedProduct/etc/adminhtml/di.xml b/app/code/Magento/GroupedProduct/etc/adminhtml/di.xml index d8750f89218..d0aed40ed18 100644 --- a/app/code/Magento/GroupedProduct/etc/adminhtml/di.xml +++ b/app/code/Magento/GroupedProduct/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/etc/adminhtml/routes.xml b/app/code/Magento/GroupedProduct/etc/adminhtml/routes.xml index 970710dedeb..b56a47161b0 100644 --- a/app/code/Magento/GroupedProduct/etc/adminhtml/routes.xml +++ b/app/code/Magento/GroupedProduct/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/etc/adminhtml/system.xml b/app/code/Magento/GroupedProduct/etc/adminhtml/system.xml index b8a6c6b51de..c295f7abf44 100644 --- a/app/code/Magento/GroupedProduct/etc/adminhtml/system.xml +++ b/app/code/Magento/GroupedProduct/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/etc/config.xml b/app/code/Magento/GroupedProduct/etc/config.xml index 539c3d72b05..6f33654ca8a 100644 --- a/app/code/Magento/GroupedProduct/etc/config.xml +++ b/app/code/Magento/GroupedProduct/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/etc/di.xml b/app/code/Magento/GroupedProduct/etc/di.xml index 2348a0df881..788052d07fc 100644 --- a/app/code/Magento/GroupedProduct/etc/di.xml +++ b/app/code/Magento/GroupedProduct/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/etc/extension_attributes.xml b/app/code/Magento/GroupedProduct/etc/extension_attributes.xml index 89a5cdeb1c7..dec84c4c27a 100644 --- a/app/code/Magento/GroupedProduct/etc/extension_attributes.xml +++ b/app/code/Magento/GroupedProduct/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/etc/frontend/di.xml b/app/code/Magento/GroupedProduct/etc/frontend/di.xml index ce50f40144c..a6ad9efbb0e 100644 --- a/app/code/Magento/GroupedProduct/etc/frontend/di.xml +++ b/app/code/Magento/GroupedProduct/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/etc/module.xml b/app/code/Magento/GroupedProduct/etc/module.xml index 5a03ee430ea..2294ea45aab 100644 --- a/app/code/Magento/GroupedProduct/etc/module.xml +++ b/app/code/Magento/GroupedProduct/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/etc/pdf.xml b/app/code/Magento/GroupedProduct/etc/pdf.xml index ea1c03dacac..24f0ff29518 100644 --- a/app/code/Magento/GroupedProduct/etc/pdf.xml +++ b/app/code/Magento/GroupedProduct/etc/pdf.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/etc/product_types.xml b/app/code/Magento/GroupedProduct/etc/product_types.xml index 8e7573c9467..3b4f7b7fbeb 100644 --- a/app/code/Magento/GroupedProduct/etc/product_types.xml +++ b/app/code/Magento/GroupedProduct/etc/product_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/etc/sales.xml b/app/code/Magento/GroupedProduct/etc/sales.xml index 914ec168ec3..16b18b4415d 100644 --- a/app/code/Magento/GroupedProduct/etc/sales.xml +++ b/app/code/Magento/GroupedProduct/etc/sales.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/registration.php b/app/code/Magento/GroupedProduct/registration.php index ae4763b0f37..c0e1e34bc28 100644 --- a/app/code/Magento/GroupedProduct/registration.php +++ b/app/code/Magento/GroupedProduct/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_grouped.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_grouped.xml index 6097c637818..ced0493758c 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_grouped.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_grouped.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_new.xml index 2dd21710019..6647ba43654 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_new.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_view_type_grouped.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_view_type_grouped.xml index a67f1c6f620..d8bcde7f55d 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_view_type_grouped.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_view_type_grouped.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_edit_popup.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_edit_popup.xml index 9875355a705..6e8587a805a 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_edit_popup.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_edit_popup.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_popup_grid.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_popup_grid.xml index 8fb09eaa0f9..ab3c4204c4a 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_popup_grid.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_popup_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_new.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_new.xml index 0135aa75212..dc9a19e91ed 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_new.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml index 0135aa75212..dc9a19e91ed 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_view.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_view.xml index 1f370af9fd5..9ed2f6976c7 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_view.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_new.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_new.xml index 0135aa75212..dc9a19e91ed 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_new.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_updateqty.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_updateqty.xml index 0135aa75212..dc9a19e91ed 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_updateqty.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_updateqty.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_view.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_view.xml index 31f256e8a27..d40b0405bcf 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_view.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_view.xml index 0135aa75212..dc9a19e91ed 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_view.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/requirejs-config.js b/app/code/Magento/GroupedProduct/view/adminhtml/requirejs-config.js index b223755c35e..7fdb1fe9c92 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/GroupedProduct/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { groupedProduct: 'Magento_GroupedProduct/js/grouped-product' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/templates/catalog/product/composite/fieldset/grouped.phtml b/app/code/Magento/GroupedProduct/view/adminhtml/templates/catalog/product/composite/fieldset/grouped.phtml index 26eee1d66ee..96c918e8ff8 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/templates/catalog/product/composite/fieldset/grouped.phtml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/templates/catalog/product/composite/fieldset/grouped.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/grouped.phtml b/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/grouped.phtml index 067d57677d6..a2ce53d4541 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/grouped.phtml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/grouped.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/list.phtml b/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/list.phtml index a48c6a9fc0b..3367b9a5344 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/list.phtml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /* @var $block \Magento\GroupedProduct\Block\Product\Grouped\AssociatedProducts\ListAssociatedProducts */ diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/stock/disabler.phtml b/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/stock/disabler.phtml index e2ad75794d2..f59b16a0034 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/stock/disabler.phtml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/stock/disabler.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/ui_component/grouped_product_listing.xml b/app/code/Magento/GroupedProduct/view/adminhtml/ui_component/grouped_product_listing.xml index 9d356d53ce6..5b5a1705139 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/ui_component/grouped_product_listing.xml +++ b/app/code/Magento/GroupedProduct/view/adminhtml/ui_component/grouped_product_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/web/css/grouped-product.css b/app/code/Magento/GroupedProduct/view/adminhtml/web/css/grouped-product.css index 769b1d81821..df86b3bc44b 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/web/css/grouped-product.css +++ b/app/code/Magento/GroupedProduct/view/adminhtml/web/css/grouped-product.css @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/web/js/grouped-product.js b/app/code/Magento/GroupedProduct/view/adminhtml/web/js/grouped-product.js index ba1a46bf17d..d8841f2118f 100644 --- a/app/code/Magento/GroupedProduct/view/adminhtml/web/js/grouped-product.js +++ b/app/code/Magento/GroupedProduct/view/adminhtml/web/js/grouped-product.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true */ diff --git a/app/code/Magento/GroupedProduct/view/base/layout/catalog_product_prices.xml b/app/code/Magento/GroupedProduct/view/base/layout/catalog_product_prices.xml index 0b391109dcf..d13e6611a93 100644 --- a/app/code/Magento/GroupedProduct/view/base/layout/catalog_product_prices.xml +++ b/app/code/Magento/GroupedProduct/view/base/layout/catalog_product_prices.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/base/templates/product/price/final_price.phtml b/app/code/Magento/GroupedProduct/view/base/templates/product/price/final_price.phtml index bcdbcbcc424..bce8f36f12f 100644 --- a/app/code/Magento/GroupedProduct/view/base/templates/product/price/final_price.phtml +++ b/app/code/Magento/GroupedProduct/view/base/templates/product/price/final_price.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_rss_feed_renderer_list.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_rss_feed_renderer_list.xml index 077aa107ec4..1466fc55842 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_rss_feed_renderer_list.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_rss_feed_renderer_list.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_view_type_grouped.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_view_type_grouped.xml index 6c8f871a363..ef17f6f2eba 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_view_type_grouped.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_view_type_grouped.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_cart_item_renderers.xml index 2101c940c3a..2d6dc79b764 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_cart_item_renderers.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_cart_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml index 216f8736d29..b713558b106 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_creditmemo_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_creditmemo_renderers.xml index 1de085ae241..13952d3bc7c 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_creditmemo_renderers.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_invoice_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_invoice_renderers.xml index 3ee63835c4c..ca6e286e30f 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_invoice_renderers.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_renderers.xml index 11f93d5e7c1..9f2166f345e 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_renderers.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_guest_invoice.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_guest_invoice.xml index fd3e59f7e2a..495268bb8e5 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_guest_invoice.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_guest_invoice.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_creditmemo_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_creditmemo_renderers.xml index 2732a603318..30eebc159fd 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_creditmemo_renderers.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_invoice_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_invoice_renderers.xml index fd3e59f7e2a..495268bb8e5 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_invoice_renderers.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_item_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_item_renderers.xml index 28873219cef..c51e36c80b8 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_item_renderers.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_creditmemo_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_creditmemo_renderers.xml index 941430f3773..e0a9fca4a41 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_creditmemo_renderers.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_invoice_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_invoice_renderers.xml index f1da901e54a..fb76469b4ea 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_invoice_renderers.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_renderers.xml index c01e8e7e0f6..bbf433f80e4 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_renderers.xml +++ b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/default.phtml b/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/default.phtml index a5b5de2bf2c..054fcb95038 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/default.phtml +++ b/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/grouped.phtml b/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/grouped.phtml index 05428e248b6..359c727af05 100644 --- a/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/grouped.phtml +++ b/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/grouped.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit.php b/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit.php index 12fd3c23232..28cf85b04e4 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit/Form.php b/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit/Form.php index fec1684f39f..9ac0ee80247 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit/Form.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php b/app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php index 6d3f8b76302..b580313b96a 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Block\Adminhtml\Export; diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Form/After.php b/app/code/Magento/ImportExport/Block/Adminhtml/Form/After.php index 926a1f25091..9846fa29dd9 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/Form/After.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/Form/After.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Download.php b/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Download.php index a13d476d408..9da5a1b75ba 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Download.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Download.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Block\Adminhtml\Grid\Column\Renderer; diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Error.php b/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Error.php index adb16c3c017..9e55cc95258 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Error.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Error.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Block\Adminhtml\Grid\Column\Renderer; diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/History.php b/app/code/Magento/ImportExport/Block/Adminhtml/History.php index 745c06bc424..19b023e08c1 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/History.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/History.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Block\Adminhtml; diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit.php b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit.php index e4b5c23cf20..a1c2fbf5c97 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Before.php b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Before.php index 3f24aefcf7a..5f331fb2e88 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Before.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Before.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Form.php b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Form.php index 435a6639233..30d37cfd16a 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Form.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Block\Adminhtml\Import\Edit; diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Frame/Result.php b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Frame/Result.php index 199aea73831..89d440e19b0 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Frame/Result.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Frame/Result.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Block\Adminhtml\Import\Frame; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Export.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Export.php index 0ddde55b397..af110569007 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/Export.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/Export.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Export.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Export.php index 4981d9f7a20..8647d27322b 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Export.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Export.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml\Export; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Export/GetFilter.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Export/GetFilter.php index ddf85f1fbec..fe7ab75ca20 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/Export/GetFilter.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/Export/GetFilter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml\Export; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Index.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Index.php index 5a0a42071b6..9fae8473bb7 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Index.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml\Export; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/History.php b/app/code/Magento/ImportExport/Controller/Adminhtml/History.php index 165b33637b7..340b01cc0a2 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/History.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/History.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/History/Download.php b/app/code/Magento/ImportExport/Controller/Adminhtml/History/Download.php index 27d386a3349..afc5434de58 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/History/Download.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/History/Download.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml\History; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/History/Index.php b/app/code/Magento/ImportExport/Controller/Adminhtml/History/Index.php index 6346628719e..b0f2aeb1a60 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/History/Index.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/History/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml\History; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Import.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Import.php index 7e67d9172a5..572653fb083 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/Import.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/Import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Download.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Download.php index 46ce65425cd..0b2be4e8b42 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Download.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Download.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml\Import; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Index.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Index.php index 95a67b7340e..15c40b232a0 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Index.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml\Import; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Start.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Start.php index e44a613a497..2b1672b4ca9 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Start.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Start.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml\Import; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Validate.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Validate.php index 54f0aa1b0a4..396636274d7 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Validate.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Validate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml\Import; diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/ImportResult.php b/app/code/Magento/ImportExport/Controller/Adminhtml/ImportResult.php index c95415d49df..dedd849e094 100644 --- a/app/code/Magento/ImportExport/Controller/Adminhtml/ImportResult.php +++ b/app/code/Magento/ImportExport/Controller/Adminhtml/ImportResult.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Controller\Adminhtml; diff --git a/app/code/Magento/ImportExport/Helper/Data.php b/app/code/Magento/ImportExport/Helper/Data.php index 523b326feb5..3061c100acd 100644 --- a/app/code/Magento/ImportExport/Helper/Data.php +++ b/app/code/Magento/ImportExport/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Helper/Report.php b/app/code/Magento/ImportExport/Helper/Report.php index 3c1b6db4e00..cfa3a841359 100644 --- a/app/code/Magento/ImportExport/Helper/Report.php +++ b/app/code/Magento/ImportExport/Helper/Report.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/AbstractModel.php b/app/code/Magento/ImportExport/Model/AbstractModel.php index cec1698587b..2f3b17361b6 100644 --- a/app/code/Magento/ImportExport/Model/AbstractModel.php +++ b/app/code/Magento/ImportExport/Model/AbstractModel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model; diff --git a/app/code/Magento/ImportExport/Model/Export.php b/app/code/Magento/ImportExport/Model/Export.php index 3b833cd4ab8..aa0c347e674 100644 --- a/app/code/Magento/ImportExport/Model/Export.php +++ b/app/code/Magento/ImportExport/Model/Export.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/Export/AbstractEntity.php b/app/code/Magento/ImportExport/Model/Export/AbstractEntity.php index e01d68e7d0f..8b04f6fc431 100644 --- a/app/code/Magento/ImportExport/Model/Export/AbstractEntity.php +++ b/app/code/Magento/ImportExport/Model/Export/AbstractEntity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Export; diff --git a/app/code/Magento/ImportExport/Model/Export/Adapter/AbstractAdapter.php b/app/code/Magento/ImportExport/Model/Export/Adapter/AbstractAdapter.php index 7902e5d8264..bba9ce7eef8 100644 --- a/app/code/Magento/ImportExport/Model/Export/Adapter/AbstractAdapter.php +++ b/app/code/Magento/ImportExport/Model/Export/Adapter/AbstractAdapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Export\Adapter; diff --git a/app/code/Magento/ImportExport/Model/Export/Adapter/Csv.php b/app/code/Magento/ImportExport/Model/Export/Adapter/Csv.php index af459a18deb..0c6d17a249c 100644 --- a/app/code/Magento/ImportExport/Model/Export/Adapter/Csv.php +++ b/app/code/Magento/ImportExport/Model/Export/Adapter/Csv.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Export\Adapter; diff --git a/app/code/Magento/ImportExport/Model/Export/Adapter/Factory.php b/app/code/Magento/ImportExport/Model/Export/Adapter/Factory.php index b616d0de769..392a562fe56 100644 --- a/app/code/Magento/ImportExport/Model/Export/Adapter/Factory.php +++ b/app/code/Magento/ImportExport/Model/Export/Adapter/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/Export/Config.php b/app/code/Magento/ImportExport/Model/Export/Config.php index 2d7b2c7a3af..b486a4d41b6 100644 --- a/app/code/Magento/ImportExport/Model/Export/Config.php +++ b/app/code/Magento/ImportExport/Model/Export/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Export; diff --git a/app/code/Magento/ImportExport/Model/Export/Config/Converter.php b/app/code/Magento/ImportExport/Model/Export/Config/Converter.php index 7f396b2bbf4..0a98b262870 100644 --- a/app/code/Magento/ImportExport/Model/Export/Config/Converter.php +++ b/app/code/Magento/ImportExport/Model/Export/Config/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Export\Config; diff --git a/app/code/Magento/ImportExport/Model/Export/Config/Reader.php b/app/code/Magento/ImportExport/Model/Export/Config/Reader.php index b41b0eb553c..96c9d7c1908 100644 --- a/app/code/Magento/ImportExport/Model/Export/Config/Reader.php +++ b/app/code/Magento/ImportExport/Model/Export/Config/Reader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Export\Config; diff --git a/app/code/Magento/ImportExport/Model/Export/Config/SchemaLocator.php b/app/code/Magento/ImportExport/Model/Export/Config/SchemaLocator.php index 77e165ff5f7..1c7a897c990 100644 --- a/app/code/Magento/ImportExport/Model/Export/Config/SchemaLocator.php +++ b/app/code/Magento/ImportExport/Model/Export/Config/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Export\Config; diff --git a/app/code/Magento/ImportExport/Model/Export/ConfigInterface.php b/app/code/Magento/ImportExport/Model/Export/ConfigInterface.php index 1278bca62a7..db7b2887201 100644 --- a/app/code/Magento/ImportExport/Model/Export/ConfigInterface.php +++ b/app/code/Magento/ImportExport/Model/Export/ConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Export; diff --git a/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEav.php b/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEav.php index 8ba392d283d..146301cad23 100644 --- a/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEav.php +++ b/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEav.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Export\Entity; diff --git a/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEntity.php b/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEntity.php index f76200a576a..370f89fc731 100644 --- a/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEntity.php +++ b/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEntity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Export\Entity; diff --git a/app/code/Magento/ImportExport/Model/Export/Entity/Factory.php b/app/code/Magento/ImportExport/Model/Export/Entity/Factory.php index 79392939963..7ab756b3c98 100644 --- a/app/code/Magento/ImportExport/Model/Export/Entity/Factory.php +++ b/app/code/Magento/ImportExport/Model/Export/Entity/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/Export/Factory.php b/app/code/Magento/ImportExport/Model/Export/Factory.php index ea845ebf920..f6bb99fca65 100644 --- a/app/code/Magento/ImportExport/Model/Export/Factory.php +++ b/app/code/Magento/ImportExport/Model/Export/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/History.php b/app/code/Magento/ImportExport/Model/History.php index 41569c232b8..c0419f1cba3 100644 --- a/app/code/Magento/ImportExport/Model/History.php +++ b/app/code/Magento/ImportExport/Model/History.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model; diff --git a/app/code/Magento/ImportExport/Model/Import.php b/app/code/Magento/ImportExport/Model/Import.php index 89b5f88f0e9..f9868b33b5d 100644 --- a/app/code/Magento/ImportExport/Model/Import.php +++ b/app/code/Magento/ImportExport/Model/Import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/Import/AbstractEntity.php b/app/code/Magento/ImportExport/Model/Import/AbstractEntity.php index 6333b1e63ea..e5adfb3c876 100644 --- a/app/code/Magento/ImportExport/Model/Import/AbstractEntity.php +++ b/app/code/Magento/ImportExport/Model/Import/AbstractEntity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import; diff --git a/app/code/Magento/ImportExport/Model/Import/AbstractSource.php b/app/code/Magento/ImportExport/Model/Import/AbstractSource.php index 96d599a0041..409beeda6e5 100644 --- a/app/code/Magento/ImportExport/Model/Import/AbstractSource.php +++ b/app/code/Magento/ImportExport/Model/Import/AbstractSource.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import; diff --git a/app/code/Magento/ImportExport/Model/Import/Adapter.php b/app/code/Magento/ImportExport/Model/Import/Adapter.php index ce0dc97ea6e..3fbd6f88357 100644 --- a/app/code/Magento/ImportExport/Model/Import/Adapter.php +++ b/app/code/Magento/ImportExport/Model/Import/Adapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import; diff --git a/app/code/Magento/ImportExport/Model/Import/Config.php b/app/code/Magento/ImportExport/Model/Import/Config.php index a1ec492da3e..07fe3490d58 100644 --- a/app/code/Magento/ImportExport/Model/Import/Config.php +++ b/app/code/Magento/ImportExport/Model/Import/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import; diff --git a/app/code/Magento/ImportExport/Model/Import/Config/Converter.php b/app/code/Magento/ImportExport/Model/Import/Config/Converter.php index b47432295dd..d7ee3bf2f78 100644 --- a/app/code/Magento/ImportExport/Model/Import/Config/Converter.php +++ b/app/code/Magento/ImportExport/Model/Import/Config/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import\Config; diff --git a/app/code/Magento/ImportExport/Model/Import/Config/Reader.php b/app/code/Magento/ImportExport/Model/Import/Config/Reader.php index 2858e874403..90e4c146e67 100644 --- a/app/code/Magento/ImportExport/Model/Import/Config/Reader.php +++ b/app/code/Magento/ImportExport/Model/Import/Config/Reader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import\Config; diff --git a/app/code/Magento/ImportExport/Model/Import/Config/SchemaLocator.php b/app/code/Magento/ImportExport/Model/Import/Config/SchemaLocator.php index 928fb3e2051..8cc9e6e3c7e 100644 --- a/app/code/Magento/ImportExport/Model/Import/Config/SchemaLocator.php +++ b/app/code/Magento/ImportExport/Model/Import/Config/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import\Config; diff --git a/app/code/Magento/ImportExport/Model/Import/ConfigInterface.php b/app/code/Magento/ImportExport/Model/Import/ConfigInterface.php index e91a331630a..847cf3050e6 100644 --- a/app/code/Magento/ImportExport/Model/Import/ConfigInterface.php +++ b/app/code/Magento/ImportExport/Model/Import/ConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import; diff --git a/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEav.php b/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEav.php index ca3733d1cc3..43edaee11d7 100644 --- a/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEav.php +++ b/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEav.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import\Entity; diff --git a/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEntity.php b/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEntity.php index b3f4c4b0692..6d76b23ed3f 100644 --- a/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEntity.php +++ b/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEntity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import\Entity; diff --git a/app/code/Magento/ImportExport/Model/Import/Entity/Factory.php b/app/code/Magento/ImportExport/Model/Import/Entity/Factory.php index 24ed7634ae2..0ca075a5652 100644 --- a/app/code/Magento/ImportExport/Model/Import/Entity/Factory.php +++ b/app/code/Magento/ImportExport/Model/Import/Entity/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingError.php b/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingError.php index 28622f9535b..786adc9c45f 100644 --- a/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingError.php +++ b/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingError.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregator.php b/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregator.php index 262b773165b..69d062e87c1 100644 --- a/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregator.php +++ b/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregatorInterface.php b/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregatorInterface.php index 9e3b051babf..2ae9406773e 100644 --- a/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregatorInterface.php +++ b/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/Import/Source/Csv.php b/app/code/Magento/ImportExport/Model/Import/Source/Csv.php index 153feec64d3..ca77bf9dc12 100644 --- a/app/code/Magento/ImportExport/Model/Import/Source/Csv.php +++ b/app/code/Magento/ImportExport/Model/Import/Source/Csv.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import\Source; diff --git a/app/code/Magento/ImportExport/Model/Import/Source/Zip.php b/app/code/Magento/ImportExport/Model/Import/Source/Zip.php index 03f062dce31..a4b4aef9da1 100644 --- a/app/code/Magento/ImportExport/Model/Import/Source/Zip.php +++ b/app/code/Magento/ImportExport/Model/Import/Source/Zip.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Import\Source; diff --git a/app/code/Magento/ImportExport/Model/Report/Csv.php b/app/code/Magento/ImportExport/Model/Report/Csv.php index 3a227f4355e..c8614843bbb 100644 --- a/app/code/Magento/ImportExport/Model/Report/Csv.php +++ b/app/code/Magento/ImportExport/Model/Report/Csv.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/Report/ReportProcessorInterface.php b/app/code/Magento/ImportExport/Model/Report/ReportProcessorInterface.php index e4d10586dcb..247eebe15a6 100644 --- a/app/code/Magento/ImportExport/Model/Report/ReportProcessorInterface.php +++ b/app/code/Magento/ImportExport/Model/Report/ReportProcessorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/ResourceModel/CollectionByPagesIterator.php b/app/code/Magento/ImportExport/Model/ResourceModel/CollectionByPagesIterator.php index 2ad00db9156..43774aae0ca 100644 --- a/app/code/Magento/ImportExport/Model/ResourceModel/CollectionByPagesIterator.php +++ b/app/code/Magento/ImportExport/Model/ResourceModel/CollectionByPagesIterator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\ResourceModel; diff --git a/app/code/Magento/ImportExport/Model/ResourceModel/Helper.php b/app/code/Magento/ImportExport/Model/ResourceModel/Helper.php index 50fa3ad77a0..6feaf480ff1 100644 --- a/app/code/Magento/ImportExport/Model/ResourceModel/Helper.php +++ b/app/code/Magento/ImportExport/Model/ResourceModel/Helper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/ResourceModel/History.php b/app/code/Magento/ImportExport/Model/ResourceModel/History.php index 6b3f7d51f28..16b4088ab20 100644 --- a/app/code/Magento/ImportExport/Model/ResourceModel/History.php +++ b/app/code/Magento/ImportExport/Model/ResourceModel/History.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\ResourceModel; diff --git a/app/code/Magento/ImportExport/Model/ResourceModel/History/Collection.php b/app/code/Magento/ImportExport/Model/ResourceModel/History/Collection.php index f463d719225..56a3eefeaba 100644 --- a/app/code/Magento/ImportExport/Model/ResourceModel/History/Collection.php +++ b/app/code/Magento/ImportExport/Model/ResourceModel/History/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\ResourceModel\History; diff --git a/app/code/Magento/ImportExport/Model/ResourceModel/Import/Data.php b/app/code/Magento/ImportExport/Model/ResourceModel/Import/Data.php index 57a7294019f..f38fe37a70a 100644 --- a/app/code/Magento/ImportExport/Model/ResourceModel/Import/Data.php +++ b/app/code/Magento/ImportExport/Model/ResourceModel/Import/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\ResourceModel\Import; diff --git a/app/code/Magento/ImportExport/Model/Source/Export/Entity.php b/app/code/Magento/ImportExport/Model/Source/Export/Entity.php index 32f295cecfa..0dc45955da3 100644 --- a/app/code/Magento/ImportExport/Model/Source/Export/Entity.php +++ b/app/code/Magento/ImportExport/Model/Source/Export/Entity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Source\Export; diff --git a/app/code/Magento/ImportExport/Model/Source/Export/Format.php b/app/code/Magento/ImportExport/Model/Source/Export/Format.php index 5e55c66f222..3b4cc53e16b 100644 --- a/app/code/Magento/ImportExport/Model/Source/Export/Format.php +++ b/app/code/Magento/ImportExport/Model/Source/Export/Format.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Source\Export; diff --git a/app/code/Magento/ImportExport/Model/Source/Import/AbstractBehavior.php b/app/code/Magento/ImportExport/Model/Source/Import/AbstractBehavior.php index 9862a7c6803..cbebdeffc20 100644 --- a/app/code/Magento/ImportExport/Model/Source/Import/AbstractBehavior.php +++ b/app/code/Magento/ImportExport/Model/Source/Import/AbstractBehavior.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Source\Import; diff --git a/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Basic.php b/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Basic.php index 2cf695c6539..8fddc7ab4c4 100644 --- a/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Basic.php +++ b/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Basic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Source\Import\Behavior; diff --git a/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Custom.php b/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Custom.php index 6f500ea9c2a..5fb9e361f92 100644 --- a/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Custom.php +++ b/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Custom.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Source\Import\Behavior; diff --git a/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Factory.php b/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Factory.php index 3fd57bd4039..7c55ef6719a 100644 --- a/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Factory.php +++ b/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Model/Source/Import/Entity.php b/app/code/Magento/ImportExport/Model/Source/Import/Entity.php index 47ffcba11e1..de7f24d84aa 100644 --- a/app/code/Magento/ImportExport/Model/Source/Import/Entity.php +++ b/app/code/Magento/ImportExport/Model/Source/Import/Entity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Model\Source\Import; diff --git a/app/code/Magento/ImportExport/Setup/InstallSchema.php b/app/code/Magento/ImportExport/Setup/InstallSchema.php index f83638d439a..1905b2bcea4 100644 --- a/app/code/Magento/ImportExport/Setup/InstallSchema.php +++ b/app/code/Magento/ImportExport/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Setup/UpgradeSchema.php b/app/code/Magento/ImportExport/Setup/UpgradeSchema.php index cbddc303066..06bf897a59a 100644 --- a/app/code/Magento/ImportExport/Setup/UpgradeSchema.php +++ b/app/code/Magento/ImportExport/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Export/FilterTest.php b/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Export/FilterTest.php index 9a76018193c..55e8197129a 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Export/FilterTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Export/FilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Block\Adminhtml\Export; diff --git a/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Grid/Column/Renderer/DownloadTest.php b/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Grid/Column/Renderer/DownloadTest.php index d29dd681d8d..0c23fa8b353 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Grid/Column/Renderer/DownloadTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Grid/Column/Renderer/DownloadTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Block\Adminhtml\Grid\Column\Renderer; diff --git a/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Import/Edit/FormTest.php b/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Import/Edit/FormTest.php index 4fc1fe9876f..66cac860e9b 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Import/Edit/FormTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Import/Edit/FormTest.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/DownloadTest.php b/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/DownloadTest.php index 2cbb47fa5f1..d78d8590527 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/DownloadTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/DownloadTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Controller\Adminhtml\History; diff --git a/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/IndexTest.php b/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/IndexTest.php index c423d1716f9..2d0620854bf 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/IndexTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Controller\Adminhtml\History; diff --git a/app/code/Magento/ImportExport/Test/Unit/Helper/ReportTest.php b/app/code/Magento/ImportExport/Test/Unit/Helper/ReportTest.php index a2a578230e1..636709500a8 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Helper/ReportTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Helper/ReportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Helper; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/ConverterTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/ConverterTest.php index 745045f304e..6df065daa00 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/ConverterTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Export\Config; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/SchemaLocatorTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/SchemaLocatorTest.php index abe81bb08a8..049f5202978 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/SchemaLocatorTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Export\Config; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/XsdTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/XsdTest.php index 955611f60a6..573b9d9f53d 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/XsdTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Export\Config; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.php index 901a4991c57..c6265bfb393 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.xml index fdabd425d3f..029c46280a0 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.xml +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_merged_valid.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_merged_valid.xml index 244b0b91e9f..b1cf370e1c5 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_merged_valid.xml +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_merged_valid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_valid.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_valid.xml index 13490296206..c59fb52f057 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_valid.xml +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_valid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportMergedXmlArray.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportMergedXmlArray.php index b3a801d85b8..66121ce773b 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportMergedXmlArray.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportMergedXmlArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportXmlArray.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportXmlArray.php index 707bb693256..22539bdee42 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportXmlArray.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportXmlArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/ConfigTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/ConfigTest.php index 0b1e542f85b..45ff6cf6cc6 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/ConfigTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Export; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Entity/AbstractEavTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Entity/AbstractEavTest.php index 009bb5a8201..612ed15ad91 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Entity/AbstractEavTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Entity/AbstractEavTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Export\Entity; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/EntityAbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/EntityAbstractTest.php index 5526876e370..39385c34a92 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Export/EntityAbstractTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Export/EntityAbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/ExportTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/ExportTest.php index b77cbf62ebc..201199f2300 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/ExportTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/ExportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/AbstractImportTestCase.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/AbstractImportTestCase.php index 6e751509a32..50a167f7f8b 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/AbstractImportTestCase.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/AbstractImportTestCase.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Import; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/AdapterTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/AdapterTest.php index 2aa2df3dbc9..87ea3a7dffb 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/AdapterTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/AdapterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Import; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/ConverterTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/ConverterTest.php index b315bd456ca..1e31d01a02a 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/ConverterTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Import\Config; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/SchemaLocatorTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/SchemaLocatorTest.php index a5fd1d3826d..568be302c5d 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/SchemaLocatorTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Import\Config; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdMergedTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdMergedTest.php index 4b057f9d3bc..8f3218de85a 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdMergedTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdMergedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Import\Config; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdTest.php index 2a4c5419ba4..314e87ec692 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Import\Config; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.php index 9b8bb7adbee..227c176d35d 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.xml index 57721802a2c..5830c2de9aa 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.xml +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportMergedXmlArray.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportMergedXmlArray.php index f63163d5f5f..35c8a8e8547 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportMergedXmlArray.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportMergedXmlArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportXmlArray.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportXmlArray.php index e68335b48f6..550bab0fbea 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportXmlArray.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportXmlArray.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import.xml index 5887985a27f..142f4efa9cf 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import.xml +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import_merged.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import_merged.xml index 20596d3b814..f6ea8ddaa70 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import_merged.xml +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import_merged.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/ConfigTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/ConfigTest.php index 60cd1f50238..55f205553ef 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/ConfigTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Import; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/AbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/AbstractTest.php index fb41491d104..18c5ad9bc69 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/AbstractTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/AbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/EavAbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/EavAbstractTest.php index 64fde415b9c..f2bc0d2e4ee 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/EavAbstractTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/EavAbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/EntityAbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/EntityAbstractTest.php index 293a871c620..022bae9beea 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/EntityAbstractTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/EntityAbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorAggregatorTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorAggregatorTest.php index cdf8fd2913c..974d92716a3 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorAggregatorTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorAggregatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Import\ErrorProcessing; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorTest.php index 9719be6222c..767d5252be2 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Import\ErrorProcessing; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/CsvTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/CsvTest.php index a865b4eea27..f88ac1dae87 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/CsvTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/CsvTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Import\Source; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/ZipTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/ZipTest.php index 37c380c2c3a..235bb57b8b6 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/ZipTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/ZipTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/SourceAbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/SourceAbstractTest.php index 3367f5d2e0d..d10137ea613 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Import/SourceAbstractTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Import/SourceAbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Import; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/ImportTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/ImportTest.php index 4c175b64924..55bc4bb316d 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/ImportTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/ImportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Report/CsvTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Report/CsvTest.php index 7c61961ad29..80bc1576998 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Report/CsvTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Report/CsvTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\Report; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/CollectionByPagesIteratorTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/CollectionByPagesIteratorTest.php index 5b85f886283..6ff36c73dc0 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/CollectionByPagesIteratorTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/CollectionByPagesIteratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/HistoryTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/HistoryTest.php index 9039f747e3d..4593f15651c 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/HistoryTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/HistoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ImportExport\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/AbstractBehaviorTestCase.php b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/AbstractBehaviorTestCase.php index 99897e17b9b..71d9859fae7 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/AbstractBehaviorTestCase.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/AbstractBehaviorTestCase.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/BasicTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/BasicTest.php index 74b815dd92b..186d1f1bf2f 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/BasicTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/BasicTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/CustomTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/CustomTest.php index 2db5b9a9ffd..f99c320c5e1 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/CustomTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/CustomTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/BehaviorAbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/BehaviorAbstractTest.php index c39749e72b2..e93452008f2 100644 --- a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/BehaviorAbstractTest.php +++ b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/BehaviorAbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/etc/acl.xml b/app/code/Magento/ImportExport/etc/acl.xml index 0738b3e0d07..bf318fa3438 100644 --- a/app/code/Magento/ImportExport/etc/acl.xml +++ b/app/code/Magento/ImportExport/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/etc/adminhtml/menu.xml b/app/code/Magento/ImportExport/etc/adminhtml/menu.xml index ea9c15ad7a6..32f33227952 100644 --- a/app/code/Magento/ImportExport/etc/adminhtml/menu.xml +++ b/app/code/Magento/ImportExport/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/etc/adminhtml/routes.xml b/app/code/Magento/ImportExport/etc/adminhtml/routes.xml index 459629f7b36..22448a8609a 100644 --- a/app/code/Magento/ImportExport/etc/adminhtml/routes.xml +++ b/app/code/Magento/ImportExport/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/etc/config.xml b/app/code/Magento/ImportExport/etc/config.xml index 8614565f5fd..7a7fe0e10e9 100644 --- a/app/code/Magento/ImportExport/etc/config.xml +++ b/app/code/Magento/ImportExport/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/etc/di.xml b/app/code/Magento/ImportExport/etc/di.xml index de637c7104d..4c357782d80 100644 --- a/app/code/Magento/ImportExport/etc/di.xml +++ b/app/code/Magento/ImportExport/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/etc/export.xsd b/app/code/Magento/ImportExport/etc/export.xsd index c7316873d89..e6d69809d55 100644 --- a/app/code/Magento/ImportExport/etc/export.xsd +++ b/app/code/Magento/ImportExport/etc/export.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/etc/export_merged.xsd b/app/code/Magento/ImportExport/etc/export_merged.xsd index 200a173b81f..352c78ee760 100644 --- a/app/code/Magento/ImportExport/etc/export_merged.xsd +++ b/app/code/Magento/ImportExport/etc/export_merged.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/etc/import.xsd b/app/code/Magento/ImportExport/etc/import.xsd index 2d6ab40c3c8..4aac9792ce7 100644 --- a/app/code/Magento/ImportExport/etc/import.xsd +++ b/app/code/Magento/ImportExport/etc/import.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/etc/import_merged.xsd b/app/code/Magento/ImportExport/etc/import_merged.xsd index c654c04c8de..898a835c7b2 100644 --- a/app/code/Magento/ImportExport/etc/import_merged.xsd +++ b/app/code/Magento/ImportExport/etc/import_merged.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/etc/module.xml b/app/code/Magento/ImportExport/etc/module.xml index fde05d4e244..0b7b0329c39 100644 --- a/app/code/Magento/ImportExport/etc/module.xml +++ b/app/code/Magento/ImportExport/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/registration.php b/app/code/Magento/ImportExport/registration.php index 80dce0d7e03..e879d8fe821 100644 --- a/app/code/Magento/ImportExport/registration.php +++ b/app/code/Magento/ImportExport/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_getfilter.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_getfilter.xml index 46d1df22e4a..376c7f856ea 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_getfilter.xml +++ b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_getfilter.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_index.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_index.xml index 53783e0a310..f81887fe538 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_index.xml +++ b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_grid_block.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_grid_block.xml index 3ff79ba46cc..3e8e26d4563 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_grid_block.xml +++ b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_index.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_index.xml index 1055151c3d7..70ec84dd186 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_index.xml +++ b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_busy.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_busy.xml index ed04365a172..96923815d40 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_busy.xml +++ b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_busy.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_index.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_index.xml index 1e99b42c318..e6485407fce 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_index.xml +++ b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_start.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_start.xml index cac0aa44a22..0c03442c8ad 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_start.xml +++ b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_start.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_validate.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_validate.xml index cac0aa44a22..0c03442c8ad 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_validate.xml +++ b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_validate.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/busy.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/busy.phtml index 5e6e0b8e9ab..2c3a2534ea9 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/templates/busy.phtml +++ b/app/code/Magento/ImportExport/view/adminhtml/templates/busy.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/after.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/after.phtml index e551dca72e2..2b036ffb113 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/after.phtml +++ b/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/after.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/before.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/before.phtml index ce4f61cef4f..c1ce6a98469 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/before.phtml +++ b/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/before.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/filter/after.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/filter/after.phtml index aa2dbce2b72..365ad1a2258 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/filter/after.phtml +++ b/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/filter/after.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/after.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/after.phtml index 62ac3792626..513d32073b9 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/after.phtml +++ b/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/after.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/before.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/before.phtml index cd68ee6f4a9..8425e686eae 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/before.phtml +++ b/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/before.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/import/frame/result.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/import/frame/result.phtml index 831d6b39354..33a63afd239 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/templates/import/frame/result.phtml +++ b/app/code/Magento/ImportExport/view/adminhtml/templates/import/frame/result.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/ImportExport/view/adminhtml/web/css/importexport.css b/app/code/Magento/ImportExport/view/adminhtml/web/css/importexport.css index 9ddae017cbc..6d08f0be2b9 100644 --- a/app/code/Magento/ImportExport/view/adminhtml/web/css/importexport.css +++ b/app/code/Magento/ImportExport/view/adminhtml/web/css/importexport.css @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ .import-error-wrapper { diff --git a/app/code/Magento/Indexer/App/Indexer.php b/app/code/Magento/Indexer/App/Indexer.php index 58c58608984..827d7393bed 100644 --- a/app/code/Magento/Indexer/App/Indexer.php +++ b/app/code/Magento/Indexer/App/Indexer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\App; diff --git a/app/code/Magento/Indexer/Block/Backend/Container.php b/app/code/Magento/Indexer/Block/Backend/Container.php index 7ce898c9308..63e2deaad56 100644 --- a/app/code/Magento/Indexer/Block/Backend/Container.php +++ b/app/code/Magento/Indexer/Block/Backend/Container.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Block\Backend; diff --git a/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Scheduled.php b/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Scheduled.php index 5236823a6eb..e278831f0f3 100644 --- a/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Scheduled.php +++ b/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Scheduled.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Block\Backend\Grid\Column\Renderer; diff --git a/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Status.php b/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Status.php index c0019e64273..806a50b23a5 100644 --- a/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Status.php +++ b/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Block\Backend\Grid\Column\Renderer; diff --git a/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Updated.php b/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Updated.php index d31819e961c..b6253275838 100644 --- a/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Updated.php +++ b/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Updated.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Block\Backend\Grid\Column\Renderer; diff --git a/app/code/Magento/Indexer/Block/Backend/Grid/ItemsUpdater.php b/app/code/Magento/Indexer/Block/Backend/Grid/ItemsUpdater.php index 9baea599dc9..c8afcd9c266 100644 --- a/app/code/Magento/Indexer/Block/Backend/Grid/ItemsUpdater.php +++ b/app/code/Magento/Indexer/Block/Backend/Grid/ItemsUpdater.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Block\Backend\Grid; diff --git a/app/code/Magento/Indexer/Console/Command/AbstractIndexerCommand.php b/app/code/Magento/Indexer/Console/Command/AbstractIndexerCommand.php index 5117a11142c..9903afe4f2f 100644 --- a/app/code/Magento/Indexer/Console/Command/AbstractIndexerCommand.php +++ b/app/code/Magento/Indexer/Console/Command/AbstractIndexerCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Console\Command; diff --git a/app/code/Magento/Indexer/Console/Command/AbstractIndexerManageCommand.php b/app/code/Magento/Indexer/Console/Command/AbstractIndexerManageCommand.php index 9933a3990d1..4f83062b1ea 100644 --- a/app/code/Magento/Indexer/Console/Command/AbstractIndexerManageCommand.php +++ b/app/code/Magento/Indexer/Console/Command/AbstractIndexerManageCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Console\Command; diff --git a/app/code/Magento/Indexer/Console/Command/IndexerInfoCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerInfoCommand.php index 4c7be5c53b2..920974afc13 100644 --- a/app/code/Magento/Indexer/Console/Command/IndexerInfoCommand.php +++ b/app/code/Magento/Indexer/Console/Command/IndexerInfoCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Console\Command; diff --git a/app/code/Magento/Indexer/Console/Command/IndexerReindexCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerReindexCommand.php index 891d8905c44..32277a932a8 100644 --- a/app/code/Magento/Indexer/Console/Command/IndexerReindexCommand.php +++ b/app/code/Magento/Indexer/Console/Command/IndexerReindexCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Console\Command; diff --git a/app/code/Magento/Indexer/Console/Command/IndexerResetStateCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerResetStateCommand.php index 3b1e952d1e6..a3fbb7d32c2 100644 --- a/app/code/Magento/Indexer/Console/Command/IndexerResetStateCommand.php +++ b/app/code/Magento/Indexer/Console/Command/IndexerResetStateCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Console\Command; diff --git a/app/code/Magento/Indexer/Console/Command/IndexerSetModeCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerSetModeCommand.php index 575b6073230..1db67f54f1f 100644 --- a/app/code/Magento/Indexer/Console/Command/IndexerSetModeCommand.php +++ b/app/code/Magento/Indexer/Console/Command/IndexerSetModeCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Console\Command; diff --git a/app/code/Magento/Indexer/Console/Command/IndexerShowModeCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerShowModeCommand.php index 781c2252375..fc96e9bb0bc 100644 --- a/app/code/Magento/Indexer/Console/Command/IndexerShowModeCommand.php +++ b/app/code/Magento/Indexer/Console/Command/IndexerShowModeCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Console\Command; diff --git a/app/code/Magento/Indexer/Console/Command/IndexerStatusCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerStatusCommand.php index 9f72fc29abc..1e57676b89b 100644 --- a/app/code/Magento/Indexer/Console/Command/IndexerStatusCommand.php +++ b/app/code/Magento/Indexer/Console/Command/IndexerStatusCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Console\Command; diff --git a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer.php b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer.php index 8ebc7ec903f..d099fa85134 100644 --- a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer.php +++ b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Controller\Adminhtml; diff --git a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/ListAction.php b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/ListAction.php index 2d57809486b..c80c66840da 100644 --- a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/ListAction.php +++ b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/ListAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Controller\Adminhtml\Indexer; diff --git a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassChangelog.php b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassChangelog.php index f02937b9b91..d24cd6217bd 100644 --- a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassChangelog.php +++ b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassChangelog.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Controller\Adminhtml\Indexer; diff --git a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassOnTheFly.php b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassOnTheFly.php index 7b9f25b59f7..21957b01f8d 100644 --- a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassOnTheFly.php +++ b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassOnTheFly.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Controller\Adminhtml\Indexer; diff --git a/app/code/Magento/Indexer/Cron/ClearChangelog.php b/app/code/Magento/Indexer/Cron/ClearChangelog.php index 4c38261fe3b..0cb8a093f77 100644 --- a/app/code/Magento/Indexer/Cron/ClearChangelog.php +++ b/app/code/Magento/Indexer/Cron/ClearChangelog.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Cron; diff --git a/app/code/Magento/Indexer/Cron/ReindexAllInvalid.php b/app/code/Magento/Indexer/Cron/ReindexAllInvalid.php index d0b12b9f767..c0b8202329d 100644 --- a/app/code/Magento/Indexer/Cron/ReindexAllInvalid.php +++ b/app/code/Magento/Indexer/Cron/ReindexAllInvalid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Cron; diff --git a/app/code/Magento/Indexer/Cron/UpdateMview.php b/app/code/Magento/Indexer/Cron/UpdateMview.php index 3e0474546b2..177d01dfcbb 100644 --- a/app/code/Magento/Indexer/Cron/UpdateMview.php +++ b/app/code/Magento/Indexer/Cron/UpdateMview.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Cron; diff --git a/app/code/Magento/Indexer/Model/Config.php b/app/code/Magento/Indexer/Model/Config.php index 706a2687d0f..cd6dcf675b0 100644 --- a/app/code/Magento/Indexer/Model/Config.php +++ b/app/code/Magento/Indexer/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model; diff --git a/app/code/Magento/Indexer/Model/Config/Data.php b/app/code/Magento/Indexer/Model/Config/Data.php index 3cedaa51ef4..4e7d2e0d610 100644 --- a/app/code/Magento/Indexer/Model/Config/Data.php +++ b/app/code/Magento/Indexer/Model/Config/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\Config; diff --git a/app/code/Magento/Indexer/Model/Indexer.php b/app/code/Magento/Indexer/Model/Indexer.php index e725d60b980..feea37a2636 100644 --- a/app/code/Magento/Indexer/Model/Indexer.php +++ b/app/code/Magento/Indexer/Model/Indexer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model; diff --git a/app/code/Magento/Indexer/Model/Indexer/Collection.php b/app/code/Magento/Indexer/Model/Indexer/Collection.php index 9eb532b0b79..c07a53a996c 100644 --- a/app/code/Magento/Indexer/Model/Indexer/Collection.php +++ b/app/code/Magento/Indexer/Model/Indexer/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\Indexer; diff --git a/app/code/Magento/Indexer/Model/Indexer/State.php b/app/code/Magento/Indexer/Model/Indexer/State.php index f0dce7749fe..96e0153bcac 100644 --- a/app/code/Magento/Indexer/Model/Indexer/State.php +++ b/app/code/Magento/Indexer/Model/Indexer/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\Indexer; diff --git a/app/code/Magento/Indexer/Model/Message/Invalid.php b/app/code/Magento/Indexer/Model/Message/Invalid.php index c64c17e8f46..834f2e51a54 100644 --- a/app/code/Magento/Indexer/Model/Message/Invalid.php +++ b/app/code/Magento/Indexer/Model/Message/Invalid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Indexer/Model/Mview/View/State.php b/app/code/Magento/Indexer/Model/Mview/View/State.php index bbca5fd314e..3c45731600d 100644 --- a/app/code/Magento/Indexer/Model/Mview/View/State.php +++ b/app/code/Magento/Indexer/Model/Mview/View/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\Mview\View; diff --git a/app/code/Magento/Indexer/Model/Processor.php b/app/code/Magento/Indexer/Model/Processor.php index e4edea7e54d..1554e9df854 100644 --- a/app/code/Magento/Indexer/Model/Processor.php +++ b/app/code/Magento/Indexer/Model/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model; diff --git a/app/code/Magento/Indexer/Model/Processor/CleanCache.php b/app/code/Magento/Indexer/Model/Processor/CleanCache.php index f09733e70ac..429e06145b5 100644 --- a/app/code/Magento/Indexer/Model/Processor/CleanCache.php +++ b/app/code/Magento/Indexer/Model/Processor/CleanCache.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\Processor; diff --git a/app/code/Magento/Indexer/Model/Processor/Handler.php b/app/code/Magento/Indexer/Model/Processor/Handler.php index b280a44e7b5..c03ebab2d5c 100644 --- a/app/code/Magento/Indexer/Model/Processor/Handler.php +++ b/app/code/Magento/Indexer/Model/Processor/Handler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\Processor; diff --git a/app/code/Magento/Indexer/Model/ResourceModel/AbstractResource.php b/app/code/Magento/Indexer/Model/ResourceModel/AbstractResource.php index 42d481c79c7..43ff1ae6d17 100644 --- a/app/code/Magento/Indexer/Model/ResourceModel/AbstractResource.php +++ b/app/code/Magento/Indexer/Model/ResourceModel/AbstractResource.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State.php b/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State.php index 18ba1274378..977180d87e7 100644 --- a/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State.php +++ b/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\ResourceModel\Indexer; diff --git a/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State/Collection.php b/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State/Collection.php index 9d393c4d664..8a505d65528 100644 --- a/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State/Collection.php +++ b/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\ResourceModel\Indexer\State; diff --git a/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State.php b/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State.php index 609090d7db7..52bd556ba56 100644 --- a/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State.php +++ b/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\ResourceModel\Mview\View; diff --git a/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State/Collection.php b/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State/Collection.php index f61d88afef7..52b401a2fff 100644 --- a/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State/Collection.php +++ b/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\ResourceModel\Mview\View\State; diff --git a/app/code/Magento/Indexer/Model/Source/DataInterface.php b/app/code/Magento/Indexer/Model/Source/DataInterface.php index 705f6b726b3..0d3983fb6bc 100644 --- a/app/code/Magento/Indexer/Model/Source/DataInterface.php +++ b/app/code/Magento/Indexer/Model/Source/DataInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\Source; diff --git a/app/code/Magento/Indexer/Model/Source/ServiceSource.php b/app/code/Magento/Indexer/Model/Source/ServiceSource.php index eac789e7c0c..b76c0e6835d 100644 --- a/app/code/Magento/Indexer/Model/Source/ServiceSource.php +++ b/app/code/Magento/Indexer/Model/Source/ServiceSource.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Model\Source; diff --git a/app/code/Magento/Indexer/Setup/InstallData.php b/app/code/Magento/Indexer/Setup/InstallData.php index d6705a67214..0a1c463c4c6 100644 --- a/app/code/Magento/Indexer/Setup/InstallData.php +++ b/app/code/Magento/Indexer/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Indexer/Setup/InstallSchema.php b/app/code/Magento/Indexer/Setup/InstallSchema.php index 7824ee76e43..7afd9381abf 100644 --- a/app/code/Magento/Indexer/Setup/InstallSchema.php +++ b/app/code/Magento/Indexer/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Indexer/Setup/Recurring.php b/app/code/Magento/Indexer/Setup/Recurring.php index 30ddc991858..352ffa84cda 100644 --- a/app/code/Magento/Indexer/Setup/Recurring.php +++ b/app/code/Magento/Indexer/Setup/Recurring.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Indexer/Setup/RecurringData.php b/app/code/Magento/Indexer/Setup/RecurringData.php index bd6f8f0241d..38ea0e5b79e 100644 --- a/app/code/Magento/Indexer/Setup/RecurringData.php +++ b/app/code/Magento/Indexer/Setup/RecurringData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Indexer/Test/Unit/App/IndexerTest.php b/app/code/Magento/Indexer/Test/Unit/App/IndexerTest.php index 8d19abfaa69..7fc5ce78052 100644 --- a/app/code/Magento/Indexer/Test/Unit/App/IndexerTest.php +++ b/app/code/Magento/Indexer/Test/Unit/App/IndexerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\App; diff --git a/app/code/Magento/Indexer/Test/Unit/Block/Backend/ContainerTest.php b/app/code/Magento/Indexer/Test/Unit/Block/Backend/ContainerTest.php index 117e9a7700d..c19b17af640 100644 --- a/app/code/Magento/Indexer/Test/Unit/Block/Backend/ContainerTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Block/Backend/ContainerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Block\Backend; diff --git a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/ScheduledTest.php b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/ScheduledTest.php index 4c4da644adb..c07128af42b 100644 --- a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/ScheduledTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/ScheduledTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Block\Backend\Grid\Column\Renderer; diff --git a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/StatusTest.php b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/StatusTest.php index 4a73db6ae04..16272f026a7 100644 --- a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/StatusTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/StatusTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Block\Backend\Grid\Column\Renderer; diff --git a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/UpdatedTest.php b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/UpdatedTest.php index 9b28f7b7bab..ba6ebacd8de 100644 --- a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/UpdatedTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/UpdatedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Block\Backend\Grid\Column\Renderer; diff --git a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/ItemsUpdaterTest.php b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/ItemsUpdaterTest.php index 5740e464847..33b70234768 100644 --- a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/ItemsUpdaterTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/ItemsUpdaterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Block\Backend\Grid; diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/AbstractIndexerCommandCommonSetup.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/AbstractIndexerCommandCommonSetup.php index ceac09e5161..c8d3d046394 100644 --- a/app/code/Magento/Indexer/Test/Unit/Console/Command/AbstractIndexerCommandCommonSetup.php +++ b/app/code/Magento/Indexer/Test/Unit/Console/Command/AbstractIndexerCommandCommonSetup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Console\Command; diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerInfoCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerInfoCommandTest.php index 9fb3cef353e..54cba6b2b1b 100644 --- a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerInfoCommandTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerInfoCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Console\Command; diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerReindexCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerReindexCommandTest.php index 891f4897db4..710ef29e8db 100644 --- a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerReindexCommandTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerReindexCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Console\Command; diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerResetStateCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerResetStateCommandTest.php index 3854db16aad..69d3bdb9e56 100644 --- a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerResetStateCommandTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerResetStateCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Console\Command; diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerSetModeCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerSetModeCommandTest.php index b6517574f75..50f37c37137 100644 --- a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerSetModeCommandTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerSetModeCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Console\Command; diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerShowModeCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerShowModeCommandTest.php index 5b1cac2ad2b..4a53951be4e 100644 --- a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerShowModeCommandTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerShowModeCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Console\Command; diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerStatusCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerStatusCommandTest.php index 6abbeae301a..9e808f6021c 100644 --- a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerStatusCommandTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerStatusCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Console\Command; diff --git a/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/ListActionTest.php b/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/ListActionTest.php index fd7cffb936a..2b04e047b82 100644 --- a/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/ListActionTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/ListActionTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Controller\Adminhtml\Indexer; diff --git a/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassChangelogTest.php b/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassChangelogTest.php index 92791c0d9ff..e5beea4859a 100644 --- a/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassChangelogTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassChangelogTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Controller\Adminhtml\Indexer; diff --git a/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassOnTheFlyTest.php b/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassOnTheFlyTest.php index 2daa202b1bb..58becbe0eb7 100644 --- a/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassOnTheFlyTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassOnTheFlyTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Controller\Adminhtml\Indexer; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/CacheContextTest.php b/app/code/Magento/Indexer/Test/Unit/Model/CacheContextTest.php index 1b0275de046..131a3d3adc6 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/CacheContextTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/CacheContextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Config/DataTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Config/DataTest.php index e16c21b8f11..a4a97eae68c 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/Config/DataTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/Config/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\Config; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ConfigTest.php index cebfdb2bdba..84b373adbbd 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/ConfigTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorStub.php b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorStub.php index 9c8c72337c0..244464d0719 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorStub.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorStub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\Indexer; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorTest.php index feb2782d6bf..ddbcefeea38 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\Indexer; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/CollectionTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/CollectionTest.php index 031b2a2c93c..325d97fe8fe 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/CollectionTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\Indexer; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/StateTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/StateTest.php index 48cd6f064ff..711e20c8e1e 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/StateTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/StateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\Indexer; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/IndexerTest.php b/app/code/Magento/Indexer/Test/Unit/Model/IndexerTest.php index 839a7cfe917..82879348b7b 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/IndexerTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/IndexerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Message/InvalidTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Message/InvalidTest.php index 8206db3524e..80b18adabb7 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/Message/InvalidTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/Message/InvalidTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\Message; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Mview/View/StateTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Mview/View/StateTest.php index e0475e8802b..4925bc11e75 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/Mview/View/StateTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/Mview/View/StateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\Mview\View; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Processor/CleanCacheTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Processor/CleanCacheTest.php index db64dec986c..fb3cfa2c762 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/Processor/CleanCacheTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/Processor/CleanCacheTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\Processor; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ProcessorTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ProcessorTest.php index 0ebb710e64b..58f1e769b24 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/ProcessorTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/ProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceStub.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceStub.php index 414d017b263..9e82898dbca 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceStub.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceStub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceTest.php index d45e724cf56..46614320b30 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/State/CollectionTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/State/CollectionTest.php index 5f756c14045..e511de6a750 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/State/CollectionTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/State/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\ResourceModel\Indexer\State; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/StateTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/StateTest.php index b2d2d6f0c88..e89d1327685 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/StateTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/StateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\ResourceModel\Indexer; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/State/CollectionTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/State/CollectionTest.php index b442ee6d945..bb0e0345a9f 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/State/CollectionTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/State/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\ResourceModel\Mview\View\State; diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/StateTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/StateTest.php index d967d68df6d..3ebe2af5d6c 100644 --- a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/StateTest.php +++ b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/StateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Test\Unit\Model\ResourceModel\Mview\View; diff --git a/app/code/Magento/Indexer/etc/acl.xml b/app/code/Magento/Indexer/etc/acl.xml index 962749db87d..e6ca61a4d18 100644 --- a/app/code/Magento/Indexer/etc/acl.xml +++ b/app/code/Magento/Indexer/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Indexer/etc/adminhtml/di.xml b/app/code/Magento/Indexer/etc/adminhtml/di.xml index 5f6a5d7200d..76b8f8b8411 100644 --- a/app/code/Magento/Indexer/etc/adminhtml/di.xml +++ b/app/code/Magento/Indexer/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Indexer/etc/adminhtml/menu.xml b/app/code/Magento/Indexer/etc/adminhtml/menu.xml index 09fc0b2e5ff..432a0cf1a9d 100644 --- a/app/code/Magento/Indexer/etc/adminhtml/menu.xml +++ b/app/code/Magento/Indexer/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Indexer/etc/adminhtml/routes.xml b/app/code/Magento/Indexer/etc/adminhtml/routes.xml index 0e134cd64a0..ceccb8d0917 100644 --- a/app/code/Magento/Indexer/etc/adminhtml/routes.xml +++ b/app/code/Magento/Indexer/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Indexer/etc/cron_groups.xml b/app/code/Magento/Indexer/etc/cron_groups.xml index d3d7ccd1994..8d5309c9657 100644 --- a/app/code/Magento/Indexer/etc/cron_groups.xml +++ b/app/code/Magento/Indexer/etc/cron_groups.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -15,4 +15,4 @@ <history_failure_lifetime>600</history_failure_lifetime> <use_separate_process>1</use_separate_process> </group> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Indexer/etc/crontab.xml b/app/code/Magento/Indexer/etc/crontab.xml index 7bf3d2ed610..b3a701c1dd6 100644 --- a/app/code/Magento/Indexer/etc/crontab.xml +++ b/app/code/Magento/Indexer/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Indexer/etc/di.xml b/app/code/Magento/Indexer/etc/di.xml index 80b42bd2f72..1d3f125406f 100644 --- a/app/code/Magento/Indexer/etc/di.xml +++ b/app/code/Magento/Indexer/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Indexer/etc/module.xml b/app/code/Magento/Indexer/etc/module.xml index 01e57c942a3..a2beac15990 100644 --- a/app/code/Magento/Indexer/etc/module.xml +++ b/app/code/Magento/Indexer/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Indexer/registration.php b/app/code/Magento/Indexer/registration.php index e589abd9999..ac23ea0b4e6 100644 --- a/app/code/Magento/Indexer/registration.php +++ b/app/code/Magento/Indexer/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list.xml b/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list.xml index f73e65b3fb4..f1e3dc06b3f 100644 --- a/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list.xml +++ b/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list_grid.xml b/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list_grid.xml index 63ef0282383..98623890a90 100644 --- a/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list_grid.xml +++ b/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/Api/AdminTokenServiceInterface.php b/app/code/Magento/Integration/Api/AdminTokenServiceInterface.php index f7b12e6afb7..e7368e74f4e 100644 --- a/app/code/Magento/Integration/Api/AdminTokenServiceInterface.php +++ b/app/code/Magento/Integration/Api/AdminTokenServiceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Api/AuthorizationServiceInterface.php b/app/code/Magento/Integration/Api/AuthorizationServiceInterface.php index b6fd87e5bed..45221b2bb11 100644 --- a/app/code/Magento/Integration/Api/AuthorizationServiceInterface.php +++ b/app/code/Magento/Integration/Api/AuthorizationServiceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Api/CustomerTokenServiceInterface.php b/app/code/Magento/Integration/Api/CustomerTokenServiceInterface.php index 42dd1203955..842226b56d2 100644 --- a/app/code/Magento/Integration/Api/CustomerTokenServiceInterface.php +++ b/app/code/Magento/Integration/Api/CustomerTokenServiceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Api/IntegrationServiceInterface.php b/app/code/Magento/Integration/Api/IntegrationServiceInterface.php index 0d8e7845115..92a90fb231d 100644 --- a/app/code/Magento/Integration/Api/IntegrationServiceInterface.php +++ b/app/code/Magento/Integration/Api/IntegrationServiceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Api; diff --git a/app/code/Magento/Integration/Api/OauthServiceInterface.php b/app/code/Magento/Integration/Api/OauthServiceInterface.php index 451b1c6e500..0045dd7445e 100644 --- a/app/code/Magento/Integration/Api/OauthServiceInterface.php +++ b/app/code/Magento/Integration/Api/OauthServiceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Api; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration.php b/app/code/Magento/Integration/Block/Adminhtml/Integration.php index ce97ca43447..01f20be813a 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Integration.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Integration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tab/Webapi.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tab/Webapi.php index a75aec617f9..5a47f070a5a 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tab/Webapi.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tab/Webapi.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tabs.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tabs.php index d7687d38361..a62e0d7595e 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tabs.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tabs.php @@ -2,7 +2,7 @@ /** * Permissions tab for integration activation dialog. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Integration\Activate\Permissions; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit.php index 306b5799577..dabeb62f38c 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit.php @@ -2,7 +2,7 @@ /** * Integration edit container. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Form.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Form.php index 64a13c19d4b..6dd8369d788 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Form.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Integration\Edit; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Info.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Info.php index 2efa845b096..1074bb98901 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Info.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Integration\Edit\Tab; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Webapi.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Webapi.php index eca679a6f2d..e2158e4ed1c 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Webapi.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Webapi.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tabs.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tabs.php index 090f5742b51..1a321f28ef4 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tabs.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Integration\Edit; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Grid.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Grid.php index 443781d9bfb..2f484d1ba4c 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Integration/Grid.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Integration/Grid.php @@ -2,7 +2,7 @@ /** * Integration grid. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Tokens.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Tokens.php index 6059a168277..9bdcc32f99e 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Integration/Tokens.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Integration/Tokens.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button.php index 937dabd4e85..ffb01b7f93b 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Delete.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Delete.php index 2d75cac3c84..28ad3680da9 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Delete.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Delete.php @@ -2,7 +2,7 @@ /** * Render HTML <button> tag with "edit" action for the integration grid. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Widget\Grid\Column\Renderer\Button; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Edit.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Edit.php index 1e87b194ac6..81ed706a578 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Edit.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Edit.php @@ -2,7 +2,7 @@ /** * Render HTML <button> tag with "edit" action for the integration grid. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Widget\Grid\Column\Renderer\Button; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link.php index 861af9f2a4c..da84d2f4510 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link.php @@ -2,7 +2,7 @@ /** * Renders HTML anchor or nothing depending on isVisible(). * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link/Activate.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link/Activate.php index 337049b3f73..4bafc47df1d 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link/Activate.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link/Activate.php @@ -2,7 +2,7 @@ /** * Renders "Activate" link. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Widget\Grid\Column\Renderer\Link; diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Name.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Name.php index c1d849f8b71..af122a7d095 100644 --- a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Name.php +++ b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Name.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Block\Adminhtml\Widget\Grid\Column\Renderer; diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration.php index a9ce91efb0b..c13fd5e278e 100644 --- a/app/code/Magento/Integration/Controller/Adminhtml/Integration.php +++ b/app/code/Magento/Integration/Controller/Adminhtml/Integration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Adminhtml; diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Delete.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Delete.php index 5a7f0165003..4bd04beb775 100644 --- a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Delete.php +++ b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Edit.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Edit.php index 09119359078..27d5bda41e3 100644 --- a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Edit.php +++ b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Grid.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Grid.php index 59e533ccafa..1590e405a7e 100644 --- a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Grid.php +++ b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Index.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Index.php index bb03f947e3c..e82cf315883 100644 --- a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Index.php +++ b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/LoginSuccessCallback.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/LoginSuccessCallback.php index 1748c254301..5f765dd0656 100644 --- a/app/code/Magento/Integration/Controller/Adminhtml/Integration/LoginSuccessCallback.php +++ b/app/code/Magento/Integration/Controller/Adminhtml/Integration/LoginSuccessCallback.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/NewAction.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/NewAction.php index 24068b2d261..e7a93c55ba9 100644 --- a/app/code/Magento/Integration/Controller/Adminhtml/Integration/NewAction.php +++ b/app/code/Magento/Integration/Controller/Adminhtml/Integration/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/PermissionsDialog.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/PermissionsDialog.php index 81a7752100d..4e763c04c34 100644 --- a/app/code/Magento/Integration/Controller/Adminhtml/Integration/PermissionsDialog.php +++ b/app/code/Magento/Integration/Controller/Adminhtml/Integration/PermissionsDialog.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Save.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Save.php index 750664e4101..38531647fa1 100644 --- a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Save.php +++ b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensDialog.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensDialog.php index abb245cd253..edc243c2f29 100644 --- a/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensDialog.php +++ b/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensDialog.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensExchange.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensExchange.php index 2251ed525db..52893c83d9d 100644 --- a/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensExchange.php +++ b/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensExchange.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Adminhtml\Integration; diff --git a/app/code/Magento/Integration/Controller/Token/Access.php b/app/code/Magento/Integration/Controller/Token/Access.php index f420e81a5b5..f3a5eed298f 100644 --- a/app/code/Magento/Integration/Controller/Token/Access.php +++ b/app/code/Magento/Integration/Controller/Token/Access.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Token; diff --git a/app/code/Magento/Integration/Controller/Token/Request.php b/app/code/Magento/Integration/Controller/Token/Request.php index d35a2b12b4b..f31bd4e0c7f 100644 --- a/app/code/Magento/Integration/Controller/Token/Request.php +++ b/app/code/Magento/Integration/Controller/Token/Request.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Controller\Token; diff --git a/app/code/Magento/Integration/Cron/CleanExpiredAuthenticationFailures.php b/app/code/Magento/Integration/Cron/CleanExpiredAuthenticationFailures.php index f6dc059b339..6da5b3c0882 100644 --- a/app/code/Magento/Integration/Cron/CleanExpiredAuthenticationFailures.php +++ b/app/code/Magento/Integration/Cron/CleanExpiredAuthenticationFailures.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Cron; diff --git a/app/code/Magento/Integration/Helper/Data.php b/app/code/Magento/Integration/Helper/Data.php index e9d3845d5bf..4a24cf12706 100644 --- a/app/code/Magento/Integration/Helper/Data.php +++ b/app/code/Magento/Integration/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Helper; diff --git a/app/code/Magento/Integration/Helper/Oauth/Data.php b/app/code/Magento/Integration/Helper/Oauth/Data.php index 9d4fb987618..dabb5ff2923 100644 --- a/app/code/Magento/Integration/Helper/Oauth/Data.php +++ b/app/code/Magento/Integration/Helper/Oauth/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Helper\Oauth; diff --git a/app/code/Magento/Integration/Model/AdminTokenService.php b/app/code/Magento/Integration/Model/AdminTokenService.php index e5c8fbfc560..ced3dfaf501 100644 --- a/app/code/Magento/Integration/Model/AdminTokenService.php +++ b/app/code/Magento/Integration/Model/AdminTokenService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Model/AuthorizationService.php b/app/code/Magento/Integration/Model/AuthorizationService.php index 679b5fca4cc..70974b6ea44 100644 --- a/app/code/Magento/Integration/Model/AuthorizationService.php +++ b/app/code/Magento/Integration/Model/AuthorizationService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Model/Cache/Type.php b/app/code/Magento/Integration/Model/Cache/Type.php index 33586c04e37..ffe5015382f 100644 --- a/app/code/Magento/Integration/Model/Cache/Type.php +++ b/app/code/Magento/Integration/Model/Cache/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Cache; diff --git a/app/code/Magento/Integration/Model/Cache/TypeConsolidated.php b/app/code/Magento/Integration/Model/Cache/TypeConsolidated.php index 39c41293833..e075675bb39 100644 --- a/app/code/Magento/Integration/Model/Cache/TypeConsolidated.php +++ b/app/code/Magento/Integration/Model/Cache/TypeConsolidated.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Cache; diff --git a/app/code/Magento/Integration/Model/Cache/TypeIntegration.php b/app/code/Magento/Integration/Model/Cache/TypeIntegration.php index a017bfa4482..b541e730dfe 100644 --- a/app/code/Magento/Integration/Model/Cache/TypeIntegration.php +++ b/app/code/Magento/Integration/Model/Cache/TypeIntegration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Model/Config.php b/app/code/Magento/Integration/Model/Config.php index 3cea4d33743..a14299c0d7d 100644 --- a/app/code/Magento/Integration/Model/Config.php +++ b/app/code/Magento/Integration/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model; diff --git a/app/code/Magento/Integration/Model/Config/Consolidated/Converter.php b/app/code/Magento/Integration/Model/Config/Consolidated/Converter.php index b2206f4879c..e68e7e3cc6d 100644 --- a/app/code/Magento/Integration/Model/Config/Consolidated/Converter.php +++ b/app/code/Magento/Integration/Model/Config/Consolidated/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Config\Consolidated; diff --git a/app/code/Magento/Integration/Model/Config/Consolidated/Reader.php b/app/code/Magento/Integration/Model/Config/Consolidated/Reader.php index 40a678a9fe1..6f56bda2751 100644 --- a/app/code/Magento/Integration/Model/Config/Consolidated/Reader.php +++ b/app/code/Magento/Integration/Model/Config/Consolidated/Reader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Config\Consolidated; diff --git a/app/code/Magento/Integration/Model/Config/Consolidated/SchemaLocator.php b/app/code/Magento/Integration/Model/Config/Consolidated/SchemaLocator.php index 2f008f26818..262ad6909d6 100644 --- a/app/code/Magento/Integration/Model/Config/Consolidated/SchemaLocator.php +++ b/app/code/Magento/Integration/Model/Config/Consolidated/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Config\Consolidated; diff --git a/app/code/Magento/Integration/Model/Config/Converter.php b/app/code/Magento/Integration/Model/Config/Converter.php index de43903e124..5fbfc981b38 100644 --- a/app/code/Magento/Integration/Model/Config/Converter.php +++ b/app/code/Magento/Integration/Model/Config/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Config; diff --git a/app/code/Magento/Integration/Model/Config/Integration/Converter.php b/app/code/Magento/Integration/Model/Config/Integration/Converter.php index 5d870d0b35e..1c68f6d429c 100644 --- a/app/code/Magento/Integration/Model/Config/Integration/Converter.php +++ b/app/code/Magento/Integration/Model/Config/Integration/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Config\Integration; diff --git a/app/code/Magento/Integration/Model/Config/Integration/Reader.php b/app/code/Magento/Integration/Model/Config/Integration/Reader.php index 0c28d210117..b5755e8b48b 100644 --- a/app/code/Magento/Integration/Model/Config/Integration/Reader.php +++ b/app/code/Magento/Integration/Model/Config/Integration/Reader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Config\Integration; diff --git a/app/code/Magento/Integration/Model/Config/Integration/SchemaLocator.php b/app/code/Magento/Integration/Model/Config/Integration/SchemaLocator.php index 5835517251b..1e1a0d67e93 100644 --- a/app/code/Magento/Integration/Model/Config/Integration/SchemaLocator.php +++ b/app/code/Magento/Integration/Model/Config/Integration/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Config\Integration; diff --git a/app/code/Magento/Integration/Model/Config/Reader.php b/app/code/Magento/Integration/Model/Config/Reader.php index c646f4a8f64..1bbc5e7e1fb 100644 --- a/app/code/Magento/Integration/Model/Config/Reader.php +++ b/app/code/Magento/Integration/Model/Config/Reader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Config; diff --git a/app/code/Magento/Integration/Model/Config/SchemaLocator.php b/app/code/Magento/Integration/Model/Config/SchemaLocator.php index 94a119e4937..fa861e7a438 100644 --- a/app/code/Magento/Integration/Model/Config/SchemaLocator.php +++ b/app/code/Magento/Integration/Model/Config/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Config; diff --git a/app/code/Magento/Integration/Model/ConfigBasedIntegrationManager.php b/app/code/Magento/Integration/Model/ConfigBasedIntegrationManager.php index 9683cd567f6..9582eed82ba 100644 --- a/app/code/Magento/Integration/Model/ConfigBasedIntegrationManager.php +++ b/app/code/Magento/Integration/Model/ConfigBasedIntegrationManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model; diff --git a/app/code/Magento/Integration/Model/ConsolidatedConfig.php b/app/code/Magento/Integration/Model/ConsolidatedConfig.php index 9208d19e702..323280b07c0 100644 --- a/app/code/Magento/Integration/Model/ConsolidatedConfig.php +++ b/app/code/Magento/Integration/Model/ConsolidatedConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model; diff --git a/app/code/Magento/Integration/Model/CredentialsValidator.php b/app/code/Magento/Integration/Model/CredentialsValidator.php index 79e19971a5b..916a06eef0c 100644 --- a/app/code/Magento/Integration/Model/CredentialsValidator.php +++ b/app/code/Magento/Integration/Model/CredentialsValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Model/CustomerTokenService.php b/app/code/Magento/Integration/Model/CustomerTokenService.php index d4e495a6720..9456ce5c7ad 100644 --- a/app/code/Magento/Integration/Model/CustomerTokenService.php +++ b/app/code/Magento/Integration/Model/CustomerTokenService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Model/Integration.php b/app/code/Magento/Integration/Model/Integration.php index bf511f8a424..770513930db 100644 --- a/app/code/Magento/Integration/Model/Integration.php +++ b/app/code/Magento/Integration/Model/Integration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model; diff --git a/app/code/Magento/Integration/Model/Integration/Source/Status.php b/app/code/Magento/Integration/Model/Integration/Source/Status.php index 47477df3584..7d383a5e72c 100644 --- a/app/code/Magento/Integration/Model/Integration/Source/Status.php +++ b/app/code/Magento/Integration/Model/Integration/Source/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Integration\Source; diff --git a/app/code/Magento/Integration/Model/IntegrationConfig.php b/app/code/Magento/Integration/Model/IntegrationConfig.php index cde4fc20d22..fed13e62537 100644 --- a/app/code/Magento/Integration/Model/IntegrationConfig.php +++ b/app/code/Magento/Integration/Model/IntegrationConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Model/IntegrationService.php b/app/code/Magento/Integration/Model/IntegrationService.php index 30627cee89e..67e459b33f3 100644 --- a/app/code/Magento/Integration/Model/IntegrationService.php +++ b/app/code/Magento/Integration/Model/IntegrationService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model; diff --git a/app/code/Magento/Integration/Model/Message/RecreatedIntegration.php b/app/code/Magento/Integration/Model/Message/RecreatedIntegration.php index 502312037bd..53d54869c14 100644 --- a/app/code/Magento/Integration/Model/Message/RecreatedIntegration.php +++ b/app/code/Magento/Integration/Model/Message/RecreatedIntegration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Model/Oauth/Consumer.php b/app/code/Magento/Integration/Model/Oauth/Consumer.php index b8e6b1416e1..dfe17b7466b 100644 --- a/app/code/Magento/Integration/Model/Oauth/Consumer.php +++ b/app/code/Magento/Integration/Model/Oauth/Consumer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Oauth; diff --git a/app/code/Magento/Integration/Model/Oauth/Consumer/Validator/KeyLength.php b/app/code/Magento/Integration/Model/Oauth/Consumer/Validator/KeyLength.php index 9ae943891c4..24a22dfb67e 100644 --- a/app/code/Magento/Integration/Model/Oauth/Consumer/Validator/KeyLength.php +++ b/app/code/Magento/Integration/Model/Oauth/Consumer/Validator/KeyLength.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Oauth\Consumer\Validator; diff --git a/app/code/Magento/Integration/Model/Oauth/Nonce.php b/app/code/Magento/Integration/Model/Oauth/Nonce.php index 97b88c05ec7..0e31362e6eb 100644 --- a/app/code/Magento/Integration/Model/Oauth/Nonce.php +++ b/app/code/Magento/Integration/Model/Oauth/Nonce.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Oauth; diff --git a/app/code/Magento/Integration/Model/Oauth/Nonce/Generator.php b/app/code/Magento/Integration/Model/Oauth/Nonce/Generator.php index 27dfe94a0d7..ba7ca69a694 100644 --- a/app/code/Magento/Integration/Model/Oauth/Nonce/Generator.php +++ b/app/code/Magento/Integration/Model/Oauth/Nonce/Generator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Oauth\Nonce; diff --git a/app/code/Magento/Integration/Model/Oauth/Token.php b/app/code/Magento/Integration/Model/Oauth/Token.php index 3651a100f16..04e80327fc9 100644 --- a/app/code/Magento/Integration/Model/Oauth/Token.php +++ b/app/code/Magento/Integration/Model/Oauth/Token.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Oauth; diff --git a/app/code/Magento/Integration/Model/Oauth/Token/Provider.php b/app/code/Magento/Integration/Model/Oauth/Token/Provider.php index bc1667d21c1..120092c2c4c 100644 --- a/app/code/Magento/Integration/Model/Oauth/Token/Provider.php +++ b/app/code/Magento/Integration/Model/Oauth/Token/Provider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/Config.php b/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/Config.php index a4f76565a3b..9de379d53ee 100644 --- a/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/Config.php +++ b/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Oauth\Token\RequestLog; diff --git a/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/ReaderInterface.php b/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/ReaderInterface.php index 9727464c93b..11be1b08884 100644 --- a/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/ReaderInterface.php +++ b/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/ReaderInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Oauth\Token\RequestLog; diff --git a/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/WriterInterface.php b/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/WriterInterface.php index d91051bee28..3a2a1147b8e 100644 --- a/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/WriterInterface.php +++ b/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/WriterInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Oauth\Token\RequestLog; diff --git a/app/code/Magento/Integration/Model/Oauth/Token/RequestThrottler.php b/app/code/Magento/Integration/Model/Oauth/Token/RequestThrottler.php index 59ffd26de71..9ce3c26ae7e 100644 --- a/app/code/Magento/Integration/Model/Oauth/Token/RequestThrottler.php +++ b/app/code/Magento/Integration/Model/Oauth/Token/RequestThrottler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\Oauth\Token; diff --git a/app/code/Magento/Integration/Model/OauthService.php b/app/code/Magento/Integration/Model/OauthService.php index ad8d5b1b206..cb833e0792d 100644 --- a/app/code/Magento/Integration/Model/OauthService.php +++ b/app/code/Magento/Integration/Model/OauthService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model; diff --git a/app/code/Magento/Integration/Model/Plugin/Integration.php b/app/code/Magento/Integration/Model/Plugin/Integration.php index 9e7154e5de1..ada859c323e 100644 --- a/app/code/Magento/Integration/Model/Plugin/Integration.php +++ b/app/code/Magento/Integration/Model/Plugin/Integration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Model/ResourceModel/Integration.php b/app/code/Magento/Integration/Model/ResourceModel/Integration.php index c11eaca914c..3ef422ba665 100644 --- a/app/code/Magento/Integration/Model/ResourceModel/Integration.php +++ b/app/code/Magento/Integration/Model/ResourceModel/Integration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Model/ResourceModel/Integration/Collection.php b/app/code/Magento/Integration/Model/ResourceModel/Integration/Collection.php index 5bc9259b54d..2bde18d920b 100644 --- a/app/code/Magento/Integration/Model/ResourceModel/Integration/Collection.php +++ b/app/code/Magento/Integration/Model/ResourceModel/Integration/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\ResourceModel\Integration; diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer.php index 636c0f9356b..5ea15846b19 100644 --- a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer.php +++ b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\ResourceModel\Oauth; diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer/Collection.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer/Collection.php index d169b783418..607b00cd259 100644 --- a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer/Collection.php +++ b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\ResourceModel\Oauth\Consumer; diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce.php index 7b3af833955..fd4bd0b292d 100644 --- a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce.php +++ b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\ResourceModel\Oauth; diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce/Collection.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce/Collection.php index 63768a6e8ed..c1e71b647f5 100644 --- a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce/Collection.php +++ b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\ResourceModel\Oauth\Nonce; diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token.php index c0e7689308e..aa5df7bb977 100644 --- a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token.php +++ b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\ResourceModel\Oauth; diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/Collection.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/Collection.php index a3839ed15c5..0c7880586f0 100644 --- a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/Collection.php +++ b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\ResourceModel\Oauth\Token; diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/RequestLog.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/RequestLog.php index ca46c075d4c..fe56093ada0 100644 --- a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/RequestLog.php +++ b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/RequestLog.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Model\ResourceModel\Oauth\Token; diff --git a/app/code/Magento/Integration/Setup/InstallSchema.php b/app/code/Magento/Integration/Setup/InstallSchema.php index 2413c95618f..a51ac938043 100644 --- a/app/code/Magento/Integration/Setup/InstallSchema.php +++ b/app/code/Magento/Integration/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Setup/Recurring.php b/app/code/Magento/Integration/Setup/Recurring.php index 2ccc62c80d8..278144d4636 100644 --- a/app/code/Magento/Integration/Setup/Recurring.php +++ b/app/code/Magento/Integration/Setup/Recurring.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Setup/UpgradeSchema.php b/app/code/Magento/Integration/Setup/UpgradeSchema.php index 6d755bb12fd..05b648aed5e 100644 --- a/app/code/Magento/Integration/Setup/UpgradeSchema.php +++ b/app/code/Magento/Integration/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Setup; diff --git a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/InfoTest.php b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/InfoTest.php index 002aced31bd..03ab99f6306 100644 --- a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/InfoTest.php +++ b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/InfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/WebapiTest.php b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/WebapiTest.php index d4c60966ab2..456e2bc292b 100644 --- a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/WebapiTest.php +++ b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/WebapiTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/ButtonTest.php b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/ButtonTest.php index 0d9677d7eb5..a8e0476a528 100644 --- a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/ButtonTest.php +++ b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/ButtonTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/LinkTest.php b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/LinkTest.php index f85aeb944ac..f3f2612de6a 100644 --- a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/LinkTest.php +++ b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/NameTest.php b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/NameTest.php index da0b1727777..3d0f32b0591 100644 --- a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/NameTest.php +++ b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/NameTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/DeleteTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/DeleteTest.php index 5b9d96b70af..2ce8c5d6dcf 100644 --- a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/DeleteTest.php +++ b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/DeleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/EditTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/EditTest.php index 2056c0b0407..f6ae934b228 100644 --- a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/EditTest.php +++ b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/EditTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/IndexTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/IndexTest.php index 1ecfdd9fb91..7f0776b6d68 100644 --- a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/IndexTest.php +++ b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/IndexTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/NewActionTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/NewActionTest.php index dbc1e89afde..6b9e80a1d40 100644 --- a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/NewActionTest.php +++ b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/NewActionTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/PermissionsDialogTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/PermissionsDialogTest.php index a4e1318128b..4adc05cfd59 100644 --- a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/PermissionsDialogTest.php +++ b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/PermissionsDialogTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/SaveTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/SaveTest.php index 93ee9cbd535..e3747e11557 100644 --- a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/SaveTest.php +++ b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/TokensDialogTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/TokensDialogTest.php index 7f6912c5d32..625a782dc5d 100644 --- a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/TokensDialogTest.php +++ b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/TokensDialogTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/IntegrationTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/IntegrationTest.php index 22bb6e4ff2d..6c04f4c59bf 100644 --- a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/IntegrationTest.php +++ b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/IntegrationTest.php @@ -2,7 +2,7 @@ /** * \Magento\Integration\Controller\Adminhtml * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Controller\Adminhtml; diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Token/AccessTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Token/AccessTest.php index 08012a9d178..5c3c5d0e213 100644 --- a/app/code/Magento/Integration/Test/Unit/Controller/Token/AccessTest.php +++ b/app/code/Magento/Integration/Test/Unit/Controller/Token/AccessTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Token/RequestTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Token/RequestTest.php index 1071e156c1f..683e883284e 100644 --- a/app/code/Magento/Integration/Test/Unit/Controller/Token/RequestTest.php +++ b/app/code/Magento/Integration/Test/Unit/Controller/Token/RequestTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Helper/DataTest.php b/app/code/Magento/Integration/Test/Unit/Helper/DataTest.php index 7032f04082c..08d57677734 100644 --- a/app/code/Magento/Integration/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Integration/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Helper; diff --git a/app/code/Magento/Integration/Test/Unit/Helper/Oauth/ConsumerTest.php b/app/code/Magento/Integration/Test/Unit/Helper/Oauth/ConsumerTest.php index 166ff95e389..eaaaa791262 100644 --- a/app/code/Magento/Integration/Test/Unit/Helper/Oauth/ConsumerTest.php +++ b/app/code/Magento/Integration/Test/Unit/Helper/Oauth/ConsumerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Helper\Oauth; diff --git a/app/code/Magento/Integration/Test/Unit/Helper/Oauth/DataTest.php b/app/code/Magento/Integration/Test/Unit/Helper/Oauth/DataTest.php index c0f8283d6cf..712392e64da 100644 --- a/app/code/Magento/Integration/Test/Unit/Helper/Oauth/DataTest.php +++ b/app/code/Magento/Integration/Test/Unit/Helper/Oauth/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Helper\Oauth; diff --git a/app/code/Magento/Integration/Test/Unit/Helper/Oauth/OauthTest.php b/app/code/Magento/Integration/Test/Unit/Helper/Oauth/OauthTest.php index 1150f6b1615..d4bdea704bd 100644 --- a/app/code/Magento/Integration/Test/Unit/Helper/Oauth/OauthTest.php +++ b/app/code/Magento/Integration/Test/Unit/Helper/Oauth/OauthTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Helper\Oauth; diff --git a/app/code/Magento/Integration/Test/Unit/Helper/_files/acl-map.php b/app/code/Magento/Integration/Test/Unit/Helper/_files/acl-map.php index 3d55f8f66a1..b0165839002 100644 --- a/app/code/Magento/Integration/Test/Unit/Helper/_files/acl-map.php +++ b/app/code/Magento/Integration/Test/Unit/Helper/_files/acl-map.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Integration/Test/Unit/Helper/_files/acl.php b/app/code/Magento/Integration/Test/Unit/Helper/_files/acl.php index e26bf3ba882..b2e01153dab 100644 --- a/app/code/Magento/Integration/Test/Unit/Helper/_files/acl.php +++ b/app/code/Magento/Integration/Test/Unit/Helper/_files/acl.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Integration/Test/Unit/Model/AdminTokenServiceTest.php b/app/code/Magento/Integration/Test/Unit/Model/AdminTokenServiceTest.php index 7f838ae52ab..230bfd952f5 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/AdminTokenServiceTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/AdminTokenServiceTest.php @@ -2,7 +2,7 @@ /** * Test for \Magento\Integration\Model\AdminTokenService * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Model/AuthorizationServiceTest.php b/app/code/Magento/Integration/Test/Unit/Model/AuthorizationServiceTest.php index 18d768d737a..a65f7da27a8 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/AuthorizationServiceTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/AuthorizationServiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/ConverterTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/ConverterTest.php index b9c6c5b3dc4..bc59d638514 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/ConverterTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Config\Consolidated; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/SchemaLocatorTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/SchemaLocatorTest.php index 64c901bfb13..48aeeaf9ab5 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/SchemaLocatorTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Config\Consolidated; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/XsdTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/XsdTest.php index 3df9ed5b92d..2650862683c 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/XsdTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Config\Consolidated; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/acl.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/acl.php index ad2f42e485e..4409c574617 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/acl.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/acl.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.php index 443d7fec2f3..d1aae60c570 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.xml b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.xml index 58f4be704da..9a448cbd4e6 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.xml +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/ConverterTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/ConverterTest.php index 4bb95a82ab9..5e4a1dcc22f 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/ConverterTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Config; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/ConverterTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/ConverterTest.php index fb3ba4450a6..c7359658412 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/ConverterTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Config\Integration; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/SchemaLocatorTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/SchemaLocatorTest.php index ab3902508e7..bfa0385fa1d 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/SchemaLocatorTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Config\Integration; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/XsdTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/XsdTest.php index f50c7ab6571..f41b7e8b414 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/XsdTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Config\Integration; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.php index 7dbecfa45f1..b3dea701f36 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.xml b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.xml index 6af0506b541..27da6a226e7 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.xml +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/SchemaLocatorTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/SchemaLocatorTest.php index ff09308ea93..c8bef675354 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Config; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/XsdTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/XsdTest.php index 6966b72a9bd..8573ae6f959 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/XsdTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Config; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/_files/config.xml b/app/code/Magento/Integration/Test/Unit/Model/Config/_files/config.xml index 6410a50a0ba..ceb44eeaba1 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/_files/config.xml +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/_files/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/_files/integration.php b/app/code/Magento/Integration/Test/Unit/Model/Config/_files/integration.php index ffb41b9b3a9..d73b0644f97 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Config/_files/integration.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Config/_files/integration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Integration/Test/Unit/Model/ConsolidatedConfigTest.php b/app/code/Magento/Integration/Test/Unit/Model/ConsolidatedConfigTest.php index 22b50a8aef8..d62a61d81d0 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/ConsolidatedConfigTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/ConsolidatedConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model; diff --git a/app/code/Magento/Integration/Test/Unit/Model/CredentialsValidatorTest.php b/app/code/Magento/Integration/Test/Unit/Model/CredentialsValidatorTest.php index 94808b6c7a2..04d21c2c06b 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/CredentialsValidatorTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/CredentialsValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model; diff --git a/app/code/Magento/Integration/Test/Unit/Model/CustomerTokenServiceTest.php b/app/code/Magento/Integration/Test/Unit/Model/CustomerTokenServiceTest.php index 59d4c75a492..86c3cf3e4ff 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/CustomerTokenServiceTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/CustomerTokenServiceTest.php @@ -2,7 +2,7 @@ /** * Test for \Magento\Integration\Model\CustomerTokenService * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Model/Integration/Source/StatusTest.php b/app/code/Magento/Integration/Test/Unit/Model/Integration/Source/StatusTest.php index 17fb6832fd0..a2c0e08ad9d 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Integration/Source/StatusTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Integration/Source/StatusTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Integration\Source; diff --git a/app/code/Magento/Integration/Test/Unit/Model/IntegrationConfigTest.php b/app/code/Magento/Integration/Test/Unit/Model/IntegrationConfigTest.php index 14871420a62..b809f834607 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/IntegrationConfigTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/IntegrationConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model; diff --git a/app/code/Magento/Integration/Test/Unit/Model/IntegrationServiceTest.php b/app/code/Magento/Integration/Test/Unit/Model/IntegrationServiceTest.php index ad89a67350b..62907a5d299 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/IntegrationServiceTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/IntegrationServiceTest.php @@ -2,7 +2,7 @@ /** * Test for \Magento\Integration\Model\IntegrationService * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model; diff --git a/app/code/Magento/Integration/Test/Unit/Model/IntegrationTest.php b/app/code/Magento/Integration/Test/Unit/Model/IntegrationTest.php index d4c62c73086..ac5e545fe9b 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/IntegrationTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/IntegrationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model; diff --git a/app/code/Magento/Integration/Test/Unit/Model/ManagerTest.php b/app/code/Magento/Integration/Test/Unit/Model/ManagerTest.php index a457baa2822..1fc35c08509 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/ManagerTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/ManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Oauth/Consumer/Validator/KeyLengthTest.php b/app/code/Magento/Integration/Test/Unit/Model/Oauth/Consumer/Validator/KeyLengthTest.php index a29d283c2c5..0483ea1ec8d 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Oauth/Consumer/Validator/KeyLengthTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Oauth/Consumer/Validator/KeyLengthTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Model/Oauth/ConsumerTest.php b/app/code/Magento/Integration/Test/Unit/Model/Oauth/ConsumerTest.php index 8e67bb389a4..3da67914aeb 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Oauth/ConsumerTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Oauth/ConsumerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Oauth; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Oauth/NonceTest.php b/app/code/Magento/Integration/Test/Unit/Model/Oauth/NonceTest.php index 9dc5590bf27..94f8cb48382 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Oauth/NonceTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Oauth/NonceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Model/Oauth/Token/ProviderTest.php b/app/code/Magento/Integration/Test/Unit/Model/Oauth/Token/ProviderTest.php index d247e8b67fa..04b412fa357 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Oauth/Token/ProviderTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Oauth/Token/ProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Model/Oauth/TokenTest.php b/app/code/Magento/Integration/Test/Unit/Model/Oauth/TokenTest.php index e25fca9329d..109d145311d 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Oauth/TokenTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Oauth/TokenTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/Test/Unit/Model/OauthServiceTest.php b/app/code/Magento/Integration/Test/Unit/Model/OauthServiceTest.php index 5699b21e35d..a25c3b50cdf 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/OauthServiceTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/OauthServiceTest.php @@ -2,7 +2,7 @@ /** * Test for \Magento\Integration\Model\OauthService * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model; diff --git a/app/code/Magento/Integration/Test/Unit/Model/Plugin/IntegrationTest.php b/app/code/Magento/Integration/Test/Unit/Model/Plugin/IntegrationTest.php index cf48094c16e..0ae65336d7b 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/Plugin/IntegrationTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/Plugin/IntegrationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Integration/CollectionTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Integration/CollectionTest.php index 0a8c6957093..7002754e932 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Integration/CollectionTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Integration/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\ResourceModel\Integration; diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/IntegrationTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/IntegrationTest.php index e61b234cbc4..4c988372a5b 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/IntegrationTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/IntegrationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/ConsumerTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/ConsumerTest.php index ee50510dee9..b6f14d7617c 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/ConsumerTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/ConsumerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\ResourceModel\Oauth; diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/NonceTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/NonceTest.php index d6d8946e6de..6f8d834dd09 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/NonceTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/NonceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\ResourceModel\Oauth; diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/Token/CollectionTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/Token/CollectionTest.php index 8d2127b7ffe..6a240458c5f 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/Token/CollectionTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/Token/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\ResourceModel\Oauth\Token; diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/TokenTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/TokenTest.php index f4a9821ca69..eb5e1748095 100644 --- a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/TokenTest.php +++ b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/TokenTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Test\Unit\Model\ResourceModel\Oauth; diff --git a/app/code/Magento/Integration/Test/Unit/Oauth/OauthTest.php b/app/code/Magento/Integration/Test/Unit/Oauth/OauthTest.php index eaa90e321e1..265124db04a 100644 --- a/app/code/Magento/Integration/Test/Unit/Oauth/OauthTest.php +++ b/app/code/Magento/Integration/Test/Unit/Oauth/OauthTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/etc/adminhtml/di.xml b/app/code/Magento/Integration/etc/adminhtml/di.xml index db7d058c779..eabd7fc6227 100644 --- a/app/code/Magento/Integration/etc/adminhtml/di.xml +++ b/app/code/Magento/Integration/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/adminhtml/menu.xml b/app/code/Magento/Integration/etc/adminhtml/menu.xml index fbd49f80ec0..a30d7e59f17 100644 --- a/app/code/Magento/Integration/etc/adminhtml/menu.xml +++ b/app/code/Magento/Integration/etc/adminhtml/menu.xml @@ -3,7 +3,7 @@ /** * Configuration of Integration module menu in Magento admin panel. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/adminhtml/routes.xml b/app/code/Magento/Integration/etc/adminhtml/routes.xml index a7f062d3d1e..7697bd7579a 100644 --- a/app/code/Magento/Integration/etc/adminhtml/routes.xml +++ b/app/code/Magento/Integration/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/adminhtml/system.xml b/app/code/Magento/Integration/etc/adminhtml/system.xml index 08781e696b5..7ec0c02d94c 100644 --- a/app/code/Magento/Integration/etc/adminhtml/system.xml +++ b/app/code/Magento/Integration/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/cache.xml b/app/code/Magento/Integration/etc/cache.xml index 0e763e66e58..3153f7f6f95 100644 --- a/app/code/Magento/Integration/etc/cache.xml +++ b/app/code/Magento/Integration/etc/cache.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/config.xml b/app/code/Magento/Integration/etc/config.xml index 19341af43ba..4b3ca7ef5ff 100644 --- a/app/code/Magento/Integration/etc/config.xml +++ b/app/code/Magento/Integration/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/crontab.xml b/app/code/Magento/Integration/etc/crontab.xml index 7da25c512c4..1ed609ad02a 100644 --- a/app/code/Magento/Integration/etc/crontab.xml +++ b/app/code/Magento/Integration/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/di.xml b/app/code/Magento/Integration/etc/di.xml index 8b0e04be8cb..b40c7c725cd 100644 --- a/app/code/Magento/Integration/etc/di.xml +++ b/app/code/Magento/Integration/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/frontend/routes.xml b/app/code/Magento/Integration/etc/frontend/routes.xml index b3e2eb9cac1..ebae1e2c5a7 100644 --- a/app/code/Magento/Integration/etc/frontend/routes.xml +++ b/app/code/Magento/Integration/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/integration/api.xsd b/app/code/Magento/Integration/etc/integration/api.xsd index 3f11b83e81f..573ee3b0d63 100644 --- a/app/code/Magento/Integration/etc/integration/api.xsd +++ b/app/code/Magento/Integration/etc/integration/api.xsd @@ -3,7 +3,7 @@ /** * Schema for API integration configuration. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @deprecated @@ -43,4 +43,4 @@ <xs:minLength value="2"/> </xs:restriction> </xs:simpleType> -</xs:schema> \ No newline at end of file +</xs:schema> diff --git a/app/code/Magento/Integration/etc/integration/config.xsd b/app/code/Magento/Integration/etc/integration/config.xsd index f0cd9caed9e..09bee02d77a 100644 --- a/app/code/Magento/Integration/etc/integration/config.xsd +++ b/app/code/Magento/Integration/etc/integration/config.xsd @@ -3,7 +3,7 @@ /** * Schema for integration configuration. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @deprecated @@ -38,4 +38,4 @@ <xs:pattern value="[^@]+@[^\.]+\..+"/> </xs:restriction> </xs:simpleType> -</xs:schema> \ No newline at end of file +</xs:schema> diff --git a/app/code/Magento/Integration/etc/integration/integration.xsd b/app/code/Magento/Integration/etc/integration/integration.xsd index c731a3adc15..3a0429774c6 100644 --- a/app/code/Magento/Integration/etc/integration/integration.xsd +++ b/app/code/Magento/Integration/etc/integration/integration.xsd @@ -3,7 +3,7 @@ /** * Schema for integration configuration. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/integration/integration_base.xsd b/app/code/Magento/Integration/etc/integration/integration_base.xsd index 851cdea0f5b..0fa1fffd5c8 100644 --- a/app/code/Magento/Integration/etc/integration/integration_base.xsd +++ b/app/code/Magento/Integration/etc/integration/integration_base.xsd @@ -3,7 +3,7 @@ /** * Schema for integration configuration. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/integration/integration_file.xsd b/app/code/Magento/Integration/etc/integration/integration_file.xsd index 9ec38442683..ea66a27fb0e 100644 --- a/app/code/Magento/Integration/etc/integration/integration_file.xsd +++ b/app/code/Magento/Integration/etc/integration/integration_file.xsd @@ -3,7 +3,7 @@ /** * Schema for integration configuration. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/module.xml b/app/code/Magento/Integration/etc/module.xml index e7fff2f2804..fae00e51134 100644 --- a/app/code/Magento/Integration/etc/module.xml +++ b/app/code/Magento/Integration/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/etc/webapi.xml b/app/code/Magento/Integration/etc/webapi.xml index a17ed9b8dd6..530767a35a2 100644 --- a/app/code/Magento/Integration/etc/webapi.xml +++ b/app/code/Magento/Integration/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/registration.php b/app/code/Magento/Integration/registration.php index 6535666acb8..f55a56a2aac 100644 --- a/app/code/Magento/Integration/registration.php +++ b/app/code/Magento/Integration/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_edit.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_edit.xml index f49553a7e6f..d9ceb40e710 100644 --- a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_edit.xml +++ b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid.xml index a0f02456eec..da6ee6b8883 100644 --- a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid.xml +++ b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid_block.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid_block.xml index d1b9b483cbc..426e7e75cca 100644 --- a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid_block.xml +++ b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid_block.xml @@ -3,7 +3,7 @@ /** * Integrations grid block. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_index.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_index.xml index 8a4e55533d6..600500422a7 100644 --- a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_index.xml +++ b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_index.xml @@ -3,7 +3,7 @@ /** * Handle for integrations grid rendering. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_new.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_new.xml index 492731b447e..e63c1731e9d 100644 --- a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_new.xml +++ b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_permissionsdialog.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_permissionsdialog.xml index 46ceca6595c..a430bf8962b 100644 --- a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_permissionsdialog.xml +++ b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_permissionsdialog.xml @@ -3,7 +3,7 @@ /** * Integration activation permissions confirmation popup. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensdialog.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensdialog.xml index 5a00f77a72b..50179370f32 100644 --- a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensdialog.xml +++ b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensdialog.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensexchange.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensexchange.xml index 8710e6807a5..292f1921081 100644 --- a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensexchange.xml +++ b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensexchange.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Integration/view/adminhtml/requirejs-config.js b/app/code/Magento/Integration/view/adminhtml/requirejs-config.js index 74e831056ce..e179b8fe938 100644 --- a/app/code/Magento/Integration/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/Integration/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { integration: 'Magento_Integration/js/integration' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions.phtml b/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions.phtml index bcad96435a5..c551f601207 100644 --- a/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions.phtml +++ b/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions.phtml @@ -2,7 +2,7 @@ /** * Permissions form container template. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. * * @var \Magento\Backend\Block\Widget\Form\Container $block diff --git a/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions/tab/webapi.phtml b/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions/tab/webapi.phtml index 7b853b53a81..edc80582d00 100644 --- a/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions/tab/webapi.phtml +++ b/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions/tab/webapi.phtml @@ -2,7 +2,7 @@ /** * API permissions tab template for integration activation dialog. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. * * @var \Magento\Integration\Block\Adminhtml\Integration\Activate\Permissions\Tab\Webapi $block diff --git a/app/code/Magento/Integration/view/adminhtml/templates/integration/popup_container.phtml b/app/code/Magento/Integration/view/adminhtml/templates/integration/popup_container.phtml index 61a8c4e10bd..375588bec2a 100644 --- a/app/code/Magento/Integration/view/adminhtml/templates/integration/popup_container.phtml +++ b/app/code/Magento/Integration/view/adminhtml/templates/integration/popup_container.phtml @@ -2,7 +2,7 @@ /** * Popup container template. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. * * @var \Magento\Backend\Block\Template $block diff --git a/app/code/Magento/Integration/view/adminhtml/templates/integration/tokens_exchange.phtml b/app/code/Magento/Integration/view/adminhtml/templates/integration/tokens_exchange.phtml index e377ad887a1..40d1abbdc33 100644 --- a/app/code/Magento/Integration/view/adminhtml/templates/integration/tokens_exchange.phtml +++ b/app/code/Magento/Integration/view/adminhtml/templates/integration/tokens_exchange.phtml @@ -2,7 +2,7 @@ /** * Content of popup for tokens exchange action. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. * * @var \Magento\Backend\Block\Template $block diff --git a/app/code/Magento/Integration/view/adminhtml/templates/resourcetree.phtml b/app/code/Magento/Integration/view/adminhtml/templates/resourcetree.phtml index 87ea085b540..84c5d2f8de8 100644 --- a/app/code/Magento/Integration/view/adminhtml/templates/resourcetree.phtml +++ b/app/code/Magento/Integration/view/adminhtml/templates/resourcetree.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Integration/view/adminhtml/web/js/integration.js b/app/code/Magento/Integration/view/adminhtml/web/js/integration.js index 72a5450399f..18da4d6cdbe 100644 --- a/app/code/Magento/Integration/view/adminhtml/web/js/integration.js +++ b/app/code/Magento/Integration/view/adminhtml/web/js/integration.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint jquery:true*/ diff --git a/app/code/Magento/LayeredNavigation/Block/Navigation.php b/app/code/Magento/LayeredNavigation/Block/Navigation.php index 1a7ef259808..844928bc348 100644 --- a/app/code/Magento/LayeredNavigation/Block/Navigation.php +++ b/app/code/Magento/LayeredNavigation/Block/Navigation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRenderer.php b/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRenderer.php index fb76983a130..532683aa3f6 100644 --- a/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRenderer.php +++ b/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRenderer.php @@ -2,7 +2,7 @@ /** * Catalog layer filter renderer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\LayeredNavigation\Block\Navigation; diff --git a/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRendererInterface.php b/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRendererInterface.php index 1a2890343a7..6af2451498a 100644 --- a/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRendererInterface.php +++ b/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRendererInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\LayeredNavigation\Block\Navigation; diff --git a/app/code/Magento/LayeredNavigation/Block/Navigation/State.php b/app/code/Magento/LayeredNavigation/Block/Navigation/State.php index 35f119dfe20..6da8838a768 100644 --- a/app/code/Magento/LayeredNavigation/Block/Navigation/State.php +++ b/app/code/Magento/LayeredNavigation/Block/Navigation/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/LayeredNavigation/Model/Aggregation/Status.php b/app/code/Magento/LayeredNavigation/Model/Aggregation/Status.php index b38e488c9d7..7224ce4bdce 100644 --- a/app/code/Magento/LayeredNavigation/Model/Aggregation/Status.php +++ b/app/code/Magento/LayeredNavigation/Model/Aggregation/Status.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\LayeredNavigation\Model\Aggregation; diff --git a/app/code/Magento/LayeredNavigation/Model/Attribute/Source/FilterableOptions.php b/app/code/Magento/LayeredNavigation/Model/Attribute/Source/FilterableOptions.php index 7e86ae70a13..85a946ea3a3 100644 --- a/app/code/Magento/LayeredNavigation/Model/Attribute/Source/FilterableOptions.php +++ b/app/code/Magento/LayeredNavigation/Model/Attribute/Source/FilterableOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\LayeredNavigation\Model\Attribute\Source; diff --git a/app/code/Magento/LayeredNavigation/Observer/Edit/Tab/Front/ProductAttributeFormBuildFrontTabObserver.php b/app/code/Magento/LayeredNavigation/Observer/Edit/Tab/Front/ProductAttributeFormBuildFrontTabObserver.php index 5b64aab5de2..476fa6644fd 100644 --- a/app/code/Magento/LayeredNavigation/Observer/Edit/Tab/Front/ProductAttributeFormBuildFrontTabObserver.php +++ b/app/code/Magento/LayeredNavigation/Observer/Edit/Tab/Front/ProductAttributeFormBuildFrontTabObserver.php @@ -2,7 +2,7 @@ /** * Product attribute edit form observer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\LayeredNavigation\Observer\Edit\Tab\Front; diff --git a/app/code/Magento/LayeredNavigation/Observer/Grid/ProductAttributeGridBuildObserver.php b/app/code/Magento/LayeredNavigation/Observer/Grid/ProductAttributeGridBuildObserver.php index 324b589f2fd..bee801f4c8c 100644 --- a/app/code/Magento/LayeredNavigation/Observer/Grid/ProductAttributeGridBuildObserver.php +++ b/app/code/Magento/LayeredNavigation/Observer/Grid/ProductAttributeGridBuildObserver.php @@ -2,7 +2,7 @@ /** * Product attribute edit form observer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\LayeredNavigation\Observer\Grid; diff --git a/app/code/Magento/LayeredNavigation/Test/Unit/Block/NavigationTest.php b/app/code/Magento/LayeredNavigation/Test/Unit/Block/NavigationTest.php index 761b438647f..fb43c9b4c16 100644 --- a/app/code/Magento/LayeredNavigation/Test/Unit/Block/NavigationTest.php +++ b/app/code/Magento/LayeredNavigation/Test/Unit/Block/NavigationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/LayeredNavigation/Test/Unit/Model/Aggregation/StatusTest.php b/app/code/Magento/LayeredNavigation/Test/Unit/Model/Aggregation/StatusTest.php index fe3ccdc73ef..69874e50649 100644 --- a/app/code/Magento/LayeredNavigation/Test/Unit/Model/Aggregation/StatusTest.php +++ b/app/code/Magento/LayeredNavigation/Test/Unit/Model/Aggregation/StatusTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/LayeredNavigation/etc/adminhtml/events.xml b/app/code/Magento/LayeredNavigation/etc/adminhtml/events.xml index 0af90de1f8c..7973670139b 100644 --- a/app/code/Magento/LayeredNavigation/etc/adminhtml/events.xml +++ b/app/code/Magento/LayeredNavigation/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -12,4 +12,4 @@ <event name="product_attribute_grid_build"> <observer name="layeredNavigation" instance="Magento\LayeredNavigation\Observer\Grid\ProductAttributeGridBuildObserver" /> </event> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/LayeredNavigation/etc/adminhtml/system.xml b/app/code/Magento/LayeredNavigation/etc/adminhtml/system.xml index ef90d4664df..5cafe4794c3 100644 --- a/app/code/Magento/LayeredNavigation/etc/adminhtml/system.xml +++ b/app/code/Magento/LayeredNavigation/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/etc/config.xml b/app/code/Magento/LayeredNavigation/etc/config.xml index cc2167ceba4..cf267c303cf 100644 --- a/app/code/Magento/LayeredNavigation/etc/config.xml +++ b/app/code/Magento/LayeredNavigation/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/etc/di.xml b/app/code/Magento/LayeredNavigation/etc/di.xml index 2a4b3c68dc1..6468fd18614 100644 --- a/app/code/Magento/LayeredNavigation/etc/di.xml +++ b/app/code/Magento/LayeredNavigation/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/etc/frontend/di.xml b/app/code/Magento/LayeredNavigation/etc/frontend/di.xml index 3df338e306f..3850e36fefc 100644 --- a/app/code/Magento/LayeredNavigation/etc/frontend/di.xml +++ b/app/code/Magento/LayeredNavigation/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/etc/module.xml b/app/code/Magento/LayeredNavigation/etc/module.xml index e2c0297ce77..77b324aa042 100644 --- a/app/code/Magento/LayeredNavigation/etc/module.xml +++ b/app/code/Magento/LayeredNavigation/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/registration.php b/app/code/Magento/LayeredNavigation/registration.php index 67f5057949a..be86b67962c 100644 --- a/app/code/Magento/LayeredNavigation/registration.php +++ b/app/code/Magento/LayeredNavigation/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml b/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml index b1d613fc9ec..ac1475a2940 100644 --- a/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml +++ b/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_grid.xml b/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_grid.xml index 762ce199260..4378fdfd6f2 100644 --- a/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_grid.xml +++ b/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_listing.xml b/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_listing.xml index 762ce199260..4378fdfd6f2 100644 --- a/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_listing.xml +++ b/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered.xml b/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered.xml index 677e225f77b..6e3cd207bbc 100644 --- a/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered.xml +++ b/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered_without_children.xml b/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered_without_children.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered_without_children.xml +++ b/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered_without_children.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/view/frontend/layout/catalogsearch_result_index.xml b/app/code/Magento/LayeredNavigation/view/frontend/layout/catalogsearch_result_index.xml index 6c27a21f7ae..58a4701d9c8 100644 --- a/app/code/Magento/LayeredNavigation/view/frontend/layout/catalogsearch_result_index.xml +++ b/app/code/Magento/LayeredNavigation/view/frontend/layout/catalogsearch_result_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/1column.xml b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/1column.xml index 32a84c7730b..fc4bcfe6e61 100644 --- a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/1column.xml +++ b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/1column.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-left.xml b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-left.xml index b7873e15328..d115c5757d0 100644 --- a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-left.xml +++ b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-left.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-right.xml b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-right.xml index b7873e15328..d115c5757d0 100644 --- a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-right.xml +++ b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-right.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/3columns.xml b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/3columns.xml index b7873e15328..d115c5757d0 100644 --- a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/3columns.xml +++ b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/3columns.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/empty.xml b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/empty.xml index a6bf71bb131..71d0f7155a8 100644 --- a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/empty.xml +++ b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/empty.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/filter.phtml b/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/filter.phtml index 9f8677ff728..27a945582c4 100644 --- a/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/filter.phtml +++ b/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/filter.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/state.phtml b/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/state.phtml index 6eb853b7f11..10212f34686 100644 --- a/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/state.phtml +++ b/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/state.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/view.phtml b/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/view.phtml index 6248f0cbc68..810f28e197a 100644 --- a/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/view.phtml +++ b/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/view.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/Block/Index.php b/app/code/Magento/Marketplace/Block/Index.php index bf286ea73d5..7bc7cc2f990 100644 --- a/app/code/Magento/Marketplace/Block/Index.php +++ b/app/code/Magento/Marketplace/Block/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/Block/Partners.php b/app/code/Magento/Marketplace/Block/Partners.php index 5d760898686..44be845e42e 100644 --- a/app/code/Magento/Marketplace/Block/Partners.php +++ b/app/code/Magento/Marketplace/Block/Partners.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/Controller/Adminhtml/Index.php b/app/code/Magento/Marketplace/Controller/Adminhtml/Index.php index f2bd0761b53..ddeef7a7174 100644 --- a/app/code/Magento/Marketplace/Controller/Adminhtml/Index.php +++ b/app/code/Magento/Marketplace/Controller/Adminhtml/Index.php @@ -2,7 +2,7 @@ /** * Product controller. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Marketplace\Controller\Adminhtml; diff --git a/app/code/Magento/Marketplace/Controller/Adminhtml/Index/Index.php b/app/code/Magento/Marketplace/Controller/Adminhtml/Index/Index.php index 7924717b575..6f475890ce2 100644 --- a/app/code/Magento/Marketplace/Controller/Adminhtml/Index/Index.php +++ b/app/code/Magento/Marketplace/Controller/Adminhtml/Index/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Marketplace\Controller\Adminhtml\Index; diff --git a/app/code/Magento/Marketplace/Controller/Adminhtml/Partners.php b/app/code/Magento/Marketplace/Controller/Adminhtml/Partners.php index 18db5a70cbc..4f94b555628 100644 --- a/app/code/Magento/Marketplace/Controller/Adminhtml/Partners.php +++ b/app/code/Magento/Marketplace/Controller/Adminhtml/Partners.php @@ -2,7 +2,7 @@ /** * Product controller. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Marketplace\Controller\Adminhtml; diff --git a/app/code/Magento/Marketplace/Controller/Adminhtml/Partners/Index.php b/app/code/Magento/Marketplace/Controller/Adminhtml/Partners/Index.php index 02abfb653dd..c0f37b1535e 100644 --- a/app/code/Magento/Marketplace/Controller/Adminhtml/Partners/Index.php +++ b/app/code/Magento/Marketplace/Controller/Adminhtml/Partners/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Marketplace\Controller\Adminhtml\Partners; diff --git a/app/code/Magento/Marketplace/Helper/Cache.php b/app/code/Magento/Marketplace/Helper/Cache.php index a0a4ce73e03..41b91b4d041 100644 --- a/app/code/Magento/Marketplace/Helper/Cache.php +++ b/app/code/Magento/Marketplace/Helper/Cache.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/Model/Partners.php b/app/code/Magento/Marketplace/Model/Partners.php index e533c6aed15..efc052448f7 100644 --- a/app/code/Magento/Marketplace/Model/Partners.php +++ b/app/code/Magento/Marketplace/Model/Partners.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Marketplace\Model; diff --git a/app/code/Magento/Marketplace/Test/Unit/Block/PartnersTest.php b/app/code/Magento/Marketplace/Test/Unit/Block/PartnersTest.php index bd0f75b0031..56d00867def 100644 --- a/app/code/Magento/Marketplace/Test/Unit/Block/PartnersTest.php +++ b/app/code/Magento/Marketplace/Test/Unit/Block/PartnersTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Marketplace/Test/Unit/Controller/Index/IndexTest.php index 7eea9680eea..fae9fa7cd31 100644 --- a/app/code/Magento/Marketplace/Test/Unit/Controller/Index/IndexTest.php +++ b/app/code/Magento/Marketplace/Test/Unit/Controller/Index/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/Test/Unit/Controller/Partners/IndexTest.php b/app/code/Magento/Marketplace/Test/Unit/Controller/Partners/IndexTest.php index d9f9dd5b65d..5a2e54ab93d 100644 --- a/app/code/Magento/Marketplace/Test/Unit/Controller/Partners/IndexTest.php +++ b/app/code/Magento/Marketplace/Test/Unit/Controller/Partners/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php b/app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php index 00b78a47eb4..7ed72d700d7 100644 --- a/app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php +++ b/app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/Test/Unit/Model/PartnersTest.php b/app/code/Magento/Marketplace/Test/Unit/Model/PartnersTest.php index 45df086bbf7..402167fb363 100644 --- a/app/code/Magento/Marketplace/Test/Unit/Model/PartnersTest.php +++ b/app/code/Magento/Marketplace/Test/Unit/Model/PartnersTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/etc/adminhtml/menu.xml b/app/code/Magento/Marketplace/etc/adminhtml/menu.xml index 41cf81b3dff..754a1d7034c 100644 --- a/app/code/Magento/Marketplace/etc/adminhtml/menu.xml +++ b/app/code/Magento/Marketplace/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Marketplace/etc/adminhtml/routes.xml b/app/code/Magento/Marketplace/etc/adminhtml/routes.xml index 36129ccdb16..f4630f706e0 100644 --- a/app/code/Magento/Marketplace/etc/adminhtml/routes.xml +++ b/app/code/Magento/Marketplace/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Marketplace/etc/module.xml b/app/code/Magento/Marketplace/etc/module.xml index 85a9a726311..5e31ccf3a7f 100644 --- a/app/code/Magento/Marketplace/etc/module.xml +++ b/app/code/Magento/Marketplace/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Marketplace/registration.php b/app/code/Magento/Marketplace/registration.php index 3499b4b8a7e..32e7eb7b7ec 100644 --- a/app/code/Magento/Marketplace/registration.php +++ b/app/code/Magento/Marketplace/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_index_index.xml b/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_index_index.xml index 23a76a4f655..28aa0a4bf86 100644 --- a/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_index_index.xml +++ b/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_partners_index.xml b/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_partners_index.xml index 2cf7f84bcbe..82c4a144f6a 100644 --- a/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_partners_index.xml +++ b/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_partners_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Marketplace/view/adminhtml/templates/index.phtml b/app/code/Magento/Marketplace/view/adminhtml/templates/index.phtml index b3c78e31f1c..de7349dbdaf 100644 --- a/app/code/Magento/Marketplace/view/adminhtml/templates/index.phtml +++ b/app/code/Magento/Marketplace/view/adminhtml/templates/index.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/view/adminhtml/templates/partners.phtml b/app/code/Magento/Marketplace/view/adminhtml/templates/partners.phtml index c36066cbf4c..82559d9ea23 100644 --- a/app/code/Magento/Marketplace/view/adminhtml/templates/partners.phtml +++ b/app/code/Magento/Marketplace/view/adminhtml/templates/partners.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Marketplace/view/adminhtml/web/default.js b/app/code/Magento/Marketplace/view/adminhtml/web/default.js index 28def5536a3..5c3e96563a1 100644 --- a/app/code/Magento/Marketplace/view/adminhtml/web/default.js +++ b/app/code/Magento/Marketplace/view/adminhtml/web/default.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/MediaStorage/App/Media.php b/app/code/Magento/MediaStorage/App/Media.php index 74e40bd36df..1113cdd8106 100644 --- a/app/code/Magento/MediaStorage/App/Media.php +++ b/app/code/Magento/MediaStorage/App/Media.php @@ -2,7 +2,7 @@ /** * Media application * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\App; diff --git a/app/code/Magento/MediaStorage/Block/System/Config/System/Storage/Media/Synchronize.php b/app/code/Magento/MediaStorage/Block/System/Config/System/Storage/Media/Synchronize.php index 5dbb452c675..59ebba6f0e8 100644 --- a/app/code/Magento/MediaStorage/Block/System/Config/System/Storage/Media/Synchronize.php +++ b/app/code/Magento/MediaStorage/Block/System/Config/System/Storage/Media/Synchronize.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Block\System\Config\System\Storage\Media; diff --git a/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage.php b/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage.php index edc76477633..bb499ef75dc 100644 --- a/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage.php +++ b/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Status.php b/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Status.php index 3fb7dc1b5e4..39a67dad4f3 100644 --- a/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Status.php +++ b/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Status.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Controller\Adminhtml\System\Config\System\Storage; diff --git a/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Synchronize.php b/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Synchronize.php index f18d0f23da4..4027cbf3769 100644 --- a/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Synchronize.php +++ b/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Synchronize.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Controller\Adminhtml\System\Config\System\Storage; diff --git a/app/code/Magento/MediaStorage/Helper/File/Media.php b/app/code/Magento/MediaStorage/Helper/File/Media.php index ee04c25fc24..302fa400277 100644 --- a/app/code/Magento/MediaStorage/Helper/File/Media.php +++ b/app/code/Magento/MediaStorage/Helper/File/Media.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Helper\File; diff --git a/app/code/Magento/MediaStorage/Helper/File/Storage.php b/app/code/Magento/MediaStorage/Helper/File/Storage.php index 608b72bea74..7769f04c65a 100644 --- a/app/code/Magento/MediaStorage/Helper/File/Storage.php +++ b/app/code/Magento/MediaStorage/Helper/File/Storage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Helper/File/Storage/Database.php b/app/code/Magento/MediaStorage/Helper/File/Storage/Database.php index 770a5987092..5d22b3aa1e6 100644 --- a/app/code/Magento/MediaStorage/Helper/File/Storage/Database.php +++ b/app/code/Magento/MediaStorage/Helper/File/Storage/Database.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Model/Asset/Plugin/CleanMergedJsCss.php b/app/code/Magento/MediaStorage/Model/Asset/Plugin/CleanMergedJsCss.php index 4cd6d67a010..419e5d57d59 100644 --- a/app/code/Magento/MediaStorage/Model/Asset/Plugin/CleanMergedJsCss.php +++ b/app/code/Magento/MediaStorage/Model/Asset/Plugin/CleanMergedJsCss.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\Asset\Plugin; diff --git a/app/code/Magento/MediaStorage/Model/Config/Backend/Storage/Media/Database.php b/app/code/Magento/MediaStorage/Model/Config/Backend/Storage/Media/Database.php index 5d761ef6c6a..163db0fba34 100644 --- a/app/code/Magento/MediaStorage/Model/Config/Backend/Storage/Media/Database.php +++ b/app/code/Magento/MediaStorage/Model/Config/Backend/Storage/Media/Database.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\Config\Backend\Storage\Media; diff --git a/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Database.php b/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Database.php index ec51770c2d8..2dce07027ff 100644 --- a/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Database.php +++ b/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Database.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Storage.php b/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Storage.php index cd86c3aaf14..af35775c850 100644 --- a/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Storage.php +++ b/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Storage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Model/File/Storage.php b/app/code/Magento/MediaStorage/Model/File/Storage.php index 9bbbb1d6922..e9a0d919111 100644 --- a/app/code/Magento/MediaStorage/Model/File/Storage.php +++ b/app/code/Magento/MediaStorage/Model/File/Storage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Config.php b/app/code/Magento/MediaStorage/Model/File/Storage/Config.php index c2fdf91ba5a..7307ceb18ea 100644 --- a/app/code/Magento/MediaStorage/Model/File/Storage/Config.php +++ b/app/code/Magento/MediaStorage/Model/File/Storage/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\File\Storage; diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Database.php b/app/code/Magento/MediaStorage/Model/File/Storage/Database.php index 6fbf945f936..e354ba48174 100644 --- a/app/code/Magento/MediaStorage/Model/File/Storage/Database.php +++ b/app/code/Magento/MediaStorage/Model/File/Storage/Database.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\File\Storage; diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Database/AbstractDatabase.php b/app/code/Magento/MediaStorage/Model/File/Storage/Database/AbstractDatabase.php index 9e202ba9898..e1d5f129862 100644 --- a/app/code/Magento/MediaStorage/Model/File/Storage/Database/AbstractDatabase.php +++ b/app/code/Magento/MediaStorage/Model/File/Storage/Database/AbstractDatabase.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\File\Storage\Database; diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Directory/Database.php b/app/code/Magento/MediaStorage/Model/File/Storage/Directory/Database.php index c583052456a..98c389132c4 100644 --- a/app/code/Magento/MediaStorage/Model/File/Storage/Directory/Database.php +++ b/app/code/Magento/MediaStorage/Model/File/Storage/Directory/Database.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/File.php b/app/code/Magento/MediaStorage/Model/File/Storage/File.php index 6e0f609b1b5..363f87e6288 100644 --- a/app/code/Magento/MediaStorage/Model/File/Storage/File.php +++ b/app/code/Magento/MediaStorage/Model/File/Storage/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\File\Storage; diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Flag.php b/app/code/Magento/MediaStorage/Model/File/Storage/Flag.php index 73666087a1b..88af32948a2 100644 --- a/app/code/Magento/MediaStorage/Model/File/Storage/Flag.php +++ b/app/code/Magento/MediaStorage/Model/File/Storage/Flag.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Request.php b/app/code/Magento/MediaStorage/Model/File/Storage/Request.php index 25d9acc007a..6f7e77ff083 100644 --- a/app/code/Magento/MediaStorage/Model/File/Storage/Request.php +++ b/app/code/Magento/MediaStorage/Model/File/Storage/Request.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\File\Storage; diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Response.php b/app/code/Magento/MediaStorage/Model/File/Storage/Response.php index c29bfc87ce4..d67eaf95e24 100644 --- a/app/code/Magento/MediaStorage/Model/File/Storage/Response.php +++ b/app/code/Magento/MediaStorage/Model/File/Storage/Response.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\File\Storage; diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Synchronization.php b/app/code/Magento/MediaStorage/Model/File/Storage/Synchronization.php index e7ab561350e..f3c38abca3b 100644 --- a/app/code/Magento/MediaStorage/Model/File/Storage/Synchronization.php +++ b/app/code/Magento/MediaStorage/Model/File/Storage/Synchronization.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\File\Storage; diff --git a/app/code/Magento/MediaStorage/Model/File/Uploader.php b/app/code/Magento/MediaStorage/Model/File/Uploader.php index 9539c98e4c6..a946cd47ffa 100644 --- a/app/code/Magento/MediaStorage/Model/File/Uploader.php +++ b/app/code/Magento/MediaStorage/Model/File/Uploader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Model/File/Validator/AvailablePath.php b/app/code/Magento/MediaStorage/Model/File/Validator/AvailablePath.php index 4978931562d..7ba6574aa0b 100644 --- a/app/code/Magento/MediaStorage/Model/File/Validator/AvailablePath.php +++ b/app/code/Magento/MediaStorage/Model/File/Validator/AvailablePath.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Model/File/Validator/NotProtectedExtension.php b/app/code/Magento/MediaStorage/Model/File/Validator/NotProtectedExtension.php index 6a574b4711d..d400632644d 100644 --- a/app/code/Magento/MediaStorage/Model/File/Validator/NotProtectedExtension.php +++ b/app/code/Magento/MediaStorage/Model/File/Validator/NotProtectedExtension.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/AbstractStorage.php b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/AbstractStorage.php index 28e65111c66..5006477015a 100644 --- a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/AbstractStorage.php +++ b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/AbstractStorage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\ResourceModel\File\Storage; diff --git a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Database.php b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Database.php index 1068c94adad..a4ffc1df172 100644 --- a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Database.php +++ b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Database.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\ResourceModel\File\Storage; diff --git a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Directory/Database.php b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Directory/Database.php index ccf49b5ec69..6705fb30f16 100644 --- a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Directory/Database.php +++ b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Directory/Database.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\ResourceModel\File\Storage\Directory; diff --git a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/File.php b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/File.php index b8bc103e6eb..960019dd811 100644 --- a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/File.php +++ b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/File.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Model\ResourceModel\File\Storage; diff --git a/app/code/Magento/MediaStorage/Test/Unit/App/MediaTest.php b/app/code/Magento/MediaStorage/Test/Unit/App/MediaTest.php index d9c7dde74dc..16a4ed0884c 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/App/MediaTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/App/MediaTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Test\Unit\App; diff --git a/app/code/Magento/MediaStorage/Test/Unit/Helper/File/MediaTest.php b/app/code/Magento/MediaStorage/Test/Unit/Helper/File/MediaTest.php index 7b29ca0ef16..e949e46979a 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Helper/File/MediaTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/Helper/File/MediaTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Test\Unit\Helper\File; diff --git a/app/code/Magento/MediaStorage/Test/Unit/Helper/File/Storage/DatabaseTest.php b/app/code/Magento/MediaStorage/Test/Unit/Helper/File/Storage/DatabaseTest.php index 4b96c18e681..9ce9c5cf30a 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Helper/File/Storage/DatabaseTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/Helper/File/Storage/DatabaseTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Test\Unit\Helper\File\Storage; diff --git a/app/code/Magento/MediaStorage/Test/Unit/Helper/File/StorageTest.php b/app/code/Magento/MediaStorage/Test/Unit/Helper/File/StorageTest.php index 580a64f10d0..75df5662f08 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Helper/File/StorageTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/Helper/File/StorageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Test\Unit\Helper\File; diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/Asset/Plugin/CleanMergedJsCssTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/Asset/Plugin/CleanMergedJsCssTest.php index 9ff39118595..2c0b9c0f431 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Model/Asset/Plugin/CleanMergedJsCssTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/Model/Asset/Plugin/CleanMergedJsCssTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Test\Unit\Model\Asset\Plugin; diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/Config/Source/Storage/Media/DatabaseTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/Config/Source/Storage/Media/DatabaseTest.php index bf4d0ee9ab1..a29adeceab2 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Model/Config/Source/Storage/Media/DatabaseTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/Model/Config/Source/Storage/Media/DatabaseTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/ConfigTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/ConfigTest.php index 41b86234613..27571d4d790 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/ConfigTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Test\Unit\Model\File\Storage; diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/Directory/DatabaseTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/Directory/DatabaseTest.php index 20a993f45c4..92a831c6428 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/Directory/DatabaseTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/Directory/DatabaseTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Test\Unit\Model\File\Storage\Directory; diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/MediaTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/MediaTest.php index a3e61bb596d..bd50bd0e937 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/MediaTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/MediaTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Test\Unit\Model\File\Storage; diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/RequestTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/RequestTest.php index 829deff2faa..cdbc8b5b053 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/RequestTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/RequestTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Test\Unit\Model\File\Storage; diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/SynchronizationTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/SynchronizationTest.php index 99eee9b7056..f3dd7fc64ad 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/SynchronizationTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/SynchronizationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Test\Unit\Model\File\Storage; diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/_files/config.xml b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/_files/config.xml index f72edc9a035..5657677dfd8 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/_files/config.xml +++ b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/_files/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/ResourceModel/File/Storage/FileTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/ResourceModel/File/Storage/FileTest.php index fa2cc3198e3..50dc2f4e520 100644 --- a/app/code/Magento/MediaStorage/Test/Unit/Model/ResourceModel/File/Storage/FileTest.php +++ b/app/code/Magento/MediaStorage/Test/Unit/Model/ResourceModel/File/Storage/FileTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\MediaStorage\Test\Unit\Model\ResourceModel\File\Storage; diff --git a/app/code/Magento/MediaStorage/etc/adminhtml/routes.xml b/app/code/Magento/MediaStorage/etc/adminhtml/routes.xml index 8e56626a9ea..72ea4eb7269 100644 --- a/app/code/Magento/MediaStorage/etc/adminhtml/routes.xml +++ b/app/code/Magento/MediaStorage/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_MediaStorage" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/MediaStorage/etc/adminhtml/system.xml b/app/code/Magento/MediaStorage/etc/adminhtml/system.xml index c0626934a0f..f5956d343f5 100644 --- a/app/code/Magento/MediaStorage/etc/adminhtml/system.xml +++ b/app/code/Magento/MediaStorage/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/MediaStorage/etc/di.xml b/app/code/Magento/MediaStorage/etc/di.xml index 02ee0b8da0f..e2eed82917e 100644 --- a/app/code/Magento/MediaStorage/etc/di.xml +++ b/app/code/Magento/MediaStorage/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -19,4 +19,4 @@ <type name="Magento\Framework\View\Asset\MergeService"> <plugin name="cleanMergedJsCss" type="Magento\MediaStorage\Model\Asset\Plugin\CleanMergedJsCss"/> </type> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/MediaStorage/etc/module.xml b/app/code/Magento/MediaStorage/etc/module.xml index 8bd56f0ae8f..a42e1319e47 100644 --- a/app/code/Magento/MediaStorage/etc/module.xml +++ b/app/code/Magento/MediaStorage/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/MediaStorage/registration.php b/app/code/Magento/MediaStorage/registration.php index 0e10320e45c..d66456941da 100644 --- a/app/code/Magento/MediaStorage/registration.php +++ b/app/code/Magento/MediaStorage/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/MediaStorage/view/adminhtml/templates/system/config/system/storage/media/synchronize.phtml b/app/code/Magento/MediaStorage/view/adminhtml/templates/system/config/system/storage/media/synchronize.phtml index 1b432ff9372..1a3ed09ae52 100644 --- a/app/code/Magento/MediaStorage/view/adminhtml/templates/system/config/system/storage/media/synchronize.phtml +++ b/app/code/Magento/MediaStorage/view/adminhtml/templates/system/config/system/storage/media/synchronize.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type.php b/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type.php index 0e678142dd2..87740712619 100644 --- a/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type.php +++ b/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Block\Adminhtml\Product\Helper\Form; diff --git a/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type/Price.php b/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type/Price.php index de8b2761370..f0617c2ed5f 100644 --- a/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type/Price.php +++ b/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Block\Adminhtml\Product\Helper\Form\Type; diff --git a/app/code/Magento/Msrp/Block/Popup.php b/app/code/Magento/Msrp/Block/Popup.php index 727c443bc99..084ecb460f4 100644 --- a/app/code/Magento/Msrp/Block/Popup.php +++ b/app/code/Magento/Msrp/Block/Popup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Block; diff --git a/app/code/Magento/Msrp/Block/Total.php b/app/code/Magento/Msrp/Block/Total.php index dd0f06018d3..c2833e1f7eb 100644 --- a/app/code/Magento/Msrp/Block/Total.php +++ b/app/code/Magento/Msrp/Block/Total.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Block; diff --git a/app/code/Magento/Msrp/Helper/Data.php b/app/code/Magento/Msrp/Helper/Data.php index 5a17ee1870f..0392c758191 100644 --- a/app/code/Magento/Msrp/Helper/Data.php +++ b/app/code/Magento/Msrp/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Helper; diff --git a/app/code/Magento/Msrp/Model/Config.php b/app/code/Magento/Msrp/Model/Config.php index a520503274b..96fd0237938 100644 --- a/app/code/Magento/Msrp/Model/Config.php +++ b/app/code/Magento/Msrp/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Model; diff --git a/app/code/Magento/Msrp/Model/Msrp.php b/app/code/Magento/Msrp/Model/Msrp.php index 82d0bd93c4e..348fda3f147 100644 --- a/app/code/Magento/Msrp/Model/Msrp.php +++ b/app/code/Magento/Msrp/Model/Msrp.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Model; diff --git a/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type.php b/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type.php index a7e39142f8c..058f031ddd1 100644 --- a/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type.php +++ b/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Model\Product\Attribute\Source; diff --git a/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type/Price.php b/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type/Price.php index 1bd853c2432..f6e99d4dfba 100644 --- a/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type/Price.php +++ b/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Model\Product\Attribute\Source\Type; diff --git a/app/code/Magento/Msrp/Model/Product/Options.php b/app/code/Magento/Msrp/Model/Product/Options.php index 4ea39be5879..9f6fc00567a 100644 --- a/app/code/Magento/Msrp/Model/Product/Options.php +++ b/app/code/Magento/Msrp/Model/Product/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Model\Product; diff --git a/app/code/Magento/Msrp/Model/Quote/Address/CanApplyMsrp.php b/app/code/Magento/Msrp/Model/Quote/Address/CanApplyMsrp.php index e73d9834864..775a267d4bb 100644 --- a/app/code/Magento/Msrp/Model/Quote/Address/CanApplyMsrp.php +++ b/app/code/Magento/Msrp/Model/Quote/Address/CanApplyMsrp.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Model\Quote\Address; diff --git a/app/code/Magento/Msrp/Model/Quote/Msrp.php b/app/code/Magento/Msrp/Model/Quote/Msrp.php index b6a822584d7..85f2f2d8e98 100644 --- a/app/code/Magento/Msrp/Model/Quote/Msrp.php +++ b/app/code/Magento/Msrp/Model/Quote/Msrp.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Model\Quote; diff --git a/app/code/Magento/Msrp/Observer/Frontend/Quote/SetCanApplyMsrpObserver.php b/app/code/Magento/Msrp/Observer/Frontend/Quote/SetCanApplyMsrpObserver.php index 1d03fad9d1b..02380c5241b 100644 --- a/app/code/Magento/Msrp/Observer/Frontend/Quote/SetCanApplyMsrpObserver.php +++ b/app/code/Magento/Msrp/Observer/Frontend/Quote/SetCanApplyMsrpObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Observer\Frontend\Quote; diff --git a/app/code/Magento/Msrp/Plugin/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php b/app/code/Magento/Msrp/Plugin/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php index cefc13a3082..f6ccc7fb4c1 100644 --- a/app/code/Magento/Msrp/Plugin/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php +++ b/app/code/Magento/Msrp/Plugin/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Plugin\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab; diff --git a/app/code/Magento/Msrp/Pricing/Price/MsrpPrice.php b/app/code/Magento/Msrp/Pricing/Price/MsrpPrice.php index 01a17de4be9..539fe1b8c28 100644 --- a/app/code/Magento/Msrp/Pricing/Price/MsrpPrice.php +++ b/app/code/Magento/Msrp/Pricing/Price/MsrpPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/Pricing/Price/MsrpPriceInterface.php b/app/code/Magento/Msrp/Pricing/Price/MsrpPriceInterface.php index 56efe99f447..70495c30f9b 100644 --- a/app/code/Magento/Msrp/Pricing/Price/MsrpPriceInterface.php +++ b/app/code/Magento/Msrp/Pricing/Price/MsrpPriceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/Setup/InstallData.php b/app/code/Magento/Msrp/Setup/InstallData.php index fd05f4fff1b..cd34cd33d3d 100644 --- a/app/code/Magento/Msrp/Setup/InstallData.php +++ b/app/code/Magento/Msrp/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/Test/Unit/Helper/DataTest.php b/app/code/Magento/Msrp/Test/Unit/Helper/DataTest.php index 3d25f9203f9..3990da03c7e 100644 --- a/app/code/Magento/Msrp/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Msrp/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/Test/Unit/Model/Product/Attribute/Source/Type/PriceTest.php b/app/code/Magento/Msrp/Test/Unit/Model/Product/Attribute/Source/Type/PriceTest.php index 10ef13ed85f..fdecccbe4d1 100644 --- a/app/code/Magento/Msrp/Test/Unit/Model/Product/Attribute/Source/Type/PriceTest.php +++ b/app/code/Magento/Msrp/Test/Unit/Model/Product/Attribute/Source/Type/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Test\Unit\Model\Product\Attribute\Source\Type; diff --git a/app/code/Magento/Msrp/Test/Unit/Observer/Frontend/Quote/SetCanApplyMsrpObserverTest.php b/app/code/Magento/Msrp/Test/Unit/Observer/Frontend/Quote/SetCanApplyMsrpObserverTest.php index 7508a9cd048..ce6de156088 100644 --- a/app/code/Magento/Msrp/Test/Unit/Observer/Frontend/Quote/SetCanApplyMsrpObserverTest.php +++ b/app/code/Magento/Msrp/Test/Unit/Observer/Frontend/Quote/SetCanApplyMsrpObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Test\Unit\Observer\Frontend\Quote; diff --git a/app/code/Magento/Msrp/Test/Unit/Pricing/Price/MsrpPriceTest.php b/app/code/Magento/Msrp/Test/Unit/Pricing/Price/MsrpPriceTest.php index f5197c4f9e2..244f064220a 100644 --- a/app/code/Magento/Msrp/Test/Unit/Pricing/Price/MsrpPriceTest.php +++ b/app/code/Magento/Msrp/Test/Unit/Pricing/Price/MsrpPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Form/Modifier/MsrpTest.php b/app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Form/Modifier/MsrpTest.php index d9b341b102f..ddf4e11f960 100644 --- a/app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Form/Modifier/MsrpTest.php +++ b/app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Form/Modifier/MsrpTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Msrp/Ui/DataProvider/Product/Form/Modifier/Msrp.php b/app/code/Magento/Msrp/Ui/DataProvider/Product/Form/Modifier/Msrp.php index fa749fbbd88..0be442e58c5 100644 --- a/app/code/Magento/Msrp/Ui/DataProvider/Product/Form/Modifier/Msrp.php +++ b/app/code/Magento/Msrp/Ui/DataProvider/Product/Form/Modifier/Msrp.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Msrp\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Msrp/etc/adminhtml/di.xml b/app/code/Magento/Msrp/etc/adminhtml/di.xml index ba4bb1631fd..d4018ac2f0e 100644 --- a/app/code/Magento/Msrp/etc/adminhtml/di.xml +++ b/app/code/Magento/Msrp/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/etc/adminhtml/system.xml b/app/code/Magento/Msrp/etc/adminhtml/system.xml index 851a6e1f551..4580cfb5a6a 100644 --- a/app/code/Magento/Msrp/etc/adminhtml/system.xml +++ b/app/code/Magento/Msrp/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/etc/catalog_attributes.xml b/app/code/Magento/Msrp/etc/catalog_attributes.xml index 7985266ff3b..096ffba10df 100644 --- a/app/code/Magento/Msrp/etc/catalog_attributes.xml +++ b/app/code/Magento/Msrp/etc/catalog_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/etc/config.xml b/app/code/Magento/Msrp/etc/config.xml index e2f525662d4..c2e773a9826 100644 --- a/app/code/Magento/Msrp/etc/config.xml +++ b/app/code/Magento/Msrp/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/etc/di.xml b/app/code/Magento/Msrp/etc/di.xml index 25ae12ab713..8cdd0b35a70 100644 --- a/app/code/Magento/Msrp/etc/di.xml +++ b/app/code/Magento/Msrp/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/etc/frontend/events.xml b/app/code/Magento/Msrp/etc/frontend/events.xml index 8e1145f53b1..c177d6957d9 100644 --- a/app/code/Magento/Msrp/etc/frontend/events.xml +++ b/app/code/Magento/Msrp/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/etc/module.xml b/app/code/Magento/Msrp/etc/module.xml index 16265db3fcb..4d5b726ce29 100644 --- a/app/code/Magento/Msrp/etc/module.xml +++ b/app/code/Magento/Msrp/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/etc/webapi_rest/events.xml b/app/code/Magento/Msrp/etc/webapi_rest/events.xml index 8e1145f53b1..c177d6957d9 100644 --- a/app/code/Magento/Msrp/etc/webapi_rest/events.xml +++ b/app/code/Magento/Msrp/etc/webapi_rest/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/etc/webapi_soap/events.xml b/app/code/Magento/Msrp/etc/webapi_soap/events.xml index 8e1145f53b1..c177d6957d9 100644 --- a/app/code/Magento/Msrp/etc/webapi_soap/events.xml +++ b/app/code/Magento/Msrp/etc/webapi_soap/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/registration.php b/app/code/Magento/Msrp/registration.php index 27ca867a0b8..3d266743935 100644 --- a/app/code/Magento/Msrp/registration.php +++ b/app/code/Magento/Msrp/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/view/base/layout/catalog_product_prices.xml b/app/code/Magento/Msrp/view/base/layout/catalog_product_prices.xml index 59f7d0e7bb1..ff044bddcc2 100644 --- a/app/code/Magento/Msrp/view/base/layout/catalog_product_prices.xml +++ b/app/code/Magento/Msrp/view/base/layout/catalog_product_prices.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/base/templates/product/price/msrp.phtml b/app/code/Magento/Msrp/view/base/templates/product/price/msrp.phtml index c149d0fb705..b13a24d4498 100644 --- a/app/code/Magento/Msrp/view/base/templates/product/price/msrp.phtml +++ b/app/code/Magento/Msrp/view/base/templates/product/price/msrp.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/view/base/web/js/msrp.js b/app/code/Magento/Msrp/view/base/web/js/msrp.js index d29641e4524..02c14c1cbea 100644 --- a/app/code/Magento/Msrp/view/base/web/js/msrp.js +++ b/app/code/Magento/Msrp/view/base/web/js/msrp.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Msrp/view/frontend/layout/catalog_category_view.xml index 6367c4a81d0..d7ee0e4e91b 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/catalog_category_view.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/catalog_category_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalog_product_compare_index.xml b/app/code/Magento/Msrp/view/frontend/layout/catalog_product_compare_index.xml index 3e2a3a9b835..8bbaa154001 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/catalog_product_compare_index.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/catalog_product_compare_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view.xml index d46197843c0..9d02c9e36bf 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view_type_downloadable.xml b/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view_type_downloadable.xml index cdab9575550..feda7ab659b 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view_type_downloadable.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view_type_downloadable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_advanced_result.xml b/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_advanced_result.xml index 3d6f4eec444..4786e645569 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_advanced_result.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_advanced_result.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_result_index.xml b/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_result_index.xml index 3d6f4eec444..4786e645569 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_result_index.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_result_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_index.xml index d974a826b23..fd6df52fb13 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_index.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml b/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml index 8557be27892..3fb6fa4ec28 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_failure.xml b/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_failure.xml index 3d6f4eec444..4786e645569 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_failure.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_failure.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_success.xml b/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_success.xml index 3d6f4eec444..4786e645569 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_success.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_success.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/msrp_popup.xml b/app/code/Magento/Msrp/view/frontend/layout/msrp_popup.xml index 5844a31b1b1..94cb24ca889 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/msrp_popup.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/msrp_popup.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/review_product_list.xml b/app/code/Magento/Msrp/view/frontend/layout/review_product_list.xml index 62a24d33fea..9d56c66ee69 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/review_product_list.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/review_product_list.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_configure_type_downloadable.xml b/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_configure_type_downloadable.xml index a049c67a3ca..6bd6a69eb6d 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_configure_type_downloadable.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_configure_type_downloadable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_index.xml b/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_index.xml index b4f44c63cc9..8c3a054c788 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_index.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/wishlist_search_view.xml b/app/code/Magento/Msrp/view/frontend/layout/wishlist_search_view.xml index b4f44c63cc9..8c3a054c788 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/wishlist_search_view.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/wishlist_search_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/layout/wishlist_shared_index.xml b/app/code/Magento/Msrp/view/frontend/layout/wishlist_shared_index.xml index b4f44c63cc9..8c3a054c788 100644 --- a/app/code/Magento/Msrp/view/frontend/layout/wishlist_shared_index.xml +++ b/app/code/Magento/Msrp/view/frontend/layout/wishlist_shared_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Msrp/view/frontend/requirejs-config.js b/app/code/Magento/Msrp/view/frontend/requirejs-config.js index efaad153fcc..616e78889ec 100644 --- a/app/code/Magento/Msrp/view/frontend/requirejs-config.js +++ b/app/code/Magento/Msrp/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { addToCart: 'Magento_Msrp/js/msrp' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Msrp/view/frontend/templates/cart/subtotal.phtml b/app/code/Magento/Msrp/view/frontend/templates/cart/subtotal.phtml index 0ffe427dafa..0d744f275b3 100644 --- a/app/code/Magento/Msrp/view/frontend/templates/cart/subtotal.phtml +++ b/app/code/Magento/Msrp/view/frontend/templates/cart/subtotal.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Msrp/view/frontend/templates/cart/totals.phtml b/app/code/Magento/Msrp/view/frontend/templates/cart/totals.phtml index d24444a751c..9e800a8ff42 100644 --- a/app/code/Magento/Msrp/view/frontend/templates/cart/totals.phtml +++ b/app/code/Magento/Msrp/view/frontend/templates/cart/totals.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/view/frontend/templates/popup.phtml b/app/code/Magento/Msrp/view/frontend/templates/popup.phtml index 8675f8ffb24..c82524047a3 100644 --- a/app/code/Magento/Msrp/view/frontend/templates/popup.phtml +++ b/app/code/Magento/Msrp/view/frontend/templates/popup.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_item.phtml b/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_item.phtml index b4f32099009..542ea3e4581 100644 --- a/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_item.phtml +++ b/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_item.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_rss.phtml b/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_rss.phtml index fccf1d4c4e7..34593d77505 100644 --- a/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_rss.phtml +++ b/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_rss.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Msrp/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js b/app/code/Magento/Msrp/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js index a8f191f9992..546d79773e1 100644 --- a/app/code/Magento/Msrp/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js +++ b/app/code/Magento/Msrp/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Msrp/view/frontend/web/template/checkout/minicart/subtotal/totals.html b/app/code/Magento/Msrp/view/frontend/web/template/checkout/minicart/subtotal/totals.html index bfa1dcefcfa..42d02ea8643 100644 --- a/app/code/Magento/Msrp/view/frontend/web/template/checkout/minicart/subtotal/totals.html +++ b/app/code/Magento/Msrp/view/frontend/web/template/checkout/minicart/subtotal/totals.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/Block/Checkout/AbstractMultishipping.php b/app/code/Magento/Multishipping/Block/Checkout/AbstractMultishipping.php index 9c88fe5f49a..b51cfc0dcf6 100644 --- a/app/code/Magento/Multishipping/Block/Checkout/AbstractMultishipping.php +++ b/app/code/Magento/Multishipping/Block/Checkout/AbstractMultishipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Block/Checkout/Address/Select.php b/app/code/Magento/Multishipping/Block/Checkout/Address/Select.php index 6843937e286..5b7899c2dc3 100644 --- a/app/code/Magento/Multishipping/Block/Checkout/Address/Select.php +++ b/app/code/Magento/Multishipping/Block/Checkout/Address/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Block\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Block/Checkout/Addresses.php b/app/code/Magento/Multishipping/Block/Checkout/Addresses.php index 5a919124052..7265d4a76f2 100644 --- a/app/code/Magento/Multishipping/Block/Checkout/Addresses.php +++ b/app/code/Magento/Multishipping/Block/Checkout/Addresses.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Block\Checkout; diff --git a/app/code/Magento/Multishipping/Block/Checkout/Billing.php b/app/code/Magento/Multishipping/Block/Checkout/Billing.php index 34570e12a29..69e26bb9973 100644 --- a/app/code/Magento/Multishipping/Block/Checkout/Billing.php +++ b/app/code/Magento/Multishipping/Block/Checkout/Billing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Block\Checkout; diff --git a/app/code/Magento/Multishipping/Block/Checkout/Billing/Items.php b/app/code/Magento/Multishipping/Block/Checkout/Billing/Items.php index 3d2ca91d3ba..92bb5a3dd37 100644 --- a/app/code/Magento/Multishipping/Block/Checkout/Billing/Items.php +++ b/app/code/Magento/Multishipping/Block/Checkout/Billing/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Block/Checkout/Link.php b/app/code/Magento/Multishipping/Block/Checkout/Link.php index 7e924bdd9f4..dbc6492dba1 100644 --- a/app/code/Magento/Multishipping/Block/Checkout/Link.php +++ b/app/code/Magento/Multishipping/Block/Checkout/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Block\Checkout; diff --git a/app/code/Magento/Multishipping/Block/Checkout/Overview.php b/app/code/Magento/Multishipping/Block/Checkout/Overview.php index 299e85d6f13..fcf5047d03d 100644 --- a/app/code/Magento/Multishipping/Block/Checkout/Overview.php +++ b/app/code/Magento/Multishipping/Block/Checkout/Overview.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Block\Checkout; diff --git a/app/code/Magento/Multishipping/Block/Checkout/Payment/Info.php b/app/code/Magento/Multishipping/Block/Checkout/Payment/Info.php index fc5e8b8f3d0..6b520779877 100644 --- a/app/code/Magento/Multishipping/Block/Checkout/Payment/Info.php +++ b/app/code/Magento/Multishipping/Block/Checkout/Payment/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Block/Checkout/Shipping.php b/app/code/Magento/Multishipping/Block/Checkout/Shipping.php index 6e9fd8f11a1..2b12bff05b1 100644 --- a/app/code/Magento/Multishipping/Block/Checkout/Shipping.php +++ b/app/code/Magento/Multishipping/Block/Checkout/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Block\Checkout; diff --git a/app/code/Magento/Multishipping/Block/Checkout/State.php b/app/code/Magento/Multishipping/Block/Checkout/State.php index fce91e17489..a67a628a1f9 100644 --- a/app/code/Magento/Multishipping/Block/Checkout/State.php +++ b/app/code/Magento/Multishipping/Block/Checkout/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Block/Checkout/Success.php b/app/code/Magento/Multishipping/Block/Checkout/Success.php index d915b61bd8c..7df047a3a70 100644 --- a/app/code/Magento/Multishipping/Block/Checkout/Success.php +++ b/app/code/Magento/Multishipping/Block/Checkout/Success.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Controller/Checkout.php b/app/code/Magento/Multishipping/Controller/Checkout.php index 37d07a3f1c6..5170b3794ab 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout.php +++ b/app/code/Magento/Multishipping/Controller/Checkout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address.php b/app/code/Magento/Multishipping/Controller/Checkout/Address.php index 76ac86ef515..1dd9249978f 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Address.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditAddress.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditAddress.php index 500e7f0afb5..283da5200f9 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditAddress.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditAddress.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditBilling.php index cac28bba45a..5346141489d 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditBilling.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditBilling.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShipping.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShipping.php index 20beaec274b..a20165585b1 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShipping.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShipping.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShippingPost.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShippingPost.php index 0c415ac4e7d..31a2ece92c5 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShippingPost.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShippingPost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/NewBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/NewBilling.php index b12b4a5ee9c..9dda5906560 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Address/NewBilling.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Address/NewBilling.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/NewShipping.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/NewShipping.php index 97faedef056..f48b5f8a513 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Address/NewShipping.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Address/NewShipping.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/SaveBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/SaveBilling.php index 3c0b89373c8..6bfe23a19fb 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Address/SaveBilling.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Address/SaveBilling.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/SelectBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/SelectBilling.php index bd8c8b34498..82113cabdb6 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Address/SelectBilling.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Address/SelectBilling.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/SetBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/SetBilling.php index 17f708497f0..afe59a8ead6 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Address/SetBilling.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Address/SetBilling.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/ShippingSaved.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/ShippingSaved.php index a6eea1b5fa2..3648f7c5462 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Address/ShippingSaved.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Address/ShippingSaved.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Addresses.php b/app/code/Magento/Multishipping/Controller/Checkout/Addresses.php index 6a72b9eae74..8fa0c63e322 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Addresses.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Addresses.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/AddressesPost.php b/app/code/Magento/Multishipping/Controller/Checkout/AddressesPost.php index c9636d5ab5e..8b49791682d 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/AddressesPost.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/AddressesPost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/BackToAddresses.php b/app/code/Magento/Multishipping/Controller/Checkout/BackToAddresses.php index 25282a2d785..2b81ca10634 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/BackToAddresses.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/BackToAddresses.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/BackToBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/BackToBilling.php index fa820f81365..fa51426d5f8 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/BackToBilling.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/BackToBilling.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/BackToShipping.php b/app/code/Magento/Multishipping/Controller/Checkout/BackToShipping.php index 6d1b26209d5..87b032aea28 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/BackToShipping.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/BackToShipping.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Billing.php b/app/code/Magento/Multishipping/Controller/Checkout/Billing.php index 3480e248388..d27fa377e34 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Billing.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Billing.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Index.php b/app/code/Magento/Multishipping/Controller/Checkout/Index.php index 4a9df8b94db..0919949a71b 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Index.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Login.php b/app/code/Magento/Multishipping/Controller/Checkout/Login.php index 57877a3f6ff..7cf89acc258 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Login.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Login.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Overview.php b/app/code/Magento/Multishipping/Controller/Checkout/Overview.php index c3c286f0a3e..5c447f5333b 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Overview.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Overview.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/OverviewPost.php b/app/code/Magento/Multishipping/Controller/Checkout/OverviewPost.php index a36259a081c..dba4eda5393 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/OverviewPost.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/OverviewPost.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Plugin.php b/app/code/Magento/Multishipping/Controller/Checkout/Plugin.php index 38d5e1101e3..0df53a9b779 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Plugin.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Plugin.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Register.php b/app/code/Magento/Multishipping/Controller/Checkout/Register.php index 7a499d2ae12..500ad4ed027 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Register.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Register.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/RemoveItem.php b/app/code/Magento/Multishipping/Controller/Checkout/RemoveItem.php index e315386d399..54572bb7491 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/RemoveItem.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/RemoveItem.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Shipping.php b/app/code/Magento/Multishipping/Controller/Checkout/Shipping.php index 22851a44c33..1e73223e150 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Shipping.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Shipping.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/ShippingPost.php b/app/code/Magento/Multishipping/Controller/Checkout/ShippingPost.php index e31b4259aa7..a7133fc5635 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/ShippingPost.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/ShippingPost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Success.php b/app/code/Magento/Multishipping/Controller/Checkout/Success.php index 58357a3aabb..14669e39241 100644 --- a/app/code/Magento/Multishipping/Controller/Checkout/Success.php +++ b/app/code/Magento/Multishipping/Controller/Checkout/Success.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Helper/Data.php b/app/code/Magento/Multishipping/Helper/Data.php index 5e81593eebc..01679d0d46e 100644 --- a/app/code/Magento/Multishipping/Helper/Data.php +++ b/app/code/Magento/Multishipping/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Helper/Url.php b/app/code/Magento/Multishipping/Helper/Url.php index 9f3778964d4..5f92e3c8c2b 100644 --- a/app/code/Magento/Multishipping/Helper/Url.php +++ b/app/code/Magento/Multishipping/Helper/Url.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Model/Cart/Controller/CartPlugin.php b/app/code/Magento/Multishipping/Model/Cart/Controller/CartPlugin.php index 57534d10a1b..4ee2ea037bf 100644 --- a/app/code/Magento/Multishipping/Model/Cart/Controller/CartPlugin.php +++ b/app/code/Magento/Multishipping/Model/Cart/Controller/CartPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Model\Cart\Controller; diff --git a/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping.php b/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping.php index 4edae88143b..e46f9384bdf 100644 --- a/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping.php +++ b/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/Plugin.php b/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/Plugin.php index 47a69d9cadb..14fffaee6c8 100644 --- a/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/Plugin.php +++ b/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/Plugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Model\Checkout\Type\Multishipping; diff --git a/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/State.php b/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/State.php index 10a3229de18..9d8e7ca1c79 100644 --- a/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/State.php +++ b/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Model\Checkout\Type\Multishipping; diff --git a/app/code/Magento/Multishipping/Model/Payment/Method/Specification/Enabled.php b/app/code/Magento/Multishipping/Model/Payment/Method/Specification/Enabled.php index 24837e92f1a..2101d98328d 100644 --- a/app/code/Magento/Multishipping/Model/Payment/Method/Specification/Enabled.php +++ b/app/code/Magento/Multishipping/Model/Payment/Method/Specification/Enabled.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Model\Payment\Method\Specification; diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Address/SelectTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Address/SelectTest.php index b33609cb9ae..0f3bb310a0d 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Address/SelectTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Address/SelectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Billing/ItemsTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Billing/ItemsTest.php index 056ac173621..e25750779e8 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Billing/ItemsTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Billing/ItemsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/OverviewTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/OverviewTest.php index b583ad25859..602e247fb96 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/OverviewTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/OverviewTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Payment/InfoTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Payment/InfoTest.php index 9b20cb8eda4..624ddbdd59e 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Payment/InfoTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Payment/InfoTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/ShippingTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/ShippingTest.php index 72e6ebe356c..00c2e8d0fce 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/ShippingTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/ShippingTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/StateTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/StateTest.php index c800cea37d5..f71b36d95aa 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/StateTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/StateTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/SuccessTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/SuccessTest.php index f02b282b393..9346aab322e 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/SuccessTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/SuccessTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditAddressTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditAddressTest.php index b0c451d2a33..94607b9ff07 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditAddressTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditAddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditBillingTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditBillingTest.php index 8892fe04b86..51e6d55ef0d 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditBillingTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditBillingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditShippingTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditShippingTest.php index bd0f0b6f119..0b117781f6a 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditShippingTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewBillingTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewBillingTest.php index 398061b4f14..799e69d6ee2 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewBillingTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewBillingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewShippingTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewShippingTest.php index 13911453674..fcd602af081 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewShippingTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/ShippingSavedTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/ShippingSavedTest.php index 2121f3cfe8c..1975acd2c73 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/ShippingSavedTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/ShippingSavedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Test\Unit\Controller\Checkout\Address; diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/PluginTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/PluginTest.php index f863f9d5c07..34f49a9c08e 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/PluginTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/PluginTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Test\Unit\Controller\Checkout; diff --git a/app/code/Magento/Multishipping/Test/Unit/Helper/DataTest.php b/app/code/Magento/Multishipping/Test/Unit/Helper/DataTest.php index 5538df0400d..607d55885a6 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Test\Unit\Helper; diff --git a/app/code/Magento/Multishipping/Test/Unit/Model/Cart/Controller/CartPluginTest.php b/app/code/Magento/Multishipping/Test/Unit/Model/Cart/Controller/CartPluginTest.php index 1cb8c88ca2c..5b95ede88ae 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Model/Cart/Controller/CartPluginTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Model/Cart/Controller/CartPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Test\Unit\Model\Cart\Controller; diff --git a/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/Multishipping/PluginTest.php b/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/Multishipping/PluginTest.php index 75ee606fe88..076b38ecfb8 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/Multishipping/PluginTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/Multishipping/PluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Test\Unit\Model\Checkout\Type\Multishipping; diff --git a/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/MultishippingTest.php b/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/MultishippingTest.php index a1aee0d9f12..a8930f1d0d5 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/MultishippingTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/MultishippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Test\Unit\Model\Checkout\Type; diff --git a/app/code/Magento/Multishipping/Test/Unit/Model/Payment/Method/Specification/EnabledTest.php b/app/code/Magento/Multishipping/Test/Unit/Model/Payment/Method/Specification/EnabledTest.php index 48e4cde475e..a2648115f5a 100644 --- a/app/code/Magento/Multishipping/Test/Unit/Model/Payment/Method/Specification/EnabledTest.php +++ b/app/code/Magento/Multishipping/Test/Unit/Model/Payment/Method/Specification/EnabledTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Multishipping\Test\Unit\Model\Payment\Method\Specification; diff --git a/app/code/Magento/Multishipping/etc/acl.xml b/app/code/Magento/Multishipping/etc/acl.xml index 162ed846055..ff6c602677b 100644 --- a/app/code/Magento/Multishipping/etc/acl.xml +++ b/app/code/Magento/Multishipping/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/etc/adminhtml/system.xml b/app/code/Magento/Multishipping/etc/adminhtml/system.xml index 2f3d5faf997..0a7d177dfb3 100644 --- a/app/code/Magento/Multishipping/etc/adminhtml/system.xml +++ b/app/code/Magento/Multishipping/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/etc/config.xml b/app/code/Magento/Multishipping/etc/config.xml index 5edb6cc13f2..f889feb24ea 100644 --- a/app/code/Magento/Multishipping/etc/config.xml +++ b/app/code/Magento/Multishipping/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/etc/frontend/di.xml b/app/code/Magento/Multishipping/etc/frontend/di.xml index 3f1ee5dcaa3..b1b1fd3ff9d 100644 --- a/app/code/Magento/Multishipping/etc/frontend/di.xml +++ b/app/code/Magento/Multishipping/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/etc/frontend/page_types.xml b/app/code/Magento/Multishipping/etc/frontend/page_types.xml index f9aec7c07da..6a3c935d039 100644 --- a/app/code/Magento/Multishipping/etc/frontend/page_types.xml +++ b/app/code/Magento/Multishipping/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/etc/frontend/routes.xml b/app/code/Magento/Multishipping/etc/frontend/routes.xml index c4b1851a85c..9c6f25d2754 100644 --- a/app/code/Magento/Multishipping/etc/frontend/routes.xml +++ b/app/code/Magento/Multishipping/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/etc/frontend/sections.xml b/app/code/Magento/Multishipping/etc/frontend/sections.xml index 32f7f7deb8a..d44a3ef523f 100644 --- a/app/code/Magento/Multishipping/etc/frontend/sections.xml +++ b/app/code/Magento/Multishipping/etc/frontend/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/etc/module.xml b/app/code/Magento/Multishipping/etc/module.xml index ea02ae49eff..e2dcf3b99df 100644 --- a/app/code/Magento/Multishipping/etc/module.xml +++ b/app/code/Magento/Multishipping/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/registration.php b/app/code/Magento/Multishipping/registration.php index 2471d7d4952..e95cf9e1b53 100644 --- a/app/code/Magento/Multishipping/registration.php +++ b/app/code/Magento/Multishipping/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Multishipping/view/frontend/layout/checkout_cart_index.xml index 58eb4c072a5..c52a2f06846 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/checkout_cart_index.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/checkout_cart_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout.xml index dff4133c10c..1fa12050684 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editaddress.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editaddress.xml index 176c97779b6..bf21bef6d1c 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editaddress.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editaddress.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editbilling.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editbilling.xml index d7510ae0434..4d953f47cbf 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editbilling.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editbilling.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editshipping.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editshipping.xml index 3b35a33e611..2f2c287d623 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editshipping.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editshipping.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newbilling.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newbilling.xml index f78a40b0783..792a69ccaf6 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newbilling.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newbilling.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newshipping.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newshipping.xml index 139701d1b7f..825e58097e4 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newshipping.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newshipping.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_select.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_select.xml index 4c5f9c8658c..03b485e0f23 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_select.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_select.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_selectbilling.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_selectbilling.xml index 97858c3cff9..199e9806097 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_selectbilling.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_selectbilling.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_addresses.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_addresses.xml index 59d521bafe1..c8784610158 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_addresses.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_addresses.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_billing.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_billing.xml index 5cd95362b68..834eaa37ae1 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_billing.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_billing.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_customer_address.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_customer_address.xml index 6fc14d9cc78..8eea94ecb5b 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_customer_address.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_customer_address.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_login.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_login.xml index d9fca23baa4..54a8a841d58 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_login.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_login.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_overview.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_overview.xml index a4282387ab8..b949826d586 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_overview.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_overview.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_register.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_register.xml index f301af0953c..08dda44dee7 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_register.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_register.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_shipping.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_shipping.xml index 6c1b2458646..3b214d7afc9 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_shipping.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_shipping.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_success.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_success.xml index 4e27e2afe74..a69f6a1debc 100644 --- a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_success.xml +++ b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_success.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Multishipping/view/frontend/requirejs-config.js b/app/code/Magento/Multishipping/view/frontend/requirejs-config.js index be52858a559..862c2abfb2c 100644 --- a/app/code/Magento/Multishipping/view/frontend/requirejs-config.js +++ b/app/code/Magento/Multishipping/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -11,4 +11,4 @@ var config = { payment: 'Magento_Multishipping/js/payment' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/address/select.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/address/select.phtml index 9a72da1761e..4f203b20228 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/checkout/address/select.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/checkout/address/select.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/addresses.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/addresses.phtml index 8ae907144d6..ff6b294ba07 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/checkout/addresses.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/checkout/addresses.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing.phtml index c59ce98d0f2..f8adf3f676a 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing/items.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing/items.phtml index 8c479dbc479..51063cbfde3 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing/items.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/item/default.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/item/default.phtml index 5c4b1ef1e70..c2f0302f31f 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/checkout/item/default.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/checkout/item/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/link.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/link.phtml index 29d6803093d..93daad19dd1 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/checkout/link.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/checkout/link.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview.phtml index a046207b7dd..a57cf339197 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview/item.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview/item.phtml index 5b9fc35d7d9..1c42604096e 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview/item.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview/item.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/shipping.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/shipping.phtml index 3c5eaf21cd0..4437a156058 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/checkout/shipping.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/checkout/shipping.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/state.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/state.phtml index 2e2a3a828b4..bb472f48870 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/checkout/state.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/checkout/state.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/success.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/success.phtml index 88c12e3576e..e6f9ff12b03 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/checkout/success.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/checkout/success.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/js/components.phtml b/app/code/Magento/Multishipping/view/frontend/templates/js/components.phtml index e490a6aa049..bdcb2e9bf77 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/templates/multishipping/item/default.phtml b/app/code/Magento/Multishipping/view/frontend/templates/multishipping/item/default.phtml index c0edf49f8e9..65ab31a4b26 100644 --- a/app/code/Magento/Multishipping/view/frontend/templates/multishipping/item/default.phtml +++ b/app/code/Magento/Multishipping/view/frontend/templates/multishipping/item/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Multishipping/view/frontend/web/js/multi-shipping.js b/app/code/Magento/Multishipping/view/frontend/web/js/multi-shipping.js index 4f550bb3ce8..cb9bbeb3b7a 100644 --- a/app/code/Magento/Multishipping/view/frontend/web/js/multi-shipping.js +++ b/app/code/Magento/Multishipping/view/frontend/web/js/multi-shipping.js @@ -1,6 +1,6 @@ /** * @category checkout multi-shipping addresses - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint jquery:true*/ @@ -47,4 +47,4 @@ define([ }); return $.mage.multiShipping; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Multishipping/view/frontend/web/js/overview.js b/app/code/Magento/Multishipping/view/frontend/web/js/overview.js index d1c60552f27..86cba6c70b7 100644 --- a/app/code/Magento/Multishipping/view/frontend/web/js/overview.js +++ b/app/code/Magento/Multishipping/view/frontend/web/js/overview.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint jquery:true*/ diff --git a/app/code/Magento/Multishipping/view/frontend/web/js/payment.js b/app/code/Magento/Multishipping/view/frontend/web/js/payment.js index 763255455d2..18521568292 100644 --- a/app/code/Magento/Multishipping/view/frontend/web/js/payment.js +++ b/app/code/Magento/Multishipping/view/frontend/web/js/payment.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true*/ diff --git a/app/code/Magento/NewRelicReporting/Model/Apm/Deployments.php b/app/code/Magento/NewRelicReporting/Model/Apm/Deployments.php index 186e74509e0..82d802b2910 100644 --- a/app/code/Magento/NewRelicReporting/Model/Apm/Deployments.php +++ b/app/code/Magento/NewRelicReporting/Model/Apm/Deployments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Apm; diff --git a/app/code/Magento/NewRelicReporting/Model/Config.php b/app/code/Magento/NewRelicReporting/Model/Config.php index b80715502d0..960145187dd 100644 --- a/app/code/Magento/NewRelicReporting/Model/Config.php +++ b/app/code/Magento/NewRelicReporting/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model; diff --git a/app/code/Magento/NewRelicReporting/Model/Counter.php b/app/code/Magento/NewRelicReporting/Model/Counter.php index e7e363898b0..34f81bb2401 100644 --- a/app/code/Magento/NewRelicReporting/Model/Counter.php +++ b/app/code/Magento/NewRelicReporting/Model/Counter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model; diff --git a/app/code/Magento/NewRelicReporting/Model/Counts.php b/app/code/Magento/NewRelicReporting/Model/Counts.php index 34d570c0dee..f55d34a5217 100644 --- a/app/code/Magento/NewRelicReporting/Model/Counts.php +++ b/app/code/Magento/NewRelicReporting/Model/Counts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/Cron.php b/app/code/Magento/NewRelicReporting/Model/Cron.php index f52ff2b766a..ae2fb4ed2ce 100644 --- a/app/code/Magento/NewRelicReporting/Model/Cron.php +++ b/app/code/Magento/NewRelicReporting/Model/Cron.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model; diff --git a/app/code/Magento/NewRelicReporting/Model/Cron/ReportCounts.php b/app/code/Magento/NewRelicReporting/Model/Cron/ReportCounts.php index de43110a33c..1df850aa509 100644 --- a/app/code/Magento/NewRelicReporting/Model/Cron/ReportCounts.php +++ b/app/code/Magento/NewRelicReporting/Model/Cron/ReportCounts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Cron; diff --git a/app/code/Magento/NewRelicReporting/Model/Cron/ReportModulesInfo.php b/app/code/Magento/NewRelicReporting/Model/Cron/ReportModulesInfo.php index 1e5ba1a3262..45d5e9d239a 100644 --- a/app/code/Magento/NewRelicReporting/Model/Cron/ReportModulesInfo.php +++ b/app/code/Magento/NewRelicReporting/Model/Cron/ReportModulesInfo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Cron; diff --git a/app/code/Magento/NewRelicReporting/Model/Cron/ReportNewRelicCron.php b/app/code/Magento/NewRelicReporting/Model/Cron/ReportNewRelicCron.php index cd980c9e3db..2529684a742 100644 --- a/app/code/Magento/NewRelicReporting/Model/Cron/ReportNewRelicCron.php +++ b/app/code/Magento/NewRelicReporting/Model/Cron/ReportNewRelicCron.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Cron; diff --git a/app/code/Magento/NewRelicReporting/Model/CronEvent.php b/app/code/Magento/NewRelicReporting/Model/CronEvent.php index 253359ab9db..6f36816e6c3 100644 --- a/app/code/Magento/NewRelicReporting/Model/CronEvent.php +++ b/app/code/Magento/NewRelicReporting/Model/CronEvent.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model; diff --git a/app/code/Magento/NewRelicReporting/Model/Module.php b/app/code/Magento/NewRelicReporting/Model/Module.php index 01dd4039af2..c6fe68a98c1 100644 --- a/app/code/Magento/NewRelicReporting/Model/Module.php +++ b/app/code/Magento/NewRelicReporting/Model/Module.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/Module/Collect.php b/app/code/Magento/NewRelicReporting/Model/Module/Collect.php index df785604ab8..541ddafa7f5 100644 --- a/app/code/Magento/NewRelicReporting/Model/Module/Collect.php +++ b/app/code/Magento/NewRelicReporting/Model/Module/Collect.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Module; diff --git a/app/code/Magento/NewRelicReporting/Model/NewRelicWrapper.php b/app/code/Magento/NewRelicReporting/Model/NewRelicWrapper.php index 8d94ef26f62..92884f06a9e 100644 --- a/app/code/Magento/NewRelicReporting/Model/NewRelicWrapper.php +++ b/app/code/Magento/NewRelicReporting/Model/NewRelicWrapper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/CheckConfig.php b/app/code/Magento/NewRelicReporting/Model/Observer/CheckConfig.php index e4e5e26cce6..c298e0c3f34 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/CheckConfig.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/CheckConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdmins.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdmins.php index 0700c23280e..c359b5f10f4 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdmins.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdmins.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdminsToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdminsToNewRelic.php index 5914723fd6f..da26b0dce0c 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdminsToNewRelic.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdminsToNewRelic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsers.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsers.php index 87a59df5d4e..be940955067 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsers.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsers.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsersToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsersToNewRelic.php index d3ceda74386..cfd9ec9eaeb 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsersToNewRelic.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsersToNewRelic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlaced.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlaced.php index ed31abf13fc..1244b73865e 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlaced.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlaced.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlacedToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlacedToNewRelic.php index b672f5c9220..43658e8d23c 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlacedToNewRelic.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlacedToNewRelic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeleted.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeleted.php index 5f90427ef7c..ce35a426c12 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeleted.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeleted.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeletedToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeletedToNewRelic.php index d542bec5ca8..9786b6c7607 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeletedToNewRelic.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeletedToNewRelic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSaved.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSaved.php index bb2c7d66b8e..4373b6d2bf1 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSaved.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSaved.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSavedToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSavedToNewRelic.php index 257d9b042dc..8904903b405 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSavedToNewRelic.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSavedToNewRelic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlush.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlush.php index b7bc78756c3..a9e0682123e 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlush.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlush.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlushToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlushToNewRelic.php index 4ee871c9a4e..d279117df9e 100644 --- a/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlushToNewRelic.php +++ b/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlushToNewRelic.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Model/Orders.php b/app/code/Magento/NewRelicReporting/Model/Orders.php index 9d427d3b386..08658c57169 100644 --- a/app/code/Magento/NewRelicReporting/Model/Orders.php +++ b/app/code/Magento/NewRelicReporting/Model/Orders.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts.php index ef4ae2c3445..28e2b5fe164 100644 --- a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts.php +++ b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts/Collection.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts/Collection.php index ed79f8ea259..edf0bd81a26 100644 --- a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts/Collection.php +++ b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module.php index 1cef6156bc8..ba7c884cb8f 100644 --- a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module.php +++ b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module/Collection.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module/Collection.php index cf22f46d207..5f83bd554af 100644 --- a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module/Collection.php +++ b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders.php index 3c4c213364a..b9e6a4ff37e 100644 --- a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders.php +++ b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders/Collection.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders/Collection.php index a3eb8374f3b..7fa347b075b 100644 --- a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders/Collection.php +++ b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/System.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/System.php index 6c7b682b6c3..357de415a43 100644 --- a/app/code/Magento/NewRelicReporting/Model/ResourceModel/System.php +++ b/app/code/Magento/NewRelicReporting/Model/ResourceModel/System.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/System/Collection.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/System/Collection.php index a868f91ef9e..d06242a17b0 100644 --- a/app/code/Magento/NewRelicReporting/Model/ResourceModel/System/Collection.php +++ b/app/code/Magento/NewRelicReporting/Model/ResourceModel/System/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users.php index efea6b6fa12..6666edbca66 100644 --- a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users.php +++ b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users/Collection.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users/Collection.php index 282d44fd0b4..350eb7a1f29 100644 --- a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users/Collection.php +++ b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/System.php b/app/code/Magento/NewRelicReporting/Model/System.php index 3c0de6e6c7e..068b03ee0e5 100644 --- a/app/code/Magento/NewRelicReporting/Model/System.php +++ b/app/code/Magento/NewRelicReporting/Model/System.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Model/Users.php b/app/code/Magento/NewRelicReporting/Model/Users.php index 9e55daae831..a184153ae22 100644 --- a/app/code/Magento/NewRelicReporting/Model/Users.php +++ b/app/code/Magento/NewRelicReporting/Model/Users.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Setup/InstallSchema.php b/app/code/Magento/NewRelicReporting/Setup/InstallSchema.php index a780129f645..516956b9e94 100644 --- a/app/code/Magento/NewRelicReporting/Setup/InstallSchema.php +++ b/app/code/Magento/NewRelicReporting/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Apm/DeploymentsTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Apm/DeploymentsTest.php index 3dd5cdf22ae..3951f0b9277 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Apm/DeploymentsTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Apm/DeploymentsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Apm; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/CounterTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/CounterTest.php index 67823698cd8..fd6bfed6e59 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/CounterTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/CounterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportCountsTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportCountsTest.php index 89f4b978187..2367e388ce3 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportCountsTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportCountsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Cron; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportModulesInfoTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportModulesInfoTest.php index 018d44fbf6c..78a000c9a40 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportModulesInfoTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportModulesInfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Cron; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportNewRelicCronTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportNewRelicCronTest.php index 785a80e849e..97ae0b04f45 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportNewRelicCronTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportNewRelicCronTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Cron; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronEventTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronEventTest.php index 0abb75b9119..2fbe0fc3cb6 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronEventTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronEventTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronTest.php index a32f7abca88..26a383a82e1 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Module/CollectTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Module/CollectTest.php index 5663cf50787..dc33a0b7122 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Module/CollectTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Module/CollectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Module; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/CheckConfigTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/CheckConfigTest.php index 966479c791b..cafbc3b9bb4 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/CheckConfigTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/CheckConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsTest.php index dcfdc4dffd6..9cd6d3bd7b0 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsToNewRelicTest.php index e10422366af..50c2f969300 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsToNewRelicTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsToNewRelicTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersTest.php index 303f934430e..38d0154d63e 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersToNewRelicTest.php index 930a57cbb80..14e46051ee4 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersToNewRelicTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersToNewRelicTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedTest.php index a8178d35408..e2f76374c4c 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedToNewRelicTest.php index c9ad4cec304..333c2bf3956 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedToNewRelicTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedToNewRelicTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedTest.php index 09c5c2b7584..40490586c12 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedToNewRelicTest.php index a445a590529..6776fd2933e 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedToNewRelicTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedToNewRelicTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedTest.php index dfc04d73f10..27e5aa0ef1b 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedToNewRelicTest.php index ebf019e41dd..d69fb63b33f 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedToNewRelicTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedToNewRelicTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushTest.php index a9145eae250..6b07c09e775 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushToNewRelicTest.php index e0d65f31306..5f18fbe3940 100644 --- a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushToNewRelicTest.php +++ b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushToNewRelicTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\NewRelicReporting\Test\Unit\Model\Observer; diff --git a/app/code/Magento/NewRelicReporting/etc/acl.xml b/app/code/Magento/NewRelicReporting/etc/acl.xml index 30abef296f3..ee46c115832 100644 --- a/app/code/Magento/NewRelicReporting/etc/acl.xml +++ b/app/code/Magento/NewRelicReporting/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/NewRelicReporting/etc/adminhtml/events.xml b/app/code/Magento/NewRelicReporting/etc/adminhtml/events.xml index efccf32e5e0..41ddbe5df4c 100644 --- a/app/code/Magento/NewRelicReporting/etc/adminhtml/events.xml +++ b/app/code/Magento/NewRelicReporting/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/NewRelicReporting/etc/adminhtml/system.xml b/app/code/Magento/NewRelicReporting/etc/adminhtml/system.xml index 313f4874657..46a84b42c3b 100644 --- a/app/code/Magento/NewRelicReporting/etc/adminhtml/system.xml +++ b/app/code/Magento/NewRelicReporting/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/NewRelicReporting/etc/config.xml b/app/code/Magento/NewRelicReporting/etc/config.xml index 1b42616ab88..64acae4475c 100644 --- a/app/code/Magento/NewRelicReporting/etc/config.xml +++ b/app/code/Magento/NewRelicReporting/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/NewRelicReporting/etc/crontab.xml b/app/code/Magento/NewRelicReporting/etc/crontab.xml index 9482d81d056..d5dff2950a6 100644 --- a/app/code/Magento/NewRelicReporting/etc/crontab.xml +++ b/app/code/Magento/NewRelicReporting/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/NewRelicReporting/etc/di.xml b/app/code/Magento/NewRelicReporting/etc/di.xml index 6e3a24be919..edf402a4217 100644 --- a/app/code/Magento/NewRelicReporting/etc/di.xml +++ b/app/code/Magento/NewRelicReporting/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/NewRelicReporting/etc/events.xml b/app/code/Magento/NewRelicReporting/etc/events.xml index eac30cff3b4..b6ee0ff3b0d 100644 --- a/app/code/Magento/NewRelicReporting/etc/events.xml +++ b/app/code/Magento/NewRelicReporting/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/NewRelicReporting/etc/frontend/events.xml b/app/code/Magento/NewRelicReporting/etc/frontend/events.xml index e961c865cf4..d88c58467f5 100644 --- a/app/code/Magento/NewRelicReporting/etc/frontend/events.xml +++ b/app/code/Magento/NewRelicReporting/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/NewRelicReporting/etc/module.xml b/app/code/Magento/NewRelicReporting/etc/module.xml index 4e74f94bb62..b357f225f6b 100644 --- a/app/code/Magento/NewRelicReporting/etc/module.xml +++ b/app/code/Magento/NewRelicReporting/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/NewRelicReporting/registration.php b/app/code/Magento/NewRelicReporting/registration.php index d3aacff5d91..dc142957159 100644 --- a/app/code/Magento/NewRelicReporting/registration.php +++ b/app/code/Magento/NewRelicReporting/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Problem.php b/app/code/Magento/Newsletter/Block/Adminhtml/Problem.php index 4280a82546a..1d8553fbd2c 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Problem.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Problem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Block\Adminhtml; diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Filter/Checkbox.php b/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Filter/Checkbox.php index 430f7cf57c2..c4842717f55 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Filter/Checkbox.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Filter/Checkbox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Renderer/Checkbox.php b/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Renderer/Checkbox.php index db07e874cd6..6d5181aa994 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Renderer/Checkbox.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Renderer/Checkbox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit.php b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit.php index f4808f00cd3..86081db1e14 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Block\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php index a5385298eba..95429669d56 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Grid/Renderer/Action.php b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Grid/Renderer/Action.php index e3ca7e9ce7a..87d412b9500 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Grid/Renderer/Action.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Grid/Renderer/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview.php b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview.php index 67a6756df82..f632fddac69 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview/Form.php b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview/Form.php index 0e4a69d1050..1ca6d5af489 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview/Form.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber.php b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber.php index 142d0a20312..5cdff69e775 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid.php b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid.php index c5e0c496eca..a4d5c8c8999 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Checkbox.php b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Checkbox.php index 5d39cd9a6f6..fc17bb3adb0 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Checkbox.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Checkbox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Website.php b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Website.php index da242840fcd..d3fc33bd973 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Website.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Renderer/Checkbox.php b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Renderer/Checkbox.php index 9d0b16b3385..36fa7afc846 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Renderer/Checkbox.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Renderer/Checkbox.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template.php index 4a9e06c2a88..bc6facd7e20 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Template.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Template.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit.php index 4e55d61f92a..289fd868840 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit/Form.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit/Form.php index 4407efd702b..1b9dc9b7736 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit/Form.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid.php index 817ef89a41f..8eac716be65 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Action.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Action.php index 77c9a5afb2a..f0927bca130 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Action.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Sender.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Sender.php index 42b50caa9c3..e7cd054956a 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Sender.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Sender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview.php index 0a415fe7c20..85027ead007 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview/Form.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview/Form.php index ac6d569d69a..dce93964725 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview/Form.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Subscribe.php b/app/code/Magento/Newsletter/Block/Subscribe.php index 0cfd2fd7a12..98a58b778af 100644 --- a/app/code/Magento/Newsletter/Block/Subscribe.php +++ b/app/code/Magento/Newsletter/Block/Subscribe.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/GroupOptionHash.php b/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/GroupOptionHash.php index 450bf4f9997..e644bb1ce2e 100644 --- a/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/GroupOptionHash.php +++ b/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/GroupOptionHash.php @@ -2,7 +2,7 @@ /** * Newsletter group options * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Block\Subscribe\Grid\Options; diff --git a/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/StoreOptionHash.php b/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/StoreOptionHash.php index 95aeedeb253..67f40616f50 100644 --- a/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/StoreOptionHash.php +++ b/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/StoreOptionHash.php @@ -2,7 +2,7 @@ /** * Newsletter store options * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Block\Subscribe\Grid\Options; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Problem.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Problem.php index 72fe39d2e3e..dff1cd79bcd 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Problem.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Problem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Grid.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Grid.php index 512e8cc97b4..8f8fd43441e 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Grid.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Problem; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Index.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Index.php index 0400c14a98c..4939420f97f 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Index.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Problem; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue.php index 8e1a3966f1f..7ff6e3ae789 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Cancel.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Cancel.php index 82e82a2c40e..7657d2bb085 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Cancel.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Cancel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Drop.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Drop.php index 0bd1196a200..3dc2e0f0db1 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Drop.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Drop.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Edit.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Edit.php index a2a4406bfba..ce7941b61fc 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Edit.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Grid.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Grid.php index 2cd7cb78300..90d4382ece7 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Grid.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Index.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Index.php index 450b3c83e4b..93a6f86f054 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Index.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Pause.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Pause.php index 43c9e55d97b..ca9c4b2eb6a 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Pause.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Pause.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Preview.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Preview.php index fdf2d8bf89f..9d4958520dd 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Preview.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Preview.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Resume.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Resume.php index 31ac1d89f7c..993d888878b 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Resume.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Resume.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Save.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Save.php index b7614f1657b..01e35eec255 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Save.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Sending.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Sending.php index d919ab3c7e9..ff6604b6820 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Sending.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Sending.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Start.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Start.php index 28ca6b4463e..000885a7df3 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Start.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Start.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber.php index 818d156aff0..8e04753a1e4 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportCsv.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportCsv.php index 689cf1befab..76ad9ec8c1c 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportCsv.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Subscriber; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportXml.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportXml.php index b6369756dff..c6ff561bcc2 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportXml.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportXml.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Subscriber; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Grid.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Grid.php index 0c10639963c..2d480582d03 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Grid.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Subscriber; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Index.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Index.php index 22a2e788650..aeda4d69259 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Index.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Subscriber; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassDelete.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassDelete.php index f97c8a2b649..78220054366 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassDelete.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassDelete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Subscriber; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassUnsubscribe.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassUnsubscribe.php index 04ebff9922d..13b0ccc0fa1 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassUnsubscribe.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassUnsubscribe.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Subscriber; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template.php index fdd891e37c2..95331b956b7 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Template.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Template.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Delete.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Delete.php index 8c63c508642..ec3ef04bdff 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Delete.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Template; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Drop.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Drop.php index 0084102b765..40b3b94d216 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Drop.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Drop.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Template; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Edit.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Edit.php index 1c10f9bc42b..a40e354604d 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Edit.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Template; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Grid.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Grid.php index 6e3dbfb664d..b40b8cb5acc 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Grid.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Template; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Index.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Index.php index 3376c1e4e4d..c072179d475 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Index.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Template; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/NewAction.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/NewAction.php index 0faaf06442f..77885ad12ac 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/NewAction.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Template; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Preview.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Preview.php index da2fc7e808b..808042c7048 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Preview.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Preview.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Template; diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Save.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Save.php index 526c18305a1..18beb660925 100644 --- a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Save.php +++ b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Adminhtml\Template; diff --git a/app/code/Magento/Newsletter/Controller/Manage.php b/app/code/Magento/Newsletter/Controller/Manage.php index e362c8a247c..d8682388380 100644 --- a/app/code/Magento/Newsletter/Controller/Manage.php +++ b/app/code/Magento/Newsletter/Controller/Manage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller; diff --git a/app/code/Magento/Newsletter/Controller/Manage/Index.php b/app/code/Magento/Newsletter/Controller/Manage/Index.php index 90ae81b10dd..df73ddcddd5 100644 --- a/app/code/Magento/Newsletter/Controller/Manage/Index.php +++ b/app/code/Magento/Newsletter/Controller/Manage/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Manage; diff --git a/app/code/Magento/Newsletter/Controller/Manage/Save.php b/app/code/Magento/Newsletter/Controller/Manage/Save.php index b6af7d3f637..eb10f34afc8 100644 --- a/app/code/Magento/Newsletter/Controller/Manage/Save.php +++ b/app/code/Magento/Newsletter/Controller/Manage/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Manage; diff --git a/app/code/Magento/Newsletter/Controller/Subscriber.php b/app/code/Magento/Newsletter/Controller/Subscriber.php index ec4952204df..dee70d19b19 100644 --- a/app/code/Magento/Newsletter/Controller/Subscriber.php +++ b/app/code/Magento/Newsletter/Controller/Subscriber.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Controller/Subscriber/Confirm.php b/app/code/Magento/Newsletter/Controller/Subscriber/Confirm.php index 2a017ef4837..bc1324180e9 100644 --- a/app/code/Magento/Newsletter/Controller/Subscriber/Confirm.php +++ b/app/code/Magento/Newsletter/Controller/Subscriber/Confirm.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Subscriber; diff --git a/app/code/Magento/Newsletter/Controller/Subscriber/NewAction.php b/app/code/Magento/Newsletter/Controller/Subscriber/NewAction.php index a4f6dc64906..36b204ff5c7 100644 --- a/app/code/Magento/Newsletter/Controller/Subscriber/NewAction.php +++ b/app/code/Magento/Newsletter/Controller/Subscriber/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Subscriber; diff --git a/app/code/Magento/Newsletter/Controller/Subscriber/Unsubscribe.php b/app/code/Magento/Newsletter/Controller/Subscriber/Unsubscribe.php index 512e5771331..db9880d62a3 100644 --- a/app/code/Magento/Newsletter/Controller/Subscriber/Unsubscribe.php +++ b/app/code/Magento/Newsletter/Controller/Subscriber/Unsubscribe.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Controller\Subscriber; diff --git a/app/code/Magento/Newsletter/Helper/Data.php b/app/code/Magento/Newsletter/Helper/Data.php index 6d74949d631..096928a6524 100644 --- a/app/code/Magento/Newsletter/Helper/Data.php +++ b/app/code/Magento/Newsletter/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Model/Observer.php b/app/code/Magento/Newsletter/Model/Observer.php index 65e08f69c92..4fd50d5b8cc 100644 --- a/app/code/Magento/Newsletter/Model/Observer.php +++ b/app/code/Magento/Newsletter/Model/Observer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model; diff --git a/app/code/Magento/Newsletter/Model/Plugin/CustomerPlugin.php b/app/code/Magento/Newsletter/Model/Plugin/CustomerPlugin.php index 3cae720825a..5896d30285b 100644 --- a/app/code/Magento/Newsletter/Model/Plugin/CustomerPlugin.php +++ b/app/code/Magento/Newsletter/Model/Plugin/CustomerPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model\Plugin; diff --git a/app/code/Magento/Newsletter/Model/Problem.php b/app/code/Magento/Newsletter/Model/Problem.php index 43fec3ca3f6..ef3477303db 100644 --- a/app/code/Magento/Newsletter/Model/Problem.php +++ b/app/code/Magento/Newsletter/Model/Problem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model; diff --git a/app/code/Magento/Newsletter/Model/Queue.php b/app/code/Magento/Newsletter/Model/Queue.php index c78c0ee5903..3307d286231 100644 --- a/app/code/Magento/Newsletter/Model/Queue.php +++ b/app/code/Magento/Newsletter/Model/Queue.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model; diff --git a/app/code/Magento/Newsletter/Model/Queue/Options/Status.php b/app/code/Magento/Newsletter/Model/Queue/Options/Status.php index f87aa7fd8b1..ed4784a0dbb 100644 --- a/app/code/Magento/Newsletter/Model/Queue/Options/Status.php +++ b/app/code/Magento/Newsletter/Model/Queue/Options/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Model/Queue/TransportBuilder.php b/app/code/Magento/Newsletter/Model/Queue/TransportBuilder.php index 9bbc7dec9e5..5c52adaf0c9 100644 --- a/app/code/Magento/Newsletter/Model/Queue/TransportBuilder.php +++ b/app/code/Magento/Newsletter/Model/Queue/TransportBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model\Queue; diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Grid/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Grid/Collection.php index ba7890a5699..cd077df8d7e 100644 --- a/app/code/Magento/Newsletter/Model/ResourceModel/Grid/Collection.php +++ b/app/code/Magento/Newsletter/Model/ResourceModel/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Problem.php b/app/code/Magento/Newsletter/Model/ResourceModel/Problem.php index 68f51c02bb1..b9efce7df17 100644 --- a/app/code/Magento/Newsletter/Model/ResourceModel/Problem.php +++ b/app/code/Magento/Newsletter/Model/ResourceModel/Problem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model\ResourceModel; diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Problem/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Problem/Collection.php index 649c92773f3..fb101570aea 100644 --- a/app/code/Magento/Newsletter/Model/ResourceModel/Problem/Collection.php +++ b/app/code/Magento/Newsletter/Model/ResourceModel/Problem/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model\ResourceModel\Problem; diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Queue.php b/app/code/Magento/Newsletter/Model/ResourceModel/Queue.php index b2567784662..212824cb766 100644 --- a/app/code/Magento/Newsletter/Model/ResourceModel/Queue.php +++ b/app/code/Magento/Newsletter/Model/ResourceModel/Queue.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model\ResourceModel; diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Collection.php index 1975df50abd..eaacdf0d5a4 100644 --- a/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Collection.php +++ b/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model\ResourceModel\Queue; diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Grid/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Grid/Collection.php index 740365ce881..0bba936e0d6 100644 --- a/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Grid/Collection.php +++ b/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber.php b/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber.php index 73b4ea37d17..03139a7b29c 100644 --- a/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber.php +++ b/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model\ResourceModel; diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Collection.php index f336036bd18..acd80e2fe6f 100644 --- a/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Collection.php +++ b/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model\ResourceModel\Subscriber; diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Grid/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Grid/Collection.php index 143d986f5b9..3fb72ee098f 100644 --- a/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Grid/Collection.php +++ b/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Grid/Collection.php @@ -2,7 +2,7 @@ /** * Newsletter subscriber grid collection * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model\ResourceModel\Subscriber\Grid; diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Template.php b/app/code/Magento/Newsletter/Model/ResourceModel/Template.php index 22b4376f087..cfaadf28080 100644 --- a/app/code/Magento/Newsletter/Model/ResourceModel/Template.php +++ b/app/code/Magento/Newsletter/Model/ResourceModel/Template.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Template/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Template/Collection.php index 7bac4bb8ff9..9e42f31c8dc 100644 --- a/app/code/Magento/Newsletter/Model/ResourceModel/Template/Collection.php +++ b/app/code/Magento/Newsletter/Model/ResourceModel/Template/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model\ResourceModel\Template; diff --git a/app/code/Magento/Newsletter/Model/Session.php b/app/code/Magento/Newsletter/Model/Session.php index 474baf0ceb4..bca6851ca9d 100644 --- a/app/code/Magento/Newsletter/Model/Session.php +++ b/app/code/Magento/Newsletter/Model/Session.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model; diff --git a/app/code/Magento/Newsletter/Model/Subscriber.php b/app/code/Magento/Newsletter/Model/Subscriber.php index 431d8ed4a55..cff6d7f5893 100644 --- a/app/code/Magento/Newsletter/Model/Subscriber.php +++ b/app/code/Magento/Newsletter/Model/Subscriber.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model; diff --git a/app/code/Magento/Newsletter/Model/Template.php b/app/code/Magento/Newsletter/Model/Template.php index 09ea825c612..f13d8c3e4fe 100644 --- a/app/code/Magento/Newsletter/Model/Template.php +++ b/app/code/Magento/Newsletter/Model/Template.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Model; diff --git a/app/code/Magento/Newsletter/Model/Template/Filter.php b/app/code/Magento/Newsletter/Model/Template/Filter.php index ea56a6d03e0..04c85aae1d5 100644 --- a/app/code/Magento/Newsletter/Model/Template/Filter.php +++ b/app/code/Magento/Newsletter/Model/Template/Filter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Setup/InstallSchema.php b/app/code/Magento/Newsletter/Setup/InstallSchema.php index 1e88aafee30..ad82ed9c6ad 100644 --- a/app/code/Magento/Newsletter/Setup/InstallSchema.php +++ b/app/code/Magento/Newsletter/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Queue/PreviewTest.php b/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Queue/PreviewTest.php index 17b8f6de3ed..40f7c61738b 100644 --- a/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Queue/PreviewTest.php +++ b/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Queue/PreviewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Test\Unit\Block\Adminhtml\Queue; diff --git a/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Template/PreviewTest.php b/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Template/PreviewTest.php index f5aab0a39e8..e241b3ff7d3 100644 --- a/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Template/PreviewTest.php +++ b/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Template/PreviewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Test\Unit\Block\Adminhtml\Template; diff --git a/app/code/Magento/Newsletter/Test/Unit/Controller/Manage/SaveTest.php b/app/code/Magento/Newsletter/Test/Unit/Controller/Manage/SaveTest.php index 46b0207124f..5ac95da3b2b 100644 --- a/app/code/Magento/Newsletter/Test/Unit/Controller/Manage/SaveTest.php +++ b/app/code/Magento/Newsletter/Test/Unit/Controller/Manage/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/Plugin/CustomerPluginTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/Plugin/CustomerPluginTest.php index 458d6ea22b0..d7c8f1e35dd 100644 --- a/app/code/Magento/Newsletter/Test/Unit/Model/Plugin/CustomerPluginTest.php +++ b/app/code/Magento/Newsletter/Test/Unit/Model/Plugin/CustomerPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/Queue/TransportBuilderTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/Queue/TransportBuilderTest.php index 7b730fc33b5..45728d89b52 100644 --- a/app/code/Magento/Newsletter/Test/Unit/Model/Queue/TransportBuilderTest.php +++ b/app/code/Magento/Newsletter/Test/Unit/Model/Queue/TransportBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Test\Unit\Model\Queue; diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/QueueTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/QueueTest.php index 907eb744638..e93181f1c39 100644 --- a/app/code/Magento/Newsletter/Test/Unit/Model/QueueTest.php +++ b/app/code/Magento/Newsletter/Test/Unit/Model/QueueTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Test\Unit\Model; diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/SubscriberTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/SubscriberTest.php index ea884a9e720..e206d7c474c 100644 --- a/app/code/Magento/Newsletter/Test/Unit/Model/SubscriberTest.php +++ b/app/code/Magento/Newsletter/Test/Unit/Model/SubscriberTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Test\Unit\Model; diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/Template/FilterTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/Template/FilterTest.php index 36adf86829c..364028758e8 100644 --- a/app/code/Magento/Newsletter/Test/Unit/Model/Template/FilterTest.php +++ b/app/code/Magento/Newsletter/Test/Unit/Model/Template/FilterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Newsletter\Test\Unit\Model\Template; diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/TemplateTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/TemplateTest.php index c8599230652..fbaa4fa31a6 100644 --- a/app/code/Magento/Newsletter/Test/Unit/Model/TemplateTest.php +++ b/app/code/Magento/Newsletter/Test/Unit/Model/TemplateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/etc/acl.xml b/app/code/Magento/Newsletter/etc/acl.xml index e476239c211..d2c4f127d77 100644 --- a/app/code/Magento/Newsletter/etc/acl.xml +++ b/app/code/Magento/Newsletter/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/etc/adminhtml/menu.xml b/app/code/Magento/Newsletter/etc/adminhtml/menu.xml index 39f1c74de61..b3bc7f94215 100644 --- a/app/code/Magento/Newsletter/etc/adminhtml/menu.xml +++ b/app/code/Magento/Newsletter/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/etc/adminhtml/routes.xml b/app/code/Magento/Newsletter/etc/adminhtml/routes.xml index 94315402a51..0a4a7e18313 100644 --- a/app/code/Magento/Newsletter/etc/adminhtml/routes.xml +++ b/app/code/Magento/Newsletter/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Newsletter" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Newsletter/etc/adminhtml/system.xml b/app/code/Magento/Newsletter/etc/adminhtml/system.xml index faa7576ac5a..f553e370766 100644 --- a/app/code/Magento/Newsletter/etc/adminhtml/system.xml +++ b/app/code/Magento/Newsletter/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/etc/config.xml b/app/code/Magento/Newsletter/etc/config.xml index c52b363aef2..0b42387a8e9 100644 --- a/app/code/Magento/Newsletter/etc/config.xml +++ b/app/code/Magento/Newsletter/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/etc/crontab.xml b/app/code/Magento/Newsletter/etc/crontab.xml index ec389e00631..85c700cc1a1 100644 --- a/app/code/Magento/Newsletter/etc/crontab.xml +++ b/app/code/Magento/Newsletter/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/etc/di.xml b/app/code/Magento/Newsletter/etc/di.xml index 1fd6728253b..e77b5b44325 100644 --- a/app/code/Magento/Newsletter/etc/di.xml +++ b/app/code/Magento/Newsletter/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/etc/email_templates.xml b/app/code/Magento/Newsletter/etc/email_templates.xml index c7bbbaa1ac4..ebb01ae3a62 100644 --- a/app/code/Magento/Newsletter/etc/email_templates.xml +++ b/app/code/Magento/Newsletter/etc/email_templates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/etc/extension_attributes.xml b/app/code/Magento/Newsletter/etc/extension_attributes.xml index 024623b3f71..97dacaf2767 100644 --- a/app/code/Magento/Newsletter/etc/extension_attributes.xml +++ b/app/code/Magento/Newsletter/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -10,4 +10,4 @@ <extension_attributes for="Magento\Customer\Api\Data\CustomerInterface"> <attribute code="is_subscribed" type="boolean" /> </extension_attributes> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Newsletter/etc/frontend/di.xml b/app/code/Magento/Newsletter/etc/frontend/di.xml index 433d379bf31..d1ca5a2eb2b 100644 --- a/app/code/Magento/Newsletter/etc/frontend/di.xml +++ b/app/code/Magento/Newsletter/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/etc/frontend/page_types.xml b/app/code/Magento/Newsletter/etc/frontend/page_types.xml index b522d3987cf..d0c5e54ad4f 100644 --- a/app/code/Magento/Newsletter/etc/frontend/page_types.xml +++ b/app/code/Magento/Newsletter/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/etc/frontend/routes.xml b/app/code/Magento/Newsletter/etc/frontend/routes.xml index d869a7c2311..79980dfe221 100644 --- a/app/code/Magento/Newsletter/etc/frontend/routes.xml +++ b/app/code/Magento/Newsletter/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Newsletter" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Newsletter/etc/module.xml b/app/code/Magento/Newsletter/etc/module.xml index 082ad665a6b..95197eb5d31 100644 --- a/app/code/Magento/Newsletter/etc/module.xml +++ b/app/code/Magento/Newsletter/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/registration.php b/app/code/Magento/Newsletter/registration.php index 8693c7e11c1..91ae31f2005 100644 --- a/app/code/Magento/Newsletter/registration.php +++ b/app/code/Magento/Newsletter/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/customer_index_edit.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/customer_index_edit.xml index 29a2ba611de..07acd82c829 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/customer_index_edit.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/customer_index_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_block.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_block.xml index f7cd80e90f6..e539b397e13 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_block.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_grid.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_grid.xml index 5877ff0c296..d388b31aef8 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_grid.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_index.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_index.xml index d142b55f254..6b08c137658 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_index.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_edit.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_edit.xml index ceb96465252..59aae161de1 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_edit.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid.xml index 56d9777235e..b9d1fd24c7d 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid_block.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid_block.xml index 42ddab3bae2..93c0feaee36 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid_block.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_index.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_index.xml index b9af460cb73..044a50eff2b 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_index.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview.xml index 13c329b2f02..39575f6a190 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview_popup.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview_popup.xml index 5132cc69d47..5181d114215 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview_popup.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview_popup.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_block.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_block.xml index f675406f790..4623fde4ffa 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_block.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportcsv.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportcsv.xml index 92081b30617..8ae23e82da6 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportcsv.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportcsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportxml.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportxml.xml index 92081b30617..8ae23e82da6 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportxml.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportxml.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_grid.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_grid.xml index 37fd29655c6..b8b044c78b3 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_grid.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_index.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_index.xml index 8c12adc7b9c..b4533e09586 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_index.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_edit.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_edit.xml index 2cb4c825c35..b8287aeacd4 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_edit.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview.xml index 81898079f46..29752027443 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview_popup.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview_popup.xml index 15678f902b2..4b522534eb5 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview_popup.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview_popup.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/preview.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/preview.xml index 15678f902b2..4b522534eb5 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/layout/preview.xml +++ b/app/code/Magento/Newsletter/view/adminhtml/layout/preview.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/preview/iframeswitcher.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/preview/iframeswitcher.phtml index c8674986cbe..1f1250c2257 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/templates/preview/iframeswitcher.phtml +++ b/app/code/Magento/Newsletter/view/adminhtml/templates/preview/iframeswitcher.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/preview/store.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/preview/store.phtml index 9574092d4e0..cb86ecb5bd1 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/templates/preview/store.phtml +++ b/app/code/Magento/Newsletter/view/adminhtml/templates/preview/store.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/problem/list.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/problem/list.phtml index 1ef7cfdf459..aef5b4be15d 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/templates/problem/list.phtml +++ b/app/code/Magento/Newsletter/view/adminhtml/templates/problem/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/queue/edit.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/queue/edit.phtml index dbc2fcf0ea6..a44783c843d 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/templates/queue/edit.phtml +++ b/app/code/Magento/Newsletter/view/adminhtml/templates/queue/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/queue/list.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/queue/list.phtml index 4f6bb7a1f36..86751544bb0 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/templates/queue/list.phtml +++ b/app/code/Magento/Newsletter/view/adminhtml/templates/queue/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/queue/preview.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/queue/preview.phtml index 7dc23b28919..66599f7f3f9 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/templates/queue/preview.phtml +++ b/app/code/Magento/Newsletter/view/adminhtml/templates/queue/preview.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/subscriber/list.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/subscriber/list.phtml index 82c1a9a3492..db7b1914667 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/templates/subscriber/list.phtml +++ b/app/code/Magento/Newsletter/view/adminhtml/templates/subscriber/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/template/edit.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/template/edit.phtml index ea3b7fbb5a9..29ffc3a0e41 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/templates/template/edit.phtml +++ b/app/code/Magento/Newsletter/view/adminhtml/templates/template/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/template/list.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/template/list.phtml index 3b5748da548..2cdb9f451a8 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/templates/template/list.phtml +++ b/app/code/Magento/Newsletter/view/adminhtml/templates/template/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/template/preview.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/template/preview.phtml index 7dc23b28919..66599f7f3f9 100644 --- a/app/code/Magento/Newsletter/view/adminhtml/templates/template/preview.phtml +++ b/app/code/Magento/Newsletter/view/adminhtml/templates/template/preview.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/frontend/email/subscr_confirm.html b/app/code/Magento/Newsletter/view/frontend/email/subscr_confirm.html index 068e027f5bb..c5606e783c6 100644 --- a/app/code/Magento/Newsletter/view/frontend/email/subscr_confirm.html +++ b/app/code/Magento/Newsletter/view/frontend/email/subscr_confirm.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/frontend/email/subscr_success.html b/app/code/Magento/Newsletter/view/frontend/email/subscr_success.html index f60c3213a72..35b1516d68d 100644 --- a/app/code/Magento/Newsletter/view/frontend/email/subscr_success.html +++ b/app/code/Magento/Newsletter/view/frontend/email/subscr_success.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/frontend/email/unsub_success.html b/app/code/Magento/Newsletter/view/frontend/email/unsub_success.html index 20255368df2..91c31614560 100644 --- a/app/code/Magento/Newsletter/view/frontend/email/unsub_success.html +++ b/app/code/Magento/Newsletter/view/frontend/email/unsub_success.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/frontend/layout/customer_account.xml b/app/code/Magento/Newsletter/view/frontend/layout/customer_account.xml index f1b8340b1b8..712891dd378 100644 --- a/app/code/Magento/Newsletter/view/frontend/layout/customer_account.xml +++ b/app/code/Magento/Newsletter/view/frontend/layout/customer_account.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/frontend/layout/default.xml b/app/code/Magento/Newsletter/view/frontend/layout/default.xml index 6ec5431cc92..8fa388ec29e 100644 --- a/app/code/Magento/Newsletter/view/frontend/layout/default.xml +++ b/app/code/Magento/Newsletter/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/frontend/layout/newsletter_manage_index.xml b/app/code/Magento/Newsletter/view/frontend/layout/newsletter_manage_index.xml index 84ce211667d..428f49d0e21 100644 --- a/app/code/Magento/Newsletter/view/frontend/layout/newsletter_manage_index.xml +++ b/app/code/Magento/Newsletter/view/frontend/layout/newsletter_manage_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Newsletter/view/frontend/templates/js/components.phtml b/app/code/Magento/Newsletter/view/frontend/templates/js/components.phtml index e490a6aa049..bdcb2e9bf77 100644 --- a/app/code/Magento/Newsletter/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/Newsletter/view/frontend/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Newsletter/view/frontend/templates/subscribe.phtml b/app/code/Magento/Newsletter/view/frontend/templates/subscribe.phtml index 0ee371c3281..abb22659621 100644 --- a/app/code/Magento/Newsletter/view/frontend/templates/subscribe.phtml +++ b/app/code/Magento/Newsletter/view/frontend/templates/subscribe.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/Block/Form/AbstractInstruction.php b/app/code/Magento/OfflinePayments/Block/Form/AbstractInstruction.php index 91349d33c3c..b6948e06d55 100644 --- a/app/code/Magento/OfflinePayments/Block/Form/AbstractInstruction.php +++ b/app/code/Magento/OfflinePayments/Block/Form/AbstractInstruction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Block\Form; diff --git a/app/code/Magento/OfflinePayments/Block/Form/Banktransfer.php b/app/code/Magento/OfflinePayments/Block/Form/Banktransfer.php index 929e47eb776..888d996780f 100644 --- a/app/code/Magento/OfflinePayments/Block/Form/Banktransfer.php +++ b/app/code/Magento/OfflinePayments/Block/Form/Banktransfer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Block\Form; diff --git a/app/code/Magento/OfflinePayments/Block/Form/Cashondelivery.php b/app/code/Magento/OfflinePayments/Block/Form/Cashondelivery.php index 16acff7b416..d8208dd18f3 100644 --- a/app/code/Magento/OfflinePayments/Block/Form/Cashondelivery.php +++ b/app/code/Magento/OfflinePayments/Block/Form/Cashondelivery.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Block\Form; diff --git a/app/code/Magento/OfflinePayments/Block/Form/Checkmo.php b/app/code/Magento/OfflinePayments/Block/Form/Checkmo.php index 4b655b0169b..eeaf8994dad 100644 --- a/app/code/Magento/OfflinePayments/Block/Form/Checkmo.php +++ b/app/code/Magento/OfflinePayments/Block/Form/Checkmo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Block\Form; diff --git a/app/code/Magento/OfflinePayments/Block/Form/Purchaseorder.php b/app/code/Magento/OfflinePayments/Block/Form/Purchaseorder.php index a7586939208..1fd09ba4e3f 100644 --- a/app/code/Magento/OfflinePayments/Block/Form/Purchaseorder.php +++ b/app/code/Magento/OfflinePayments/Block/Form/Purchaseorder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Block\Form; diff --git a/app/code/Magento/OfflinePayments/Block/Info/Checkmo.php b/app/code/Magento/OfflinePayments/Block/Info/Checkmo.php index 8616c186555..419d554d4b2 100644 --- a/app/code/Magento/OfflinePayments/Block/Info/Checkmo.php +++ b/app/code/Magento/OfflinePayments/Block/Info/Checkmo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Block\Info; diff --git a/app/code/Magento/OfflinePayments/Block/Info/Purchaseorder.php b/app/code/Magento/OfflinePayments/Block/Info/Purchaseorder.php index 7fe443dbc58..3bb6890c1ca 100644 --- a/app/code/Magento/OfflinePayments/Block/Info/Purchaseorder.php +++ b/app/code/Magento/OfflinePayments/Block/Info/Purchaseorder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Block\Info; diff --git a/app/code/Magento/OfflinePayments/Model/Banktransfer.php b/app/code/Magento/OfflinePayments/Model/Banktransfer.php index 3f68e8863ba..7e20135b0b0 100644 --- a/app/code/Magento/OfflinePayments/Model/Banktransfer.php +++ b/app/code/Magento/OfflinePayments/Model/Banktransfer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Model; diff --git a/app/code/Magento/OfflinePayments/Model/Cashondelivery.php b/app/code/Magento/OfflinePayments/Model/Cashondelivery.php index 9e62968478d..e381e2d4942 100644 --- a/app/code/Magento/OfflinePayments/Model/Cashondelivery.php +++ b/app/code/Magento/OfflinePayments/Model/Cashondelivery.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Model; diff --git a/app/code/Magento/OfflinePayments/Model/Checkmo.php b/app/code/Magento/OfflinePayments/Model/Checkmo.php index 95dbcdff152..6f34b3265ac 100644 --- a/app/code/Magento/OfflinePayments/Model/Checkmo.php +++ b/app/code/Magento/OfflinePayments/Model/Checkmo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Model; diff --git a/app/code/Magento/OfflinePayments/Model/CheckmoConfigProvider.php b/app/code/Magento/OfflinePayments/Model/CheckmoConfigProvider.php index 29062ae0705..e493ec462ea 100644 --- a/app/code/Magento/OfflinePayments/Model/CheckmoConfigProvider.php +++ b/app/code/Magento/OfflinePayments/Model/CheckmoConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Model; diff --git a/app/code/Magento/OfflinePayments/Model/InstructionsConfigProvider.php b/app/code/Magento/OfflinePayments/Model/InstructionsConfigProvider.php index 702a8f80bd4..28505aef691 100644 --- a/app/code/Magento/OfflinePayments/Model/InstructionsConfigProvider.php +++ b/app/code/Magento/OfflinePayments/Model/InstructionsConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Model; diff --git a/app/code/Magento/OfflinePayments/Model/Purchaseorder.php b/app/code/Magento/OfflinePayments/Model/Purchaseorder.php index c4f9bf979a2..d1f1e31d3a4 100644 --- a/app/code/Magento/OfflinePayments/Model/Purchaseorder.php +++ b/app/code/Magento/OfflinePayments/Model/Purchaseorder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Model; diff --git a/app/code/Magento/OfflinePayments/Observer/BeforeOrderPaymentSaveObserver.php b/app/code/Magento/OfflinePayments/Observer/BeforeOrderPaymentSaveObserver.php index 4e22d597680..284854e58ec 100644 --- a/app/code/Magento/OfflinePayments/Observer/BeforeOrderPaymentSaveObserver.php +++ b/app/code/Magento/OfflinePayments/Observer/BeforeOrderPaymentSaveObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Block/Form/AbstractInstructionTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Block/Form/AbstractInstructionTest.php index 2626d0c20c4..a7cd699638f 100644 --- a/app/code/Magento/OfflinePayments/Test/Unit/Block/Form/AbstractInstructionTest.php +++ b/app/code/Magento/OfflinePayments/Test/Unit/Block/Form/AbstractInstructionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Test\Unit\Block\Form; diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Block/Info/CheckmoTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Block/Info/CheckmoTest.php index 27209fc8d35..66f37e08d8e 100644 --- a/app/code/Magento/OfflinePayments/Test/Unit/Block/Info/CheckmoTest.php +++ b/app/code/Magento/OfflinePayments/Test/Unit/Block/Info/CheckmoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Test\Unit\Block\Info; diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/BanktransferTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/BanktransferTest.php index aaf89696157..49868bde7a8 100644 --- a/app/code/Magento/OfflinePayments/Test/Unit/Model/BanktransferTest.php +++ b/app/code/Magento/OfflinePayments/Test/Unit/Model/BanktransferTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Test\Unit\Model; diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/CashondeliveryTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/CashondeliveryTest.php index bc467504af7..503f01211f5 100644 --- a/app/code/Magento/OfflinePayments/Test/Unit/Model/CashondeliveryTest.php +++ b/app/code/Magento/OfflinePayments/Test/Unit/Model/CashondeliveryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Test\Unit\Model; diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoConfigProviderTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoConfigProviderTest.php index 8015df2343f..1dd92b5af63 100644 --- a/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoConfigProviderTest.php +++ b/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Test\Unit\Model; diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoTest.php index d8831dbfdea..97459f6a660 100644 --- a/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoTest.php +++ b/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Test\Unit\Model; diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/InstructionsConfigProviderTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/InstructionsConfigProviderTest.php index c6bf0dfa427..8ff65529e2b 100644 --- a/app/code/Magento/OfflinePayments/Test/Unit/Model/InstructionsConfigProviderTest.php +++ b/app/code/Magento/OfflinePayments/Test/Unit/Model/InstructionsConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Test\Unit\Model; diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/PurchaseorderTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/PurchaseorderTest.php index 9bf16225700..24ddf1b3c8f 100644 --- a/app/code/Magento/OfflinePayments/Test/Unit/Model/PurchaseorderTest.php +++ b/app/code/Magento/OfflinePayments/Test/Unit/Model/PurchaseorderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Test\Unit\Model; diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Observer/BeforeOrderPaymentSaveObserverTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Observer/BeforeOrderPaymentSaveObserverTest.php index 113f18bf545..b3cbfacd657 100644 --- a/app/code/Magento/OfflinePayments/Test/Unit/Observer/BeforeOrderPaymentSaveObserverTest.php +++ b/app/code/Magento/OfflinePayments/Test/Unit/Observer/BeforeOrderPaymentSaveObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflinePayments\Test\Unit\Observer; diff --git a/app/code/Magento/OfflinePayments/etc/adminhtml/system.xml b/app/code/Magento/OfflinePayments/etc/adminhtml/system.xml index 6251f7de9e4..02b0034fe64 100644 --- a/app/code/Magento/OfflinePayments/etc/adminhtml/system.xml +++ b/app/code/Magento/OfflinePayments/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflinePayments/etc/config.xml b/app/code/Magento/OfflinePayments/etc/config.xml index 239bf944c5e..6816ad4fc83 100644 --- a/app/code/Magento/OfflinePayments/etc/config.xml +++ b/app/code/Magento/OfflinePayments/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflinePayments/etc/events.xml b/app/code/Magento/OfflinePayments/etc/events.xml index 0abc5d40c3b..947af82ff14 100644 --- a/app/code/Magento/OfflinePayments/etc/events.xml +++ b/app/code/Magento/OfflinePayments/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflinePayments/etc/frontend/di.xml b/app/code/Magento/OfflinePayments/etc/frontend/di.xml index fa748fa402f..ee5ac0e53f7 100644 --- a/app/code/Magento/OfflinePayments/etc/frontend/di.xml +++ b/app/code/Magento/OfflinePayments/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflinePayments/etc/module.xml b/app/code/Magento/OfflinePayments/etc/module.xml index 24f25fde655..21ab297d8b2 100644 --- a/app/code/Magento/OfflinePayments/etc/module.xml +++ b/app/code/Magento/OfflinePayments/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflinePayments/etc/payment.xml b/app/code/Magento/OfflinePayments/etc/payment.xml index 0bfd1774c43..346285e4331 100644 --- a/app/code/Magento/OfflinePayments/etc/payment.xml +++ b/app/code/Magento/OfflinePayments/etc/payment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflinePayments/registration.php b/app/code/Magento/OfflinePayments/registration.php index 1caee60e8a5..8f580dfce11 100644 --- a/app/code/Magento/OfflinePayments/registration.php +++ b/app/code/Magento/OfflinePayments/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/banktransfer.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/banktransfer.phtml index 31ebeed21ed..f713bd695e5 100644 --- a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/banktransfer.phtml +++ b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/banktransfer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/cashondelivery.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/cashondelivery.phtml index 575f57da050..acf3712c49f 100644 --- a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/cashondelivery.phtml +++ b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/cashondelivery.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/checkmo.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/checkmo.phtml index f564cef80bf..8626f35776a 100644 --- a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/checkmo.phtml +++ b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/checkmo.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/purchaseorder.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/purchaseorder.phtml index 4efef6881d1..88e138b0da4 100644 --- a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/purchaseorder.phtml +++ b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/purchaseorder.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/checkmo.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/checkmo.phtml index 8c5cfd50cc1..51e52a326e1 100644 --- a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/checkmo.phtml +++ b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/checkmo.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/checkmo.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/checkmo.phtml index 5587ac239d3..daf4acee3b6 100644 --- a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/checkmo.phtml +++ b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/checkmo.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/purchaseorder.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/purchaseorder.phtml index d84c4a59907..7d258bd0e5a 100644 --- a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/purchaseorder.phtml +++ b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/purchaseorder.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/purchaseorder.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/purchaseorder.phtml index f3118da737f..ecfcedf419b 100644 --- a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/purchaseorder.phtml +++ b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/purchaseorder.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** diff --git a/app/code/Magento/OfflinePayments/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/OfflinePayments/view/frontend/layout/checkout_index_index.xml index 45acb6e2b44..54960694b00 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/OfflinePayments/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -54,4 +54,4 @@ </arguments> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/form/banktransfer.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/form/banktransfer.phtml index b640de80b8b..b54ab2a42ba 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/templates/form/banktransfer.phtml +++ b/app/code/Magento/OfflinePayments/view/frontend/templates/form/banktransfer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/form/cashondelivery.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/form/cashondelivery.phtml index be48fe64ceb..5a1f2cc8eef 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/templates/form/cashondelivery.phtml +++ b/app/code/Magento/OfflinePayments/view/frontend/templates/form/cashondelivery.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/form/checkmo.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/form/checkmo.phtml index c1e9acd6548..e0d13c1bf62 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/templates/form/checkmo.phtml +++ b/app/code/Magento/OfflinePayments/view/frontend/templates/form/checkmo.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/form/purchaseorder.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/form/purchaseorder.phtml index 2b741ffee3d..f8593adcd45 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/templates/form/purchaseorder.phtml +++ b/app/code/Magento/OfflinePayments/view/frontend/templates/form/purchaseorder.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/info/checkmo.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/info/checkmo.phtml index 3c0b6bb2308..08313bae166 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/templates/info/checkmo.phtml +++ b/app/code/Magento/OfflinePayments/view/frontend/templates/info/checkmo.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/info/purchaseorder.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/info/purchaseorder.phtml index eac069e9cc8..f9ef0b4dba1 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/templates/info/purchaseorder.phtml +++ b/app/code/Magento/OfflinePayments/view/frontend/templates/info/purchaseorder.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/banktransfer-method.js b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/banktransfer-method.js index e5ef422fea2..224f0041140 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/banktransfer-method.js +++ b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/banktransfer-method.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/cashondelivery-method.js b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/cashondelivery-method.js index cd4894bafa7..041b7ab72ef 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/cashondelivery-method.js +++ b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/cashondelivery-method.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/checkmo-method.js b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/checkmo-method.js index a74edf8d32e..6afe50a45fe 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/checkmo-method.js +++ b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/checkmo-method.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/purchaseorder-method.js b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/purchaseorder-method.js index ff51a77330b..34d7fc229a4 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/purchaseorder-method.js +++ b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/purchaseorder-method.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/offline-payments.js b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/offline-payments.js index 0ac2715c3be..abf82138802 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/offline-payments.js +++ b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/offline-payments.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ @@ -35,4 +35,4 @@ define( /** Add view logic here if needed */ return Component.extend({}); } -); \ No newline at end of file +); diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/banktransfer.html b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/banktransfer.html index cc25a3627ab..8022a8b3349 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/banktransfer.html +++ b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/banktransfer.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/cashondelivery.html b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/cashondelivery.html index d6bd783ca9b..334d4c837a3 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/cashondelivery.html +++ b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/cashondelivery.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/checkmo.html b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/checkmo.html index a05728abd45..1c1b4f5761a 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/checkmo.html +++ b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/checkmo.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -57,4 +57,4 @@ </div> </div> </div> - \ No newline at end of file + diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/purchaseorder-form.html b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/purchaseorder-form.html index 08e61c3f565..f059498304e 100644 --- a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/purchaseorder-form.html +++ b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/purchaseorder-form.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -65,4 +65,4 @@ </div> </div> </div> - \ No newline at end of file + diff --git a/app/code/Magento/OfflineShipping/Block/Adminhtml/Carrier/Tablerate/Grid.php b/app/code/Magento/OfflineShipping/Block/Adminhtml/Carrier/Tablerate/Grid.php index e69ae29d359..dffa6143ceb 100644 --- a/app/code/Magento/OfflineShipping/Block/Adminhtml/Carrier/Tablerate/Grid.php +++ b/app/code/Magento/OfflineShipping/Block/Adminhtml/Carrier/Tablerate/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Block\Adminhtml\Carrier\Tablerate; diff --git a/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Export.php b/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Export.php index 2ae8cccaf97..7f74ad46ca5 100644 --- a/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Export.php +++ b/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Export.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Block\Adminhtml\Form\Field; diff --git a/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Import.php b/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Import.php index 29158adf720..61c903fac87 100644 --- a/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Import.php +++ b/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Block\Adminhtml\Form\Field; diff --git a/app/code/Magento/OfflineShipping/Controller/Adminhtml/System/Config/ExportTablerates.php b/app/code/Magento/OfflineShipping/Controller/Adminhtml/System/Config/ExportTablerates.php index b754819dbd3..7b4fae84bd0 100644 --- a/app/code/Magento/OfflineShipping/Controller/Adminhtml/System/Config/ExportTablerates.php +++ b/app/code/Magento/OfflineShipping/Controller/Adminhtml/System/Config/ExportTablerates.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Controller\Adminhtml\System\Config; diff --git a/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate.php b/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate.php index 4ff92e1bd09..4feedeb2039 100644 --- a/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate.php +++ b/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Model\Carrier; diff --git a/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate/ItemPriceCalculator.php b/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate/ItemPriceCalculator.php index 1347f79f1ec..f18cdbf4b4c 100644 --- a/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate/ItemPriceCalculator.php +++ b/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate/ItemPriceCalculator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/Carrier/Freeshipping.php b/app/code/Magento/OfflineShipping/Model/Carrier/Freeshipping.php index 428150e3cd4..ea2077e4d0e 100644 --- a/app/code/Magento/OfflineShipping/Model/Carrier/Freeshipping.php +++ b/app/code/Magento/OfflineShipping/Model/Carrier/Freeshipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/Carrier/Pickup.php b/app/code/Magento/OfflineShipping/Model/Carrier/Pickup.php index 2e6d5395ccf..b9bf6645115 100644 --- a/app/code/Magento/OfflineShipping/Model/Carrier/Pickup.php +++ b/app/code/Magento/OfflineShipping/Model/Carrier/Pickup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Model\Carrier; diff --git a/app/code/Magento/OfflineShipping/Model/Carrier/Tablerate.php b/app/code/Magento/OfflineShipping/Model/Carrier/Tablerate.php index d176b5be6a4..5a074dabb53 100644 --- a/app/code/Magento/OfflineShipping/Model/Carrier/Tablerate.php +++ b/app/code/Magento/OfflineShipping/Model/Carrier/Tablerate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Model\Carrier; diff --git a/app/code/Magento/OfflineShipping/Model/Config/Backend/Tablerate.php b/app/code/Magento/OfflineShipping/Model/Config/Backend/Tablerate.php index 53013fc8cf1..cacdbea42fb 100644 --- a/app/code/Magento/OfflineShipping/Model/Config/Backend/Tablerate.php +++ b/app/code/Magento/OfflineShipping/Model/Config/Backend/Tablerate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Model\Config\Backend; diff --git a/app/code/Magento/OfflineShipping/Model/Config/Source/Flatrate.php b/app/code/Magento/OfflineShipping/Model/Config/Source/Flatrate.php index cddf342bc07..fc718f4bae7 100644 --- a/app/code/Magento/OfflineShipping/Model/Config/Source/Flatrate.php +++ b/app/code/Magento/OfflineShipping/Model/Config/Source/Flatrate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Model\Config\Source; diff --git a/app/code/Magento/OfflineShipping/Model/Config/Source/Tablerate.php b/app/code/Magento/OfflineShipping/Model/Config/Source/Tablerate.php index ae8931db405..a88fa13b0d8 100644 --- a/app/code/Magento/OfflineShipping/Model/Config/Source/Tablerate.php +++ b/app/code/Magento/OfflineShipping/Model/Config/Source/Tablerate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Model\Config\Source; diff --git a/app/code/Magento/OfflineShipping/Model/Plugin/Checkout/Block/Cart/Shipping.php b/app/code/Magento/OfflineShipping/Model/Plugin/Checkout/Block/Cart/Shipping.php index 87947f85031..dd09631b0d4 100644 --- a/app/code/Magento/OfflineShipping/Model/Plugin/Checkout/Block/Cart/Shipping.php +++ b/app/code/Magento/OfflineShipping/Model/Plugin/Checkout/Block/Cart/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/Quote/Address/FreeShipping.php b/app/code/Magento/OfflineShipping/Model/Quote/Address/FreeShipping.php index cf9eed3e84d..f4f75b2e7c3 100644 --- a/app/code/Magento/OfflineShipping/Model/Quote/Address/FreeShipping.php +++ b/app/code/Magento/OfflineShipping/Model/Quote/Address/FreeShipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Model\Quote\Address; diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate.php index 2caf4781863..c19882293a7 100644 --- a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate.php +++ b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnNotFoundException.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnNotFoundException.php index 700c2d98f92..376a042ff3a 100644 --- a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnNotFoundException.php +++ b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnNotFoundException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolver.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolver.php index c1bea65acf9..7c227776dbe 100644 --- a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolver.php +++ b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowException.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowException.php index f0460bdb1fb..8d622ce5a8d 100644 --- a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowException.php +++ b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowParser.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowParser.php index 15abd57d50d..f1f07856a03 100644 --- a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowParser.php +++ b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowParser.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Collection.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Collection.php index c7aa7f2def1..cec0dba58cd 100644 --- a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Collection.php +++ b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate; diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/DataHashGenerator.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/DataHashGenerator.php index 237092ca090..5341e4cb230 100644 --- a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/DataHashGenerator.php +++ b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/DataHashGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Import.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Import.php index eb45a53b989..627b121d0ad 100644 --- a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Import.php +++ b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Import.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/LocationDirectory.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/LocationDirectory.php index f84b1cc503d..51c39310607 100644 --- a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/LocationDirectory.php +++ b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/LocationDirectory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/RateQuery.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/RateQuery.php index a4322c362bb..047cdbbb8bd 100644 --- a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/RateQuery.php +++ b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/RateQuery.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/SalesRule/Calculator.php b/app/code/Magento/OfflineShipping/Model/SalesRule/Calculator.php index 05d811748a8..08e8454869c 100644 --- a/app/code/Magento/OfflineShipping/Model/SalesRule/Calculator.php +++ b/app/code/Magento/OfflineShipping/Model/SalesRule/Calculator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/SalesRule/Rule.php b/app/code/Magento/OfflineShipping/Model/SalesRule/Rule.php index cc08fa4cc83..c9d92a5c28a 100644 --- a/app/code/Magento/OfflineShipping/Model/SalesRule/Rule.php +++ b/app/code/Magento/OfflineShipping/Model/SalesRule/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Model/Source/SalesRule/FreeShippingOptions.php b/app/code/Magento/OfflineShipping/Model/Source/SalesRule/FreeShippingOptions.php index caab0b41788..e44594f3581 100644 --- a/app/code/Magento/OfflineShipping/Model/Source/SalesRule/FreeShippingOptions.php +++ b/app/code/Magento/OfflineShipping/Model/Source/SalesRule/FreeShippingOptions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Model\Source\SalesRule; diff --git a/app/code/Magento/OfflineShipping/Setup/InstallSchema.php b/app/code/Magento/OfflineShipping/Setup/InstallSchema.php index 0c2b62f9088..4c0285dab09 100644 --- a/app/code/Magento/OfflineShipping/Setup/InstallSchema.php +++ b/app/code/Magento/OfflineShipping/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Carrier/Tablerate/GridTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Carrier/Tablerate/GridTest.php index 826fef6a4d5..edede2274e3 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Carrier/Tablerate/GridTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Carrier/Tablerate/GridTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Test\Unit\Block\Adminhtml\Carrier\Tablerate; diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ExportTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ExportTest.php index 13a3869b627..7426aeb670a 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ExportTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ExportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Test\Unit\Block\Adminhtml\Form\Field; diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ImportTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ImportTest.php index 4d52122628f..9ba270a8c9e 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ImportTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ImportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Backend/TablerateTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Backend/TablerateTest.php index 53279669788..17bb3af2e57 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Backend/TablerateTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Backend/TablerateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Test\Unit\Model\Config\Backend; diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/FlatrateTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/FlatrateTest.php index 5a95301f16f..46892a0333c 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/FlatrateTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/FlatrateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/TablerateTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/TablerateTest.php index cdc22962695..e19381f7812 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/TablerateTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/TablerateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Plugin/Checkout/Block/Cart/ShippingTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Plugin/Checkout/Block/Cart/ShippingTest.php index fb65aaa10ea..ef86fd3fe97 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Model/Plugin/Checkout/Block/Cart/ShippingTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Model/Plugin/Checkout/Block/Cart/ShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Test\Unit\Model\Plugin\Checkout\Block\Cart; diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Quote/Address/FreeShippingTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Quote/Address/FreeShippingTest.php index 27f3c375c91..50460fcfa6b 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Model/Quote/Address/FreeShippingTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Model/Quote/Address/FreeShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolverTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolverTest.php index 980204d7dab..0e39ecc9463 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolverTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/RowParserTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/RowParserTest.php index fc6ec40b46e..ce6110b5693 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/RowParserTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/RowParserTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/ImportTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/ImportTest.php index a3a2a5d1fbb..9b531a0d50f 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/ImportTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/ImportTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/SalesRule/CalculatorTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/SalesRule/CalculatorTest.php index 7d31dde0d73..9735b6e5d67 100644 --- a/app/code/Magento/OfflineShipping/Test/Unit/Model/SalesRule/CalculatorTest.php +++ b/app/code/Magento/OfflineShipping/Test/Unit/Model/SalesRule/CalculatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\OfflineShipping\Test\Unit\Model\SalesRule; diff --git a/app/code/Magento/OfflineShipping/etc/adminhtml/routes.xml b/app/code/Magento/OfflineShipping/etc/adminhtml/routes.xml index 6f9794fce96..733e6d6767d 100644 --- a/app/code/Magento/OfflineShipping/etc/adminhtml/routes.xml +++ b/app/code/Magento/OfflineShipping/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflineShipping/etc/adminhtml/system.xml b/app/code/Magento/OfflineShipping/etc/adminhtml/system.xml index 4a4f550588f..4cb8e3c4a68 100644 --- a/app/code/Magento/OfflineShipping/etc/adminhtml/system.xml +++ b/app/code/Magento/OfflineShipping/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflineShipping/etc/config.xml b/app/code/Magento/OfflineShipping/etc/config.xml index d892025ae7c..abcf1c93ca1 100644 --- a/app/code/Magento/OfflineShipping/etc/config.xml +++ b/app/code/Magento/OfflineShipping/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflineShipping/etc/di.xml b/app/code/Magento/OfflineShipping/etc/di.xml index 0ccb99f4e7d..56e3210f35d 100644 --- a/app/code/Magento/OfflineShipping/etc/di.xml +++ b/app/code/Magento/OfflineShipping/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflineShipping/etc/fieldset.xml b/app/code/Magento/OfflineShipping/etc/fieldset.xml index 48aed2cd82c..b35333a901d 100644 --- a/app/code/Magento/OfflineShipping/etc/fieldset.xml +++ b/app/code/Magento/OfflineShipping/etc/fieldset.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflineShipping/etc/module.xml b/app/code/Magento/OfflineShipping/etc/module.xml index e7e26b5129e..cd5e857ebc0 100644 --- a/app/code/Magento/OfflineShipping/etc/module.xml +++ b/app/code/Magento/OfflineShipping/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflineShipping/registration.php b/app/code/Magento/OfflineShipping/registration.php index 71cca1718f1..3958b220269 100644 --- a/app/code/Magento/OfflineShipping/registration.php +++ b/app/code/Magento/OfflineShipping/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/sales_rule_form.xml b/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/sales_rule_form.xml index b8b95c1310a..959cfa74db3 100644 --- a/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/sales_rule_form.xml +++ b/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/sales_rule_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/salesrulestaging_update_form.xml b/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/salesrulestaging_update_form.xml index 74393c147fe..553bc531bee 100644 --- a/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/salesrulestaging_update_form.xml +++ b/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/salesrulestaging_update_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_cart_index.xml index a7b77d90a94..d0f5b65fc12 100644 --- a/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_cart_index.xml +++ b/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_cart_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_index_index.xml index 515fd080d3e..5fc34cd1ebf 100644 --- a/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/flatrate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/flatrate.js index e45212713f0..c0aaf068c54 100644 --- a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/flatrate.js +++ b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/flatrate.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/freeshipping.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/freeshipping.js index e45212713f0..c0aaf068c54 100644 --- a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/freeshipping.js +++ b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/freeshipping.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/tablerate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/tablerate.js index 7084f5e29ce..6df0d19ad89 100644 --- a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/tablerate.js +++ b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/tablerate.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/flatrate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/flatrate.js index 9454e38e27b..88ca430a48f 100644 --- a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/flatrate.js +++ b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/flatrate.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/freeshipping.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/freeshipping.js index 52ee050fa5e..d71774dc348 100644 --- a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/freeshipping.js +++ b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/freeshipping.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/tablerate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/tablerate.js index ba7d8cac87a..c39cf85a2b2 100644 --- a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/tablerate.js +++ b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/tablerate.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/flatrate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/flatrate.js index 36a7f9fa50f..1118e6c36b8 100644 --- a/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/flatrate.js +++ b/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/flatrate.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/freeshipping.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/freeshipping.js index 3c61e1f0fda..49f4d0fce97 100644 --- a/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/freeshipping.js +++ b/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/freeshipping.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/tablerate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/tablerate.js index 92323365daf..57cf3feff00 100644 --- a/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/tablerate.js +++ b/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/tablerate.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/PageCache/Block/Javascript.php b/app/code/Magento/PageCache/Block/Javascript.php index 0bcfbaeb5e3..6844c548de7 100644 --- a/app/code/Magento/PageCache/Block/Javascript.php +++ b/app/code/Magento/PageCache/Block/Javascript.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Block; diff --git a/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export.php b/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export.php index d4883e174a8..5926598a959 100644 --- a/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export.php +++ b/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Block\System\Config\Form\Field; diff --git a/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish3.php b/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish3.php index 727ef25730f..d1ad872be90 100644 --- a/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish3.php +++ b/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish3.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Block\System\Config\Form\Field\Export; diff --git a/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish4.php b/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish4.php index d577a9fb5c7..bf55c1ab02c 100644 --- a/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish4.php +++ b/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish4.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Block\System\Config\Form\Field\Export; diff --git a/app/code/Magento/PageCache/Controller/Adminhtml/PageCache/ExportVarnishConfig.php b/app/code/Magento/PageCache/Controller/Adminhtml/PageCache/ExportVarnishConfig.php index 253b02b4d29..acd4ff706a4 100644 --- a/app/code/Magento/PageCache/Controller/Adminhtml/PageCache/ExportVarnishConfig.php +++ b/app/code/Magento/PageCache/Controller/Adminhtml/PageCache/ExportVarnishConfig.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Controller\Adminhtml\PageCache; diff --git a/app/code/Magento/PageCache/Controller/Block.php b/app/code/Magento/PageCache/Controller/Block.php index 2c5edd48ecc..3fb095af4ca 100644 --- a/app/code/Magento/PageCache/Controller/Block.php +++ b/app/code/Magento/PageCache/Controller/Block.php @@ -2,7 +2,7 @@ /** * PageCache controller * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Controller; diff --git a/app/code/Magento/PageCache/Controller/Block/Esi.php b/app/code/Magento/PageCache/Controller/Block/Esi.php index 76f61792b84..8397eb75017 100644 --- a/app/code/Magento/PageCache/Controller/Block/Esi.php +++ b/app/code/Magento/PageCache/Controller/Block/Esi.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Controller\Block; diff --git a/app/code/Magento/PageCache/Controller/Block/Render.php b/app/code/Magento/PageCache/Controller/Block/Render.php index 216e51e7cbc..fbf948bdf3f 100644 --- a/app/code/Magento/PageCache/Controller/Block/Render.php +++ b/app/code/Magento/PageCache/Controller/Block/Render.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Controller\Block; diff --git a/app/code/Magento/PageCache/Helper/Data.php b/app/code/Magento/PageCache/Helper/Data.php index fe2e84578ed..e3580224f8e 100644 --- a/app/code/Magento/PageCache/Helper/Data.php +++ b/app/code/Magento/PageCache/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Model/App/CacheIdentifierPlugin.php b/app/code/Magento/PageCache/Model/App/CacheIdentifierPlugin.php index af583c44e0e..74d6970af19 100644 --- a/app/code/Magento/PageCache/Model/App/CacheIdentifierPlugin.php +++ b/app/code/Magento/PageCache/Model/App/CacheIdentifierPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Model/App/FrontController/BuiltinPlugin.php b/app/code/Magento/PageCache/Model/App/FrontController/BuiltinPlugin.php index 7c2d4f2edd8..88eaca8bf49 100644 --- a/app/code/Magento/PageCache/Model/App/FrontController/BuiltinPlugin.php +++ b/app/code/Magento/PageCache/Model/App/FrontController/BuiltinPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Model\App\FrontController; diff --git a/app/code/Magento/PageCache/Model/App/FrontController/VarnishPlugin.php b/app/code/Magento/PageCache/Model/App/FrontController/VarnishPlugin.php index 08b68447c9d..ecd94de1675 100644 --- a/app/code/Magento/PageCache/Model/App/FrontController/VarnishPlugin.php +++ b/app/code/Magento/PageCache/Model/App/FrontController/VarnishPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Model\App\FrontController; diff --git a/app/code/Magento/PageCache/Model/App/PageCachePlugin.php b/app/code/Magento/PageCache/Model/App/PageCachePlugin.php index b2b6e1e7373..652fec1e0b9 100644 --- a/app/code/Magento/PageCache/Model/App/PageCachePlugin.php +++ b/app/code/Magento/PageCache/Model/App/PageCachePlugin.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Model/App/Response/HttpPlugin.php b/app/code/Magento/PageCache/Model/App/Response/HttpPlugin.php index 061aef90abf..4524e19ffde 100644 --- a/app/code/Magento/PageCache/Model/App/Response/HttpPlugin.php +++ b/app/code/Magento/PageCache/Model/App/Response/HttpPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Model/Cache/Server.php b/app/code/Magento/PageCache/Model/Cache/Server.php index 36475a540ee..a0bad4454d4 100644 --- a/app/code/Magento/PageCache/Model/Cache/Server.php +++ b/app/code/Magento/PageCache/Model/Cache/Server.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Model\Cache; diff --git a/app/code/Magento/PageCache/Model/Cache/Type.php b/app/code/Magento/PageCache/Model/Cache/Type.php index 4bb11d97524..de49a40fdfc 100644 --- a/app/code/Magento/PageCache/Model/Cache/Type.php +++ b/app/code/Magento/PageCache/Model/Cache/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Model/Config.php b/app/code/Magento/PageCache/Model/Config.php index 78616572840..30e4e3b8b71 100644 --- a/app/code/Magento/PageCache/Model/Config.php +++ b/app/code/Magento/PageCache/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Model; diff --git a/app/code/Magento/PageCache/Model/Controller/Result/BuiltinPlugin.php b/app/code/Magento/PageCache/Model/Controller/Result/BuiltinPlugin.php index d2ef015fb69..688d582cde6 100644 --- a/app/code/Magento/PageCache/Model/Controller/Result/BuiltinPlugin.php +++ b/app/code/Magento/PageCache/Model/Controller/Result/BuiltinPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Model\Controller\Result; diff --git a/app/code/Magento/PageCache/Model/Controller/Result/VarnishPlugin.php b/app/code/Magento/PageCache/Model/Controller/Result/VarnishPlugin.php index 368a6db80c7..39b20f57fb1 100644 --- a/app/code/Magento/PageCache/Model/Controller/Result/VarnishPlugin.php +++ b/app/code/Magento/PageCache/Model/Controller/Result/VarnishPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Model\Controller\Result; diff --git a/app/code/Magento/PageCache/Model/DepersonalizeChecker.php b/app/code/Magento/PageCache/Model/DepersonalizeChecker.php index a2d51f0254b..99921f847a3 100644 --- a/app/code/Magento/PageCache/Model/DepersonalizeChecker.php +++ b/app/code/Magento/PageCache/Model/DepersonalizeChecker.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Model; diff --git a/app/code/Magento/PageCache/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/PageCache/Model/Layout/DepersonalizePlugin.php index 95d243caff4..9f4eaf47c11 100644 --- a/app/code/Magento/PageCache/Model/Layout/DepersonalizePlugin.php +++ b/app/code/Magento/PageCache/Model/Layout/DepersonalizePlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Model\Layout; diff --git a/app/code/Magento/PageCache/Model/Layout/LayoutPlugin.php b/app/code/Magento/PageCache/Model/Layout/LayoutPlugin.php index a282b41c500..c59c337616d 100644 --- a/app/code/Magento/PageCache/Model/Layout/LayoutPlugin.php +++ b/app/code/Magento/PageCache/Model/Layout/LayoutPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Model\Layout; diff --git a/app/code/Magento/PageCache/Model/System/Config/Backend/Ttl.php b/app/code/Magento/PageCache/Model/System/Config/Backend/Ttl.php index c625b94ad54..4e3caf6f11d 100644 --- a/app/code/Magento/PageCache/Model/System/Config/Backend/Ttl.php +++ b/app/code/Magento/PageCache/Model/System/Config/Backend/Ttl.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Model/System/Config/Backend/Varnish.php b/app/code/Magento/PageCache/Model/System/Config/Backend/Varnish.php index 1e2a99d4d19..866e381edb3 100644 --- a/app/code/Magento/PageCache/Model/System/Config/Backend/Varnish.php +++ b/app/code/Magento/PageCache/Model/System/Config/Backend/Varnish.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Model\System\Config\Backend; diff --git a/app/code/Magento/PageCache/Model/System/Config/Source/Application.php b/app/code/Magento/PageCache/Model/System/Config/Source/Application.php index c0f6510616b..4e4d1355175 100644 --- a/app/code/Magento/PageCache/Model/System/Config/Source/Application.php +++ b/app/code/Magento/PageCache/Model/System/Config/Source/Application.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Observer/FlushAllCache.php b/app/code/Magento/PageCache/Observer/FlushAllCache.php index 039599c07c6..979ff3fc9b6 100644 --- a/app/code/Magento/PageCache/Observer/FlushAllCache.php +++ b/app/code/Magento/PageCache/Observer/FlushAllCache.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Observer; diff --git a/app/code/Magento/PageCache/Observer/FlushCacheByTags.php b/app/code/Magento/PageCache/Observer/FlushCacheByTags.php index d229cda9b62..86bbc8fac55 100644 --- a/app/code/Magento/PageCache/Observer/FlushCacheByTags.php +++ b/app/code/Magento/PageCache/Observer/FlushCacheByTags.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Observer; diff --git a/app/code/Magento/PageCache/Observer/FlushFormKeyOnLogout.php b/app/code/Magento/PageCache/Observer/FlushFormKeyOnLogout.php index 79242283231..bd918aea344 100644 --- a/app/code/Magento/PageCache/Observer/FlushFormKeyOnLogout.php +++ b/app/code/Magento/PageCache/Observer/FlushFormKeyOnLogout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Observer; diff --git a/app/code/Magento/PageCache/Observer/InvalidateCache.php b/app/code/Magento/PageCache/Observer/InvalidateCache.php index 83cf981e74d..f129584d73e 100644 --- a/app/code/Magento/PageCache/Observer/InvalidateCache.php +++ b/app/code/Magento/PageCache/Observer/InvalidateCache.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Observer; diff --git a/app/code/Magento/PageCache/Observer/ProcessLayoutRenderElement.php b/app/code/Magento/PageCache/Observer/ProcessLayoutRenderElement.php index aa96c106020..4aa54f1120a 100644 --- a/app/code/Magento/PageCache/Observer/ProcessLayoutRenderElement.php +++ b/app/code/Magento/PageCache/Observer/ProcessLayoutRenderElement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Observer; diff --git a/app/code/Magento/PageCache/Observer/RegisterFormKeyFromCookie.php b/app/code/Magento/PageCache/Observer/RegisterFormKeyFromCookie.php index 43b77b6973c..6ade7208dd1 100644 --- a/app/code/Magento/PageCache/Observer/RegisterFormKeyFromCookie.php +++ b/app/code/Magento/PageCache/Observer/RegisterFormKeyFromCookie.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Observer; diff --git a/app/code/Magento/PageCache/Test/Unit/App/CacheIdentifierPluginTest.php b/app/code/Magento/PageCache/Test/Unit/App/CacheIdentifierPluginTest.php index 3d7cf5711ee..d551af3c7ee 100644 --- a/app/code/Magento/PageCache/Test/Unit/App/CacheIdentifierPluginTest.php +++ b/app/code/Magento/PageCache/Test/Unit/App/CacheIdentifierPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\App; diff --git a/app/code/Magento/PageCache/Test/Unit/Block/Controller/StubBlock.php b/app/code/Magento/PageCache/Test/Unit/Block/Controller/StubBlock.php index b0cdf9f7b00..cdeccc52e85 100644 --- a/app/code/Magento/PageCache/Test/Unit/Block/Controller/StubBlock.php +++ b/app/code/Magento/PageCache/Test/Unit/Block/Controller/StubBlock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Block/JavascriptTest.php b/app/code/Magento/PageCache/Test/Unit/Block/JavascriptTest.php index cc5597905f1..e8f317383c7 100644 --- a/app/code/Magento/PageCache/Test/Unit/Block/JavascriptTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Block/JavascriptTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Block; diff --git a/app/code/Magento/PageCache/Test/Unit/Controller/Adminhtml/PageCache/ExportVarnishConfigTest.php b/app/code/Magento/PageCache/Test/Unit/Controller/Adminhtml/PageCache/ExportVarnishConfigTest.php index ffc14b1893b..51d02af74b4 100644 --- a/app/code/Magento/PageCache/Test/Unit/Controller/Adminhtml/PageCache/ExportVarnishConfigTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Controller/Adminhtml/PageCache/ExportVarnishConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Controller/Block/EsiTest.php b/app/code/Magento/PageCache/Test/Unit/Controller/Block/EsiTest.php index 294f91b8fa5..ebf90802294 100644 --- a/app/code/Magento/PageCache/Test/Unit/Controller/Block/EsiTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Controller/Block/EsiTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Controller/Block/RenderTest.php b/app/code/Magento/PageCache/Test/Unit/Controller/Block/RenderTest.php index 162c84ced9a..8af75237e23 100644 --- a/app/code/Magento/PageCache/Test/Unit/Controller/Block/RenderTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Controller/Block/RenderTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Helper/DataTest.php b/app/code/Magento/PageCache/Test/Unit/Helper/DataTest.php index 075f848ed70..c2b73370567 100644 --- a/app/code/Magento/PageCache/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/BuiltinPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/BuiltinPluginTest.php index bcfa1c0728d..215fde368a0 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/BuiltinPluginTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/BuiltinPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/VarnishPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/VarnishPluginTest.php index a9b0e10307a..3b4999c9457 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/VarnishPluginTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/VarnishPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Model\App\FrontController; diff --git a/app/code/Magento/PageCache/Test/Unit/Model/App/PageCachePluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/App/PageCachePluginTest.php index ba519c0b7d8..d0b9d3f2b77 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/App/PageCachePluginTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/App/PageCachePluginTest.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Model/App/Response/HttpPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/App/Response/HttpPluginTest.php index 60506021a81..a63548da1ba 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/App/Response/HttpPluginTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/App/Response/HttpPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Cache/ServerTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Cache/ServerTest.php index 390daa53655..73983a01ec6 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/Cache/ServerTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/Cache/ServerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Model\Cache; diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Cache/TypeTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Cache/TypeTest.php index e62534d04b2..66a4abae8a0 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/Cache/TypeTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/Cache/TypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Model\Cache; diff --git a/app/code/Magento/PageCache/Test/Unit/Model/ConfigTest.php b/app/code/Magento/PageCache/Test/Unit/Model/ConfigTest.php index 2b1c389ca9a..f0dd17cb1c8 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/ConfigTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Model; diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/BuiltinPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/BuiltinPluginTest.php index f0ba7b22dad..a018c556113 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/BuiltinPluginTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/BuiltinPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Model\Controller\Result; diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/VarnishPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/VarnishPluginTest.php index a54dc5bacb5..2c5290739e9 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/VarnishPluginTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/VarnishPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Model\Controller\Result; diff --git a/app/code/Magento/PageCache/Test/Unit/Model/DepersonalizeCheckerTest.php b/app/code/Magento/PageCache/Test/Unit/Model/DepersonalizeCheckerTest.php index 59639c3b683..ec648cfce9a 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/DepersonalizeCheckerTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/DepersonalizeCheckerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Model; diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Layout/DepersonalizePluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Layout/DepersonalizePluginTest.php index 4de1eaabe3f..3a0a58a04b3 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/Layout/DepersonalizePluginTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/Layout/DepersonalizePluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Layout/LayoutPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Layout/LayoutPluginTest.php index df656cc700a..9d94da4b723 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/Layout/LayoutPluginTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Model/Layout/LayoutPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Model\Layout; diff --git a/app/code/Magento/PageCache/Test/Unit/Model/_files/result.vcl b/app/code/Magento/PageCache/Test/Unit/Model/_files/result.vcl index a219cf29b64..bb175e3b90f 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/_files/result.vcl +++ b/app/code/Magento/PageCache/Test/Unit/Model/_files/result.vcl @@ -1,4 +1,4 @@ -// Copyright © 2016 Magento. All rights reserved. +// Copyright © 2013-2017 Magento, Inc. All rights reserved. // See COPYING.txt for license details. example.com:8080 @@ -9,4 +9,4 @@ if (req.http.user-agent ~ "(?pattern)?i") { hash_data("value_for_pattern"); - } \ No newline at end of file + } diff --git a/app/code/Magento/PageCache/Test/Unit/Model/_files/test.vcl b/app/code/Magento/PageCache/Test/Unit/Model/_files/test.vcl index 83dd623ab86..cfd69f93d5c 100644 --- a/app/code/Magento/PageCache/Test/Unit/Model/_files/test.vcl +++ b/app/code/Magento/PageCache/Test/Unit/Model/_files/test.vcl @@ -1,8 +1,8 @@ -// Copyright © 2016 Magento. All rights reserved. +// Copyright © 2013-2017 Magento, Inc. All rights reserved. // See COPYING.txt for license details. /* {{ host }} */:/* {{ port }} */ by ips: /* {{ ips }} */ - /* {{ design_exceptions_code }} */ \ No newline at end of file + /* {{ design_exceptions_code }} */ diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/FlushAllCacheTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/FlushAllCacheTest.php index 5e118717388..4411e8d7335 100644 --- a/app/code/Magento/PageCache/Test/Unit/Observer/FlushAllCacheTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Observer/FlushAllCacheTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/FlushCacheByTagsTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/FlushCacheByTagsTest.php index e6453c8d668..ebf584572d0 100644 --- a/app/code/Magento/PageCache/Test/Unit/Observer/FlushCacheByTagsTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Observer/FlushCacheByTagsTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/FlushFormKeyOnLogoutTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/FlushFormKeyOnLogoutTest.php index 43b33eba088..ee1b733f6e2 100644 --- a/app/code/Magento/PageCache/Test/Unit/Observer/FlushFormKeyOnLogoutTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Observer/FlushFormKeyOnLogoutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Observer; diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/InvalidateCacheTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/InvalidateCacheTest.php index 54ccf21ab3c..01ca5fd35b1 100644 --- a/app/code/Magento/PageCache/Test/Unit/Observer/InvalidateCacheTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Observer/InvalidateCacheTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Observer; diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/ProcessLayoutRenderElementTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/ProcessLayoutRenderElementTest.php index f6f23fad3c8..aba9967134d 100644 --- a/app/code/Magento/PageCache/Test/Unit/Observer/ProcessLayoutRenderElementTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Observer/ProcessLayoutRenderElementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/RegisterFormKeyFromCookieTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/RegisterFormKeyFromCookieTest.php index c1c97174212..1ec49cf19ba 100644 --- a/app/code/Magento/PageCache/Test/Unit/Observer/RegisterFormKeyFromCookieTest.php +++ b/app/code/Magento/PageCache/Test/Unit/Observer/RegisterFormKeyFromCookieTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Test\Unit\Observer; diff --git a/app/code/Magento/PageCache/etc/adminhtml/di.xml b/app/code/Magento/PageCache/etc/adminhtml/di.xml index 80096b4ad73..d63d96821bb 100644 --- a/app/code/Magento/PageCache/etc/adminhtml/di.xml +++ b/app/code/Magento/PageCache/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/etc/adminhtml/routes.xml b/app/code/Magento/PageCache/etc/adminhtml/routes.xml index a7727f6c8b6..3b438463465 100644 --- a/app/code/Magento/PageCache/etc/adminhtml/routes.xml +++ b/app/code/Magento/PageCache/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/etc/adminhtml/system.xml b/app/code/Magento/PageCache/etc/adminhtml/system.xml index 92bc32086a9..e5026879abc 100644 --- a/app/code/Magento/PageCache/etc/adminhtml/system.xml +++ b/app/code/Magento/PageCache/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/etc/cache.xml b/app/code/Magento/PageCache/etc/cache.xml index f69100927ee..babf52af1aa 100644 --- a/app/code/Magento/PageCache/etc/cache.xml +++ b/app/code/Magento/PageCache/etc/cache.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/etc/config.xml b/app/code/Magento/PageCache/etc/config.xml index 3f7a8198418..a5c0be7c85a 100644 --- a/app/code/Magento/PageCache/etc/config.xml +++ b/app/code/Magento/PageCache/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/etc/di.xml b/app/code/Magento/PageCache/etc/di.xml index f0e5f97d1e2..ec8ef3d9e2b 100644 --- a/app/code/Magento/PageCache/etc/di.xml +++ b/app/code/Magento/PageCache/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/etc/events.xml b/app/code/Magento/PageCache/etc/events.xml index 8d88feeab18..16cc5669fc8 100644 --- a/app/code/Magento/PageCache/etc/events.xml +++ b/app/code/Magento/PageCache/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/etc/frontend/di.xml b/app/code/Magento/PageCache/etc/frontend/di.xml index 7433480ad07..d4f7ff945a0 100644 --- a/app/code/Magento/PageCache/etc/frontend/di.xml +++ b/app/code/Magento/PageCache/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/etc/frontend/events.xml b/app/code/Magento/PageCache/etc/frontend/events.xml index 10ef2eee028..64e56efa08e 100644 --- a/app/code/Magento/PageCache/etc/frontend/events.xml +++ b/app/code/Magento/PageCache/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/etc/frontend/routes.xml b/app/code/Magento/PageCache/etc/frontend/routes.xml index 063b0c3e240..0344d7eeece 100644 --- a/app/code/Magento/PageCache/etc/frontend/routes.xml +++ b/app/code/Magento/PageCache/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/etc/module.xml b/app/code/Magento/PageCache/etc/module.xml index aa3a2d4aee5..709463a4f2b 100644 --- a/app/code/Magento/PageCache/etc/module.xml +++ b/app/code/Magento/PageCache/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/registration.php b/app/code/Magento/PageCache/registration.php index 4558857e02f..6803d5c98bd 100644 --- a/app/code/Magento/PageCache/registration.php +++ b/app/code/Magento/PageCache/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/view/adminhtml/layout/adminhtml_system_config_edit.xml b/app/code/Magento/PageCache/view/adminhtml/layout/adminhtml_system_config_edit.xml index 309eb4c79b9..84c028902a9 100644 --- a/app/code/Magento/PageCache/view/adminhtml/layout/adminhtml_system_config_edit.xml +++ b/app/code/Magento/PageCache/view/adminhtml/layout/adminhtml_system_config_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/view/adminhtml/templates/page_cache_validation.phtml b/app/code/Magento/PageCache/view/adminhtml/templates/page_cache_validation.phtml index 828a70465a2..f6b0eb41e76 100644 --- a/app/code/Magento/PageCache/view/adminhtml/templates/page_cache_validation.phtml +++ b/app/code/Magento/PageCache/view/adminhtml/templates/page_cache_validation.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/view/frontend/layout/default.xml b/app/code/Magento/PageCache/view/frontend/layout/default.xml index 131c4049c82..9865cf91e35 100644 --- a/app/code/Magento/PageCache/view/frontend/layout/default.xml +++ b/app/code/Magento/PageCache/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/PageCache/view/frontend/requirejs-config.js b/app/code/Magento/PageCache/view/frontend/requirejs-config.js index af32043fccc..f1f5f7dc54a 100644 --- a/app/code/Magento/PageCache/view/frontend/requirejs-config.js +++ b/app/code/Magento/PageCache/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/view/frontend/templates/javascript.phtml b/app/code/Magento/PageCache/view/frontend/templates/javascript.phtml index 830924c2691..52ab141e18b 100644 --- a/app/code/Magento/PageCache/view/frontend/templates/javascript.phtml +++ b/app/code/Magento/PageCache/view/frontend/templates/javascript.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -12,4 +12,4 @@ "pageCache": <?php /* @noEscape */ echo $block->getScriptOptions(); ?> } } -</script> \ No newline at end of file +</script> diff --git a/app/code/Magento/PageCache/view/frontend/templates/js/components.phtml b/app/code/Magento/PageCache/view/frontend/templates/js/components.phtml index b97c9edc8c0..4f5a0d0e47b 100644 --- a/app/code/Magento/PageCache/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/PageCache/view/frontend/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/PageCache/view/frontend/web/js/page-cache.js b/app/code/Magento/PageCache/view/frontend/web/js/page-cache.js index ce933513861..297e0011856 100644 --- a/app/code/Magento/PageCache/view/frontend/web/js/page-cache.js +++ b/app/code/Magento/PageCache/view/frontend/web/js/page-cache.js @@ -1,7 +1,7 @@ /** * Handles additional ajax request for rendering user private content * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Api/Data/PaymentMethodInterface.php b/app/code/Magento/Payment/Api/Data/PaymentMethodInterface.php index 881595f60e5..acc7ff59693 100644 --- a/app/code/Magento/Payment/Api/Data/PaymentMethodInterface.php +++ b/app/code/Magento/Payment/Api/Data/PaymentMethodInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Api\Data; diff --git a/app/code/Magento/Payment/Api/PaymentMethodListInterface.php b/app/code/Magento/Payment/Api/PaymentMethodListInterface.php index faf231562d9..18669ad13e7 100644 --- a/app/code/Magento/Payment/Api/PaymentMethodListInterface.php +++ b/app/code/Magento/Payment/Api/PaymentMethodListInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Api; diff --git a/app/code/Magento/Payment/Block/Adminhtml/Transparent/Form.php b/app/code/Magento/Payment/Block/Adminhtml/Transparent/Form.php index 985381cea5b..af596603e69 100644 --- a/app/code/Magento/Payment/Block/Adminhtml/Transparent/Form.php +++ b/app/code/Magento/Payment/Block/Adminhtml/Transparent/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block\Adminhtml\Transparent; diff --git a/app/code/Magento/Payment/Block/ConfigurableInfo.php b/app/code/Magento/Payment/Block/ConfigurableInfo.php index b891703606c..8314fbb69d0 100644 --- a/app/code/Magento/Payment/Block/ConfigurableInfo.php +++ b/app/code/Magento/Payment/Block/ConfigurableInfo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block; diff --git a/app/code/Magento/Payment/Block/Form.php b/app/code/Magento/Payment/Block/Form.php index 678a7fbc9bc..78a4e0922da 100644 --- a/app/code/Magento/Payment/Block/Form.php +++ b/app/code/Magento/Payment/Block/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block; diff --git a/app/code/Magento/Payment/Block/Form/Cc.php b/app/code/Magento/Payment/Block/Form/Cc.php index 9fcd03b4464..990c9368400 100644 --- a/app/code/Magento/Payment/Block/Form/Cc.php +++ b/app/code/Magento/Payment/Block/Form/Cc.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block\Form; diff --git a/app/code/Magento/Payment/Block/Form/Container.php b/app/code/Magento/Payment/Block/Form/Container.php index d91c0e3dc39..77144aca994 100644 --- a/app/code/Magento/Payment/Block/Form/Container.php +++ b/app/code/Magento/Payment/Block/Form/Container.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block\Form; diff --git a/app/code/Magento/Payment/Block/Info.php b/app/code/Magento/Payment/Block/Info.php index c93692a372e..77de654818f 100644 --- a/app/code/Magento/Payment/Block/Info.php +++ b/app/code/Magento/Payment/Block/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block; diff --git a/app/code/Magento/Payment/Block/Info/AbstractContainer.php b/app/code/Magento/Payment/Block/Info/AbstractContainer.php index 2c792530c31..e3ffda02de4 100644 --- a/app/code/Magento/Payment/Block/Info/AbstractContainer.php +++ b/app/code/Magento/Payment/Block/Info/AbstractContainer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block\Info; diff --git a/app/code/Magento/Payment/Block/Info/Cc.php b/app/code/Magento/Payment/Block/Info/Cc.php index 800b9eae9a7..834027a8cd8 100644 --- a/app/code/Magento/Payment/Block/Info/Cc.php +++ b/app/code/Magento/Payment/Block/Info/Cc.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block\Info; diff --git a/app/code/Magento/Payment/Block/Info/Instructions.php b/app/code/Magento/Payment/Block/Info/Instructions.php index 42f88d99fb7..6802405e18f 100644 --- a/app/code/Magento/Payment/Block/Info/Instructions.php +++ b/app/code/Magento/Payment/Block/Info/Instructions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block\Info; diff --git a/app/code/Magento/Payment/Block/Info/Substitution.php b/app/code/Magento/Payment/Block/Info/Substitution.php index c06212ebe73..51ecbee5cb0 100644 --- a/app/code/Magento/Payment/Block/Info/Substitution.php +++ b/app/code/Magento/Payment/Block/Info/Substitution.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block\Info; diff --git a/app/code/Magento/Payment/Block/Transparent/Form.php b/app/code/Magento/Payment/Block/Transparent/Form.php index 790224c34fe..9116296080e 100644 --- a/app/code/Magento/Payment/Block/Transparent/Form.php +++ b/app/code/Magento/Payment/Block/Transparent/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block\Transparent; diff --git a/app/code/Magento/Payment/Block/Transparent/Iframe.php b/app/code/Magento/Payment/Block/Transparent/Iframe.php index 6e4c33750c3..5a544674b15 100644 --- a/app/code/Magento/Payment/Block/Transparent/Iframe.php +++ b/app/code/Magento/Payment/Block/Transparent/Iframe.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block\Transparent; diff --git a/app/code/Magento/Payment/Block/Transparent/Info.php b/app/code/Magento/Payment/Block/Transparent/Info.php index 587616ef922..009c2e9e36b 100644 --- a/app/code/Magento/Payment/Block/Transparent/Info.php +++ b/app/code/Magento/Payment/Block/Transparent/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Block\Transparent; diff --git a/app/code/Magento/Payment/Gateway/Command/CommandException.php b/app/code/Magento/Payment/Gateway/Command/CommandException.php index b5f197293db..50717091328 100644 --- a/app/code/Magento/Payment/Gateway/Command/CommandException.php +++ b/app/code/Magento/Payment/Gateway/Command/CommandException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command; diff --git a/app/code/Magento/Payment/Gateway/Command/CommandManager.php b/app/code/Magento/Payment/Gateway/Command/CommandManager.php index 75014d8a56b..e2b6c593588 100644 --- a/app/code/Magento/Payment/Gateway/Command/CommandManager.php +++ b/app/code/Magento/Payment/Gateway/Command/CommandManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command; diff --git a/app/code/Magento/Payment/Gateway/Command/CommandManagerInterface.php b/app/code/Magento/Payment/Gateway/Command/CommandManagerInterface.php index bbca209d6a4..a11db236dde 100644 --- a/app/code/Magento/Payment/Gateway/Command/CommandManagerInterface.php +++ b/app/code/Magento/Payment/Gateway/Command/CommandManagerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command; diff --git a/app/code/Magento/Payment/Gateway/Command/CommandManagerPool.php b/app/code/Magento/Payment/Gateway/Command/CommandManagerPool.php index 5ce0e79b3c5..39d2b992ba7 100644 --- a/app/code/Magento/Payment/Gateway/Command/CommandManagerPool.php +++ b/app/code/Magento/Payment/Gateway/Command/CommandManagerPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command; diff --git a/app/code/Magento/Payment/Gateway/Command/CommandManagerPoolInterface.php b/app/code/Magento/Payment/Gateway/Command/CommandManagerPoolInterface.php index 3949b3db323..d0040d5b766 100644 --- a/app/code/Magento/Payment/Gateway/Command/CommandManagerPoolInterface.php +++ b/app/code/Magento/Payment/Gateway/Command/CommandManagerPoolInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command; diff --git a/app/code/Magento/Payment/Gateway/Command/CommandPool.php b/app/code/Magento/Payment/Gateway/Command/CommandPool.php index e63c113cf1a..69e7de3898b 100644 --- a/app/code/Magento/Payment/Gateway/Command/CommandPool.php +++ b/app/code/Magento/Payment/Gateway/Command/CommandPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command; diff --git a/app/code/Magento/Payment/Gateway/Command/CommandPoolInterface.php b/app/code/Magento/Payment/Gateway/Command/CommandPoolInterface.php index a842bd8ddde..58323f69da7 100644 --- a/app/code/Magento/Payment/Gateway/Command/CommandPoolInterface.php +++ b/app/code/Magento/Payment/Gateway/Command/CommandPoolInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command; diff --git a/app/code/Magento/Payment/Gateway/Command/GatewayCommand.php b/app/code/Magento/Payment/Gateway/Command/GatewayCommand.php index 072e8a084f6..d687c1f3dd6 100644 --- a/app/code/Magento/Payment/Gateway/Command/GatewayCommand.php +++ b/app/code/Magento/Payment/Gateway/Command/GatewayCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command; diff --git a/app/code/Magento/Payment/Gateway/Command/NullCommand.php b/app/code/Magento/Payment/Gateway/Command/NullCommand.php index 57bb0a0bfd6..71f62ba0799 100644 --- a/app/code/Magento/Payment/Gateway/Command/NullCommand.php +++ b/app/code/Magento/Payment/Gateway/Command/NullCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command; diff --git a/app/code/Magento/Payment/Gateway/Command/Result/ArrayResult.php b/app/code/Magento/Payment/Gateway/Command/Result/ArrayResult.php index fe54c7b552d..6df16513ed7 100644 --- a/app/code/Magento/Payment/Gateway/Command/Result/ArrayResult.php +++ b/app/code/Magento/Payment/Gateway/Command/Result/ArrayResult.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command\Result; diff --git a/app/code/Magento/Payment/Gateway/Command/Result/BoolResult.php b/app/code/Magento/Payment/Gateway/Command/Result/BoolResult.php index 69b9739ee5b..2b3f237023e 100644 --- a/app/code/Magento/Payment/Gateway/Command/Result/BoolResult.php +++ b/app/code/Magento/Payment/Gateway/Command/Result/BoolResult.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command\Result; diff --git a/app/code/Magento/Payment/Gateway/Command/ResultInterface.php b/app/code/Magento/Payment/Gateway/Command/ResultInterface.php index 31108a8bc35..b38d900ee00 100644 --- a/app/code/Magento/Payment/Gateway/Command/ResultInterface.php +++ b/app/code/Magento/Payment/Gateway/Command/ResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Command; diff --git a/app/code/Magento/Payment/Gateway/CommandInterface.php b/app/code/Magento/Payment/Gateway/CommandInterface.php index ff1c70f6ed5..47a54360525 100644 --- a/app/code/Magento/Payment/Gateway/CommandInterface.php +++ b/app/code/Magento/Payment/Gateway/CommandInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway; diff --git a/app/code/Magento/Payment/Gateway/Config/Config.php b/app/code/Magento/Payment/Gateway/Config/Config.php index 26b78b2a8ae..b509a6c98da 100644 --- a/app/code/Magento/Payment/Gateway/Config/Config.php +++ b/app/code/Magento/Payment/Gateway/Config/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Config; diff --git a/app/code/Magento/Payment/Gateway/Config/ConfigFactory.php b/app/code/Magento/Payment/Gateway/Config/ConfigFactory.php index 06dbe513dc0..17cf1be73c5 100644 --- a/app/code/Magento/Payment/Gateway/Config/ConfigFactory.php +++ b/app/code/Magento/Payment/Gateway/Config/ConfigFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Config; diff --git a/app/code/Magento/Payment/Gateway/Config/ConfigValueHandler.php b/app/code/Magento/Payment/Gateway/Config/ConfigValueHandler.php index 38b5dd3d973..63abc6d36aa 100644 --- a/app/code/Magento/Payment/Gateway/Config/ConfigValueHandler.php +++ b/app/code/Magento/Payment/Gateway/Config/ConfigValueHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Config; diff --git a/app/code/Magento/Payment/Gateway/Config/ValueHandlerInterface.php b/app/code/Magento/Payment/Gateway/Config/ValueHandlerInterface.php index 5e92d98ebe3..325acddc63f 100644 --- a/app/code/Magento/Payment/Gateway/Config/ValueHandlerInterface.php +++ b/app/code/Magento/Payment/Gateway/Config/ValueHandlerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Config; diff --git a/app/code/Magento/Payment/Gateway/Config/ValueHandlerPool.php b/app/code/Magento/Payment/Gateway/Config/ValueHandlerPool.php index 0add9af0fbc..6991a437077 100644 --- a/app/code/Magento/Payment/Gateway/Config/ValueHandlerPool.php +++ b/app/code/Magento/Payment/Gateway/Config/ValueHandlerPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Config; diff --git a/app/code/Magento/Payment/Gateway/Config/ValueHandlerPoolInterface.php b/app/code/Magento/Payment/Gateway/Config/ValueHandlerPoolInterface.php index dea9bf3db63..f66f7616cce 100644 --- a/app/code/Magento/Payment/Gateway/Config/ValueHandlerPoolInterface.php +++ b/app/code/Magento/Payment/Gateway/Config/ValueHandlerPoolInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Config; diff --git a/app/code/Magento/Payment/Gateway/ConfigFactoryInterface.php b/app/code/Magento/Payment/Gateway/ConfigFactoryInterface.php index a938e1cd3da..f72c8f6c6ae 100644 --- a/app/code/Magento/Payment/Gateway/ConfigFactoryInterface.php +++ b/app/code/Magento/Payment/Gateway/ConfigFactoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway; diff --git a/app/code/Magento/Payment/Gateway/ConfigInterface.php b/app/code/Magento/Payment/Gateway/ConfigInterface.php index 955e4351f25..dbcd0af584c 100644 --- a/app/code/Magento/Payment/Gateway/ConfigInterface.php +++ b/app/code/Magento/Payment/Gateway/ConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway; diff --git a/app/code/Magento/Payment/Gateway/Data/AddressAdapterInterface.php b/app/code/Magento/Payment/Gateway/Data/AddressAdapterInterface.php index 6db82db2a36..215f825f1f0 100644 --- a/app/code/Magento/Payment/Gateway/Data/AddressAdapterInterface.php +++ b/app/code/Magento/Payment/Gateway/Data/AddressAdapterInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Data; diff --git a/app/code/Magento/Payment/Gateway/Data/Order/AddressAdapter.php b/app/code/Magento/Payment/Gateway/Data/Order/AddressAdapter.php index 9bc85ee47ce..4a3ce9d4cb3 100644 --- a/app/code/Magento/Payment/Gateway/Data/Order/AddressAdapter.php +++ b/app/code/Magento/Payment/Gateway/Data/Order/AddressAdapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Data\Order; diff --git a/app/code/Magento/Payment/Gateway/Data/Order/OrderAdapter.php b/app/code/Magento/Payment/Gateway/Data/Order/OrderAdapter.php index e40637aab00..48d76cd5900 100644 --- a/app/code/Magento/Payment/Gateway/Data/Order/OrderAdapter.php +++ b/app/code/Magento/Payment/Gateway/Data/Order/OrderAdapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Data\Order; diff --git a/app/code/Magento/Payment/Gateway/Data/OrderAdapterInterface.php b/app/code/Magento/Payment/Gateway/Data/OrderAdapterInterface.php index f69c8b9841c..034069b7400 100644 --- a/app/code/Magento/Payment/Gateway/Data/OrderAdapterInterface.php +++ b/app/code/Magento/Payment/Gateway/Data/OrderAdapterInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Data; diff --git a/app/code/Magento/Payment/Gateway/Data/PaymentDataObject.php b/app/code/Magento/Payment/Gateway/Data/PaymentDataObject.php index 2a06255b19d..0695fb34cd9 100644 --- a/app/code/Magento/Payment/Gateway/Data/PaymentDataObject.php +++ b/app/code/Magento/Payment/Gateway/Data/PaymentDataObject.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Data; diff --git a/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactory.php b/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactory.php index 0ab98673d9a..f398e40212c 100644 --- a/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactory.php +++ b/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Data; diff --git a/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactoryInterface.php b/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactoryInterface.php index 8ea335ed9aa..a01cdb00a66 100644 --- a/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactoryInterface.php +++ b/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Data; diff --git a/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectInterface.php b/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectInterface.php index ca1c6b04162..a62156c7fa4 100644 --- a/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectInterface.php +++ b/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Data; diff --git a/app/code/Magento/Payment/Gateway/Data/Quote/AddressAdapter.php b/app/code/Magento/Payment/Gateway/Data/Quote/AddressAdapter.php index 9af8c6b888a..7f645a5881f 100644 --- a/app/code/Magento/Payment/Gateway/Data/Quote/AddressAdapter.php +++ b/app/code/Magento/Payment/Gateway/Data/Quote/AddressAdapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Data\Quote; diff --git a/app/code/Magento/Payment/Gateway/Data/Quote/QuoteAdapter.php b/app/code/Magento/Payment/Gateway/Data/Quote/QuoteAdapter.php index 4b2cd19b122..46629fb5acb 100644 --- a/app/code/Magento/Payment/Gateway/Data/Quote/QuoteAdapter.php +++ b/app/code/Magento/Payment/Gateway/Data/Quote/QuoteAdapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Data\Quote; diff --git a/app/code/Magento/Payment/Gateway/Helper/ContextHelper.php b/app/code/Magento/Payment/Gateway/Helper/ContextHelper.php index 4c9a733b613..2157331f523 100644 --- a/app/code/Magento/Payment/Gateway/Helper/ContextHelper.php +++ b/app/code/Magento/Payment/Gateway/Helper/ContextHelper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Helper; diff --git a/app/code/Magento/Payment/Gateway/Helper/SubjectReader.php b/app/code/Magento/Payment/Gateway/Helper/SubjectReader.php index 26f7491e7e5..e5aaae0c2fa 100644 --- a/app/code/Magento/Payment/Gateway/Helper/SubjectReader.php +++ b/app/code/Magento/Payment/Gateway/Helper/SubjectReader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Helper; diff --git a/app/code/Magento/Payment/Gateway/Http/Client/Soap.php b/app/code/Magento/Payment/Gateway/Http/Client/Soap.php index 3e83c5027af..b3201b2ef03 100644 --- a/app/code/Magento/Payment/Gateway/Http/Client/Soap.php +++ b/app/code/Magento/Payment/Gateway/Http/Client/Soap.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http\Client; diff --git a/app/code/Magento/Payment/Gateway/Http/Client/Zend.php b/app/code/Magento/Payment/Gateway/Http/Client/Zend.php index 9526283793c..30e02eb8850 100644 --- a/app/code/Magento/Payment/Gateway/Http/Client/Zend.php +++ b/app/code/Magento/Payment/Gateway/Http/Client/Zend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http\Client; diff --git a/app/code/Magento/Payment/Gateway/Http/ClientException.php b/app/code/Magento/Payment/Gateway/Http/ClientException.php index 5654befa15c..dc4e7df3582 100644 --- a/app/code/Magento/Payment/Gateway/Http/ClientException.php +++ b/app/code/Magento/Payment/Gateway/Http/ClientException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http; diff --git a/app/code/Magento/Payment/Gateway/Http/ClientInterface.php b/app/code/Magento/Payment/Gateway/Http/ClientInterface.php index 53e6d6b7f61..add6e3a918d 100644 --- a/app/code/Magento/Payment/Gateway/Http/ClientInterface.php +++ b/app/code/Magento/Payment/Gateway/Http/ClientInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http; diff --git a/app/code/Magento/Payment/Gateway/Http/Converter/HtmlFormConverter.php b/app/code/Magento/Payment/Gateway/Http/Converter/HtmlFormConverter.php index 56652755066..bc7ffcbf14d 100644 --- a/app/code/Magento/Payment/Gateway/Http/Converter/HtmlFormConverter.php +++ b/app/code/Magento/Payment/Gateway/Http/Converter/HtmlFormConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http\Converter; diff --git a/app/code/Magento/Payment/Gateway/Http/Converter/Soap/ObjectToArrayConverter.php b/app/code/Magento/Payment/Gateway/Http/Converter/Soap/ObjectToArrayConverter.php index 600ef66c8fe..a5b151c29b8 100644 --- a/app/code/Magento/Payment/Gateway/Http/Converter/Soap/ObjectToArrayConverter.php +++ b/app/code/Magento/Payment/Gateway/Http/Converter/Soap/ObjectToArrayConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http\Converter\Soap; diff --git a/app/code/Magento/Payment/Gateway/Http/ConverterException.php b/app/code/Magento/Payment/Gateway/Http/ConverterException.php index a645e969482..48225a23d8e 100644 --- a/app/code/Magento/Payment/Gateway/Http/ConverterException.php +++ b/app/code/Magento/Payment/Gateway/Http/ConverterException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http; diff --git a/app/code/Magento/Payment/Gateway/Http/ConverterInterface.php b/app/code/Magento/Payment/Gateway/Http/ConverterInterface.php index 615a3411aa4..817be8a9dfa 100644 --- a/app/code/Magento/Payment/Gateway/Http/ConverterInterface.php +++ b/app/code/Magento/Payment/Gateway/Http/ConverterInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http; diff --git a/app/code/Magento/Payment/Gateway/Http/Transfer.php b/app/code/Magento/Payment/Gateway/Http/Transfer.php index 312502450ae..695896c8488 100644 --- a/app/code/Magento/Payment/Gateway/Http/Transfer.php +++ b/app/code/Magento/Payment/Gateway/Http/Transfer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http; diff --git a/app/code/Magento/Payment/Gateway/Http/TransferBuilder.php b/app/code/Magento/Payment/Gateway/Http/TransferBuilder.php index fbf63fb9191..c3833ffdaa8 100644 --- a/app/code/Magento/Payment/Gateway/Http/TransferBuilder.php +++ b/app/code/Magento/Payment/Gateway/Http/TransferBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http; diff --git a/app/code/Magento/Payment/Gateway/Http/TransferFactoryInterface.php b/app/code/Magento/Payment/Gateway/Http/TransferFactoryInterface.php index 84403ca4c44..be9f70e0edb 100644 --- a/app/code/Magento/Payment/Gateway/Http/TransferFactoryInterface.php +++ b/app/code/Magento/Payment/Gateway/Http/TransferFactoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http; diff --git a/app/code/Magento/Payment/Gateway/Http/TransferInterface.php b/app/code/Magento/Payment/Gateway/Http/TransferInterface.php index 9477a2b624e..9accfef2fb4 100644 --- a/app/code/Magento/Payment/Gateway/Http/TransferInterface.php +++ b/app/code/Magento/Payment/Gateway/Http/TransferInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http; diff --git a/app/code/Magento/Payment/Gateway/Request/BuilderComposite.php b/app/code/Magento/Payment/Gateway/Request/BuilderComposite.php index 063200c034a..6e9a8196e4b 100644 --- a/app/code/Magento/Payment/Gateway/Request/BuilderComposite.php +++ b/app/code/Magento/Payment/Gateway/Request/BuilderComposite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Request; diff --git a/app/code/Magento/Payment/Gateway/Request/BuilderInterface.php b/app/code/Magento/Payment/Gateway/Request/BuilderInterface.php index ae543339150..3fa082f69b1 100644 --- a/app/code/Magento/Payment/Gateway/Request/BuilderInterface.php +++ b/app/code/Magento/Payment/Gateway/Request/BuilderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Request; diff --git a/app/code/Magento/Payment/Gateway/Response/HandlerChain.php b/app/code/Magento/Payment/Gateway/Response/HandlerChain.php index e4642df99c0..c2726be0075 100644 --- a/app/code/Magento/Payment/Gateway/Response/HandlerChain.php +++ b/app/code/Magento/Payment/Gateway/Response/HandlerChain.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Response; diff --git a/app/code/Magento/Payment/Gateway/Response/HandlerInterface.php b/app/code/Magento/Payment/Gateway/Response/HandlerInterface.php index 94b565399e1..068b35ec1c5 100644 --- a/app/code/Magento/Payment/Gateway/Response/HandlerInterface.php +++ b/app/code/Magento/Payment/Gateway/Response/HandlerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Response; diff --git a/app/code/Magento/Payment/Gateway/Validator/AbstractValidator.php b/app/code/Magento/Payment/Gateway/Validator/AbstractValidator.php index 848a01220b2..a58c965ea88 100644 --- a/app/code/Magento/Payment/Gateway/Validator/AbstractValidator.php +++ b/app/code/Magento/Payment/Gateway/Validator/AbstractValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Validator; diff --git a/app/code/Magento/Payment/Gateway/Validator/CountryValidator.php b/app/code/Magento/Payment/Gateway/Validator/CountryValidator.php index 470e7da0a21..02c8c3d356e 100644 --- a/app/code/Magento/Payment/Gateway/Validator/CountryValidator.php +++ b/app/code/Magento/Payment/Gateway/Validator/CountryValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Validator; diff --git a/app/code/Magento/Payment/Gateway/Validator/Result.php b/app/code/Magento/Payment/Gateway/Validator/Result.php index 5a8b7c4a048..4b1a029e9f6 100644 --- a/app/code/Magento/Payment/Gateway/Validator/Result.php +++ b/app/code/Magento/Payment/Gateway/Validator/Result.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Validator; diff --git a/app/code/Magento/Payment/Gateway/Validator/ResultInterface.php b/app/code/Magento/Payment/Gateway/Validator/ResultInterface.php index c3ca27c35b1..2def952ca95 100644 --- a/app/code/Magento/Payment/Gateway/Validator/ResultInterface.php +++ b/app/code/Magento/Payment/Gateway/Validator/ResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Validator; diff --git a/app/code/Magento/Payment/Gateway/Validator/ValidatorComposite.php b/app/code/Magento/Payment/Gateway/Validator/ValidatorComposite.php index f10f378c059..304bfa70920 100644 --- a/app/code/Magento/Payment/Gateway/Validator/ValidatorComposite.php +++ b/app/code/Magento/Payment/Gateway/Validator/ValidatorComposite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Validator; diff --git a/app/code/Magento/Payment/Gateway/Validator/ValidatorInterface.php b/app/code/Magento/Payment/Gateway/Validator/ValidatorInterface.php index f266d157c8b..a459c100b8e 100644 --- a/app/code/Magento/Payment/Gateway/Validator/ValidatorInterface.php +++ b/app/code/Magento/Payment/Gateway/Validator/ValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Validator; diff --git a/app/code/Magento/Payment/Gateway/Validator/ValidatorPool.php b/app/code/Magento/Payment/Gateway/Validator/ValidatorPool.php index 5069a122960..b1b3ef713e2 100644 --- a/app/code/Magento/Payment/Gateway/Validator/ValidatorPool.php +++ b/app/code/Magento/Payment/Gateway/Validator/ValidatorPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Validator; diff --git a/app/code/Magento/Payment/Gateway/Validator/ValidatorPoolInterface.php b/app/code/Magento/Payment/Gateway/Validator/ValidatorPoolInterface.php index aaae291f687..c4bffa06c97 100644 --- a/app/code/Magento/Payment/Gateway/Validator/ValidatorPoolInterface.php +++ b/app/code/Magento/Payment/Gateway/Validator/ValidatorPoolInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Validator; diff --git a/app/code/Magento/Payment/Helper/Data.php b/app/code/Magento/Payment/Helper/Data.php index 0c5518a5c4c..99d226d37be 100644 --- a/app/code/Magento/Payment/Helper/Data.php +++ b/app/code/Magento/Payment/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Helper; diff --git a/app/code/Magento/Payment/Helper/Formatter.php b/app/code/Magento/Payment/Helper/Formatter.php index b5334a326c1..de62493ee50 100644 --- a/app/code/Magento/Payment/Helper/Formatter.php +++ b/app/code/Magento/Payment/Helper/Formatter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Helper; diff --git a/app/code/Magento/Payment/Model/Cart.php b/app/code/Magento/Payment/Model/Cart.php index 34b7f7801f8..8fa4972f2c3 100644 --- a/app/code/Magento/Payment/Model/Cart.php +++ b/app/code/Magento/Payment/Model/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; diff --git a/app/code/Magento/Payment/Model/Cart/SalesModel/Factory.php b/app/code/Magento/Payment/Model/Cart/SalesModel/Factory.php index 2cb288dba07..5a7fdab5041 100644 --- a/app/code/Magento/Payment/Model/Cart/SalesModel/Factory.php +++ b/app/code/Magento/Payment/Model/Cart/SalesModel/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Cart\SalesModel; diff --git a/app/code/Magento/Payment/Model/Cart/SalesModel/Order.php b/app/code/Magento/Payment/Model/Cart/SalesModel/Order.php index 81e7e5d309c..589615143c8 100644 --- a/app/code/Magento/Payment/Model/Cart/SalesModel/Order.php +++ b/app/code/Magento/Payment/Model/Cart/SalesModel/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Cart\SalesModel; diff --git a/app/code/Magento/Payment/Model/Cart/SalesModel/Quote.php b/app/code/Magento/Payment/Model/Cart/SalesModel/Quote.php index 03a25f838e0..cb2aa5a128f 100644 --- a/app/code/Magento/Payment/Model/Cart/SalesModel/Quote.php +++ b/app/code/Magento/Payment/Model/Cart/SalesModel/Quote.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Cart\SalesModel; diff --git a/app/code/Magento/Payment/Model/Cart/SalesModel/SalesModelInterface.php b/app/code/Magento/Payment/Model/Cart/SalesModel/SalesModelInterface.php index 860e6e4ff94..5656fae1bef 100644 --- a/app/code/Magento/Payment/Model/Cart/SalesModel/SalesModelInterface.php +++ b/app/code/Magento/Payment/Model/Cart/SalesModel/SalesModelInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Cart\SalesModel; diff --git a/app/code/Magento/Payment/Model/CcConfig.php b/app/code/Magento/Payment/Model/CcConfig.php index bb57756fb7e..247b45abcb5 100644 --- a/app/code/Magento/Payment/Model/CcConfig.php +++ b/app/code/Magento/Payment/Model/CcConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; diff --git a/app/code/Magento/Payment/Model/CcConfigProvider.php b/app/code/Magento/Payment/Model/CcConfigProvider.php index f97b230eef1..3fd69fe29a5 100644 --- a/app/code/Magento/Payment/Model/CcConfigProvider.php +++ b/app/code/Magento/Payment/Model/CcConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; diff --git a/app/code/Magento/Payment/Model/CcGenericConfigProvider.php b/app/code/Magento/Payment/Model/CcGenericConfigProvider.php index a29bff3576a..7dc4f10a6b6 100644 --- a/app/code/Magento/Payment/Model/CcGenericConfigProvider.php +++ b/app/code/Magento/Payment/Model/CcGenericConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; diff --git a/app/code/Magento/Payment/Model/Checks/CanUseCheckout.php b/app/code/Magento/Payment/Model/Checks/CanUseCheckout.php index 712d201bda5..d575fac3f71 100644 --- a/app/code/Magento/Payment/Model/Checks/CanUseCheckout.php +++ b/app/code/Magento/Payment/Model/Checks/CanUseCheckout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Checks; diff --git a/app/code/Magento/Payment/Model/Checks/CanUseForCountry.php b/app/code/Magento/Payment/Model/Checks/CanUseForCountry.php index 41270ca25f1..83e7455f878 100644 --- a/app/code/Magento/Payment/Model/Checks/CanUseForCountry.php +++ b/app/code/Magento/Payment/Model/Checks/CanUseForCountry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Checks; diff --git a/app/code/Magento/Payment/Model/Checks/CanUseForCountry/CountryProvider.php b/app/code/Magento/Payment/Model/Checks/CanUseForCountry/CountryProvider.php index cb7791cbc6d..b75357bb64c 100644 --- a/app/code/Magento/Payment/Model/Checks/CanUseForCountry/CountryProvider.php +++ b/app/code/Magento/Payment/Model/Checks/CanUseForCountry/CountryProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Checks\CanUseForCountry; diff --git a/app/code/Magento/Payment/Model/Checks/CanUseForCurrency.php b/app/code/Magento/Payment/Model/Checks/CanUseForCurrency.php index e0a073d9530..4a46bb8e433 100644 --- a/app/code/Magento/Payment/Model/Checks/CanUseForCurrency.php +++ b/app/code/Magento/Payment/Model/Checks/CanUseForCurrency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Checks; diff --git a/app/code/Magento/Payment/Model/Checks/CanUseInternal.php b/app/code/Magento/Payment/Model/Checks/CanUseInternal.php index 8182522d2ee..6346e0df308 100644 --- a/app/code/Magento/Payment/Model/Checks/CanUseInternal.php +++ b/app/code/Magento/Payment/Model/Checks/CanUseInternal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Checks; diff --git a/app/code/Magento/Payment/Model/Checks/Composite.php b/app/code/Magento/Payment/Model/Checks/Composite.php index e57123ffb8f..a75a4a98d55 100644 --- a/app/code/Magento/Payment/Model/Checks/Composite.php +++ b/app/code/Magento/Payment/Model/Checks/Composite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Checks; diff --git a/app/code/Magento/Payment/Model/Checks/SpecificationFactory.php b/app/code/Magento/Payment/Model/Checks/SpecificationFactory.php index 18d799b7e38..bdb6ef8985e 100644 --- a/app/code/Magento/Payment/Model/Checks/SpecificationFactory.php +++ b/app/code/Magento/Payment/Model/Checks/SpecificationFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Checks; diff --git a/app/code/Magento/Payment/Model/Checks/SpecificationInterface.php b/app/code/Magento/Payment/Model/Checks/SpecificationInterface.php index 1783f978825..19ef04071ca 100644 --- a/app/code/Magento/Payment/Model/Checks/SpecificationInterface.php +++ b/app/code/Magento/Payment/Model/Checks/SpecificationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Checks; diff --git a/app/code/Magento/Payment/Model/Checks/TotalMinMax.php b/app/code/Magento/Payment/Model/Checks/TotalMinMax.php index 154685fed33..82aad971e6d 100644 --- a/app/code/Magento/Payment/Model/Checks/TotalMinMax.php +++ b/app/code/Magento/Payment/Model/Checks/TotalMinMax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Checks; diff --git a/app/code/Magento/Payment/Model/Checks/ZeroTotal.php b/app/code/Magento/Payment/Model/Checks/ZeroTotal.php index 940f537633a..2a0523c5a62 100644 --- a/app/code/Magento/Payment/Model/Checks/ZeroTotal.php +++ b/app/code/Magento/Payment/Model/Checks/ZeroTotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Checks; diff --git a/app/code/Magento/Payment/Model/Config.php b/app/code/Magento/Payment/Model/Config.php index c99c46a38ce..8e47b7fb3cf 100644 --- a/app/code/Magento/Payment/Model/Config.php +++ b/app/code/Magento/Payment/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; diff --git a/app/code/Magento/Payment/Model/Config/Converter.php b/app/code/Magento/Payment/Model/Config/Converter.php index 52731a2ad75..ea6c64789d8 100644 --- a/app/code/Magento/Payment/Model/Config/Converter.php +++ b/app/code/Magento/Payment/Model/Config/Converter.php @@ -2,7 +2,7 @@ /** * Payment Config Converter * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Config; diff --git a/app/code/Magento/Payment/Model/Config/Reader.php b/app/code/Magento/Payment/Model/Config/Reader.php index cf05b47890a..adf8e0bc036 100644 --- a/app/code/Magento/Payment/Model/Config/Reader.php +++ b/app/code/Magento/Payment/Model/Config/Reader.php @@ -2,7 +2,7 @@ /** * Payment config reader * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Config; diff --git a/app/code/Magento/Payment/Model/Config/SchemaLocator.php b/app/code/Magento/Payment/Model/Config/SchemaLocator.php index 437c4c20eb1..93d7e35e5c6 100644 --- a/app/code/Magento/Payment/Model/Config/SchemaLocator.php +++ b/app/code/Magento/Payment/Model/Config/SchemaLocator.php @@ -2,7 +2,7 @@ /** * Locator for payment config XSD schemas. * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Config; diff --git a/app/code/Magento/Payment/Model/Config/Source/Allmethods.php b/app/code/Magento/Payment/Model/Config/Source/Allmethods.php index f70907dccb5..8e25f6bc2a1 100644 --- a/app/code/Magento/Payment/Model/Config/Source/Allmethods.php +++ b/app/code/Magento/Payment/Model/Config/Source/Allmethods.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Config\Source; diff --git a/app/code/Magento/Payment/Model/Config/Source/Allspecificcountries.php b/app/code/Magento/Payment/Model/Config/Source/Allspecificcountries.php index 9b32c4ce19e..e76908c6b23 100644 --- a/app/code/Magento/Payment/Model/Config/Source/Allspecificcountries.php +++ b/app/code/Magento/Payment/Model/Config/Source/Allspecificcountries.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Config\Source; diff --git a/app/code/Magento/Payment/Model/Config/Source/Cctype.php b/app/code/Magento/Payment/Model/Config/Source/Cctype.php index db272859110..4e6a8c5de17 100644 --- a/app/code/Magento/Payment/Model/Config/Source/Cctype.php +++ b/app/code/Magento/Payment/Model/Config/Source/Cctype.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Config\Source; diff --git a/app/code/Magento/Payment/Model/IframeConfigProvider.php b/app/code/Magento/Payment/Model/IframeConfigProvider.php index 6affc80c2df..5b944ab5faa 100644 --- a/app/code/Magento/Payment/Model/IframeConfigProvider.php +++ b/app/code/Magento/Payment/Model/IframeConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; diff --git a/app/code/Magento/Payment/Model/Info.php b/app/code/Magento/Payment/Model/Info.php index 6f61ccdd02c..e2743aa653f 100644 --- a/app/code/Magento/Payment/Model/Info.php +++ b/app/code/Magento/Payment/Model/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; diff --git a/app/code/Magento/Payment/Model/InfoInterface.php b/app/code/Magento/Payment/Model/InfoInterface.php index fa9ce70501b..d9449bb1766 100644 --- a/app/code/Magento/Payment/Model/InfoInterface.php +++ b/app/code/Magento/Payment/Model/InfoInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Model/Method/AbstractMethod.php b/app/code/Magento/Payment/Model/Method/AbstractMethod.php index 50c0f52e3f4..5a879c868b6 100644 --- a/app/code/Magento/Payment/Model/Method/AbstractMethod.php +++ b/app/code/Magento/Payment/Model/Method/AbstractMethod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Model/Method/Adapter.php b/app/code/Magento/Payment/Model/Method/Adapter.php index 07a4dcdef5f..8bc6a5a85d7 100644 --- a/app/code/Magento/Payment/Model/Method/Adapter.php +++ b/app/code/Magento/Payment/Model/Method/Adapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method; diff --git a/app/code/Magento/Payment/Model/Method/Cc.php b/app/code/Magento/Payment/Model/Method/Cc.php index f5dd670b2ed..ad9278839c1 100644 --- a/app/code/Magento/Payment/Model/Method/Cc.php +++ b/app/code/Magento/Payment/Model/Method/Cc.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method; diff --git a/app/code/Magento/Payment/Model/Method/ConfigInterface.php b/app/code/Magento/Payment/Model/Method/ConfigInterface.php index ff730413203..c4fbb4fe4da 100644 --- a/app/code/Magento/Payment/Model/Method/ConfigInterface.php +++ b/app/code/Magento/Payment/Model/Method/ConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method; diff --git a/app/code/Magento/Payment/Model/Method/Factory.php b/app/code/Magento/Payment/Model/Method/Factory.php index 69d3f5e7fd8..339ed5003db 100644 --- a/app/code/Magento/Payment/Model/Method/Factory.php +++ b/app/code/Magento/Payment/Model/Method/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method; diff --git a/app/code/Magento/Payment/Model/Method/Free.php b/app/code/Magento/Payment/Model/Method/Free.php index 22e963b80bd..86ad586cfe1 100644 --- a/app/code/Magento/Payment/Model/Method/Free.php +++ b/app/code/Magento/Payment/Model/Method/Free.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method; diff --git a/app/code/Magento/Payment/Model/Method/InstanceFactory.php b/app/code/Magento/Payment/Model/Method/InstanceFactory.php index c273c71e783..97dbe6aa5b0 100644 --- a/app/code/Magento/Payment/Model/Method/InstanceFactory.php +++ b/app/code/Magento/Payment/Model/Method/InstanceFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method; diff --git a/app/code/Magento/Payment/Model/Method/Logger.php b/app/code/Magento/Payment/Model/Method/Logger.php index 6907a6119e1..ebf29016bfe 100644 --- a/app/code/Magento/Payment/Model/Method/Logger.php +++ b/app/code/Magento/Payment/Model/Method/Logger.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method; diff --git a/app/code/Magento/Payment/Model/Method/Online/GatewayInterface.php b/app/code/Magento/Payment/Model/Method/Online/GatewayInterface.php index 52d750d3355..1f18df31d5c 100644 --- a/app/code/Magento/Payment/Model/Method/Online/GatewayInterface.php +++ b/app/code/Magento/Payment/Model/Method/Online/GatewayInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method\Online; diff --git a/app/code/Magento/Payment/Model/Method/Specification/AbstractSpecification.php b/app/code/Magento/Payment/Model/Method/Specification/AbstractSpecification.php index 1c17317c7a0..1e89fe8d1b0 100644 --- a/app/code/Magento/Payment/Model/Method/Specification/AbstractSpecification.php +++ b/app/code/Magento/Payment/Model/Method/Specification/AbstractSpecification.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method\Specification; diff --git a/app/code/Magento/Payment/Model/Method/Specification/Composite.php b/app/code/Magento/Payment/Model/Method/Specification/Composite.php index dd7186bdc43..d8a72377247 100644 --- a/app/code/Magento/Payment/Model/Method/Specification/Composite.php +++ b/app/code/Magento/Payment/Model/Method/Specification/Composite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method\Specification; diff --git a/app/code/Magento/Payment/Model/Method/Specification/Factory.php b/app/code/Magento/Payment/Model/Method/Specification/Factory.php index 315b32ef124..de4679c7784 100644 --- a/app/code/Magento/Payment/Model/Method/Specification/Factory.php +++ b/app/code/Magento/Payment/Model/Method/Specification/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method\Specification; diff --git a/app/code/Magento/Payment/Model/Method/SpecificationInterface.php b/app/code/Magento/Payment/Model/Method/SpecificationInterface.php index 596b59fdc14..d8ec0e0f4db 100644 --- a/app/code/Magento/Payment/Model/Method/SpecificationInterface.php +++ b/app/code/Magento/Payment/Model/Method/SpecificationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method; diff --git a/app/code/Magento/Payment/Model/Method/Substitution.php b/app/code/Magento/Payment/Model/Method/Substitution.php index 3d2ca066097..85553ca60d1 100644 --- a/app/code/Magento/Payment/Model/Method/Substitution.php +++ b/app/code/Magento/Payment/Model/Method/Substitution.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Model/Method/TransparentInterface.php b/app/code/Magento/Payment/Model/Method/TransparentInterface.php index 66a159ce687..492310510a0 100644 --- a/app/code/Magento/Payment/Model/Method/TransparentInterface.php +++ b/app/code/Magento/Payment/Model/Method/TransparentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Method; diff --git a/app/code/Magento/Payment/Model/MethodInterface.php b/app/code/Magento/Payment/Model/MethodInterface.php index 34c36ae5956..15269c8a5ba 100644 --- a/app/code/Magento/Payment/Model/MethodInterface.php +++ b/app/code/Magento/Payment/Model/MethodInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; diff --git a/app/code/Magento/Payment/Model/MethodList.php b/app/code/Magento/Payment/Model/MethodList.php index ff1f786c77f..a2426098c0e 100644 --- a/app/code/Magento/Payment/Model/MethodList.php +++ b/app/code/Magento/Payment/Model/MethodList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Model/Paygate/Result.php b/app/code/Magento/Payment/Model/Paygate/Result.php index 2c24f8e2b5c..37fdda164c9 100644 --- a/app/code/Magento/Payment/Model/Paygate/Result.php +++ b/app/code/Magento/Payment/Model/Paygate/Result.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Paygate; diff --git a/app/code/Magento/Payment/Model/PaymentMethod.php b/app/code/Magento/Payment/Model/PaymentMethod.php index 581c4703f77..c7c7612002e 100644 --- a/app/code/Magento/Payment/Model/PaymentMethod.php +++ b/app/code/Magento/Payment/Model/PaymentMethod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; diff --git a/app/code/Magento/Payment/Model/PaymentMethodList.php b/app/code/Magento/Payment/Model/PaymentMethodList.php index 5968d201ca6..cb75f06517e 100644 --- a/app/code/Magento/Payment/Model/PaymentMethodList.php +++ b/app/code/Magento/Payment/Model/PaymentMethodList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; diff --git a/app/code/Magento/Payment/Model/ResourceModel/Grid/GroupList.php b/app/code/Magento/Payment/Model/ResourceModel/Grid/GroupList.php index 0687364bc5f..ab4914ff910 100644 --- a/app/code/Magento/Payment/Model/ResourceModel/Grid/GroupList.php +++ b/app/code/Magento/Payment/Model/ResourceModel/Grid/GroupList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\ResourceModel\Grid; diff --git a/app/code/Magento/Payment/Model/ResourceModel/Grid/TypeList.php b/app/code/Magento/Payment/Model/ResourceModel/Grid/TypeList.php index b93f90a89fd..4f36aee8b84 100644 --- a/app/code/Magento/Payment/Model/ResourceModel/Grid/TypeList.php +++ b/app/code/Magento/Payment/Model/ResourceModel/Grid/TypeList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\ResourceModel\Grid; diff --git a/app/code/Magento/Payment/Model/Source/Cctype.php b/app/code/Magento/Payment/Model/Source/Cctype.php index a773fea02b0..6138cdd54f2 100644 --- a/app/code/Magento/Payment/Model/Source/Cctype.php +++ b/app/code/Magento/Payment/Model/Source/Cctype.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Source; diff --git a/app/code/Magento/Payment/Model/Source/Invoice.php b/app/code/Magento/Payment/Model/Source/Invoice.php index 6e47c89743a..956cc1b33f3 100644 --- a/app/code/Magento/Payment/Model/Source/Invoice.php +++ b/app/code/Magento/Payment/Model/Source/Invoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model\Source; diff --git a/app/code/Magento/Payment/Observer/AbstractDataAssignObserver.php b/app/code/Magento/Payment/Observer/AbstractDataAssignObserver.php index 46c6e060379..f55410cd7f7 100644 --- a/app/code/Magento/Payment/Observer/AbstractDataAssignObserver.php +++ b/app/code/Magento/Payment/Observer/AbstractDataAssignObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Observer; diff --git a/app/code/Magento/Payment/Observer/SalesOrderBeforeSaveObserver.php b/app/code/Magento/Payment/Observer/SalesOrderBeforeSaveObserver.php index 7d528f3c177..baa61a203d6 100644 --- a/app/code/Magento/Payment/Observer/SalesOrderBeforeSaveObserver.php +++ b/app/code/Magento/Payment/Observer/SalesOrderBeforeSaveObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Observer/UpdateOrderStatusForPaymentMethodsObserver.php b/app/code/Magento/Payment/Observer/UpdateOrderStatusForPaymentMethodsObserver.php index bfb05b12263..25a639fd54b 100644 --- a/app/code/Magento/Payment/Observer/UpdateOrderStatusForPaymentMethodsObserver.php +++ b/app/code/Magento/Payment/Observer/UpdateOrderStatusForPaymentMethodsObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Plugin/PaymentConfigurationProcess.php b/app/code/Magento/Payment/Plugin/PaymentConfigurationProcess.php index 5b107b74295..ff5d7b356e6 100644 --- a/app/code/Magento/Payment/Plugin/PaymentConfigurationProcess.php +++ b/app/code/Magento/Payment/Plugin/PaymentConfigurationProcess.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Plugin; diff --git a/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTest.php b/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTest.php index 7b156f24416..f0f052488c4 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTest.php +++ b/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Block\Adminhtml\Transparent; diff --git a/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTesting.php b/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTesting.php index 8c6aec8b5cc..f8c63fa5063 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTesting.php +++ b/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTesting.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Block\Adminhtml\Transparent; diff --git a/app/code/Magento/Payment/Test/Unit/Block/Form/ContainerTest.php b/app/code/Magento/Payment/Test/Unit/Block/Form/ContainerTest.php index e6de90409de..85eef699c62 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/Form/ContainerTest.php +++ b/app/code/Magento/Payment/Test/Unit/Block/Form/ContainerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Block/FormTest.php b/app/code/Magento/Payment/Test/Unit/Block/FormTest.php index ac207c02b06..0b966d3bf67 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/FormTest.php +++ b/app/code/Magento/Payment/Test/Unit/Block/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Block/Info/CcTest.php b/app/code/Magento/Payment/Test/Unit/Block/Info/CcTest.php index 3d75aaa39be..4a97a67e618 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/Info/CcTest.php +++ b/app/code/Magento/Payment/Test/Unit/Block/Info/CcTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Block/Info/ContainerAbstractTest.php b/app/code/Magento/Payment/Test/Unit/Block/Info/ContainerAbstractTest.php index 5c87fb4ca28..500bcda3480 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/Info/ContainerAbstractTest.php +++ b/app/code/Magento/Payment/Test/Unit/Block/Info/ContainerAbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Block/Info/InstructionsTest.php b/app/code/Magento/Payment/Test/Unit/Block/Info/InstructionsTest.php index 40efa750c59..64bbcc4365c 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/Info/InstructionsTest.php +++ b/app/code/Magento/Payment/Test/Unit/Block/Info/InstructionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Block/Info/SubstitutionTest.php b/app/code/Magento/Payment/Test/Unit/Block/Info/SubstitutionTest.php index fb8f720b473..78946d23639 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/Info/SubstitutionTest.php +++ b/app/code/Magento/Payment/Test/Unit/Block/Info/SubstitutionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Block/InfoTest.php b/app/code/Magento/Payment/Test/Unit/Block/InfoTest.php index 10e543943bb..3259d955722 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/InfoTest.php +++ b/app/code/Magento/Payment/Test/Unit/Block/InfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Block; diff --git a/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTest.php b/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTest.php index 2366508c2d3..5fdc5acaffd 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTest.php +++ b/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Block\Transparent; diff --git a/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTesting.php b/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTesting.php index 18540eb83e9..bb9dff38753 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTesting.php +++ b/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTesting.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Block\Transparent; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Command/CommandPoolTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Command/CommandPoolTest.php index 6cecb6f7ac4..216f271eab2 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Command/CommandPoolTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Command/CommandPoolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Command; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Command/GatewayCommandTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Command/GatewayCommandTest.php index ae939c881e4..0505dec761c 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Command/GatewayCommandTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Command/GatewayCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Command; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigTest.php index d11b4ad5626..bf8d99eaff7 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Config; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigValueHandlerTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigValueHandlerTest.php index 9b7f2d8d226..9e6553b2760 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigValueHandlerTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigValueHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Config; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Config/ValueHandlerPoolTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Config/ValueHandlerPoolTest.php index ae49880c53d..0382f09f2c3 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Config/ValueHandlerPoolTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Config/ValueHandlerPoolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Config; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/AddressAdapterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/AddressAdapterTest.php index 7dd939fed7b..6834fe2a799 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/AddressAdapterTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/AddressAdapterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Data\Order; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/OrderAdapterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/OrderAdapterTest.php index f128de111c2..b62e67ca384 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/OrderAdapterTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/OrderAdapterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Data\Order; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectFactoryTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectFactoryTest.php index cf9e9f16500..bb7e95702b1 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectFactoryTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Data; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectTest.php index d28ad246367..8a99293d9b7 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Data; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/AddressAdapterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/AddressAdapterTest.php index 4583732a829..27cbb3ebb7e 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/AddressAdapterTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/AddressAdapterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Data\Quote; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/QuoteAdapterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/QuoteAdapterTest.php index 4864e3c25ad..6b7376c0159 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/QuoteAdapterTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/QuoteAdapterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Data\Quote; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/SoapTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/SoapTest.php index 2a3ae9c3063..1f11ec6a02e 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/SoapTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/SoapTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Http\Client; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/ZendTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/ZendTest.php index 17c2e9401c3..d0a7a72e26d 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/ZendTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/ZendTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Http\Client; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/HtmlFormConverterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/HtmlFormConverterTest.php index a554f9eb986..ea2971e0293 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/HtmlFormConverterTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/HtmlFormConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Http\Converter; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/Soap/ObjectToArrayConverterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/Soap/ObjectToArrayConverterTest.php index 39d37f87a7b..e20464541bb 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/Soap/ObjectToArrayConverterTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/Soap/ObjectToArrayConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Http\Converter\Soap; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Http/TransferTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Http/TransferTest.php index 8070e08dbca..64819e841c4 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Http/TransferTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Http/TransferTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Http; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Request/BuilderCompositeTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Request/BuilderCompositeTest.php index 87049bddd04..e4741fbed7d 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Request/BuilderCompositeTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Request/BuilderCompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Request; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Response/HandlerChainTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Response/HandlerChainTest.php index b52e96af8bb..c1283ccfb58 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Response/HandlerChainTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Response/HandlerChainTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Response; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/CountryValidatorTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/CountryValidatorTest.php index d36fda3fd6b..f6617bb4274 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/CountryValidatorTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/CountryValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Validator; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ResultTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ResultTest.php index 49e7ace9a0a..480fe5a06e9 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ResultTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ResultTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Validator; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorCompositeTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorCompositeTest.php index baf11d67773..4a61be6a6ab 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorCompositeTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorCompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Validator; diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorPoolTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorPoolTest.php index 8d408abf147..03dbe17c57d 100644 --- a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorPoolTest.php +++ b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorPoolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Gateway\Validator; diff --git a/app/code/Magento/Payment/Test/Unit/Helper/DataTest.php b/app/code/Magento/Payment/Test/Unit/Helper/DataTest.php index 81329a9bb98..475417e7689 100644 --- a/app/code/Magento/Payment/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Payment/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/FactoryTest.php b/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/FactoryTest.php index c0b49635fea..2a3eced6f2e 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/FactoryTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Cart\SalesModel; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/OrderTest.php b/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/OrderTest.php index b3096c35258..c338003bf87 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/OrderTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/OrderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Cart\SalesModel; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/QuoteTest.php b/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/QuoteTest.php index aded897dcd2..d9dec8b53cc 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/QuoteTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/QuoteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Cart\SalesModel; diff --git a/app/code/Magento/Payment/Test/Unit/Model/CartTest.php b/app/code/Magento/Payment/Test/Unit/Model/CartTest.php index 9a4041183f3..6342ef0cc37 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/CartTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/CartTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model; diff --git a/app/code/Magento/Payment/Test/Unit/Model/CcConfigProviderTest.php b/app/code/Magento/Payment/Test/Unit/Model/CcConfigProviderTest.php index 98976285143..85a3ce1d423 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/CcConfigProviderTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/CcConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model; diff --git a/app/code/Magento/Payment/Test/Unit/Model/CcConfigTest.php b/app/code/Magento/Payment/Test/Unit/Model/CcConfigTest.php index 468d71f0ba9..81faea0bc6c 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/CcConfigTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/CcConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model; diff --git a/app/code/Magento/Payment/Test/Unit/Model/CcGenericConfigProviderTest.php b/app/code/Magento/Payment/Test/Unit/Model/CcGenericConfigProviderTest.php index 60827173f72..8e3ba8520ef 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/CcGenericConfigProviderTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/CcGenericConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseCheckoutTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseCheckoutTest.php index f397445418e..8522e60aeb3 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseCheckoutTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseCheckoutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountry/CountryProviderTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountry/CountryProviderTest.php index 02cfd0387c3..339b63e8688 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountry/CountryProviderTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountry/CountryProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Checks\CanUseForCountry; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountryTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountryTest.php index 0842bc6a6f8..9b2927dd3c9 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountryTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCurrencyTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCurrencyTest.php index 7b8d2587520..afe44daae40 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCurrencyTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCurrencyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseInternalTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseInternalTest.php index 5d30493e485..3720550e87c 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseInternalTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseInternalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CompositeTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CompositeTest.php index 8ce5abe8c18..a26ef064a69 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Checks/CompositeTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Checks/CompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/SpecificationFactoryTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/SpecificationFactoryTest.php index 63aa63d96ed..d68db4bc837 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Checks/SpecificationFactoryTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Checks/SpecificationFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/TotalMinMaxTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/TotalMinMaxTest.php index 0adf1cb3864..a808e755c0e 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Checks/TotalMinMaxTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Checks/TotalMinMaxTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/ZeroTotalTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/ZeroTotalTest.php index af6d7e78c25..729e99003e8 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Checks/ZeroTotalTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Checks/ZeroTotalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/ConverterTest.php b/app/code/Magento/Payment/Test/Unit/Model/Config/ConverterTest.php index 23a58d9b834..0bd0c943298 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Config/ConverterTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Config/ConverterTest.php @@ -2,7 +2,7 @@ /** * \Magento\Payment\Model\Config\Converter * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Config; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/SchemaLocatorTest.php b/app/code/Magento/Payment/Test/Unit/Model/Config/SchemaLocatorTest.php index 9a744a94a2a..a1a05db8291 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Config; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllmethodsTest.php b/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllmethodsTest.php index 7d0224a46be..15c911e0088 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllmethodsTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllmethodsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllspecificcountriesTest.php b/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllspecificcountriesTest.php index cb77eedb18d..0fb34d8c04d 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllspecificcountriesTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllspecificcountriesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/Source/CctypeTest.php b/app/code/Magento/Payment/Test/Unit/Model/Config/Source/CctypeTest.php index 58a9826c1ee..556c9205a6c 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Config/Source/CctypeTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Config/Source/CctypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/_files/payment.xml b/app/code/Magento/Payment/Test/Unit/Model/Config/_files/payment.xml index e14c4679920..3c999e58866 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Config/_files/payment.xml +++ b/app/code/Magento/Payment/Test/Unit/Model/Config/_files/payment.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Payment/Test/Unit/Model/ConfigTest.php index dd3cd3e3b52..3155e67f839 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/ConfigTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/InfoTest.php b/app/code/Magento/Payment/Test/Unit/Model/InfoTest.php index 84412a32b92..a96e0ca1fe3 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/InfoTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/InfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethod/Stub.php b/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethod/Stub.php index ea965000b13..b8a881b83ac 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethod/Stub.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethod/Stub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Method\AbstractMethod; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethodTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethodTest.php index 511d2821828..400be00bb66 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethodTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethodTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Method; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/AdapterTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/AdapterTest.php index d8fefb7345e..b64d2825e54 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Method/AdapterTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Method/AdapterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Method; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/CcTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/CcTest.php index 1ae011323fb..b79db42a2e8 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Method/CcTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Method/CcTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Method; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/FactoryTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/FactoryTest.php index 712994f933f..30faa276977 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Method/FactoryTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Method/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Method; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/FreeTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/FreeTest.php index 2dc274aa089..2623b9ddc86 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Method/FreeTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Method/FreeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/LoggerTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/LoggerTest.php index 5d9720c7896..82aa30e15fa 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Method/LoggerTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Method/LoggerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/Specification/CompositeTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/Specification/CompositeTest.php index d7c89286225..f6335ef8a0e 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Method/Specification/CompositeTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Method/Specification/CompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Method\Specification; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/Specification/FactoryTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/Specification/FactoryTest.php index fbf0a799614..2a5695c5996 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Method/Specification/FactoryTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Method/Specification/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model\Method\Specification; diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/SubstitutionTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/SubstitutionTest.php index 0f60dce0d8e..561e415ac6b 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Method/SubstitutionTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Method/SubstitutionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/MethodListTest.php b/app/code/Magento/Payment/Test/Unit/Model/MethodListTest.php index 872782407c1..e4228819f83 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/MethodListTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/MethodListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/PaymentMethodListTest.php b/app/code/Magento/Payment/Test/Unit/Model/PaymentMethodListTest.php index c41e5ac2a1a..7d09ddee9ee 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/PaymentMethodListTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/PaymentMethodListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Model; diff --git a/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/GroupListTest.php b/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/GroupListTest.php index 4049cdb3d21..a8cce8b7b59 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/GroupListTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/GroupListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/TypeListTest.php b/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/TypeListTest.php index c42c2e0c26c..ad73e9db43d 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/TypeListTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/TypeListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Source/CctypeTest.php b/app/code/Magento/Payment/Test/Unit/Model/Source/CctypeTest.php index 13e8775fa6b..2e4434b6f07 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Source/CctypeTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Source/CctypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Model/Source/InvoiceTest.php b/app/code/Magento/Payment/Test/Unit/Model/Source/InvoiceTest.php index 5b0a89f9ce0..dcd924651ea 100644 --- a/app/code/Magento/Payment/Test/Unit/Model/Source/InvoiceTest.php +++ b/app/code/Magento/Payment/Test/Unit/Model/Source/InvoiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Observer/SalesOrderBeforeSaveObserverTest.php b/app/code/Magento/Payment/Test/Unit/Observer/SalesOrderBeforeSaveObserverTest.php index be6cc1957a3..802d4d6feaf 100644 --- a/app/code/Magento/Payment/Test/Unit/Observer/SalesOrderBeforeSaveObserverTest.php +++ b/app/code/Magento/Payment/Test/Unit/Observer/SalesOrderBeforeSaveObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Observer/UpdateOrderStatusForPaymentMethodsObserverTest.php b/app/code/Magento/Payment/Test/Unit/Observer/UpdateOrderStatusForPaymentMethodsObserverTest.php index bf666dd76f5..eb0ed3b8ee7 100644 --- a/app/code/Magento/Payment/Test/Unit/Observer/UpdateOrderStatusForPaymentMethodsObserverTest.php +++ b/app/code/Magento/Payment/Test/Unit/Observer/UpdateOrderStatusForPaymentMethodsObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/Test/Unit/Plugin/PaymentConfigurationProcessTest.php b/app/code/Magento/Payment/Test/Unit/Plugin/PaymentConfigurationProcessTest.php index 3e49c8718e6..646c7bcb670 100644 --- a/app/code/Magento/Payment/Test/Unit/Plugin/PaymentConfigurationProcessTest.php +++ b/app/code/Magento/Payment/Test/Unit/Plugin/PaymentConfigurationProcessTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Test\Unit\Plugin; diff --git a/app/code/Magento/Payment/Ui/Component/Listing/Column/Method/Options.php b/app/code/Magento/Payment/Ui/Component/Listing/Column/Method/Options.php index 594ed57e181..4e43b52bcc5 100644 --- a/app/code/Magento/Payment/Ui/Component/Listing/Column/Method/Options.php +++ b/app/code/Magento/Payment/Ui/Component/Listing/Column/Method/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Ui\Component\Listing\Column\Method; diff --git a/app/code/Magento/Payment/etc/acl.xml b/app/code/Magento/Payment/etc/acl.xml index e4471adcf43..5eb0b06d065 100644 --- a/app/code/Magento/Payment/etc/acl.xml +++ b/app/code/Magento/Payment/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/etc/adminhtml/system.xml b/app/code/Magento/Payment/etc/adminhtml/system.xml index 9fe39e5c68f..eb18a086146 100644 --- a/app/code/Magento/Payment/etc/adminhtml/system.xml +++ b/app/code/Magento/Payment/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/etc/config.xml b/app/code/Magento/Payment/etc/config.xml index 63c1bab6238..56d72c45434 100644 --- a/app/code/Magento/Payment/etc/config.xml +++ b/app/code/Magento/Payment/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/etc/di.xml b/app/code/Magento/Payment/etc/di.xml index c12c2d2cfd5..549b49a984f 100644 --- a/app/code/Magento/Payment/etc/di.xml +++ b/app/code/Magento/Payment/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/etc/events.xml b/app/code/Magento/Payment/etc/events.xml index 74fd26da59b..ba0800c597d 100644 --- a/app/code/Magento/Payment/etc/events.xml +++ b/app/code/Magento/Payment/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/etc/frontend/di.xml b/app/code/Magento/Payment/etc/frontend/di.xml index 471a7ce9e2d..e3d9c3593c6 100644 --- a/app/code/Magento/Payment/etc/frontend/di.xml +++ b/app/code/Magento/Payment/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -22,4 +22,4 @@ <type name="Magento\Checkout\Block\Checkout\LayoutProcessor"> <plugin name="ProcessPaymentConfiguration" type="Magento\Payment\Plugin\PaymentConfigurationProcess"/> </type> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Payment/etc/module.xml b/app/code/Magento/Payment/etc/module.xml index 1c22c1f2fc9..36ed9d6ca31 100644 --- a/app/code/Magento/Payment/etc/module.xml +++ b/app/code/Magento/Payment/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/etc/payment.xml b/app/code/Magento/Payment/etc/payment.xml index 94f8260ad35..015fe4d5c78 100644 --- a/app/code/Magento/Payment/etc/payment.xml +++ b/app/code/Magento/Payment/etc/payment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/etc/payment.xsd b/app/code/Magento/Payment/etc/payment.xsd index feda3aac720..d9e326d007f 100644 --- a/app/code/Magento/Payment/etc/payment.xsd +++ b/app/code/Magento/Payment/etc/payment.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/etc/payment_file.xsd b/app/code/Magento/Payment/etc/payment_file.xsd index f3a8af65589..dd0e288f22b 100644 --- a/app/code/Magento/Payment/etc/payment_file.xsd +++ b/app/code/Magento/Payment/etc/payment_file.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/registration.php b/app/code/Magento/Payment/registration.php index 183664289f5..65b3c6ff61a 100644 --- a/app/code/Magento/Payment/registration.php +++ b/app/code/Magento/Payment/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/adminhtml/templates/form/cc.phtml b/app/code/Magento/Payment/view/adminhtml/templates/form/cc.phtml index bddf821c3b3..22bb39f8e6d 100644 --- a/app/code/Magento/Payment/view/adminhtml/templates/form/cc.phtml +++ b/app/code/Magento/Payment/view/adminhtml/templates/form/cc.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/adminhtml/templates/info/default.phtml b/app/code/Magento/Payment/view/adminhtml/templates/info/default.phtml index 8c97727e58f..8a40085986d 100644 --- a/app/code/Magento/Payment/view/adminhtml/templates/info/default.phtml +++ b/app/code/Magento/Payment/view/adminhtml/templates/info/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/adminhtml/templates/info/instructions.phtml b/app/code/Magento/Payment/view/adminhtml/templates/info/instructions.phtml index e9ecaa20d10..f8d7a9552d9 100644 --- a/app/code/Magento/Payment/view/adminhtml/templates/info/instructions.phtml +++ b/app/code/Magento/Payment/view/adminhtml/templates/info/instructions.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/adminhtml/templates/info/pdf/default.phtml b/app/code/Magento/Payment/view/adminhtml/templates/info/pdf/default.phtml index 40f13c6ff9f..61ee18e917a 100644 --- a/app/code/Magento/Payment/view/adminhtml/templates/info/pdf/default.phtml +++ b/app/code/Magento/Payment/view/adminhtml/templates/info/pdf/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/adminhtml/templates/info/substitution.phtml b/app/code/Magento/Payment/view/adminhtml/templates/info/substitution.phtml index 2c225031e21..feb3fd622c7 100644 --- a/app/code/Magento/Payment/view/adminhtml/templates/info/substitution.phtml +++ b/app/code/Magento/Payment/view/adminhtml/templates/info/substitution.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/adminhtml/templates/transparent/form.phtml b/app/code/Magento/Payment/view/adminhtml/templates/transparent/form.phtml index 201d19faf83..f00f4c9c1ab 100644 --- a/app/code/Magento/Payment/view/adminhtml/templates/transparent/form.phtml +++ b/app/code/Magento/Payment/view/adminhtml/templates/transparent/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/adminhtml/templates/transparent/iframe.phtml b/app/code/Magento/Payment/view/adminhtml/templates/transparent/iframe.phtml index fddff017dd1..f0ba38bf3aa 100644 --- a/app/code/Magento/Payment/view/adminhtml/templates/transparent/iframe.phtml +++ b/app/code/Magento/Payment/view/adminhtml/templates/transparent/iframe.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/adminhtml/templates/transparent/info.phtml b/app/code/Magento/Payment/view/adminhtml/templates/transparent/info.phtml index 1f23cbe8ce6..ba57b5e1507 100644 --- a/app/code/Magento/Payment/view/adminhtml/templates/transparent/info.phtml +++ b/app/code/Magento/Payment/view/adminhtml/templates/transparent/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/adminhtml/web/transparent.js b/app/code/Magento/Payment/view/adminhtml/web/transparent.js index b94e9bd4b26..6721e83a2e5 100644 --- a/app/code/Magento/Payment/view/adminhtml/web/transparent.js +++ b/app/code/Magento/Payment/view/adminhtml/web/transparent.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-data.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-data.js index 64a00a2b3d6..c6a6c2ba80d 100644 --- a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-data.js +++ b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-data.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator.js index 60d278c45b7..70b01106258 100644 --- a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator.js +++ b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/credit-card-type.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/credit-card-type.js index b02c3244855..e7abf1869e6 100644 --- a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/credit-card-type.js +++ b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/credit-card-type.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/luhn10-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/luhn10-validator.js index 54da68c65c0..339a2fc3185 100644 --- a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/luhn10-validator.js +++ b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/luhn10-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/cvv-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/cvv-validator.js index 5688f50aa86..4df70362871 100644 --- a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/cvv-validator.js +++ b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/cvv-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator.js index 6661a595b8b..9b0ce86b902 100644 --- a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator.js +++ b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-month-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-month-validator.js index 03b4ebcdec6..a2757ead1f2 100644 --- a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-month-validator.js +++ b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-month-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-year-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-year-validator.js index 38494ccbe9c..5d9e9d57efc 100644 --- a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-year-validator.js +++ b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-year-validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/parse-date.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/parse-date.js index 057eb1491f2..c3a709197b0 100644 --- a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/parse-date.js +++ b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/parse-date.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/validator.js index 4a733dd155a..61bb7b85eba 100644 --- a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/validator.js +++ b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/validator.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ @@ -93,4 +93,4 @@ rule.unshift(i); $.validator.addMethod.apply($.validator, rule); }); -})); \ No newline at end of file +})); diff --git a/app/code/Magento/Payment/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Payment/view/frontend/layout/checkout_index_index.xml index 61be3533ced..e8fb49f15aa 100644 --- a/app/code/Magento/Payment/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/Payment/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -47,4 +47,4 @@ </arguments> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Payment/view/frontend/layout/checkout_onepage_review.xml b/app/code/Magento/Payment/view/frontend/layout/checkout_onepage_review.xml index fc2b0aeba48..48008b85f9e 100644 --- a/app/code/Magento/Payment/view/frontend/layout/checkout_onepage_review.xml +++ b/app/code/Magento/Payment/view/frontend/layout/checkout_onepage_review.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/view/frontend/requirejs-config.js b/app/code/Magento/Payment/view/frontend/requirejs-config.js index 640663865da..b855c3cfe59 100644 --- a/app/code/Magento/Payment/view/frontend/requirejs-config.js +++ b/app/code/Magento/Payment/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { creditCardType: 'Magento_Payment/cc-type' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Payment/view/frontend/templates/form/cc.phtml b/app/code/Magento/Payment/view/frontend/templates/form/cc.phtml index 0f2782db469..00076da92e3 100644 --- a/app/code/Magento/Payment/view/frontend/templates/form/cc.phtml +++ b/app/code/Magento/Payment/view/frontend/templates/form/cc.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/frontend/templates/info/default.phtml b/app/code/Magento/Payment/view/frontend/templates/info/default.phtml index c2e778871e8..ca17a99a0aa 100644 --- a/app/code/Magento/Payment/view/frontend/templates/info/default.phtml +++ b/app/code/Magento/Payment/view/frontend/templates/info/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/frontend/templates/info/instructions.phtml b/app/code/Magento/Payment/view/frontend/templates/info/instructions.phtml index f69ab46f1ee..962e1c57841 100644 --- a/app/code/Magento/Payment/view/frontend/templates/info/instructions.phtml +++ b/app/code/Magento/Payment/view/frontend/templates/info/instructions.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/frontend/templates/transparent/form.phtml b/app/code/Magento/Payment/view/frontend/templates/transparent/form.phtml index 6df215f0a10..0c7ee9f320c 100644 --- a/app/code/Magento/Payment/view/frontend/templates/transparent/form.phtml +++ b/app/code/Magento/Payment/view/frontend/templates/transparent/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml b/app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml index 5a6badd6ee5..cb2e2cb0ffa 100644 --- a/app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml +++ b/app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/frontend/templates/transparent/info.phtml b/app/code/Magento/Payment/view/frontend/templates/transparent/info.phtml index 0aa75d94b41..d6b3bb8484f 100644 --- a/app/code/Magento/Payment/view/frontend/templates/transparent/info.phtml +++ b/app/code/Magento/Payment/view/frontend/templates/transparent/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Payment/view/frontend/web/cc-type.js b/app/code/Magento/Payment/view/frontend/web/cc-type.js index f21da91fcc2..a71cd1ebab0 100644 --- a/app/code/Magento/Payment/view/frontend/web/cc-type.js +++ b/app/code/Magento/Payment/view/frontend/web/cc-type.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint jquery:true*/ @@ -35,4 +35,4 @@ define([ }); return $.mage.creditCardType; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Payment/view/frontend/web/js/view/payment/cc-form.js b/app/code/Magento/Payment/view/frontend/web/js/view/payment/cc-form.js index d95b6ec8503..3e165271887 100644 --- a/app/code/Magento/Payment/view/frontend/web/js/view/payment/cc-form.js +++ b/app/code/Magento/Payment/view/frontend/web/js/view/payment/cc-form.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Payment/view/frontend/web/js/view/payment/iframe.js b/app/code/Magento/Payment/view/frontend/web/js/view/payment/iframe.js index 7d01c195791..cf3847f35eb 100644 --- a/app/code/Magento/Payment/view/frontend/web/js/view/payment/iframe.js +++ b/app/code/Magento/Payment/view/frontend/web/js/view/payment/iframe.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Payment/view/frontend/web/js/view/payment/method-renderer/free-method.js b/app/code/Magento/Payment/view/frontend/web/js/view/payment/method-renderer/free-method.js index 53f050c463d..cd8b5cf43b7 100644 --- a/app/code/Magento/Payment/view/frontend/web/js/view/payment/method-renderer/free-method.js +++ b/app/code/Magento/Payment/view/frontend/web/js/view/payment/method-renderer/free-method.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Payment/view/frontend/web/js/view/payment/payments.js b/app/code/Magento/Payment/view/frontend/web/js/view/payment/payments.js index 96f96de8072..13418018dbc 100644 --- a/app/code/Magento/Payment/view/frontend/web/js/view/payment/payments.js +++ b/app/code/Magento/Payment/view/frontend/web/js/view/payment/payments.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ @@ -23,4 +23,4 @@ define( /** Add view logic here if needed */ return Component.extend({}); } -); \ No newline at end of file +); diff --git a/app/code/Magento/Payment/view/frontend/web/template/payment/cc-form.html b/app/code/Magento/Payment/view/frontend/web/template/payment/cc-form.html index c1cc8f009bc..26b5f5906a1 100644 --- a/app/code/Magento/Payment/view/frontend/web/template/payment/cc-form.html +++ b/app/code/Magento/Payment/view/frontend/web/template/payment/cc-form.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/view/frontend/web/template/payment/free.html b/app/code/Magento/Payment/view/frontend/web/template/payment/free.html index cdb9aa3ba22..61da4b24e1a 100644 --- a/app/code/Magento/Payment/view/frontend/web/template/payment/free.html +++ b/app/code/Magento/Payment/view/frontend/web/template/payment/free.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/view/frontend/web/template/payment/iframe.html b/app/code/Magento/Payment/view/frontend/web/template/payment/iframe.html index ba6e115a770..4b5db0b0422 100644 --- a/app/code/Magento/Payment/view/frontend/web/template/payment/iframe.html +++ b/app/code/Magento/Payment/view/frontend/web/template/payment/iframe.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Payment/view/frontend/web/transparent.js b/app/code/Magento/Payment/view/frontend/web/transparent.js index b8e3d040546..edde84df6c0 100644 --- a/app/code/Magento/Payment/view/frontend/web/transparent.js +++ b/app/code/Magento/Payment/view/frontend/web/transparent.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement.php index 796d11e2c46..d79d8217490 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Billing; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/Grid.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/Grid.php index 1217ff50b23..27f653eb8f6 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/Grid.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View.php index 1afdc66a29a..f122d2ea5eb 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Form.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Form.php index 54353d73378..f641f2ee63e 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Form.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Billing\Agreement\View; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Info.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Info.php index 741b94f281c..ff164663589 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Info.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Billing\Agreement\View\Tab; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php index 0d59e9890db..fed637c9358 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tabs.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tabs.php index 7a940ae39f1..9431b3a15a9 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tabs.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Customer/Edit/Tab/Agreement.php b/app/code/Magento/Paypal/Block/Adminhtml/Customer/Edit/Tab/Agreement.php index 0357da9fe97..01a3958f46a 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Customer/Edit/Tab/Agreement.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Customer/Edit/Tab/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Customer\Edit\Tab; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Payflowpro/CcForm.php b/app/code/Magento/Paypal/Block/Adminhtml/Payflowpro/CcForm.php index 1fb0489de0f..4ae3316beee 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Payflowpro/CcForm.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Payflowpro/CcForm.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Payflowpro; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details.php b/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details.php index 933ff3362c4..3297a22809d 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Settlement; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details/Form.php b/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details/Form.php index 716ddd24c75..90693133869 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details/Form.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Settlement\Details; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Report.php b/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Report.php index fe6ace88675..414c828a2e7 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Report.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Report.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Settlement; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Store/SwitcherPlugin.php b/app/code/Magento/Paypal/Block/Adminhtml/Store/SwitcherPlugin.php index 23b7fa31fb5..1453e96b1b5 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/Store/SwitcherPlugin.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/Store/SwitcherPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Store; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ApiWizard.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ApiWizard.php index afb3faf8cdb..8495f38a101 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ApiWizard.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ApiWizard.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/BmlApiWizard.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/BmlApiWizard.php index 3a7764289f4..939f550e05b 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/BmlApiWizard.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/BmlApiWizard.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Country.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Country.php index c577cbff06e..cd9519840d8 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Country.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlApiSortOrder.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlApiSortOrder.php index 50f52746a80..aec98751f25 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlApiSortOrder.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlApiSortOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Field\Depends; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlSortOrder.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlSortOrder.php index e8435ed278c..fcd4ba87b46 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlSortOrder.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlSortOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Field\Depends; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/MerchantId.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/MerchantId.php index 85281052190..8c548fa010f 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/MerchantId.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/MerchantId.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Field\Depends; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable.php index fbae4b3694f..8f2f6bc0a4a 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Field\Enable; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Bml.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Bml.php index c30171edf26..f6c8373867a 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Bml.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Bml.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Field\Enable; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/BmlApi.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/BmlApi.php index 43706bc1e91..802c41468ed 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/BmlApi.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/BmlApi.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Field\Enable; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Express.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Express.php index 92543caf655..78271a7232d 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Express.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Express.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Field\Enable; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContext.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContext.php index 3dc68a1a3fd..062879173d1 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContext.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContext.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Field\Enable; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContextApi.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContextApi.php index 4c9f91bb2f2..2c87efccac6 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContextApi.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContextApi.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Field\Enable; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Payment.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Payment.php index f79cc246d96..8f05a10f7b5 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Payment.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Payment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Field\Enable; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Hidden.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Hidden.php index 96b12a9bad6..65a8eb549f7 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Hidden.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Hidden.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Expanded.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Expanded.php index feae02e5cad..f5364703e77 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Expanded.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Expanded.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Fieldset; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php index 4c900dbbd97..b991ec14fa7 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php index d1fb33e902f..928bef6f5d4 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Fieldset; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Payment.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Payment.php index 725ebb22824..3203dc55ce8 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Payment.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Payment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config\Fieldset; diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php index cf8172ad0e4..d906beaf13a 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php index c92d599bc4e..d1f6e0b6778 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ResolutionRules.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ResolutionRules.php index 71b057456c4..8a32fc56e49 100644 --- a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ResolutionRules.php +++ b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ResolutionRules.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\System\Config; diff --git a/app/code/Magento/Paypal/Block/Billing/Agreement/View.php b/app/code/Magento/Paypal/Block/Billing/Agreement/View.php index f230ca24979..e35718dfbfc 100644 --- a/app/code/Magento/Paypal/Block/Billing/Agreement/View.php +++ b/app/code/Magento/Paypal/Block/Billing/Agreement/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Block/Billing/Agreements.php b/app/code/Magento/Paypal/Block/Billing/Agreements.php index 802fb8f0a24..d4157353322 100644 --- a/app/code/Magento/Paypal/Block/Billing/Agreements.php +++ b/app/code/Magento/Paypal/Block/Billing/Agreements.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Billing; diff --git a/app/code/Magento/Paypal/Block/Bml/Banners.php b/app/code/Magento/Paypal/Block/Bml/Banners.php index 879cabc5d60..b4f07e7f237 100644 --- a/app/code/Magento/Paypal/Block/Bml/Banners.php +++ b/app/code/Magento/Paypal/Block/Bml/Banners.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Bml/Form.php b/app/code/Magento/Paypal/Block/Bml/Form.php index 5f675753653..c23ee28dc2d 100644 --- a/app/code/Magento/Paypal/Block/Bml/Form.php +++ b/app/code/Magento/Paypal/Block/Bml/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Bml/Shortcut.php b/app/code/Magento/Paypal/Block/Bml/Shortcut.php index 667e065d8e2..0c22d98bc4f 100644 --- a/app/code/Magento/Paypal/Block/Bml/Shortcut.php +++ b/app/code/Magento/Paypal/Block/Bml/Shortcut.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Cart/ValidationMessages.php b/app/code/Magento/Paypal/Block/Cart/ValidationMessages.php index 2bcea4c5f9d..69713999bf6 100644 --- a/app/code/Magento/Paypal/Block/Cart/ValidationMessages.php +++ b/app/code/Magento/Paypal/Block/Cart/ValidationMessages.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Cart; diff --git a/app/code/Magento/Paypal/Block/Checkout/Onepage/Success/BillingAgreement.php b/app/code/Magento/Paypal/Block/Checkout/Onepage/Success/BillingAgreement.php index 91633fc5094..8cba9be3e3d 100644 --- a/app/code/Magento/Paypal/Block/Checkout/Onepage/Success/BillingAgreement.php +++ b/app/code/Magento/Paypal/Block/Checkout/Onepage/Success/BillingAgreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Checkout\Onepage\Success; diff --git a/app/code/Magento/Paypal/Block/Express/Form.php b/app/code/Magento/Paypal/Block/Express/Form.php index 5893222cbb2..0aca319c8a0 100644 --- a/app/code/Magento/Paypal/Block/Express/Form.php +++ b/app/code/Magento/Paypal/Block/Express/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Express; diff --git a/app/code/Magento/Paypal/Block/Express/InContext/Component.php b/app/code/Magento/Paypal/Block/Express/InContext/Component.php index 91a2665a69e..0239c6d74a0 100644 --- a/app/code/Magento/Paypal/Block/Express/InContext/Component.php +++ b/app/code/Magento/Paypal/Block/Express/InContext/Component.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Express\InContext; diff --git a/app/code/Magento/Paypal/Block/Express/InContext/Minicart/Button.php b/app/code/Magento/Paypal/Block/Express/InContext/Minicart/Button.php index 6785b95dade..e9c27646668 100644 --- a/app/code/Magento/Paypal/Block/Express/InContext/Minicart/Button.php +++ b/app/code/Magento/Paypal/Block/Express/InContext/Minicart/Button.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Express\InContext\Minicart; diff --git a/app/code/Magento/Paypal/Block/Express/Review.php b/app/code/Magento/Paypal/Block/Express/Review.php index 87cba1cc4e5..c37207e7ad8 100644 --- a/app/code/Magento/Paypal/Block/Express/Review.php +++ b/app/code/Magento/Paypal/Block/Express/Review.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Express/Review/Billing.php b/app/code/Magento/Paypal/Block/Express/Review/Billing.php index 0a4bac7f172..1b212be509b 100644 --- a/app/code/Magento/Paypal/Block/Express/Review/Billing.php +++ b/app/code/Magento/Paypal/Block/Express/Review/Billing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Express/Review/Details.php b/app/code/Magento/Paypal/Block/Express/Review/Details.php index b92bb2ff759..b164971cda9 100644 --- a/app/code/Magento/Paypal/Block/Express/Review/Details.php +++ b/app/code/Magento/Paypal/Block/Express/Review/Details.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Express\Review; diff --git a/app/code/Magento/Paypal/Block/Express/Review/Shipping.php b/app/code/Magento/Paypal/Block/Express/Review/Shipping.php index 903d036a28d..9dfce32e098 100644 --- a/app/code/Magento/Paypal/Block/Express/Review/Shipping.php +++ b/app/code/Magento/Paypal/Block/Express/Review/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Express/Shortcut.php b/app/code/Magento/Paypal/Block/Express/Shortcut.php index 5561e62bb5f..4c793b0f91b 100644 --- a/app/code/Magento/Paypal/Block/Express/Shortcut.php +++ b/app/code/Magento/Paypal/Block/Express/Shortcut.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Express; diff --git a/app/code/Magento/Paypal/Block/Hosted/Pro/Form.php b/app/code/Magento/Paypal/Block/Hosted/Pro/Form.php index 5a36f7b8228..dbd93a2d52d 100644 --- a/app/code/Magento/Paypal/Block/Hosted/Pro/Form.php +++ b/app/code/Magento/Paypal/Block/Hosted/Pro/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Hosted\Pro; diff --git a/app/code/Magento/Paypal/Block/Hosted/Pro/Iframe.php b/app/code/Magento/Paypal/Block/Hosted/Pro/Iframe.php index 1c390c78ce0..abd36b36546 100644 --- a/app/code/Magento/Paypal/Block/Hosted/Pro/Iframe.php +++ b/app/code/Magento/Paypal/Block/Hosted/Pro/Iframe.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Hosted\Pro; diff --git a/app/code/Magento/Paypal/Block/Hosted/Pro/Info.php b/app/code/Magento/Paypal/Block/Hosted/Pro/Info.php index 2ed0add3fee..35a2f968a3b 100644 --- a/app/code/Magento/Paypal/Block/Hosted/Pro/Info.php +++ b/app/code/Magento/Paypal/Block/Hosted/Pro/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Iframe.php b/app/code/Magento/Paypal/Block/Iframe.php index 9963011669b..be6436d9a0b 100644 --- a/app/code/Magento/Paypal/Block/Iframe.php +++ b/app/code/Magento/Paypal/Block/Iframe.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block; diff --git a/app/code/Magento/Paypal/Block/Logo.php b/app/code/Magento/Paypal/Block/Logo.php index 41a7acb21f8..60793035726 100644 --- a/app/code/Magento/Paypal/Block/Logo.php +++ b/app/code/Magento/Paypal/Block/Logo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Payflow/Advanced/Form.php b/app/code/Magento/Paypal/Block/Payflow/Advanced/Form.php index 2533eff871a..7bb08bb50d9 100644 --- a/app/code/Magento/Paypal/Block/Payflow/Advanced/Form.php +++ b/app/code/Magento/Paypal/Block/Payflow/Advanced/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Payflow\Advanced; diff --git a/app/code/Magento/Paypal/Block/Payflow/Advanced/Iframe.php b/app/code/Magento/Paypal/Block/Payflow/Advanced/Iframe.php index 6032a3e4f61..4acbfbb361d 100644 --- a/app/code/Magento/Paypal/Block/Payflow/Advanced/Iframe.php +++ b/app/code/Magento/Paypal/Block/Payflow/Advanced/Iframe.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Payflow\Advanced; diff --git a/app/code/Magento/Paypal/Block/Payflow/Advanced/Info.php b/app/code/Magento/Paypal/Block/Payflow/Advanced/Info.php index c38c825671a..2d88d80f718 100644 --- a/app/code/Magento/Paypal/Block/Payflow/Advanced/Info.php +++ b/app/code/Magento/Paypal/Block/Payflow/Advanced/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Payflow/Bml/Form.php b/app/code/Magento/Paypal/Block/Payflow/Bml/Form.php index f89a151ffc8..85cf59e8b3b 100644 --- a/app/code/Magento/Paypal/Block/Payflow/Bml/Form.php +++ b/app/code/Magento/Paypal/Block/Payflow/Bml/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/Payflow/Customer/CardRenderer.php b/app/code/Magento/Paypal/Block/Payflow/Customer/CardRenderer.php index 8583169c9ae..8a47f7a1912 100644 --- a/app/code/Magento/Paypal/Block/Payflow/Customer/CardRenderer.php +++ b/app/code/Magento/Paypal/Block/Payflow/Customer/CardRenderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Payflow\Customer; diff --git a/app/code/Magento/Paypal/Block/Payflow/Info.php b/app/code/Magento/Paypal/Block/Payflow/Info.php index 053a767fd56..52a1661be44 100644 --- a/app/code/Magento/Paypal/Block/Payflow/Info.php +++ b/app/code/Magento/Paypal/Block/Payflow/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Payflow; diff --git a/app/code/Magento/Paypal/Block/Payflow/Link/Form.php b/app/code/Magento/Paypal/Block/Payflow/Link/Form.php index 43f99fb17a1..feae275eb08 100644 --- a/app/code/Magento/Paypal/Block/Payflow/Link/Form.php +++ b/app/code/Magento/Paypal/Block/Payflow/Link/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Payflow\Link; diff --git a/app/code/Magento/Paypal/Block/Payflow/Link/Iframe.php b/app/code/Magento/Paypal/Block/Payflow/Link/Iframe.php index 8929a040777..a9272448914 100644 --- a/app/code/Magento/Paypal/Block/Payflow/Link/Iframe.php +++ b/app/code/Magento/Paypal/Block/Payflow/Link/Iframe.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Payflow\Link; diff --git a/app/code/Magento/Paypal/Block/Payflow/Link/Info.php b/app/code/Magento/Paypal/Block/Payflow/Link/Info.php index 2f969a19a0d..5a2b37e6d67 100644 --- a/app/code/Magento/Paypal/Block/Payflow/Link/Info.php +++ b/app/code/Magento/Paypal/Block/Payflow/Link/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Block/PayflowExpress/Form.php b/app/code/Magento/Paypal/Block/PayflowExpress/Form.php index 4ba9ea8fbe3..c53658e1214 100644 --- a/app/code/Magento/Paypal/Block/PayflowExpress/Form.php +++ b/app/code/Magento/Paypal/Block/PayflowExpress/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\PayflowExpress; diff --git a/app/code/Magento/Paypal/Block/Payment/Form/Billing/Agreement.php b/app/code/Magento/Paypal/Block/Payment/Form/Billing/Agreement.php index 96b54d2187b..b66c4031f65 100644 --- a/app/code/Magento/Paypal/Block/Payment/Form/Billing/Agreement.php +++ b/app/code/Magento/Paypal/Block/Payment/Form/Billing/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Payment\Form\Billing; diff --git a/app/code/Magento/Paypal/Block/Payment/Info.php b/app/code/Magento/Paypal/Block/Payment/Info.php index 0212211172e..e77202e4c9c 100644 --- a/app/code/Magento/Paypal/Block/Payment/Info.php +++ b/app/code/Magento/Paypal/Block/Payment/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Payment; diff --git a/app/code/Magento/Paypal/Block/Payment/Info/Billing/Agreement.php b/app/code/Magento/Paypal/Block/Payment/Info/Billing/Agreement.php index eaa983baa59..ae27d5bedcb 100644 --- a/app/code/Magento/Paypal/Block/Payment/Info/Billing/Agreement.php +++ b/app/code/Magento/Paypal/Block/Payment/Info/Billing/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Payment\Info\Billing; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement.php index 6476b2ec2f5..d624b8bc107 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Billing; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Cancel.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Cancel.php index 965c9a20a00..202bf039d16 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Cancel.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Cancel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/CustomerGrid.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/CustomerGrid.php index 8f698a39d00..c719687de0f 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/CustomerGrid.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/CustomerGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Delete.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Delete.php index cb8ecd7be81..83ec748934b 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Delete.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Grid.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Grid.php index a5d12dd8f6b..ee807f6a29a 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Grid.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Index.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Index.php index af247ca54ba..31cf01173ab 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Index.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/OrdersGrid.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/OrdersGrid.php index 77860f365fe..987eab450e7 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/OrdersGrid.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/OrdersGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/View.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/View.php index 3a953a44aae..210e0aa4a2f 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/View.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports.php b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports.php index 8cac780e708..2a87bedc0c3 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Paypal; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Details.php b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Details.php index 1fb07e9c822..4428e43200f 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Details.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Details.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Paypal\Reports; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Fetch.php b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Fetch.php index 0515d6c7e61..0a29c225d42 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Fetch.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Fetch.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Grid.php b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Grid.php index 87d60dbeb15..c0859ffee20 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Grid.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Paypal\Reports; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Index.php b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Index.php index fa83be0167c..3bc957bcbba 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Index.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Paypal\Reports; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/RequestSecureToken.php b/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/RequestSecureToken.php index 210a6f732a2..8fd3f3908d4 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/RequestSecureToken.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/RequestSecureToken.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Transparent; diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/Response.php b/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/Response.php index 79936452ca3..2f0f894dd0a 100644 --- a/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/Response.php +++ b/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/Response.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Adminhtml\Transparent; diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement.php b/app/code/Magento/Paypal/Controller/Billing/Agreement.php index 62ae634b301..661d2c46e8b 100644 --- a/app/code/Magento/Paypal/Controller/Billing/Agreement.php +++ b/app/code/Magento/Paypal/Controller/Billing/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Billing; diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/Cancel.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/Cancel.php index 0af3ac4395e..2adf8850fc8 100644 --- a/app/code/Magento/Paypal/Controller/Billing/Agreement/Cancel.php +++ b/app/code/Magento/Paypal/Controller/Billing/Agreement/Cancel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/CancelWizard.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/CancelWizard.php index 7864e2e296d..ee532896bbb 100644 --- a/app/code/Magento/Paypal/Controller/Billing/Agreement/CancelWizard.php +++ b/app/code/Magento/Paypal/Controller/Billing/Agreement/CancelWizard.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/Index.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/Index.php index f0c1503a297..583ecdeb007 100644 --- a/app/code/Magento/Paypal/Controller/Billing/Agreement/Index.php +++ b/app/code/Magento/Paypal/Controller/Billing/Agreement/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/ReturnWizard.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/ReturnWizard.php index fdf84f25696..e9976c7a689 100644 --- a/app/code/Magento/Paypal/Controller/Billing/Agreement/ReturnWizard.php +++ b/app/code/Magento/Paypal/Controller/Billing/Agreement/ReturnWizard.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/StartWizard.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/StartWizard.php index d9eada9107c..3d2df5a8421 100644 --- a/app/code/Magento/Paypal/Controller/Billing/Agreement/StartWizard.php +++ b/app/code/Magento/Paypal/Controller/Billing/Agreement/StartWizard.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/View.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/View.php index 39592795848..a2c7bff5e79 100644 --- a/app/code/Magento/Paypal/Controller/Billing/Agreement/View.php +++ b/app/code/Magento/Paypal/Controller/Billing/Agreement/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Controller/Bml/Start.php b/app/code/Magento/Paypal/Controller/Bml/Start.php index d5ae81c581a..7e38ffd0aa6 100644 --- a/app/code/Magento/Paypal/Controller/Bml/Start.php +++ b/app/code/Magento/Paypal/Controller/Bml/Start.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress.php index 4584156de46..ddca98bb2f9 100644 --- a/app/code/Magento/Paypal/Controller/Express/AbstractExpress.php +++ b/app/code/Magento/Paypal/Controller/Express/AbstractExpress.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express; diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Cancel.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Cancel.php index d344b9f6e68..15ddfa08f22 100644 --- a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Cancel.php +++ b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Cancel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express\AbstractExpress; diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Edit.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Edit.php index 73bbcaa8620..bc5d7792711 100644 --- a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Edit.php +++ b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express\AbstractExpress; diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/PlaceOrder.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/PlaceOrder.php index 04e149cae27..c99f2df988c 100644 --- a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/PlaceOrder.php +++ b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/PlaceOrder.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express\AbstractExpress; diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ReturnAction.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ReturnAction.php index 7aaaac11393..15054234888 100644 --- a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ReturnAction.php +++ b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ReturnAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express\AbstractExpress; diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Review.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Review.php index cf4a4e1c12f..0efc6b3c5eb 100644 --- a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Review.php +++ b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Review.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express\AbstractExpress; diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/SaveShippingMethod.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/SaveShippingMethod.php index 83193379305..11daf659f56 100644 --- a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/SaveShippingMethod.php +++ b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/SaveShippingMethod.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express\AbstractExpress; diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ShippingOptionsCallback.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ShippingOptionsCallback.php index 5383a3e4871..3b4e617e9ff 100644 --- a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ShippingOptionsCallback.php +++ b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ShippingOptionsCallback.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express\AbstractExpress; diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Start.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Start.php index aef1f4aa879..28eb3d22b93 100644 --- a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Start.php +++ b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Start.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express\AbstractExpress; diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/UpdateShippingMethods.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/UpdateShippingMethods.php index 119fd2953b6..ca5eecee08d 100644 --- a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/UpdateShippingMethods.php +++ b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/UpdateShippingMethods.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express\AbstractExpress; diff --git a/app/code/Magento/Paypal/Controller/Express/Cancel.php b/app/code/Magento/Paypal/Controller/Express/Cancel.php index dbeaa8bb85a..9a53e1ab003 100644 --- a/app/code/Magento/Paypal/Controller/Express/Cancel.php +++ b/app/code/Magento/Paypal/Controller/Express/Cancel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express; diff --git a/app/code/Magento/Paypal/Controller/Express/Edit.php b/app/code/Magento/Paypal/Controller/Express/Edit.php index b3609893ff9..b34c8208b00 100644 --- a/app/code/Magento/Paypal/Controller/Express/Edit.php +++ b/app/code/Magento/Paypal/Controller/Express/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express; diff --git a/app/code/Magento/Paypal/Controller/Express/GetToken.php b/app/code/Magento/Paypal/Controller/Express/GetToken.php index 1cc33552b1a..25dd71be94f 100644 --- a/app/code/Magento/Paypal/Controller/Express/GetToken.php +++ b/app/code/Magento/Paypal/Controller/Express/GetToken.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express; diff --git a/app/code/Magento/Paypal/Controller/Express/PlaceOrder.php b/app/code/Magento/Paypal/Controller/Express/PlaceOrder.php index 18ddead81e0..0e2841c73b2 100644 --- a/app/code/Magento/Paypal/Controller/Express/PlaceOrder.php +++ b/app/code/Magento/Paypal/Controller/Express/PlaceOrder.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express; diff --git a/app/code/Magento/Paypal/Controller/Express/ReturnAction.php b/app/code/Magento/Paypal/Controller/Express/ReturnAction.php index 5fa352d6480..193ab346741 100644 --- a/app/code/Magento/Paypal/Controller/Express/ReturnAction.php +++ b/app/code/Magento/Paypal/Controller/Express/ReturnAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express; diff --git a/app/code/Magento/Paypal/Controller/Express/Review.php b/app/code/Magento/Paypal/Controller/Express/Review.php index ca1e08ae7c8..cce4098a375 100644 --- a/app/code/Magento/Paypal/Controller/Express/Review.php +++ b/app/code/Magento/Paypal/Controller/Express/Review.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express; diff --git a/app/code/Magento/Paypal/Controller/Express/SaveShippingMethod.php b/app/code/Magento/Paypal/Controller/Express/SaveShippingMethod.php index 5da5d0a5869..199f75ff793 100644 --- a/app/code/Magento/Paypal/Controller/Express/SaveShippingMethod.php +++ b/app/code/Magento/Paypal/Controller/Express/SaveShippingMethod.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express; diff --git a/app/code/Magento/Paypal/Controller/Express/ShippingOptionsCallback.php b/app/code/Magento/Paypal/Controller/Express/ShippingOptionsCallback.php index 3ab143a0cd6..25192db32aa 100644 --- a/app/code/Magento/Paypal/Controller/Express/ShippingOptionsCallback.php +++ b/app/code/Magento/Paypal/Controller/Express/ShippingOptionsCallback.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express; diff --git a/app/code/Magento/Paypal/Controller/Express/Start.php b/app/code/Magento/Paypal/Controller/Express/Start.php index 23664c43319..ed0badfd6b5 100644 --- a/app/code/Magento/Paypal/Controller/Express/Start.php +++ b/app/code/Magento/Paypal/Controller/Express/Start.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express; diff --git a/app/code/Magento/Paypal/Controller/Express/UpdateShippingMethods.php b/app/code/Magento/Paypal/Controller/Express/UpdateShippingMethods.php index 31c8296822f..c38a2f804d4 100644 --- a/app/code/Magento/Paypal/Controller/Express/UpdateShippingMethods.php +++ b/app/code/Magento/Paypal/Controller/Express/UpdateShippingMethods.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Express; diff --git a/app/code/Magento/Paypal/Controller/Hostedpro/Cancel.php b/app/code/Magento/Paypal/Controller/Hostedpro/Cancel.php index 16f67871e44..c28c86624f7 100644 --- a/app/code/Magento/Paypal/Controller/Hostedpro/Cancel.php +++ b/app/code/Magento/Paypal/Controller/Hostedpro/Cancel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Hostedpro; diff --git a/app/code/Magento/Paypal/Controller/Hostedpro/Redirect.php b/app/code/Magento/Paypal/Controller/Hostedpro/Redirect.php index aa98162957f..4e66e2c8e00 100644 --- a/app/code/Magento/Paypal/Controller/Hostedpro/Redirect.php +++ b/app/code/Magento/Paypal/Controller/Hostedpro/Redirect.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Hostedpro; diff --git a/app/code/Magento/Paypal/Controller/Hostedpro/ReturnAction.php b/app/code/Magento/Paypal/Controller/Hostedpro/ReturnAction.php index 2a7d6e94e11..51432943a85 100644 --- a/app/code/Magento/Paypal/Controller/Hostedpro/ReturnAction.php +++ b/app/code/Magento/Paypal/Controller/Hostedpro/ReturnAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Hostedpro; diff --git a/app/code/Magento/Paypal/Controller/Ipn/Index.php b/app/code/Magento/Paypal/Controller/Ipn/Index.php index 1f10d1386f7..9620fc0dda5 100644 --- a/app/code/Magento/Paypal/Controller/Ipn/Index.php +++ b/app/code/Magento/Paypal/Controller/Ipn/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Controller/Payflow.php b/app/code/Magento/Paypal/Controller/Payflow.php index 85e3041baea..0a4efe3cd1a 100644 --- a/app/code/Magento/Paypal/Controller/Payflow.php +++ b/app/code/Magento/Paypal/Controller/Payflow.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller; diff --git a/app/code/Magento/Paypal/Controller/Payflow/CancelPayment.php b/app/code/Magento/Paypal/Controller/Payflow/CancelPayment.php index 84e707c42ac..57b6def91f8 100644 --- a/app/code/Magento/Paypal/Controller/Payflow/CancelPayment.php +++ b/app/code/Magento/Paypal/Controller/Payflow/CancelPayment.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflow; diff --git a/app/code/Magento/Paypal/Controller/Payflow/Form.php b/app/code/Magento/Paypal/Controller/Payflow/Form.php index 911e4166103..f8ef0dd45a6 100644 --- a/app/code/Magento/Paypal/Controller/Payflow/Form.php +++ b/app/code/Magento/Paypal/Controller/Payflow/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflow; diff --git a/app/code/Magento/Paypal/Controller/Payflow/ReturnUrl.php b/app/code/Magento/Paypal/Controller/Payflow/ReturnUrl.php index 062f3675f9e..b6cfefbb191 100644 --- a/app/code/Magento/Paypal/Controller/Payflow/ReturnUrl.php +++ b/app/code/Magento/Paypal/Controller/Payflow/ReturnUrl.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflow; diff --git a/app/code/Magento/Paypal/Controller/Payflow/SilentPost.php b/app/code/Magento/Paypal/Controller/Payflow/SilentPost.php index 4252dbb6520..31b6a5403c2 100644 --- a/app/code/Magento/Paypal/Controller/Payflow/SilentPost.php +++ b/app/code/Magento/Paypal/Controller/Payflow/SilentPost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflow; diff --git a/app/code/Magento/Paypal/Controller/Payflowadvanced/CancelPayment.php b/app/code/Magento/Paypal/Controller/Payflowadvanced/CancelPayment.php index d0eadfdb75c..1f995097e77 100644 --- a/app/code/Magento/Paypal/Controller/Payflowadvanced/CancelPayment.php +++ b/app/code/Magento/Paypal/Controller/Payflowadvanced/CancelPayment.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowadvanced; diff --git a/app/code/Magento/Paypal/Controller/Payflowadvanced/Form.php b/app/code/Magento/Paypal/Controller/Payflowadvanced/Form.php index 05e6ce97a52..d6e2997b59d 100644 --- a/app/code/Magento/Paypal/Controller/Payflowadvanced/Form.php +++ b/app/code/Magento/Paypal/Controller/Payflowadvanced/Form.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowadvanced; diff --git a/app/code/Magento/Paypal/Controller/Payflowadvanced/ReturnUrl.php b/app/code/Magento/Paypal/Controller/Payflowadvanced/ReturnUrl.php index 66b61132899..2e7dfaecc4f 100644 --- a/app/code/Magento/Paypal/Controller/Payflowadvanced/ReturnUrl.php +++ b/app/code/Magento/Paypal/Controller/Payflowadvanced/ReturnUrl.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowadvanced; diff --git a/app/code/Magento/Paypal/Controller/Payflowadvanced/SilentPost.php b/app/code/Magento/Paypal/Controller/Payflowadvanced/SilentPost.php index 22fd3be4a49..4c328281b60 100644 --- a/app/code/Magento/Paypal/Controller/Payflowadvanced/SilentPost.php +++ b/app/code/Magento/Paypal/Controller/Payflowadvanced/SilentPost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowadvanced; diff --git a/app/code/Magento/Paypal/Controller/Payflowbml/Start.php b/app/code/Magento/Paypal/Controller/Payflowbml/Start.php index a0bbd5f646c..66fb09b959e 100644 --- a/app/code/Magento/Paypal/Controller/Payflowbml/Start.php +++ b/app/code/Magento/Paypal/Controller/Payflowbml/Start.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/Cancel.php b/app/code/Magento/Paypal/Controller/Payflowexpress/Cancel.php index 9a162808da1..41d7f2e3bd5 100644 --- a/app/code/Magento/Paypal/Controller/Payflowexpress/Cancel.php +++ b/app/code/Magento/Paypal/Controller/Payflowexpress/Cancel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowexpress; diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/Edit.php b/app/code/Magento/Paypal/Controller/Payflowexpress/Edit.php index b4f0b85b023..efba35c344d 100644 --- a/app/code/Magento/Paypal/Controller/Payflowexpress/Edit.php +++ b/app/code/Magento/Paypal/Controller/Payflowexpress/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowexpress; diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/PlaceOrder.php b/app/code/Magento/Paypal/Controller/Payflowexpress/PlaceOrder.php index dcb7529fb02..19033604f37 100644 --- a/app/code/Magento/Paypal/Controller/Payflowexpress/PlaceOrder.php +++ b/app/code/Magento/Paypal/Controller/Payflowexpress/PlaceOrder.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowexpress; diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/ReturnAction.php b/app/code/Magento/Paypal/Controller/Payflowexpress/ReturnAction.php index c6555e203be..3669b2e4437 100644 --- a/app/code/Magento/Paypal/Controller/Payflowexpress/ReturnAction.php +++ b/app/code/Magento/Paypal/Controller/Payflowexpress/ReturnAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowexpress; diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/Review.php b/app/code/Magento/Paypal/Controller/Payflowexpress/Review.php index 944760b02e9..e6d23b17fd4 100644 --- a/app/code/Magento/Paypal/Controller/Payflowexpress/Review.php +++ b/app/code/Magento/Paypal/Controller/Payflowexpress/Review.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowexpress; diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/SaveShippingMethod.php b/app/code/Magento/Paypal/Controller/Payflowexpress/SaveShippingMethod.php index 84231ad6c3e..f64e2cf49c8 100644 --- a/app/code/Magento/Paypal/Controller/Payflowexpress/SaveShippingMethod.php +++ b/app/code/Magento/Paypal/Controller/Payflowexpress/SaveShippingMethod.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowexpress; diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/ShippingOptionsCallback.php b/app/code/Magento/Paypal/Controller/Payflowexpress/ShippingOptionsCallback.php index daf57acc636..7c1f05a1ee2 100644 --- a/app/code/Magento/Paypal/Controller/Payflowexpress/ShippingOptionsCallback.php +++ b/app/code/Magento/Paypal/Controller/Payflowexpress/ShippingOptionsCallback.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowexpress; diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/Start.php b/app/code/Magento/Paypal/Controller/Payflowexpress/Start.php index 15816af52b9..d1304e7c747 100644 --- a/app/code/Magento/Paypal/Controller/Payflowexpress/Start.php +++ b/app/code/Magento/Paypal/Controller/Payflowexpress/Start.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowexpress; diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/UpdateShippingMethods.php b/app/code/Magento/Paypal/Controller/Payflowexpress/UpdateShippingMethods.php index c250b6385ed..4d455ffafc2 100644 --- a/app/code/Magento/Paypal/Controller/Payflowexpress/UpdateShippingMethods.php +++ b/app/code/Magento/Paypal/Controller/Payflowexpress/UpdateShippingMethods.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Payflowexpress; diff --git a/app/code/Magento/Paypal/Controller/Transparent/RequestSecureToken.php b/app/code/Magento/Paypal/Controller/Transparent/RequestSecureToken.php index 663e42eb98b..f2b428cb5ac 100644 --- a/app/code/Magento/Paypal/Controller/Transparent/RequestSecureToken.php +++ b/app/code/Magento/Paypal/Controller/Transparent/RequestSecureToken.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Transparent; diff --git a/app/code/Magento/Paypal/Controller/Transparent/Response.php b/app/code/Magento/Paypal/Controller/Transparent/Response.php index ae009383f87..d1198f9028a 100644 --- a/app/code/Magento/Paypal/Controller/Transparent/Response.php +++ b/app/code/Magento/Paypal/Controller/Transparent/Response.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Controller\Transparent; diff --git a/app/code/Magento/Paypal/Cron/FetchReports.php b/app/code/Magento/Paypal/Cron/FetchReports.php index c4d82a6d428..d3329d8fbae 100644 --- a/app/code/Magento/Paypal/Cron/FetchReports.php +++ b/app/code/Magento/Paypal/Cron/FetchReports.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Cron; diff --git a/app/code/Magento/Paypal/CustomerData/BillingAgreement.php b/app/code/Magento/Paypal/CustomerData/BillingAgreement.php index 98f05ea0dff..5d9e391797d 100644 --- a/app/code/Magento/Paypal/CustomerData/BillingAgreement.php +++ b/app/code/Magento/Paypal/CustomerData/BillingAgreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\CustomerData; diff --git a/app/code/Magento/Paypal/Gateway/Payflowpro/Command/AuthorizationCommand.php b/app/code/Magento/Paypal/Gateway/Payflowpro/Command/AuthorizationCommand.php index 33234806c39..17a843e14a1 100644 --- a/app/code/Magento/Paypal/Gateway/Payflowpro/Command/AuthorizationCommand.php +++ b/app/code/Magento/Paypal/Gateway/Payflowpro/Command/AuthorizationCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Gateway\Payflowpro\Command; diff --git a/app/code/Magento/Paypal/Gateway/Payflowpro/Command/SaleCommand.php b/app/code/Magento/Paypal/Gateway/Payflowpro/Command/SaleCommand.php index 2118257a7ba..51be72f9961 100644 --- a/app/code/Magento/Paypal/Gateway/Payflowpro/Command/SaleCommand.php +++ b/app/code/Magento/Paypal/Gateway/Payflowpro/Command/SaleCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Gateway\Payflowpro\Command; diff --git a/app/code/Magento/Paypal/Helper/Backend.php b/app/code/Magento/Paypal/Helper/Backend.php index 41c67843a02..177f06edc6e 100644 --- a/app/code/Magento/Paypal/Helper/Backend.php +++ b/app/code/Magento/Paypal/Helper/Backend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Helper; diff --git a/app/code/Magento/Paypal/Helper/Checkout.php b/app/code/Magento/Paypal/Helper/Checkout.php index 41ff1b82de7..5b2b2256c22 100644 --- a/app/code/Magento/Paypal/Helper/Checkout.php +++ b/app/code/Magento/Paypal/Helper/Checkout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Helper; diff --git a/app/code/Magento/Paypal/Helper/Data.php b/app/code/Magento/Paypal/Helper/Data.php index ea69d2ffcf0..d4524596166 100644 --- a/app/code/Magento/Paypal/Helper/Data.php +++ b/app/code/Magento/Paypal/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Helper; diff --git a/app/code/Magento/Paypal/Helper/Hss.php b/app/code/Magento/Paypal/Helper/Hss.php index 703489aee6b..879629ce8f6 100644 --- a/app/code/Magento/Paypal/Helper/Hss.php +++ b/app/code/Magento/Paypal/Helper/Hss.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Helper; diff --git a/app/code/Magento/Paypal/Helper/Shortcut/CheckoutValidator.php b/app/code/Magento/Paypal/Helper/Shortcut/CheckoutValidator.php index 1ce28ec69c4..af46e587dbb 100644 --- a/app/code/Magento/Paypal/Helper/Shortcut/CheckoutValidator.php +++ b/app/code/Magento/Paypal/Helper/Shortcut/CheckoutValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Helper/Shortcut/Factory.php b/app/code/Magento/Paypal/Helper/Shortcut/Factory.php index ef12c4d1182..16c9c3e835c 100644 --- a/app/code/Magento/Paypal/Helper/Shortcut/Factory.php +++ b/app/code/Magento/Paypal/Helper/Shortcut/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Helper/Shortcut/Validator.php b/app/code/Magento/Paypal/Helper/Shortcut/Validator.php index d4c33aacac7..bdc94c488fc 100644 --- a/app/code/Magento/Paypal/Helper/Shortcut/Validator.php +++ b/app/code/Magento/Paypal/Helper/Shortcut/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Helper/Shortcut/ValidatorInterface.php b/app/code/Magento/Paypal/Helper/Shortcut/ValidatorInterface.php index 2baf2f514bf..a203703a2a2 100644 --- a/app/code/Magento/Paypal/Helper/Shortcut/ValidatorInterface.php +++ b/app/code/Magento/Paypal/Helper/Shortcut/ValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/AbstractConfig.php b/app/code/Magento/Paypal/Model/AbstractConfig.php index d5faa0b5956..d4ab226f9e3 100644 --- a/app/code/Magento/Paypal/Model/AbstractConfig.php +++ b/app/code/Magento/Paypal/Model/AbstractConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/AbstractIpn.php b/app/code/Magento/Paypal/Model/AbstractIpn.php index 78d431fbd9c..b5966a8b11f 100644 --- a/app/code/Magento/Paypal/Model/AbstractIpn.php +++ b/app/code/Magento/Paypal/Model/AbstractIpn.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Api/AbstractApi.php b/app/code/Magento/Paypal/Model/Api/AbstractApi.php index 32bafe34a53..27ab15ec4b7 100644 --- a/app/code/Magento/Paypal/Model/Api/AbstractApi.php +++ b/app/code/Magento/Paypal/Model/Api/AbstractApi.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Api; diff --git a/app/code/Magento/Paypal/Model/Api/Nvp.php b/app/code/Magento/Paypal/Model/Api/Nvp.php index d1cc47a06ff..99b6ca494ea 100644 --- a/app/code/Magento/Paypal/Model/Api/Nvp.php +++ b/app/code/Magento/Paypal/Model/Api/Nvp.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Api/PayflowNvp.php b/app/code/Magento/Paypal/Model/Api/PayflowNvp.php index e367aa51073..96c05739dd4 100644 --- a/app/code/Magento/Paypal/Model/Api/PayflowNvp.php +++ b/app/code/Magento/Paypal/Model/Api/PayflowNvp.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Api; diff --git a/app/code/Magento/Paypal/Model/Api/ProcessableException.php b/app/code/Magento/Paypal/Model/Api/ProcessableException.php index 2a7ce0f1042..c75dda6b4c7 100644 --- a/app/code/Magento/Paypal/Model/Api/ProcessableException.php +++ b/app/code/Magento/Paypal/Model/Api/ProcessableException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Api/Type/Factory.php b/app/code/Magento/Paypal/Model/Api/Type/Factory.php index 4560602697e..ae53fdbb96a 100644 --- a/app/code/Magento/Paypal/Model/Api/Type/Factory.php +++ b/app/code/Magento/Paypal/Model/Api/Type/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Billing/AbstractAgreement.php b/app/code/Magento/Paypal/Model/Billing/AbstractAgreement.php index bf906bd8964..dde3a32b86d 100644 --- a/app/code/Magento/Paypal/Model/Billing/AbstractAgreement.php +++ b/app/code/Magento/Paypal/Model/Billing/AbstractAgreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Billing; diff --git a/app/code/Magento/Paypal/Model/Billing/Agreement.php b/app/code/Magento/Paypal/Model/Billing/Agreement.php index 5f81ede7443..3194ab421ff 100644 --- a/app/code/Magento/Paypal/Model/Billing/Agreement.php +++ b/app/code/Magento/Paypal/Model/Billing/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Billing; diff --git a/app/code/Magento/Paypal/Model/Billing/Agreement/MethodInterface.php b/app/code/Magento/Paypal/Model/Billing/Agreement/MethodInterface.php index e5fe810ac2b..ed58d4fd90d 100644 --- a/app/code/Magento/Paypal/Model/Billing/Agreement/MethodInterface.php +++ b/app/code/Magento/Paypal/Model/Billing/Agreement/MethodInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Model/Billing/Agreement/OrdersUpdater.php b/app/code/Magento/Paypal/Model/Billing/Agreement/OrdersUpdater.php index f5201edb235..5705d46b34a 100644 --- a/app/code/Magento/Paypal/Model/Billing/Agreement/OrdersUpdater.php +++ b/app/code/Magento/Paypal/Model/Billing/Agreement/OrdersUpdater.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Model/BillingAgreementConfigProvider.php b/app/code/Magento/Paypal/Model/BillingAgreementConfigProvider.php index e2fc8e1cb41..1f0de1a1c55 100644 --- a/app/code/Magento/Paypal/Model/BillingAgreementConfigProvider.php +++ b/app/code/Magento/Paypal/Model/BillingAgreementConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/Bml.php b/app/code/Magento/Paypal/Model/Bml.php index 4c255e1f754..7146bdee3e9 100644 --- a/app/code/Magento/Paypal/Model/Bml.php +++ b/app/code/Magento/Paypal/Model/Bml.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Cart.php b/app/code/Magento/Paypal/Model/Cart.php index 68c3832b8f5..6bc716c3afa 100644 --- a/app/code/Magento/Paypal/Model/Cart.php +++ b/app/code/Magento/Paypal/Model/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/Cert.php b/app/code/Magento/Paypal/Model/Cert.php index a8683c058a5..6e592511ba4 100644 --- a/app/code/Magento/Paypal/Model/Cert.php +++ b/app/code/Magento/Paypal/Model/Cert.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/Config.php b/app/code/Magento/Paypal/Model/Config.php index 100b5525ecb..0c76f0933e0 100644 --- a/app/code/Magento/Paypal/Model/Config.php +++ b/app/code/Magento/Paypal/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Config/Factory.php b/app/code/Magento/Paypal/Model/Config/Factory.php index e30b3d58f2a..47cdccc94cc 100644 --- a/app/code/Magento/Paypal/Model/Config/Factory.php +++ b/app/code/Magento/Paypal/Model/Config/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Config; diff --git a/app/code/Magento/Paypal/Model/Config/Rules/Converter.php b/app/code/Magento/Paypal/Model/Config/Rules/Converter.php index d65078212d8..ac8cb075bce 100644 --- a/app/code/Magento/Paypal/Model/Config/Rules/Converter.php +++ b/app/code/Magento/Paypal/Model/Config/Rules/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Config\Rules; diff --git a/app/code/Magento/Paypal/Model/Config/Rules/FileResolver.php b/app/code/Magento/Paypal/Model/Config/Rules/FileResolver.php index 798c4ba43b9..032f65ae113 100644 --- a/app/code/Magento/Paypal/Model/Config/Rules/FileResolver.php +++ b/app/code/Magento/Paypal/Model/Config/Rules/FileResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Config\Rules; diff --git a/app/code/Magento/Paypal/Model/Config/Rules/Reader.php b/app/code/Magento/Paypal/Model/Config/Rules/Reader.php index bafb6177c63..652a50c6663 100644 --- a/app/code/Magento/Paypal/Model/Config/Rules/Reader.php +++ b/app/code/Magento/Paypal/Model/Config/Rules/Reader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Config\Rules; diff --git a/app/code/Magento/Paypal/Model/Config/Rules/SchemaLocator.php b/app/code/Magento/Paypal/Model/Config/Rules/SchemaLocator.php index 305416801e1..9cb2b0d409e 100644 --- a/app/code/Magento/Paypal/Model/Config/Rules/SchemaLocator.php +++ b/app/code/Magento/Paypal/Model/Config/Rules/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Config\Rules; diff --git a/app/code/Magento/Paypal/Model/Config/Structure/Element/FieldPlugin.php b/app/code/Magento/Paypal/Model/Config/Structure/Element/FieldPlugin.php index a6288b8fc68..a86d4c8ad04 100644 --- a/app/code/Magento/Paypal/Model/Config/Structure/Element/FieldPlugin.php +++ b/app/code/Magento/Paypal/Model/Config/Structure/Element/FieldPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Config\Structure\Element; diff --git a/app/code/Magento/Paypal/Model/Config/StructurePlugin.php b/app/code/Magento/Paypal/Model/Config/StructurePlugin.php index f45a7948906..b026aa09692 100644 --- a/app/code/Magento/Paypal/Model/Config/StructurePlugin.php +++ b/app/code/Magento/Paypal/Model/Config/StructurePlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Config; diff --git a/app/code/Magento/Paypal/Model/Direct.php b/app/code/Magento/Paypal/Model/Direct.php index 58a1b75f19c..7c803f90618 100644 --- a/app/code/Magento/Paypal/Model/Direct.php +++ b/app/code/Magento/Paypal/Model/Direct.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/Express.php b/app/code/Magento/Paypal/Model/Express.php index db1ecdf6b33..ef39c44174a 100644 --- a/app/code/Magento/Paypal/Model/Express.php +++ b/app/code/Magento/Paypal/Model/Express.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/Express/Checkout.php b/app/code/Magento/Paypal/Model/Express/Checkout.php index 893eda8cc60..857fdbe50f5 100644 --- a/app/code/Magento/Paypal/Model/Express/Checkout.php +++ b/app/code/Magento/Paypal/Model/Express/Checkout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Express; diff --git a/app/code/Magento/Paypal/Model/Express/Checkout/Factory.php b/app/code/Magento/Paypal/Model/Express/Checkout/Factory.php index 2ae601c03f9..6bb280ea60b 100644 --- a/app/code/Magento/Paypal/Model/Express/Checkout/Factory.php +++ b/app/code/Magento/Paypal/Model/Express/Checkout/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Express\Checkout; diff --git a/app/code/Magento/Paypal/Model/ExpressConfigProvider.php b/app/code/Magento/Paypal/Model/ExpressConfigProvider.php index 194731f6397..75dd4ad0080 100644 --- a/app/code/Magento/Paypal/Model/ExpressConfigProvider.php +++ b/app/code/Magento/Paypal/Model/ExpressConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/Hostedpro.php b/app/code/Magento/Paypal/Model/Hostedpro.php index 3fab0777b25..cb55ee8d45d 100644 --- a/app/code/Magento/Paypal/Model/Hostedpro.php +++ b/app/code/Magento/Paypal/Model/Hostedpro.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/Hostedpro/Request.php b/app/code/Magento/Paypal/Model/Hostedpro/Request.php index 9cfec350936..f470d8aee96 100644 --- a/app/code/Magento/Paypal/Model/Hostedpro/Request.php +++ b/app/code/Magento/Paypal/Model/Hostedpro/Request.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Hostedpro; diff --git a/app/code/Magento/Paypal/Model/IframeConfigProvider.php b/app/code/Magento/Paypal/Model/IframeConfigProvider.php index 8f4aa8805ce..00a517781ed 100644 --- a/app/code/Magento/Paypal/Model/IframeConfigProvider.php +++ b/app/code/Magento/Paypal/Model/IframeConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/Info.php b/app/code/Magento/Paypal/Model/Info.php index 1761749d08f..39201805cb9 100644 --- a/app/code/Magento/Paypal/Model/Info.php +++ b/app/code/Magento/Paypal/Model/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Ipn.php b/app/code/Magento/Paypal/Model/Ipn.php index f2397e9dc21..8643e01a180 100644 --- a/app/code/Magento/Paypal/Model/Ipn.php +++ b/app/code/Magento/Paypal/Model/Ipn.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/IpnFactory.php b/app/code/Magento/Paypal/Model/IpnFactory.php index d575f73c3f7..1eb3c8465aa 100644 --- a/app/code/Magento/Paypal/Model/IpnFactory.php +++ b/app/code/Magento/Paypal/Model/IpnFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/IpnInterface.php b/app/code/Magento/Paypal/Model/IpnInterface.php index 0b6cf270975..9790ad9a550 100644 --- a/app/code/Magento/Paypal/Model/IpnInterface.php +++ b/app/code/Magento/Paypal/Model/IpnInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/Method/Agreement.php b/app/code/Magento/Paypal/Model/Method/Agreement.php index 6d3b43e380e..c4682879561 100644 --- a/app/code/Magento/Paypal/Model/Method/Agreement.php +++ b/app/code/Magento/Paypal/Model/Method/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Method; diff --git a/app/code/Magento/Paypal/Model/Method/Checks/SpecificationPlugin.php b/app/code/Magento/Paypal/Model/Method/Checks/SpecificationPlugin.php index f2b650b95e9..a2dee8c3d02 100644 --- a/app/code/Magento/Paypal/Model/Method/Checks/SpecificationPlugin.php +++ b/app/code/Magento/Paypal/Model/Method/Checks/SpecificationPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Method\Checks; diff --git a/app/code/Magento/Paypal/Model/Payflow/Bml.php b/app/code/Magento/Paypal/Model/Payflow/Bml.php index 9df11fd0d9f..662add19e66 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Bml.php +++ b/app/code/Magento/Paypal/Model/Payflow/Bml.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Payflow/Pro.php b/app/code/Magento/Paypal/Model/Payflow/Pro.php index e0b58eb679e..7baf700a201 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Pro.php +++ b/app/code/Magento/Paypal/Model/Payflow/Pro.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow; diff --git a/app/code/Magento/Paypal/Model/Payflow/Request.php b/app/code/Magento/Paypal/Model/Payflow/Request.php index 3ad48da1111..32de1b5fe8d 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Request.php +++ b/app/code/Magento/Paypal/Model/Payflow/Request.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Gateway.php b/app/code/Magento/Paypal/Model/Payflow/Service/Gateway.php index 68291bf92a1..e269e270a1f 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Gateway.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Gateway.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Request/SecureToken.php b/app/code/Magento/Paypal/Model/Payflow/Service/Request/SecureToken.php index d8fd16f8e05..c08770ee191 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Request/SecureToken.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Request/SecureToken.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service\Request; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/CreditCardValidationHandler.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/CreditCardValidationHandler.php index 1678ecfe32c..84cbf4830bf 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/CreditCardValidationHandler.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/CreditCardValidationHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service\Response\Handler; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/FraudHandler.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/FraudHandler.php index af312dd82cb..4ebd6138846 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/FraudHandler.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/FraudHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service\Response\Handler; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerComposite.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerComposite.php index a6a74c34bde..08a82151a1c 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerComposite.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerComposite.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service\Response\Handler; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerInterface.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerInterface.php index 07e67ae4570..2b45728b3f3 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerInterface.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service\Response\Handler; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Transaction.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Transaction.php index 2dc1dd4f00d..918df80d9b8 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Transaction.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Transaction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service\Response; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/AVSResponse.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/AVSResponse.php index c20c17cebbc..689bfcf3dfd 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/AVSResponse.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/AVSResponse.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service\Response\Validator; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/CVV2Match.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/CVV2Match.php index 91824b878a8..be32c101b4f 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/CVV2Match.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/CVV2Match.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service\Response\Validator; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/ResponseValidator.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/ResponseValidator.php index f86bf62f16b..1dbc8808c74 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/ResponseValidator.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/ResponseValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service\Response\Validator; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/SecureToken.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/SecureToken.php index b77afb27dfc..e1f89ea81af 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/SecureToken.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/SecureToken.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service\Response\Validator; diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/ValidatorInterface.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/ValidatorInterface.php index acada4552ad..4e20ee04034 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Service/Response/ValidatorInterface.php +++ b/app/code/Magento/Paypal/Model/Payflow/Service/Response/ValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Service\Response; diff --git a/app/code/Magento/Paypal/Model/Payflow/Transparent.php b/app/code/Magento/Paypal/Model/Payflow/Transparent.php index f65edd71daa..0d28f20d3ef 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Transparent.php +++ b/app/code/Magento/Paypal/Model/Payflow/Transparent.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow; diff --git a/app/code/Magento/Paypal/Model/Payflow/Ui/Adminhtml/TokenUiComponentProvider.php b/app/code/Magento/Paypal/Model/Payflow/Ui/Adminhtml/TokenUiComponentProvider.php index 7352b5b140d..916b04fe64d 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Ui/Adminhtml/TokenUiComponentProvider.php +++ b/app/code/Magento/Paypal/Model/Payflow/Ui/Adminhtml/TokenUiComponentProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Ui\Adminhtml; diff --git a/app/code/Magento/Paypal/Model/Payflow/Ui/TokenUiComponentProvider.php b/app/code/Magento/Paypal/Model/Payflow/Ui/TokenUiComponentProvider.php index 4048d712ea5..dbefab63591 100644 --- a/app/code/Magento/Paypal/Model/Payflow/Ui/TokenUiComponentProvider.php +++ b/app/code/Magento/Paypal/Model/Payflow/Ui/TokenUiComponentProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payflow\Ui; diff --git a/app/code/Magento/Paypal/Model/PayflowConfig.php b/app/code/Magento/Paypal/Model/PayflowConfig.php index f08c644a5e6..e7cc5b4f952 100644 --- a/app/code/Magento/Paypal/Model/PayflowConfig.php +++ b/app/code/Magento/Paypal/Model/PayflowConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/PayflowExpress.php b/app/code/Magento/Paypal/Model/PayflowExpress.php index db717b1d38d..e2b3b0ce2f1 100644 --- a/app/code/Magento/Paypal/Model/PayflowExpress.php +++ b/app/code/Magento/Paypal/Model/PayflowExpress.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/PayflowExpress/Checkout.php b/app/code/Magento/Paypal/Model/PayflowExpress/Checkout.php index d35eed6f3ab..b165228a8ad 100644 --- a/app/code/Magento/Paypal/Model/PayflowExpress/Checkout.php +++ b/app/code/Magento/Paypal/Model/PayflowExpress/Checkout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\PayflowExpress; diff --git a/app/code/Magento/Paypal/Model/Payflowadvanced.php b/app/code/Magento/Paypal/Model/Payflowadvanced.php index 4bb30c3c8c9..618a10fbbb2 100644 --- a/app/code/Magento/Paypal/Model/Payflowadvanced.php +++ b/app/code/Magento/Paypal/Model/Payflowadvanced.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Payflowlink.php b/app/code/Magento/Paypal/Model/Payflowlink.php index 6b0c2b2e387..8181630119d 100644 --- a/app/code/Magento/Paypal/Model/Payflowlink.php +++ b/app/code/Magento/Paypal/Model/Payflowlink.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Payflowpro.php b/app/code/Magento/Paypal/Model/Payflowpro.php index ec96cb19c59..1823a564c71 100644 --- a/app/code/Magento/Paypal/Model/Payflowpro.php +++ b/app/code/Magento/Paypal/Model/Payflowpro.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model; diff --git a/app/code/Magento/Paypal/Model/Payment/Method/Billing/AbstractAgreement.php b/app/code/Magento/Paypal/Model/Payment/Method/Billing/AbstractAgreement.php index 57e9d31d559..6879335ea4e 100644 --- a/app/code/Magento/Paypal/Model/Payment/Method/Billing/AbstractAgreement.php +++ b/app/code/Magento/Paypal/Model/Payment/Method/Billing/AbstractAgreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Payment\Method\Billing; diff --git a/app/code/Magento/Paypal/Model/Pro.php b/app/code/Magento/Paypal/Model/Pro.php index 9f0e9e02509..4105ec39a6b 100644 --- a/app/code/Magento/Paypal/Model/Pro.php +++ b/app/code/Magento/Paypal/Model/Pro.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Report/Settlement.php b/app/code/Magento/Paypal/Model/Report/Settlement.php index 42693a48ac6..c71fb3370a7 100644 --- a/app/code/Magento/Paypal/Model/Report/Settlement.php +++ b/app/code/Magento/Paypal/Model/Report/Settlement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/Report/Settlement/Row.php b/app/code/Magento/Paypal/Model/Report/Settlement/Row.php index b87fc325722..58ed3c13602 100644 --- a/app/code/Magento/Paypal/Model/Report/Settlement/Row.php +++ b/app/code/Magento/Paypal/Model/Report/Settlement/Row.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\Report\Settlement; diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement.php b/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement.php index 60c94615d36..d8cb93c6de4 100644 --- a/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement.php +++ b/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\ResourceModel\Billing; diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement/Collection.php b/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement/Collection.php index cc746f0054b..168ddf07dc1 100644 --- a/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement/Collection.php +++ b/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\ResourceModel\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Cert.php b/app/code/Magento/Paypal/Model/ResourceModel/Cert.php index 62cde0e1fc8..713d55d3efb 100644 --- a/app/code/Magento/Paypal/Model/ResourceModel/Cert.php +++ b/app/code/Magento/Paypal/Model/ResourceModel/Cert.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\ResourceModel; diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement.php b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement.php index 7dfbee3ff78..d2ffac41692 100644 --- a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement.php +++ b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Options/TransactionEvents.php b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Options/TransactionEvents.php index 36369afe528..facb65b625f 100644 --- a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Options/TransactionEvents.php +++ b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Options/TransactionEvents.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\ResourceModel\Report\Settlement\Options; diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row.php b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row.php index f3a9778f468..01aa507b9f6 100644 --- a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row.php +++ b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\ResourceModel\Report\Settlement; diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row/Collection.php b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row/Collection.php index 9b4ef0ca179..307a3961c8d 100644 --- a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row/Collection.php +++ b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/System/Config/Backend/Cert.php b/app/code/Magento/Paypal/Model/System/Config/Backend/Cert.php index 3acf991beb3..6a77656f7f6 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Backend/Cert.php +++ b/app/code/Magento/Paypal/Model/System/Config/Backend/Cert.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Backend; diff --git a/app/code/Magento/Paypal/Model/System/Config/Backend/Cron.php b/app/code/Magento/Paypal/Model/System/Config/Backend/Cron.php index b28055af94d..fc50967efab 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Backend/Cron.php +++ b/app/code/Magento/Paypal/Model/System/Config/Backend/Cron.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Backend; diff --git a/app/code/Magento/Paypal/Model/System/Config/Backend/MerchantCountry.php b/app/code/Magento/Paypal/Model/System/Config/Backend/MerchantCountry.php index 69463f00c23..cece08a096c 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Backend/MerchantCountry.php +++ b/app/code/Magento/Paypal/Model/System/Config/Backend/MerchantCountry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Backend; diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/BmlPosition.php b/app/code/Magento/Paypal/Model/System/Config/Source/BmlPosition.php index 37d463a6b1c..d9f0c3f23b9 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Source/BmlPosition.php +++ b/app/code/Magento/Paypal/Model/System/Config/Source/BmlPosition.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/BmlSize.php b/app/code/Magento/Paypal/Model/System/Config/Source/BmlSize.php index 0885a0d5b95..7bd67c7ae79 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Source/BmlSize.php +++ b/app/code/Magento/Paypal/Model/System/Config/Source/BmlSize.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/BuyerCountry.php b/app/code/Magento/Paypal/Model/System/Config/Source/BuyerCountry.php index 0df84187091..75ddb9585fa 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Source/BuyerCountry.php +++ b/app/code/Magento/Paypal/Model/System/Config/Source/BuyerCountry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Source; diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/FetchingSchedule.php b/app/code/Magento/Paypal/Model/System/Config/Source/FetchingSchedule.php index f43f212b59e..6bedae4bd6a 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Source/FetchingSchedule.php +++ b/app/code/Magento/Paypal/Model/System/Config/Source/FetchingSchedule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Source; diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/Logo.php b/app/code/Magento/Paypal/Model/System/Config/Source/Logo.php index c8def1c9285..5af8f43aeb6 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Source/Logo.php +++ b/app/code/Magento/Paypal/Model/System/Config/Source/Logo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Source; diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/MerchantCountry.php b/app/code/Magento/Paypal/Model/System/Config/Source/MerchantCountry.php index a11a2812980..1f66f5fe68f 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Source/MerchantCountry.php +++ b/app/code/Magento/Paypal/Model/System/Config/Source/MerchantCountry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Source; diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions.php b/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions.php index ad4e976dfd3..7cf45d64534 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions.php +++ b/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Source; diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions/Express.php b/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions/Express.php index 11f3eeebb93..268ab3543c7 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions/Express.php +++ b/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions/Express.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Source\PaymentActions; diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/RequireBillingAddress.php b/app/code/Magento/Paypal/Model/System/Config/Source/RequireBillingAddress.php index cae5e9fde35..0a0b2ecd4d9 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Source/RequireBillingAddress.php +++ b/app/code/Magento/Paypal/Model/System/Config/Source/RequireBillingAddress.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Source; diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/UrlMethod.php b/app/code/Magento/Paypal/Model/System/Config/Source/UrlMethod.php index 67d140ae161..71f22715d7e 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Source/UrlMethod.php +++ b/app/code/Magento/Paypal/Model/System/Config/Source/UrlMethod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Source; diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/Yesnoshortcut.php b/app/code/Magento/Paypal/Model/System/Config/Source/Yesnoshortcut.php index 761b413f212..a660167ea11 100644 --- a/app/code/Magento/Paypal/Model/System/Config/Source/Yesnoshortcut.php +++ b/app/code/Magento/Paypal/Model/System/Config/Source/Yesnoshortcut.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Model\System\Config\Source; diff --git a/app/code/Magento/Paypal/Observer/AddBillingAgreementToSessionObserver.php b/app/code/Magento/Paypal/Observer/AddBillingAgreementToSessionObserver.php index 97c89f04947..a61dea39299 100644 --- a/app/code/Magento/Paypal/Observer/AddBillingAgreementToSessionObserver.php +++ b/app/code/Magento/Paypal/Observer/AddBillingAgreementToSessionObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Observer; diff --git a/app/code/Magento/Paypal/Observer/AddPaypalShortcutsObserver.php b/app/code/Magento/Paypal/Observer/AddPaypalShortcutsObserver.php index b782c1ef087..48a9b3e3c59 100644 --- a/app/code/Magento/Paypal/Observer/AddPaypalShortcutsObserver.php +++ b/app/code/Magento/Paypal/Observer/AddPaypalShortcutsObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Observer; diff --git a/app/code/Magento/Paypal/Observer/HtmlTransactionIdObserver.php b/app/code/Magento/Paypal/Observer/HtmlTransactionIdObserver.php index 3340d1ef55d..37750304ff6 100644 --- a/app/code/Magento/Paypal/Observer/HtmlTransactionIdObserver.php +++ b/app/code/Magento/Paypal/Observer/HtmlTransactionIdObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Observer; diff --git a/app/code/Magento/Paypal/Observer/PayflowProAddCcData.php b/app/code/Magento/Paypal/Observer/PayflowProAddCcData.php index 92980e46ed8..bdcb48fb07d 100644 --- a/app/code/Magento/Paypal/Observer/PayflowProAddCcData.php +++ b/app/code/Magento/Paypal/Observer/PayflowProAddCcData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Observer; diff --git a/app/code/Magento/Paypal/Observer/RestrictAdminBillingAgreementUsageObserver.php b/app/code/Magento/Paypal/Observer/RestrictAdminBillingAgreementUsageObserver.php index f4f9199e955..ccfd4e27772 100644 --- a/app/code/Magento/Paypal/Observer/RestrictAdminBillingAgreementUsageObserver.php +++ b/app/code/Magento/Paypal/Observer/RestrictAdminBillingAgreementUsageObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Observer; diff --git a/app/code/Magento/Paypal/Observer/SaveOrderAfterSubmitObserver.php b/app/code/Magento/Paypal/Observer/SaveOrderAfterSubmitObserver.php index 757aa9954a0..2578125b8b7 100644 --- a/app/code/Magento/Paypal/Observer/SaveOrderAfterSubmitObserver.php +++ b/app/code/Magento/Paypal/Observer/SaveOrderAfterSubmitObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Observer; diff --git a/app/code/Magento/Paypal/Observer/SetResponseAfterSaveOrderObserver.php b/app/code/Magento/Paypal/Observer/SetResponseAfterSaveOrderObserver.php index 794f8aa046c..cca1602b322 100644 --- a/app/code/Magento/Paypal/Observer/SetResponseAfterSaveOrderObserver.php +++ b/app/code/Magento/Paypal/Observer/SetResponseAfterSaveOrderObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Observer; diff --git a/app/code/Magento/Paypal/Setup/InstallData.php b/app/code/Magento/Paypal/Setup/InstallData.php index 7909b6114d5..19032a19c8c 100644 --- a/app/code/Magento/Paypal/Setup/InstallData.php +++ b/app/code/Magento/Paypal/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Setup/InstallSchema.php b/app/code/Magento/Paypal/Setup/InstallSchema.php index d0a07242ad7..c948c0c1297 100644 --- a/app/code/Magento/Paypal/Setup/InstallSchema.php +++ b/app/code/Magento/Paypal/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/Store/SwitcherPluginTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/Store/SwitcherPluginTest.php index a97fb0ad2a6..5fc3dd2b12c 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/Store/SwitcherPluginTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/Store/SwitcherPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Adminhtml\Store; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/CountryTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/CountryTest.php index 9f5cd79ea59..6f61b565bac 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/CountryTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/CountryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Adminhtml\System\Config\Field; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable/Stub.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable/Stub.php index 18279e5f992..2d4158440c2 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable/Stub.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable/Stub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Adminhtml\System\Config\Field\Enable\AbstractEnable; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnableTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnableTest.php index d4664961e79..a347876b61d 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnableTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Adminhtml\System\Config\Field\Enable; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/GroupTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/GroupTest.php index cff71bce567..e82353c78b4 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/GroupTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/GroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/HintTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/HintTest.php index 5d639afb9c3..91ead60d9ad 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/HintTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/HintTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Adminhtml\System\Config\Fieldset; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/PaymentTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/PaymentTest.php index 955354ef740..6d42b50a25f 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/PaymentTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/PaymentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Adminhtml\System\Config\Fieldset; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/ResolutionRulesTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/ResolutionRulesTest.php index c1c76f5b314..4d80b48fc49 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/ResolutionRulesTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/ResolutionRulesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Adminhtml\System\Config; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Billing/Agreement/ViewTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Billing/Agreement/ViewTest.php index 23d6dabcdef..14326871d73 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Billing/Agreement/ViewTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Billing/Agreement/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Billing/AgreementsTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Billing/AgreementsTest.php index 11527bbe8c4..f478ea085e4 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Billing/AgreementsTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Billing/AgreementsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Billing; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Bml/ShortcutTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Bml/ShortcutTest.php index beb8248c869..ed8751ecd95 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Bml/ShortcutTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Bml/ShortcutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Express/FormTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Express/FormTest.php index 838626a591f..8148939e046 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Express/FormTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Express/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Express; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Express/ReviewTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Express/ReviewTest.php index 71ca138ae6e..cf16349e587 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Express/ReviewTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Express/ReviewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Express/ShortcutTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Express/ShortcutTest.php index fd0c09dd788..b726d04dcbe 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Express/ShortcutTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Express/ShortcutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Express; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Payflow/Link/IframeTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Payflow/Link/IframeTest.php index c41cb65acda..47578614131 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/Payflow/Link/IframeTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/Payflow/Link/IframeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\Payflow\Link; diff --git a/app/code/Magento/Paypal/Test/Unit/Block/PayflowExpress/FormTest.php b/app/code/Magento/Paypal/Test/Unit/Block/PayflowExpress/FormTest.php index 9e0946fb77c..2c665da881b 100644 --- a/app/code/Magento/Paypal/Test/Unit/Block/PayflowExpress/FormTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Block/PayflowExpress/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Block\PayflowExpress; diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Billing/Agreement/CancelTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Billing/Agreement/CancelTest.php index 7cffa383a96..c38cf7b4f94 100644 --- a/app/code/Magento/Paypal/Test/Unit/Controller/Billing/Agreement/CancelTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Controller/Billing/Agreement/CancelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Controller\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Express/PlaceOrderTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Express/PlaceOrderTest.php index a16588afa3e..2f17e7dae77 100644 --- a/app/code/Magento/Paypal/Test/Unit/Controller/Express/PlaceOrderTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Controller/Express/PlaceOrderTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Controller\Express; diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Express/ReturnActionTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Express/ReturnActionTest.php index a91c81ac908..b44d5f2ce8d 100644 --- a/app/code/Magento/Paypal/Test/Unit/Controller/Express/ReturnActionTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Controller/Express/ReturnActionTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Controller\Express; diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Express/StartTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Express/StartTest.php index b8e76d9720b..a19db888670 100644 --- a/app/code/Magento/Paypal/Test/Unit/Controller/Express/StartTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Controller/Express/StartTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Controller\Express; diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/ExpressTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/ExpressTest.php index e4274636812..ef62e5ef972 100644 --- a/app/code/Magento/Paypal/Test/Unit/Controller/ExpressTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Controller/ExpressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Ipn/IndexTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Ipn/IndexTest.php index debfc06cea1..947482601df 100644 --- a/app/code/Magento/Paypal/Test/Unit/Controller/Ipn/IndexTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Controller/Ipn/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Payflow/ReturnUrlTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Payflow/ReturnUrlTest.php index 854122560ee..d225829dae7 100644 --- a/app/code/Magento/Paypal/Test/Unit/Controller/Payflow/ReturnUrlTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Controller/Payflow/ReturnUrlTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/RequestSecureTokenTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/RequestSecureTokenTest.php index 20a0f22b0e7..41bd7b313dc 100644 --- a/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/RequestSecureTokenTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/RequestSecureTokenTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Controller\Transparent; diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/ResponseTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/ResponseTest.php index 2d44c0abd67..e9991093d91 100644 --- a/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/ResponseTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/ResponseTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Controller\Transparent; diff --git a/app/code/Magento/Paypal/Test/Unit/Cron/FetchReportsTest.php b/app/code/Magento/Paypal/Test/Unit/Cron/FetchReportsTest.php index 57d5eb6bbb1..57086ad32fe 100644 --- a/app/code/Magento/Paypal/Test/Unit/Cron/FetchReportsTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Cron/FetchReportsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Cron; diff --git a/app/code/Magento/Paypal/Test/Unit/CustomerData/BillingAgreementTest.php b/app/code/Magento/Paypal/Test/Unit/CustomerData/BillingAgreementTest.php index b8d3f7ffe1b..131161d1f00 100644 --- a/app/code/Magento/Paypal/Test/Unit/CustomerData/BillingAgreementTest.php +++ b/app/code/Magento/Paypal/Test/Unit/CustomerData/BillingAgreementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\CustomerData; diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/BackendTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/BackendTest.php index 98fd1469479..b57879d4448 100644 --- a/app/code/Magento/Paypal/Test/Unit/Helper/BackendTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Helper/BackendTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Helper; diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/CheckoutTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/CheckoutTest.php index 02c13d9f20a..59f5ca34f1c 100644 --- a/app/code/Magento/Paypal/Test/Unit/Helper/CheckoutTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Helper/CheckoutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/DataTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/DataTest.php index 239c5d6cda7..cb12312b9f8 100644 --- a/app/code/Magento/Paypal/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Helper; diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/CheckoutValidatorTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/CheckoutValidatorTest.php index 0236242a084..7e5b4830087 100644 --- a/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/CheckoutValidatorTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/CheckoutValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/FactoryTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/FactoryTest.php index 41e67ff3c21..ad0c732fe7e 100644 --- a/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/FactoryTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/ValidatorTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/ValidatorTest.php index 9868df5f6e0..fc9b3ae2c47 100644 --- a/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/ValidatorTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTest.php b/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTest.php index 56c3a3bd2db..74a6201d107 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTesting.php b/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTesting.php index 47532902734..02610472aac 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTesting.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTesting.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Api/NvpTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Api/NvpTest.php index 12251ff32ce..5b85dbc7569 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Api/NvpTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Api/NvpTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Api/ProcessableExceptionTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Api/ProcessableExceptionTest.php index c90431dc4dc..011c0e2bd09 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Api/ProcessableExceptionTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Api/ProcessableExceptionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Api; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Billing/AbstractAgreementTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Billing/AbstractAgreementTest.php index 2e012d4ea3f..6a2df2812e4 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Billing/AbstractAgreementTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Billing/AbstractAgreementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Billing; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Billing/Agreement/OrdersUpdaterTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Billing/Agreement/OrdersUpdaterTest.php index 26abb0dead2..57ce6c4f4b3 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Billing/Agreement/OrdersUpdaterTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Billing/Agreement/OrdersUpdaterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Billing\Agreement; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Billing/AgreementTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Billing/AgreementTest.php index fcbb00f0a77..7cab2a5d827 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Billing/AgreementTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Billing/AgreementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Billing; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/BillingAgreementConfigProviderTest.php b/app/code/Magento/Paypal/Test/Unit/Model/BillingAgreementConfigProviderTest.php index f394ef1c8c0..62f82d58c4b 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/BillingAgreementConfigProviderTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/BillingAgreementConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/CartTest.php b/app/code/Magento/Paypal/Test/Unit/Model/CartTest.php index 1e270ee4584..6aa07ec79ff 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/CartTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/CartTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConverterTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConverterTest.php index 81005a02ae5..9bb623b3e8e 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConverterTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Config\Rules; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConvertibleContent/rules.xml b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConvertibleContent/rules.xml index 85d44e8e5bb..49aad33d796 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConvertibleContent/rules.xml +++ b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConvertibleContent/rules.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/FileResolverTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/FileResolverTest.php index 1476689a362..dab8d79491a 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/FileResolverTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/FileResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Config\Rules; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ReaderTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ReaderTest.php index d6c6d5d6ad8..07f3f4e3975 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ReaderTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ReaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Config\Rules; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/SchemaLocatorTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/SchemaLocatorTest.php index 83b579506cd..de897d827cb 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/SchemaLocatorTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Config\Rules; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/Element/FieldPluginTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/Element/FieldPluginTest.php index 48314c28ceb..21cb77c5ed6 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/Element/FieldPluginTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/Element/FieldPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Config\Structure\Element; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/StructurePluginTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/StructurePluginTest.php index 63abcd66042..26dd4af0220 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Config/StructurePluginTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Config/StructurePluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Config; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Paypal/Test/Unit/Model/ConfigTest.php index d079d5aa562..4384c16e0d8 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/ConfigTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Express/CheckoutTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Express/CheckoutTest.php index 1179a974079..19b8f3c8f95 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Express/CheckoutTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Express/CheckoutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Model/ExpressConfigProviderTest.php b/app/code/Magento/Paypal/Test/Unit/Model/ExpressConfigProviderTest.php index 13ef7ca7d29..8b220f989d3 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/ExpressConfigProviderTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/ExpressConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/ExpressTest.php b/app/code/Magento/Paypal/Test/Unit/Model/ExpressTest.php index 9816c37fa01..d8fc80ebb1a 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/ExpressTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/ExpressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Hostedpro/RequestTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Hostedpro/RequestTest.php index 6011935f6e1..563609be244 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Hostedpro/RequestTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Hostedpro/RequestTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Hostedpro; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/IframeConfigProviderTest.php b/app/code/Magento/Paypal/Test/Unit/Model/IframeConfigProviderTest.php index d14f9cbc1b8..3e3b143452c 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/IframeConfigProviderTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/IframeConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/InfoTest.php b/app/code/Magento/Paypal/Test/Unit/Model/InfoTest.php index c9430a0afac..01597613db7 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/InfoTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/InfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Model/IpnTest.php b/app/code/Magento/Paypal/Test/Unit/Model/IpnTest.php index e27d6969b5b..47e8e930f47 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/IpnTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/IpnTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Method/AgreementTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Method/AgreementTest.php index 84f0e4c1348..f8826c62714 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Method/AgreementTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Method/AgreementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Method; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Method/Checks/SpecificationPluginTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Method/Checks/SpecificationPluginTest.php index 0994088d84a..c0857665857 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Method/Checks/SpecificationPluginTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Method/Checks/SpecificationPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Method\Checks; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/GatewayTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/GatewayTest.php index 2ff5b44a57c..0df0b0420eb 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/GatewayTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/GatewayTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payflow\Service; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Request/SecureTokenTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Request/SecureTokenTest.php index 521d4cc61eb..2d436ad6ccc 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Request/SecureTokenTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Request/SecureTokenTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payflow\Service\Request; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/CreditCardValidationHandlerTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/CreditCardValidationHandlerTest.php index de79a915a93..7b28db3ef10 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/CreditCardValidationHandlerTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/CreditCardValidationHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payflow\Service\Response\Handler; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/FraudHandlerTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/FraudHandlerTest.php index e8a8c04796a..aabfd555bd8 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/FraudHandlerTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/FraudHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payflow\Service\Response\Handler; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/HandlerCompositeTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/HandlerCompositeTest.php index 86ebd731227..270f4058c91 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/HandlerCompositeTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/HandlerCompositeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payflow\Service\Response\Handler; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/fps_prexmldata.xml b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/fps_prexmldata.xml index 882dd1bf66b..45b5e2248c3 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/fps_prexmldata.xml +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/fps_prexmldata.xml @@ -1,9 +1,9 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> -<triggeredRules><rule num="1"><ruleId>2</ruleId><ruleAlias>CeilingAmount</ruleAlias><ruleDescription>Total Purchase Price Ceiling</ruleDescription><action>R</action><triggeredMessage>The purchase amount of 7501 is greater than the ceiling value set of 7500</triggeredMessage><rulevendorparms><ruleParameter num="1"><name>CeilingValue</name><value type="USD">75.00</value></ruleParameter></rulevendorparms></rule><rule num="2"><ruleId>6</ruleId><ruleAlias>HighOrderNumber</ruleAlias><ruleDescription>Total ItemCeiling</ruleDescription><action>R</action><triggeredMessage>16 items were ordered, which is overthe maximum allowed quantity of 15</triggeredMessage><rulevendorparms><ruleParameter num="1"><name>Value</name><value type="Integer">15</value></ruleParameter></rulevendorparms></rule><rule num="3"><ruleId>7</ruleId><ruleAlias>BillShipMismatch</ruleAlias><ruleDescription>Shipping/BillingMismatch</ruleDescription><action>R</action><triggeredMessage>Thebilling and shipping addresses did not match</triggeredMessage></rule><rule num="4"><ruleId>13</ruleId><ruleAlias>HighRiskBinCheck</ruleAlias><ruleDescription>BIN Risk List Match</ruleDescription><action>R</action><triggeredMessage>The card number is in a high risk bin list</triggeredMessage></rule><rule num="5"><ruleId>37</ruleId><ruleAlias>HighRiskZIPCheck</ruleAlias><ruleDescription>Zip Risk List Match</ruleDescription><action>R</action><triggeredMessage>High risk shipping zip</triggeredMessage></rule><rule num="6"><ruleId>16</ruleId><ruleAlias>BillUSPostalAddressCheck</ruleAlias><ruleDescription>USPS Address Validation Failure</ruleDescription><action>R</action><triggeredMessage>The billing address is not a valid USAddress</triggeredMessage><rulevendorparms><ruleParameter num="1"><name>AddressToVerify</name><value type="String">bill</value></ruleParameter></rulevendorparms></rule></triggeredRules> \ No newline at end of file +<triggeredRules><rule num="1"><ruleId>2</ruleId><ruleAlias>CeilingAmount</ruleAlias><ruleDescription>Total Purchase Price Ceiling</ruleDescription><action>R</action><triggeredMessage>The purchase amount of 7501 is greater than the ceiling value set of 7500</triggeredMessage><rulevendorparms><ruleParameter num="1"><name>CeilingValue</name><value type="USD">75.00</value></ruleParameter></rulevendorparms></rule><rule num="2"><ruleId>6</ruleId><ruleAlias>HighOrderNumber</ruleAlias><ruleDescription>Total ItemCeiling</ruleDescription><action>R</action><triggeredMessage>16 items were ordered, which is overthe maximum allowed quantity of 15</triggeredMessage><rulevendorparms><ruleParameter num="1"><name>Value</name><value type="Integer">15</value></ruleParameter></rulevendorparms></rule><rule num="3"><ruleId>7</ruleId><ruleAlias>BillShipMismatch</ruleAlias><ruleDescription>Shipping/BillingMismatch</ruleDescription><action>R</action><triggeredMessage>Thebilling and shipping addresses did not match</triggeredMessage></rule><rule num="4"><ruleId>13</ruleId><ruleAlias>HighRiskBinCheck</ruleAlias><ruleDescription>BIN Risk List Match</ruleDescription><action>R</action><triggeredMessage>The card number is in a high risk bin list</triggeredMessage></rule><rule num="5"><ruleId>37</ruleId><ruleAlias>HighRiskZIPCheck</ruleAlias><ruleDescription>Zip Risk List Match</ruleDescription><action>R</action><triggeredMessage>High risk shipping zip</triggeredMessage></rule><rule num="6"><ruleId>16</ruleId><ruleAlias>BillUSPostalAddressCheck</ruleAlias><ruleDescription>USPS Address Validation Failure</ruleDescription><action>R</action><triggeredMessage>The billing address is not a valid USAddress</triggeredMessage><rulevendorparms><ruleParameter num="1"><name>AddressToVerify</name><value type="String">bill</value></ruleParameter></rulevendorparms></rule></triggeredRules> diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/xxe_fps_prexmldata.xml b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/xxe_fps_prexmldata.xml index 98b5ef036e0..851f49fa886 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/xxe_fps_prexmldata.xml +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/xxe_fps_prexmldata.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -68,4 +68,4 @@ </ruleParameter> </rulevendorparms> </rule> -</triggeredRules> \ No newline at end of file +</triggeredRules> diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/TransactionTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/TransactionTest.php index 7a2af6aed8a..11980824eab 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/TransactionTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/TransactionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payflow\Service\Response; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/AVSResponseTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/AVSResponseTest.php index 9efb25aa501..cf2c5a2cb4e 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/AVSResponseTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/AVSResponseTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payflow\Service\Response\Validator; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/CVV2MatchTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/CVV2MatchTest.php index fc2704ccfde..a5966ec2607 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/CVV2MatchTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/CVV2MatchTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payflow\Service\Response\Validator; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/ResponseValidatorTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/ResponseValidatorTest.php index 5b86da77a37..fcb9bd764da 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/ResponseValidatorTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/ResponseValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payflow\Service\Response\Validator; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/SecureTokenTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/SecureTokenTest.php index 90ff97f3de0..7ff843cb9b0 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/SecureTokenTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/SecureTokenTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payflow\Service\Response\Validator; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/TransparentTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/TransparentTest.php index e2d5d348dda..a1a6459d6ec 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/TransparentTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/TransparentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payflow; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/PayflowConfigTest.php b/app/code/Magento/Paypal/Test/Unit/Model/PayflowConfigTest.php index 99dac56afd9..397a86e29f4 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/PayflowConfigTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/PayflowConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/PayflowExpressTest.php b/app/code/Magento/Paypal/Test/Unit/Model/PayflowExpressTest.php index 441c5c63e03..a3f9ce78113 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/PayflowExpressTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/PayflowExpressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Model/PayflowlinkTest.php b/app/code/Magento/Paypal/Test/Unit/Model/PayflowlinkTest.php index 792e6cb5bf7..5c5a92c77b2 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/PayflowlinkTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/PayflowlinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/PayflowproTest.php b/app/code/Magento/Paypal/Test/Unit/Model/PayflowproTest.php index 88e5a2e615a..b8840aff68e 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/PayflowproTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/PayflowproTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementStub.php b/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementStub.php index c0eba7bb180..a7848d809e6 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementStub.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementStub.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payment\Method\Billing; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementTest.php index 187f109a786..ec51bf8ab52 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\Payment\Method\Billing; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/ProTest.php b/app/code/Magento/Paypal/Test/Unit/Model/ProTest.php index e35beb50e35..eeccb26eee4 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/ProTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/ProTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Report/Settlement/RowTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Report/Settlement/RowTest.php index 81878946f1d..b6d93def3fe 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/Report/Settlement/RowTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/Report/Settlement/RowTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Model/ResourceModel/Billing/AgreementTest.php b/app/code/Magento/Paypal/Test/Unit/Model/ResourceModel/Billing/AgreementTest.php index 0d7d40bc2c4..3fc4a1fcef9 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/ResourceModel/Billing/AgreementTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/ResourceModel/Billing/AgreementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/BmlPositionTest.php b/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/BmlPositionTest.php index c75557847b2..1294bdb99c0 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/BmlPositionTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/BmlPositionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\System\Config\Source; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/YesnoshortcutTest.php b/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/YesnoshortcutTest.php index 5ed81fc731c..62748d30063 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/YesnoshortcutTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/YesnoshortcutTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Model\System\Config\Source; diff --git a/app/code/Magento/Paypal/Test/Unit/Model/_files/additional_info_data.php b/app/code/Magento/Paypal/Test/Unit/Model/_files/additional_info_data.php index 441f6605a98..7595e0e9c21 100644 --- a/app/code/Magento/Paypal/Test/Unit/Model/_files/additional_info_data.php +++ b/app/code/Magento/Paypal/Test/Unit/Model/_files/additional_info_data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Observer/AddBillingAgreementToSessionObserverTest.php b/app/code/Magento/Paypal/Test/Unit/Observer/AddBillingAgreementToSessionObserverTest.php index d66ee1711d6..58faa03a22c 100644 --- a/app/code/Magento/Paypal/Test/Unit/Observer/AddBillingAgreementToSessionObserverTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Observer/AddBillingAgreementToSessionObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Observer; diff --git a/app/code/Magento/Paypal/Test/Unit/Observer/AddPaypalShortcutsObserverTest.php b/app/code/Magento/Paypal/Test/Unit/Observer/AddPaypalShortcutsObserverTest.php index 0cf0dfbc9ef..0c683420753 100644 --- a/app/code/Magento/Paypal/Test/Unit/Observer/AddPaypalShortcutsObserverTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Observer/AddPaypalShortcutsObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Observer; diff --git a/app/code/Magento/Paypal/Test/Unit/Observer/HtmlTransactionIdObserverTest.php b/app/code/Magento/Paypal/Test/Unit/Observer/HtmlTransactionIdObserverTest.php index c55d1738082..19e8f240434 100644 --- a/app/code/Magento/Paypal/Test/Unit/Observer/HtmlTransactionIdObserverTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Observer/HtmlTransactionIdObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Observer; diff --git a/app/code/Magento/Paypal/Test/Unit/Observer/RestrictAdminBillingAgreementUsageObserverTest.php b/app/code/Magento/Paypal/Test/Unit/Observer/RestrictAdminBillingAgreementUsageObserverTest.php index 08ab107449c..41ec96ec915 100644 --- a/app/code/Magento/Paypal/Test/Unit/Observer/RestrictAdminBillingAgreementUsageObserverTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Observer/RestrictAdminBillingAgreementUsageObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/Test/Unit/Observer/SetResponseAfterSaveOrderObserverTest.php b/app/code/Magento/Paypal/Test/Unit/Observer/SetResponseAfterSaveOrderObserverTest.php index 75e1a7088bc..476d7ba1dcc 100644 --- a/app/code/Magento/Paypal/Test/Unit/Observer/SetResponseAfterSaveOrderObserverTest.php +++ b/app/code/Magento/Paypal/Test/Unit/Observer/SetResponseAfterSaveOrderObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Test\Unit\Observer; diff --git a/app/code/Magento/Paypal/etc/acl.xml b/app/code/Magento/Paypal/etc/acl.xml index 86b9f2e3959..df4931039de 100644 --- a/app/code/Magento/Paypal/etc/acl.xml +++ b/app/code/Magento/Paypal/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/di.xml b/app/code/Magento/Paypal/etc/adminhtml/di.xml index 186649b01a2..4e4c1c2f6e4 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/di.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/events.xml b/app/code/Magento/Paypal/etc/adminhtml/events.xml index 818ef3f0d70..889285f2d94 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/events.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/menu.xml b/app/code/Magento/Paypal/etc/adminhtml/menu.xml index bff8e4c891c..899a71f1e8b 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/menu.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/routes.xml b/app/code/Magento/Paypal/etc/adminhtml/routes.xml index 136d638136e..b4fd844e769 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/routes.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_au.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_au.xml index 4ee83da9c2a..391e4d4e046 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_au.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_au.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_ca.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_ca.xml index fc0ca6ebb6e..420ebe91146 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_ca.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_ca.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_de.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_de.xml index 6724aaff241..7e3f8b8c274 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_de.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_de.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_es.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_es.xml index 98f69db7f94..e19a9ec5574 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_es.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_es.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_fr.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_fr.xml index 8b4a71c177e..0c0a8eb2da4 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_fr.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_fr.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_gb.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_gb.xml index f6e1d4376ad..dc6ba04bf90 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_gb.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_gb.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_hk.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_hk.xml index 6e27406c673..28fd038971a 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_hk.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_hk.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_it.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_it.xml index a65983c5835..55d788ee7b5 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_it.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_it.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_jp.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_jp.xml index cb6caa90004..d9cd73cb6a3 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_jp.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_jp.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_nz.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_nz.xml index 379fd221f28..f65a16ad6da 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_nz.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_nz.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_other.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_other.xml index 49320b22158..40fde95c44a 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_other.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_other.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_us.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_us.xml index 554b459d3c4..4dc6110d986 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_us.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_us.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/system.xml b/app/code/Magento/Paypal/etc/adminhtml/system.xml index c4fe3def36c..8418228bb90 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/system.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/express_checkout.xml b/app/code/Magento/Paypal/etc/adminhtml/system/express_checkout.xml index 90cb60186e3..32349252023 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/system/express_checkout.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/system/express_checkout.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/payflow_advanced.xml b/app/code/Magento/Paypal/etc/adminhtml/system/payflow_advanced.xml index c6b29b094f8..1e19a81fb95 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/system/payflow_advanced.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/system/payflow_advanced.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/payflow_link.xml b/app/code/Magento/Paypal/etc/adminhtml/system/payflow_link.xml index 4167ea92c1b..500465c74a7 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/system/payflow_link.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/system/payflow_link.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution.xml b/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution.xml index 37141f40549..44b288f86f3 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution_with_express_checkout.xml b/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution_with_express_checkout.xml index a70d8531f21..f2536714af2 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution_with_express_checkout.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution_with_express_checkout.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro.xml b/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro.xml index 98f340f0a27..d5652e602d1 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro_with_express_checkout.xml b/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro_with_express_checkout.xml index 3e8b6d0ef47..98df65a2407 100644 --- a/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro_with_express_checkout.xml +++ b/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro_with_express_checkout.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/config.xml b/app/code/Magento/Paypal/etc/config.xml index 2fe6ecefc17..f72b9324bee 100644 --- a/app/code/Magento/Paypal/etc/config.xml +++ b/app/code/Magento/Paypal/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/crontab.xml b/app/code/Magento/Paypal/etc/crontab.xml index ce87612dcac..0c2877cfc08 100644 --- a/app/code/Magento/Paypal/etc/crontab.xml +++ b/app/code/Magento/Paypal/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/di.xml b/app/code/Magento/Paypal/etc/di.xml index 940876451fd..22a6d88f9e5 100644 --- a/app/code/Magento/Paypal/etc/di.xml +++ b/app/code/Magento/Paypal/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/events.xml b/app/code/Magento/Paypal/etc/events.xml index daf29e6ceca..630df6ba2f2 100644 --- a/app/code/Magento/Paypal/etc/events.xml +++ b/app/code/Magento/Paypal/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/frontend/di.xml b/app/code/Magento/Paypal/etc/frontend/di.xml index 8b98901f531..7ababeb54b5 100644 --- a/app/code/Magento/Paypal/etc/frontend/di.xml +++ b/app/code/Magento/Paypal/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/frontend/events.xml b/app/code/Magento/Paypal/etc/frontend/events.xml index 6175340caa1..409609fe988 100644 --- a/app/code/Magento/Paypal/etc/frontend/events.xml +++ b/app/code/Magento/Paypal/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/frontend/page_types.xml b/app/code/Magento/Paypal/etc/frontend/page_types.xml index 1649f23ff43..f740ec198de 100644 --- a/app/code/Magento/Paypal/etc/frontend/page_types.xml +++ b/app/code/Magento/Paypal/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/frontend/routes.xml b/app/code/Magento/Paypal/etc/frontend/routes.xml index e1fc0b59042..f08bfbb4acc 100644 --- a/app/code/Magento/Paypal/etc/frontend/routes.xml +++ b/app/code/Magento/Paypal/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Paypal" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Paypal/etc/frontend/sections.xml b/app/code/Magento/Paypal/etc/frontend/sections.xml index bc8e4720a46..94f120ef707 100644 --- a/app/code/Magento/Paypal/etc/frontend/sections.xml +++ b/app/code/Magento/Paypal/etc/frontend/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/module.xml b/app/code/Magento/Paypal/etc/module.xml index 522850d28bf..62a8c1abf6b 100644 --- a/app/code/Magento/Paypal/etc/module.xml +++ b/app/code/Magento/Paypal/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/payment.xml b/app/code/Magento/Paypal/etc/payment.xml index e7d98abea49..22c616ac4ba 100644 --- a/app/code/Magento/Paypal/etc/payment.xml +++ b/app/code/Magento/Paypal/etc/payment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/etc/rules.xsd b/app/code/Magento/Paypal/etc/rules.xsd index 6852b07547b..27dca202b0c 100644 --- a/app/code/Magento/Paypal/etc/rules.xsd +++ b/app/code/Magento/Paypal/etc/rules.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/registration.php b/app/code/Magento/Paypal/registration.php index 884b58364ff..88ee368822f 100644 --- a/app/code/Magento/Paypal/registration.php +++ b/app/code/Magento/Paypal/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_paypal_reports_block.xml b/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_paypal_reports_block.xml index 5ea7f9ac356..39c6879cbc6 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_paypal_reports_block.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_paypal_reports_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_system_config_edit.xml b/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_system_config_edit.xml index 96901cae034..23df770757e 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_system_config_edit.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_system_config_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/customer_index_edit.xml b/app/code/Magento/Paypal/view/adminhtml/layout/customer_index_edit.xml index d6a52c99569..0a21e0edd82 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/customer_index_edit.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/customer_index_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_customergrid.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_customergrid.xml index d4b93243381..451748ff167 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_customergrid.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_customergrid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_grid.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_grid.xml index ec035dce0eb..6a672ab4f6b 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_grid.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_index.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_index.xml index 133c311462e..5ad15e7b24a 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_index.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_ordersgrid.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_ordersgrid.xml index e32876475f8..16f6eaae71c 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_ordersgrid.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_ordersgrid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_view.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_view.xml index 39930b2e764..f6a90e58f5a 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_view.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_grid.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_grid.xml index 9281651974e..6c0487a6f8b 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_grid.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_index.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_index.xml index a4eb25a6605..702673054f3 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_index.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_index.xml b/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_index.xml index c858a29e9a1..38099cdb035 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_index.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -20,4 +20,4 @@ </action> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml b/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml index ffd0d656ba5..a76eff625c5 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -20,4 +20,4 @@ </action> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/transparent_payment_response.xml b/app/code/Magento/Paypal/view/adminhtml/layout/transparent_payment_response.xml index 57764653946..9ef0a1eac45 100644 --- a/app/code/Magento/Paypal/view/adminhtml/layout/transparent_payment_response.xml +++ b/app/code/Magento/Paypal/view/adminhtml/layout/transparent_payment_response.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/form.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/form.phtml index 47d93bb377e..8038a41aa8e 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/form.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/form.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/form.phtml index 48d1908aadd..bdca2541d5f 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/form.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/tab/info.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/tab/info.phtml index e64b2be7fc9..4d10dc58e13 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/tab/info.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/tab/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** @var \Magento\Paypal\Block\Adminhtml\Billing\Agreement\View\Tab\Info $block */ diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/payflowpro/vault.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/payflowpro/vault.phtml index 7512a167ef7..6b54f48165b 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/payflowpro/vault.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/payflowpro/vault.phtml @@ -1,7 +1,7 @@ <?php use Magento\Vault\Model\Ui\TokenUiComponentProviderInterface; /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // @codingStandardsIgnoreFile diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/payment/form/billing/agreement.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/payment/form/billing/agreement.phtml index 2e343211799..def89d2c89b 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/payment/form/billing/agreement.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/payment/form/billing/agreement.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/api_wizard.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/api_wizard.phtml index a0090dbfcb8..cb5ccbc920d 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/api_wizard.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/api_wizard.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/bml_api_wizard.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/bml_api_wizard.phtml index 5ec7bc88f33..7719884966c 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/bml_api_wizard.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/bml_api_wizard.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/fieldset/hint.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/fieldset/hint.phtml index 148d8f8a4c3..84b2703f4d9 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/fieldset/hint.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/fieldset/hint.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/advanced.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/advanced.phtml index 122d0a7a64d..eb343abe960 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/advanced.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/advanced.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/info.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/info.phtml index 263cdc7e581..d097a1787eb 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/info.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/rules.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/rules.phtml index b38bfa29305..505aa72c244 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/rules.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/rules.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/transparent/form.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/transparent/form.phtml index 4c1a3d8e4a4..4ae11c17dec 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/transparent/form.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/transparent/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/transparent/iframe.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/transparent/iframe.phtml index e446c1a395b..1c85a0c7387 100644 --- a/app/code/Magento/Paypal/view/adminhtml/templates/transparent/iframe.phtml +++ b/app/code/Magento/Paypal/view/adminhtml/templates/transparent/iframe.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/payflowpro/vault.js b/app/code/Magento/Paypal/view/adminhtml/web/js/payflowpro/vault.js index 61daa24d8ce..cb93ab93408 100644 --- a/app/code/Magento/Paypal/view/adminhtml/web/js/payflowpro/vault.js +++ b/app/code/Magento/Paypal/view/adminhtml/web/js/payflowpro/vault.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/predicate/confirm.js b/app/code/Magento/Paypal/view/adminhtml/web/js/predicate/confirm.js index 53f1db315cf..bd599750843 100644 --- a/app/code/Magento/Paypal/view/adminhtml/web/js/predicate/confirm.js +++ b/app/code/Magento/Paypal/view/adminhtml/web/js/predicate/confirm.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define(['underscore'], function (_) { diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/rule.js b/app/code/Magento/Paypal/view/adminhtml/web/js/rule.js index 2a3a0b2d1ad..8d165e9397f 100644 --- a/app/code/Magento/Paypal/view/adminhtml/web/js/rule.js +++ b/app/code/Magento/Paypal/view/adminhtml/web/js/rule.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/rules.js b/app/code/Magento/Paypal/view/adminhtml/web/js/rules.js index d75155fbb9d..18f9a7b30ba 100644 --- a/app/code/Magento/Paypal/view/adminhtml/web/js/rules.js +++ b/app/code/Magento/Paypal/view/adminhtml/web/js/rules.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/solution.js b/app/code/Magento/Paypal/view/adminhtml/web/js/solution.js index 924e27b75ba..46c77052289 100644 --- a/app/code/Magento/Paypal/view/adminhtml/web/js/solution.js +++ b/app/code/Magento/Paypal/view/adminhtml/web/js/solution.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/solutions.js b/app/code/Magento/Paypal/view/adminhtml/web/js/solutions.js index 43793d9b540..5ceb07006e0 100644 --- a/app/code/Magento/Paypal/view/adminhtml/web/js/solutions.js +++ b/app/code/Magento/Paypal/view/adminhtml/web/js/solutions.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Paypal/view/adminhtml/web/styles.css b/app/code/Magento/Paypal/view/adminhtml/web/styles.css index 9119a2e317f..d5003848843 100644 --- a/app/code/Magento/Paypal/view/adminhtml/web/styles.css +++ b/app/code/Magento/Paypal/view/adminhtml/web/styles.css @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -31,4 +31,4 @@ .paypal-other-header > .admin__collapsible-block > a {color: #007bdb !important; text-align: right;} .payments-other-header > .admin__collapsible-block > a {display: inline-block;} .payments-other-header > .admin__collapsible-block > a::before {content: '' !important; width: 0; height: 0; border-color: transparent; border-top-color: #000; border-style: solid; border-width: .8rem .5rem 0 .5rem; margin-top:1px; transition: all .2s linear;} -.payments-other-header > .admin__collapsible-block > a.open::before {border-color: transparent; border-bottom-color: #000; border-width: 0 .5rem .8rem .5rem;} \ No newline at end of file +.payments-other-header > .admin__collapsible-block > a.open::before {border-color: transparent; border-bottom-color: #000; border-width: 0 .5rem .8rem .5rem;} diff --git a/app/code/Magento/Paypal/view/base/requirejs-config.js b/app/code/Magento/Paypal/view/base/requirejs-config.js index 0f23ee288d2..a235ed160dd 100644 --- a/app/code/Magento/Paypal/view/base/requirejs-config.js +++ b/app/code/Magento/Paypal/view/base/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { transparent: 'Magento_Payment/transparent' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Paypal/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Paypal/view/frontend/layout/catalog_category_view.xml index 214d878534a..87be35546d4 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/catalog_category_view.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/catalog_category_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Paypal/view/frontend/layout/catalog_product_view.xml index de139d98d51..8e8144b766d 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/catalog_product_view.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/catalog_product_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Paypal/view/frontend/layout/checkout_cart_index.xml index 750455a004f..9bb63e30228 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/checkout_cart_index.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/checkout_cart_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Paypal/view/frontend/layout/checkout_index_index.xml index 81567a2a941..b6bfcd9cfe0 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -61,4 +61,4 @@ </arguments> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_review.xml b/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_review.xml index 5b68af1cb43..67ce380dcd2 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_review.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_review.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_success.xml b/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_success.xml index 83aa1080d3b..930fff1d92f 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_success.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_success.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/cms_index_index.xml b/app/code/Magento/Paypal/view/frontend/layout/cms_index_index.xml index cfb739e2e57..debdd786d1b 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/cms_index_index.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/cms_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/customer_account.xml b/app/code/Magento/Paypal/view/frontend/layout/customer_account.xml index 27fa1511d09..b42934396a9 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/customer_account.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/customer_account.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/default.xml b/app/code/Magento/Paypal/view/frontend/layout/default.xml index 27b599bf2e7..699e4ebc0db 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/default.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_index.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_index.xml index 547b10f6b15..ab9a23162d8 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_index.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_view.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_view.xml index e266da1aaf6..4647e9372fd 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_view.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review.xml index d04b3203785..e4fd68de19d 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review_details.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review_details.xml index 5281380a2f0..6cc98fade88 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review_details.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review_details.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_cancelpayment.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_cancelpayment.xml index 35a74809b08..f0a65cc0b5d 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_cancelpayment.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_cancelpayment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_form.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_form.xml index 3b47fa73029..dac2ab927f6 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_form.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_returnurl.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_returnurl.xml index 35a74809b08..f0a65cc0b5d 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_returnurl.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_returnurl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_cancelpayment.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_cancelpayment.xml index c853586806b..77d26dfa27d 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_cancelpayment.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_cancelpayment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_form.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_form.xml index b3d22c44809..8bf1d33fcef 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_form.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_returnurl.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_returnurl.xml index c853586806b..77d26dfa27d 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_returnurl.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_returnurl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowexpress_review.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowexpress_review.xml index 7738aea3cab..4dbe84f2398 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowexpress_review.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowexpress_review.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/transparent_payment_response.xml b/app/code/Magento/Paypal/view/frontend/layout/transparent_payment_response.xml index a75c704defe..576b350708b 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/transparent_payment_response.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/transparent_payment_response.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/layout/vault_cards_listaction.xml b/app/code/Magento/Paypal/view/frontend/layout/vault_cards_listaction.xml index 11ff13eed91..0a27a89f96f 100644 --- a/app/code/Magento/Paypal/view/frontend/layout/vault_cards_listaction.xml +++ b/app/code/Magento/Paypal/view/frontend/layout/vault_cards_listaction.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/requirejs-config.js b/app/code/Magento/Paypal/view/frontend/requirejs-config.js index 7a4a356b9d4..11475911f74 100644 --- a/app/code/Magento/Paypal/view/frontend/requirejs-config.js +++ b/app/code/Magento/Paypal/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/billing/agreement/view.phtml b/app/code/Magento/Paypal/view/frontend/templates/billing/agreement/view.phtml index 95def49290b..bf0d4a1aba3 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/billing/agreement/view.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/billing/agreement/view.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/billing/agreements.phtml b/app/code/Magento/Paypal/view/frontend/templates/billing/agreements.phtml index 585c7f59366..b4206648f78 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/billing/agreements.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/billing/agreements.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/bml.phtml b/app/code/Magento/Paypal/view/frontend/templates/bml.phtml index 9020452c68a..cf7296b3d0f 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/bml.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/bml.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/review/totals.phtml b/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/review/totals.phtml index ca28b63e61e..2db73b28c5f 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/review/totals.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/review/totals.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/success/billing_agreement.phtml b/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/success/billing_agreement.phtml index 4af0a82e679..dd0147cb6f7 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/success/billing_agreement.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/success/billing_agreement.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/in-context/component.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/in-context/component.phtml index d4904e43cb6..cbbeb37cdd7 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/express/in-context/component.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/express/in-context/component.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ use Magento\Paypal\Block\Express\InContext\Minicart\Button; diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/in-context/shortcut/button.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/in-context/shortcut/button.phtml index d0340c7e63c..e3aff476249 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/express/in-context/shortcut/button.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/express/in-context/shortcut/button.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/review.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/review.phtml index 91063b459d5..1b0ebd587f2 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/express/review.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/express/review.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/review/details.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/review/details.phtml index 996192b35ff..4eceb830d16 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/express/review/details.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/express/review/details.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/review/shipping/method.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/review/shipping/method.phtml index 212849f1f4e..d2ed633685c 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/express/review/shipping/method.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/express/review/shipping/method.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/shortcut.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/shortcut.phtml index a0237adf9d9..0057d268933 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/express/shortcut.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/express/shortcut.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/shortcut/container.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/shortcut/container.phtml index cd521e3bd2d..63ad9993e86 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/express/shortcut/container.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/express/shortcut/container.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/hss/form.phtml b/app/code/Magento/Paypal/view/frontend/templates/hss/form.phtml index 1c989334dd8..3e206b49262 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/hss/form.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/hss/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/hss/iframe.phtml b/app/code/Magento/Paypal/view/frontend/templates/hss/iframe.phtml index d67a3e8cf14..344973db6f0 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/hss/iframe.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/hss/iframe.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/hss/info.phtml b/app/code/Magento/Paypal/view/frontend/templates/hss/info.phtml index 0ab97a04093..e696fc755c6 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/hss/info.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/hss/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/hss/js.phtml b/app/code/Magento/Paypal/view/frontend/templates/hss/js.phtml index 8c61b88bbc3..7cab390737f 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/hss/js.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/hss/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/hss/review/button.phtml b/app/code/Magento/Paypal/view/frontend/templates/hss/review/button.phtml index 176623a44cf..f8eac1ccbe8 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/hss/review/button.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/hss/review/button.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/js/components.phtml b/app/code/Magento/Paypal/view/frontend/templates/js/components.phtml index 35fc306f53b..40fa0217fa8 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/js/components.phtml @@ -1,9 +1,9 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // @codingStandardsIgnoreFile ?> -<?php echo $block->getChildHtml(); ?> \ No newline at end of file +<?php echo $block->getChildHtml(); ?> diff --git a/app/code/Magento/Paypal/view/frontend/templates/partner/logo.phtml b/app/code/Magento/Paypal/view/frontend/templates/partner/logo.phtml index 0a4bcea937b..afd2ee688a9 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/partner/logo.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/partner/logo.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/form.phtml b/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/form.phtml index ca9fc7a3a9f..8ffddbd3eb2 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/form.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/info.phtml b/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/info.phtml index f3d67b90fc4..7e114848918 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/info.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/payflowlink/form.phtml b/app/code/Magento/Paypal/view/frontend/templates/payflowlink/form.phtml index c3721e07165..326595c7863 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/payflowlink/form.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/payflowlink/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/payflowlink/info.phtml b/app/code/Magento/Paypal/view/frontend/templates/payflowlink/info.phtml index eb9f8a9f89c..9323996d680 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/payflowlink/info.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/payflowlink/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/payflowlink/redirect.phtml b/app/code/Magento/Paypal/view/frontend/templates/payflowlink/redirect.phtml index b4f06a58cc7..8feff8b9bfa 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/payflowlink/redirect.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/payflowlink/redirect.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/payment/form/billing/agreement.phtml b/app/code/Magento/Paypal/view/frontend/templates/payment/form/billing/agreement.phtml index 2ac582ca120..debc35d13e8 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/payment/form/billing/agreement.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/payment/form/billing/agreement.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/payment/mark.phtml b/app/code/Magento/Paypal/view/frontend/templates/payment/mark.phtml index 44c1518c08a..f373659308c 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/payment/mark.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/payment/mark.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/templates/payment/redirect.phtml b/app/code/Magento/Paypal/view/frontend/templates/payment/redirect.phtml index d04b5a8dc89..75bced7ee03 100644 --- a/app/code/Magento/Paypal/view/frontend/templates/payment/redirect.phtml +++ b/app/code/Magento/Paypal/view/frontend/templates/payment/redirect.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Paypal/view/frontend/web/js/action/set-payment-method.js b/app/code/Magento/Paypal/view/frontend/web/js/action/set-payment-method.js index 25b2876fc7a..9db78472a4b 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/action/set-payment-method.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/action/set-payment-method.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Paypal/view/frontend/web/js/in-context/billing-agreement.js b/app/code/Magento/Paypal/view/frontend/web/js/in-context/billing-agreement.js index a03512a9b78..41540ebfaed 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/in-context/billing-agreement.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/in-context/billing-agreement.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Paypal/view/frontend/web/js/in-context/button.js b/app/code/Magento/Paypal/view/frontend/web/js/in-context/button.js index 99fb13dec7e..63e265bb02d 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/in-context/button.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/in-context/button.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Paypal/view/frontend/web/js/in-context/express-checkout.js b/app/code/Magento/Paypal/view/frontend/web/js/in-context/express-checkout.js index d70de535812..8aa09a5d8ad 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/in-context/express-checkout.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/in-context/express-checkout.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Paypal/view/frontend/web/js/model/iframe-redirect.js b/app/code/Magento/Paypal/view/frontend/web/js/model/iframe-redirect.js index b64307fdd39..380021b5f69 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/model/iframe-redirect.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/model/iframe-redirect.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Paypal/view/frontend/web/js/model/iframe.js b/app/code/Magento/Paypal/view/frontend/web/js/model/iframe.js index c9c04409a9c..a160875ae2d 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/model/iframe.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/model/iframe.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Paypal/view/frontend/web/js/paypal-checkout.js b/app/code/Magento/Paypal/view/frontend/web/js/paypal-checkout.js index d82e0ba5ae2..0b4f7643cea 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/paypal-checkout.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/paypal-checkout.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/iframe-methods.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/iframe-methods.js index b95c0a7839a..2b8c5cdd7ce 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/iframe-methods.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/iframe-methods.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/in-context/checkout-express.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/in-context/checkout-express.js index 8a29f0c3a6e..580c3f5dec2 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/in-context/checkout-express.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/in-context/checkout-express.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express-bml.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express-bml.js index 3712c4c2a13..2ecb74cf01e 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express-bml.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express-bml.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express.js index 450901b63cd..00571fee88b 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro-method.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro-method.js index f8f19818c3f..33f7a18ac6e 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro-method.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro-method.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro/vault.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro/vault.js index 0143aa5de44..6f4ed291403 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro/vault.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro/vault.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-billing-agreement.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-billing-agreement.js index 856bb408d34..a31d3684ab8 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-billing-agreement.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-billing-agreement.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-abstract.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-abstract.js index c2dd1d8ba8e..965b9a463cb 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-abstract.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-abstract.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-bml.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-bml.js index e84c4b650fb..24ec91835c9 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-bml.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-bml.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express.js index 6ef95c168a4..f69f6d050eb 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/paypal-payments.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/paypal-payments.js index 5d440badefb..cf75c862d2b 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/paypal-payments.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/paypal-payments.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/review/actions/iframe.js b/app/code/Magento/Paypal/view/frontend/web/js/view/review/actions/iframe.js index b56130f3f49..9e5df8143e2 100644 --- a/app/code/Magento/Paypal/view/frontend/web/js/view/review/actions/iframe.js +++ b/app/code/Magento/Paypal/view/frontend/web/js/view/review/actions/iframe.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*browser:true*/ diff --git a/app/code/Magento/Paypal/view/frontend/web/order-review.js b/app/code/Magento/Paypal/view/frontend/web/order-review.js index 4ce2d5a1b8f..5e4d12ecf64 100644 --- a/app/code/Magento/Paypal/view/frontend/web/order-review.js +++ b/app/code/Magento/Paypal/view/frontend/web/order-review.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/express/billing-agreement.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/express/billing-agreement.html index 2e3d9361476..6286ecda188 100644 --- a/app/code/Magento/Paypal/view/frontend/web/template/payment/express/billing-agreement.html +++ b/app/code/Magento/Paypal/view/frontend/web/template/payment/express/billing-agreement.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/iframe-methods.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/iframe-methods.html index eeb69f67997..6f0530caf91 100644 --- a/app/code/Magento/Paypal/view/frontend/web/template/payment/iframe-methods.html +++ b/app/code/Magento/Paypal/view/frontend/web/template/payment/iframe-methods.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express-bml.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express-bml.html index b49a06fb71c..629fd69d1f3 100644 --- a/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express-bml.html +++ b/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express-bml.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express.html index 7c514928500..3986d013330 100644 --- a/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express.html +++ b/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/payflowpro-form.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/payflowpro-form.html index 4d85a3abcca..92069469a82 100644 --- a/app/code/Magento/Paypal/view/frontend/web/template/payment/payflowpro-form.html +++ b/app/code/Magento/Paypal/view/frontend/web/template/payment/payflowpro-form.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-bml.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-bml.html index b49a06fb71c..629fd69d1f3 100644 --- a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-bml.html +++ b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-bml.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-in-context.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-in-context.html index 286a3dcc01e..69cce35d775 100644 --- a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-in-context.html +++ b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-in-context.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express.html index c32d41603dd..262da7ad78b 100644 --- a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express.html +++ b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_billing_agreement-form.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_billing_agreement-form.html index 220717f4ef2..bf29cc67118 100644 --- a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_billing_agreement-form.html +++ b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_billing_agreement-form.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_direct-form.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_direct-form.html index 40f72dce9aa..10bc2d6adaf 100644 --- a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_direct-form.html +++ b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_direct-form.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/Block/Form/Remember.php b/app/code/Magento/Persistent/Block/Form/Remember.php index 5dd2dcac63f..4b9c0bc3f4b 100644 --- a/app/code/Magento/Persistent/Block/Form/Remember.php +++ b/app/code/Magento/Persistent/Block/Form/Remember.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Block\Form; diff --git a/app/code/Magento/Persistent/Block/Header/Additional.php b/app/code/Magento/Persistent/Block/Header/Additional.php index 0abef6dbb62..042dec80f7b 100644 --- a/app/code/Magento/Persistent/Block/Header/Additional.php +++ b/app/code/Magento/Persistent/Block/Header/Additional.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Block\Header; diff --git a/app/code/Magento/Persistent/Controller/Index.php b/app/code/Magento/Persistent/Controller/Index.php index 921e78274d1..8fb4bdd991b 100644 --- a/app/code/Magento/Persistent/Controller/Index.php +++ b/app/code/Magento/Persistent/Controller/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Controller; diff --git a/app/code/Magento/Persistent/Controller/Index/ExpressCheckout.php b/app/code/Magento/Persistent/Controller/Index/ExpressCheckout.php index 0701a3fdddb..d37c66bd459 100644 --- a/app/code/Magento/Persistent/Controller/Index/ExpressCheckout.php +++ b/app/code/Magento/Persistent/Controller/Index/ExpressCheckout.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Controller\Index; diff --git a/app/code/Magento/Persistent/Controller/Index/SaveMethod.php b/app/code/Magento/Persistent/Controller/Index/SaveMethod.php index 2d2f94e797e..1edcd6ee948 100644 --- a/app/code/Magento/Persistent/Controller/Index/SaveMethod.php +++ b/app/code/Magento/Persistent/Controller/Index/SaveMethod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Controller\Index; diff --git a/app/code/Magento/Persistent/Controller/Index/UnsetCookie.php b/app/code/Magento/Persistent/Controller/Index/UnsetCookie.php index abeb7113742..f13aea84d45 100644 --- a/app/code/Magento/Persistent/Controller/Index/UnsetCookie.php +++ b/app/code/Magento/Persistent/Controller/Index/UnsetCookie.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Controller\Index; diff --git a/app/code/Magento/Persistent/Helper/Data.php b/app/code/Magento/Persistent/Helper/Data.php index 0b4afc55b5d..b4c59f09c05 100644 --- a/app/code/Magento/Persistent/Helper/Data.php +++ b/app/code/Magento/Persistent/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Helper/Session.php b/app/code/Magento/Persistent/Helper/Session.php index 9a322541011..a505656d0e1 100644 --- a/app/code/Magento/Persistent/Helper/Session.php +++ b/app/code/Magento/Persistent/Helper/Session.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Helper; diff --git a/app/code/Magento/Persistent/Model/Checkout/AddressDataProcessorPlugin.php b/app/code/Magento/Persistent/Model/Checkout/AddressDataProcessorPlugin.php index 3c8d5a25069..a1bb65cbb61 100644 --- a/app/code/Magento/Persistent/Model/Checkout/AddressDataProcessorPlugin.php +++ b/app/code/Magento/Persistent/Model/Checkout/AddressDataProcessorPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Model\Checkout; diff --git a/app/code/Magento/Persistent/Model/Checkout/ConfigProviderPlugin.php b/app/code/Magento/Persistent/Model/Checkout/ConfigProviderPlugin.php index f1f13ae00f0..0e913f5cb92 100644 --- a/app/code/Magento/Persistent/Model/Checkout/ConfigProviderPlugin.php +++ b/app/code/Magento/Persistent/Model/Checkout/ConfigProviderPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Model\Checkout; diff --git a/app/code/Magento/Persistent/Model/CheckoutConfigProvider.php b/app/code/Magento/Persistent/Model/CheckoutConfigProvider.php index 47c8febb597..798c6f30117 100644 --- a/app/code/Magento/Persistent/Model/CheckoutConfigProvider.php +++ b/app/code/Magento/Persistent/Model/CheckoutConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Model; diff --git a/app/code/Magento/Persistent/Model/Factory.php b/app/code/Magento/Persistent/Model/Factory.php index 19fe0a83f86..527b5ff88a0 100644 --- a/app/code/Magento/Persistent/Model/Factory.php +++ b/app/code/Magento/Persistent/Model/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Model; diff --git a/app/code/Magento/Persistent/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/Persistent/Model/Layout/DepersonalizePlugin.php index e693a48aa72..d68ab83b5f6 100644 --- a/app/code/Magento/Persistent/Model/Layout/DepersonalizePlugin.php +++ b/app/code/Magento/Persistent/Model/Layout/DepersonalizePlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Model\Layout; diff --git a/app/code/Magento/Persistent/Model/Observer.php b/app/code/Magento/Persistent/Model/Observer.php index 392d88a29a5..2a1e878ad35 100644 --- a/app/code/Magento/Persistent/Model/Observer.php +++ b/app/code/Magento/Persistent/Model/Observer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Model; diff --git a/app/code/Magento/Persistent/Model/Persistent/Config.php b/app/code/Magento/Persistent/Model/Persistent/Config.php index 3d85c6868fb..e1849718669 100644 --- a/app/code/Magento/Persistent/Model/Persistent/Config.php +++ b/app/code/Magento/Persistent/Model/Persistent/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Model\Persistent; diff --git a/app/code/Magento/Persistent/Model/Plugin/CustomerData.php b/app/code/Magento/Persistent/Model/Plugin/CustomerData.php index 5d8c073211b..f035224d211 100644 --- a/app/code/Magento/Persistent/Model/Plugin/CustomerData.php +++ b/app/code/Magento/Persistent/Model/Plugin/CustomerData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Model\Plugin; diff --git a/app/code/Magento/Persistent/Model/QuoteManager.php b/app/code/Magento/Persistent/Model/QuoteManager.php index e4dbc68d566..7ec7bb91c07 100644 --- a/app/code/Magento/Persistent/Model/QuoteManager.php +++ b/app/code/Magento/Persistent/Model/QuoteManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Model; diff --git a/app/code/Magento/Persistent/Model/ResourceModel/Session.php b/app/code/Magento/Persistent/Model/ResourceModel/Session.php index b164526b5a0..ccd298e1101 100644 --- a/app/code/Magento/Persistent/Model/ResourceModel/Session.php +++ b/app/code/Magento/Persistent/Model/ResourceModel/Session.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Model\ResourceModel; diff --git a/app/code/Magento/Persistent/Model/Session.php b/app/code/Magento/Persistent/Model/Session.php index 48362971b6b..1c7b44d0c97 100644 --- a/app/code/Magento/Persistent/Model/Session.php +++ b/app/code/Magento/Persistent/Model/Session.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Model; diff --git a/app/code/Magento/Persistent/Observer/ApplyBlockPersistentDataObserver.php b/app/code/Magento/Persistent/Observer/ApplyBlockPersistentDataObserver.php index fa59b58ac21..1160c5f6ac6 100644 --- a/app/code/Magento/Persistent/Observer/ApplyBlockPersistentDataObserver.php +++ b/app/code/Magento/Persistent/Observer/ApplyBlockPersistentDataObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/ApplyPersistentDataObserver.php b/app/code/Magento/Persistent/Observer/ApplyPersistentDataObserver.php index b410cfc6ca8..75e856b339e 100644 --- a/app/code/Magento/Persistent/Observer/ApplyPersistentDataObserver.php +++ b/app/code/Magento/Persistent/Observer/ApplyPersistentDataObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/CheckExpirePersistentQuoteObserver.php b/app/code/Magento/Persistent/Observer/CheckExpirePersistentQuoteObserver.php index 60e3c3e240f..14678b0e526 100644 --- a/app/code/Magento/Persistent/Observer/CheckExpirePersistentQuoteObserver.php +++ b/app/code/Magento/Persistent/Observer/CheckExpirePersistentQuoteObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/ClearExpiredCronJobObserver.php b/app/code/Magento/Persistent/Observer/ClearExpiredCronJobObserver.php index da714e6b247..a043087be4f 100644 --- a/app/code/Magento/Persistent/Observer/ClearExpiredCronJobObserver.php +++ b/app/code/Magento/Persistent/Observer/ClearExpiredCronJobObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/CustomerAuthenticatedEventObserver.php b/app/code/Magento/Persistent/Observer/CustomerAuthenticatedEventObserver.php index 288659f1f97..e7d58add8a4 100644 --- a/app/code/Magento/Persistent/Observer/CustomerAuthenticatedEventObserver.php +++ b/app/code/Magento/Persistent/Observer/CustomerAuthenticatedEventObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/EmulateCustomerObserver.php b/app/code/Magento/Persistent/Observer/EmulateCustomerObserver.php index b68803a50d1..dadf5bc5e9b 100644 --- a/app/code/Magento/Persistent/Observer/EmulateCustomerObserver.php +++ b/app/code/Magento/Persistent/Observer/EmulateCustomerObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/EmulateQuoteObserver.php b/app/code/Magento/Persistent/Observer/EmulateQuoteObserver.php index 448f3bf442c..de471f2a794 100644 --- a/app/code/Magento/Persistent/Observer/EmulateQuoteObserver.php +++ b/app/code/Magento/Persistent/Observer/EmulateQuoteObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/MakePersistentQuoteGuestObserver.php b/app/code/Magento/Persistent/Observer/MakePersistentQuoteGuestObserver.php index bffc9c90e95..6aaf13e1d1e 100644 --- a/app/code/Magento/Persistent/Observer/MakePersistentQuoteGuestObserver.php +++ b/app/code/Magento/Persistent/Observer/MakePersistentQuoteGuestObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/PreventClearCheckoutSessionObserver.php b/app/code/Magento/Persistent/Observer/PreventClearCheckoutSessionObserver.php index 6d8babf5a0c..a592b09d49d 100644 --- a/app/code/Magento/Persistent/Observer/PreventClearCheckoutSessionObserver.php +++ b/app/code/Magento/Persistent/Observer/PreventClearCheckoutSessionObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/PreventExpressCheckoutObserver.php b/app/code/Magento/Persistent/Observer/PreventExpressCheckoutObserver.php index e50de4ef568..62437e0ec2f 100644 --- a/app/code/Magento/Persistent/Observer/PreventExpressCheckoutObserver.php +++ b/app/code/Magento/Persistent/Observer/PreventExpressCheckoutObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/RefreshCustomerData.php b/app/code/Magento/Persistent/Observer/RefreshCustomerData.php index b411efb59be..97d43216025 100644 --- a/app/code/Magento/Persistent/Observer/RefreshCustomerData.php +++ b/app/code/Magento/Persistent/Observer/RefreshCustomerData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/RemovePersistentCookieObserver.php b/app/code/Magento/Persistent/Observer/RemovePersistentCookieObserver.php index 582a21d59be..397afb97b5e 100644 --- a/app/code/Magento/Persistent/Observer/RemovePersistentCookieObserver.php +++ b/app/code/Magento/Persistent/Observer/RemovePersistentCookieObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/RenewCookieObserver.php b/app/code/Magento/Persistent/Observer/RenewCookieObserver.php index 90f9f3bfc77..77a243e5a11 100644 --- a/app/code/Magento/Persistent/Observer/RenewCookieObserver.php +++ b/app/code/Magento/Persistent/Observer/RenewCookieObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/SetLoadPersistentQuoteObserver.php b/app/code/Magento/Persistent/Observer/SetLoadPersistentQuoteObserver.php index 8fb07798b28..6b5ad94d53a 100644 --- a/app/code/Magento/Persistent/Observer/SetLoadPersistentQuoteObserver.php +++ b/app/code/Magento/Persistent/Observer/SetLoadPersistentQuoteObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/SetQuotePersistentDataObserver.php b/app/code/Magento/Persistent/Observer/SetQuotePersistentDataObserver.php index 1e5314b4b97..3b80430a439 100644 --- a/app/code/Magento/Persistent/Observer/SetQuotePersistentDataObserver.php +++ b/app/code/Magento/Persistent/Observer/SetQuotePersistentDataObserver.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/SetRememberMeCheckedStatusObserver.php b/app/code/Magento/Persistent/Observer/SetRememberMeCheckedStatusObserver.php index 0a58459865f..0dd7749d9aa 100644 --- a/app/code/Magento/Persistent/Observer/SetRememberMeCheckedStatusObserver.php +++ b/app/code/Magento/Persistent/Observer/SetRememberMeCheckedStatusObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/SetRememberMeStatusForAjaxLoginObserver.php b/app/code/Magento/Persistent/Observer/SetRememberMeStatusForAjaxLoginObserver.php index b12d30490e7..1fa18722c58 100644 --- a/app/code/Magento/Persistent/Observer/SetRememberMeStatusForAjaxLoginObserver.php +++ b/app/code/Magento/Persistent/Observer/SetRememberMeStatusForAjaxLoginObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/SynchronizePersistentInfoObserver.php b/app/code/Magento/Persistent/Observer/SynchronizePersistentInfoObserver.php index 34fa20fe79c..eb6b2e2970f 100644 --- a/app/code/Magento/Persistent/Observer/SynchronizePersistentInfoObserver.php +++ b/app/code/Magento/Persistent/Observer/SynchronizePersistentInfoObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLoginObserver.php b/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLoginObserver.php index fbc0574327d..c00763a80e0 100644 --- a/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLoginObserver.php +++ b/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLoginObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLogoutObserver.php b/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLogoutObserver.php index 919f014d6c9..3a18b03247e 100644 --- a/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLogoutObserver.php +++ b/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLogoutObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Observer/UpdateCustomerCookiesObserver.php b/app/code/Magento/Persistent/Observer/UpdateCustomerCookiesObserver.php index 0715366bd4c..2ba93e8fb68 100644 --- a/app/code/Magento/Persistent/Observer/UpdateCustomerCookiesObserver.php +++ b/app/code/Magento/Persistent/Observer/UpdateCustomerCookiesObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Observer; diff --git a/app/code/Magento/Persistent/Setup/InstallSchema.php b/app/code/Magento/Persistent/Setup/InstallSchema.php index 89e7d88fbd0..1e057dd0288 100644 --- a/app/code/Magento/Persistent/Setup/InstallSchema.php +++ b/app/code/Magento/Persistent/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Block/Header/AdditionalTest.php b/app/code/Magento/Persistent/Test/Unit/Block/Header/AdditionalTest.php index 08ad9878785..44b494f2a41 100644 --- a/app/code/Magento/Persistent/Test/Unit/Block/Header/AdditionalTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Block/Header/AdditionalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Test\Unit\Block\Header; diff --git a/app/code/Magento/Persistent/Test/Unit/Helper/DataTest.php b/app/code/Magento/Persistent/Test/Unit/Helper/DataTest.php index 72ad4c20192..ca2ffade057 100644 --- a/app/code/Magento/Persistent/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Test\Unit\Helper; diff --git a/app/code/Magento/Persistent/Test/Unit/Model/Checkout/ConfigProviderPluginTest.php b/app/code/Magento/Persistent/Test/Unit/Model/Checkout/ConfigProviderPluginTest.php index f5646293cd1..a6cad96d3af 100644 --- a/app/code/Magento/Persistent/Test/Unit/Model/Checkout/ConfigProviderPluginTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Model/Checkout/ConfigProviderPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Test\Unit\Model\Checkout; diff --git a/app/code/Magento/Persistent/Test/Unit/Model/FactoryTest.php b/app/code/Magento/Persistent/Test/Unit/Model/FactoryTest.php index 4674a4f63d1..e02dd9e8b04 100644 --- a/app/code/Magento/Persistent/Test/Unit/Model/FactoryTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Model/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Test\Unit\Model; diff --git a/app/code/Magento/Persistent/Test/Unit/Model/Layout/DepersonalizePluginTest.php b/app/code/Magento/Persistent/Test/Unit/Model/Layout/DepersonalizePluginTest.php index 259916447fe..7f03ed07097 100644 --- a/app/code/Magento/Persistent/Test/Unit/Model/Layout/DepersonalizePluginTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Model/Layout/DepersonalizePluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Test\Unit\Model\Layout; diff --git a/app/code/Magento/Persistent/Test/Unit/Model/Plugin/CustomerDataTest.php b/app/code/Magento/Persistent/Test/Unit/Model/Plugin/CustomerDataTest.php index 317e7c2a677..283240f9cb4 100644 --- a/app/code/Magento/Persistent/Test/Unit/Model/Plugin/CustomerDataTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Model/Plugin/CustomerDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Model/QuoteManagerTest.php b/app/code/Magento/Persistent/Test/Unit/Model/QuoteManagerTest.php index 166f10c510e..379c56cc032 100644 --- a/app/code/Magento/Persistent/Test/Unit/Model/QuoteManagerTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Model/QuoteManagerTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Model/SessionTest.php b/app/code/Magento/Persistent/Test/Unit/Model/SessionTest.php index 9ba388d287b..1dee47d0d76 100644 --- a/app/code/Magento/Persistent/Test/Unit/Model/SessionTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Model/SessionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Test\Unit\Model; diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/ApplyBlockPersistentDataObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/ApplyBlockPersistentDataObserverTest.php index 287c9cf7244..4b92d1f18fb 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/ApplyBlockPersistentDataObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/ApplyBlockPersistentDataObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/ApplyPersistentDataObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/ApplyPersistentDataObserverTest.php index e2d919854ca..6077e36738a 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/ApplyPersistentDataObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/ApplyPersistentDataObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/CheckExpirePersistentQuoteObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/CheckExpirePersistentQuoteObserverTest.php index 006e2277a5a..c6c72314218 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/CheckExpirePersistentQuoteObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/CheckExpirePersistentQuoteObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/ClearExpiredCronJobObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/ClearExpiredCronJobObserverTest.php index fa5e36ce0a7..b121f61dc86 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/ClearExpiredCronJobObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/ClearExpiredCronJobObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/CustomerAuthenticatedEventObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/CustomerAuthenticatedEventObserverTest.php index cae66b29d19..a7b42aa60d5 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/CustomerAuthenticatedEventObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/CustomerAuthenticatedEventObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/EmulateCustomerObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/EmulateCustomerObserverTest.php index 40f8bf9d13a..83e9144dcb6 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/EmulateCustomerObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/EmulateCustomerObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/EmulateQuoteObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/EmulateQuoteObserverTest.php index 038e9db2e67..effd024e848 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/EmulateQuoteObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/EmulateQuoteObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/MakePersistentQuoteGuestObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/MakePersistentQuoteGuestObserverTest.php index 45cf296757e..b76414e4670 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/MakePersistentQuoteGuestObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/MakePersistentQuoteGuestObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/PreventClearCheckoutSessionObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/PreventClearCheckoutSessionObserverTest.php index 183f9dc7245..970af722296 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/PreventClearCheckoutSessionObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/PreventClearCheckoutSessionObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/PreventExpressCheckoutObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/PreventExpressCheckoutObserverTest.php index 8bdfe68c88b..c3111b74814 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/PreventExpressCheckoutObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/PreventExpressCheckoutObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Test\Unit\Observer; diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/RefreshCustomerDataTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/RefreshCustomerDataTest.php index b660c448179..c6ca3f7d341 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/RefreshCustomerDataTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/RefreshCustomerDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Persistent\Test\Unit\Observer; diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/RemovePersistentCookieObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/RemovePersistentCookieObserverTest.php index 5c4b955e822..8e729f192cb 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/RemovePersistentCookieObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/RemovePersistentCookieObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/RenewCookieObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/RenewCookieObserverTest.php index 14615ad96f3..c0b6d0e0591 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/RenewCookieObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/RenewCookieObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/SetLoadPersistentQuoteObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/SetLoadPersistentQuoteObserverTest.php index c3a74e4692a..d36c5c189dc 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/SetLoadPersistentQuoteObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/SetLoadPersistentQuoteObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/SetQuotePersistentDataObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/SetQuotePersistentDataObserverTest.php index 32fa552307a..8884a6546eb 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/SetQuotePersistentDataObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/SetQuotePersistentDataObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/SetRememberMeCheckedStatusObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/SetRememberMeCheckedStatusObserverTest.php index 9d6eb043083..3b3a5adfd26 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/SetRememberMeCheckedStatusObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/SetRememberMeCheckedStatusObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentInfoObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentInfoObserverTest.php index 4da52ec1714..a9fe6c20595 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentInfoObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentInfoObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentOnLogoutObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentOnLogoutObserverTest.php index fa1c17a3df1..faf0920b82b 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentOnLogoutObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentOnLogoutObserverTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/UpdateCustomerCookiesObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/UpdateCustomerCookiesObserverTest.php index 931fb64164f..ca50d839db8 100644 --- a/app/code/Magento/Persistent/Test/Unit/Observer/UpdateCustomerCookiesObserverTest.php +++ b/app/code/Magento/Persistent/Test/Unit/Observer/UpdateCustomerCookiesObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/etc/acl.xml b/app/code/Magento/Persistent/etc/acl.xml index 59c415151d6..294c3afcf8a 100644 --- a/app/code/Magento/Persistent/etc/acl.xml +++ b/app/code/Magento/Persistent/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/adminhtml/system.xml b/app/code/Magento/Persistent/etc/adminhtml/system.xml index 06a0579896c..e88696da85e 100644 --- a/app/code/Magento/Persistent/etc/adminhtml/system.xml +++ b/app/code/Magento/Persistent/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/config.xml b/app/code/Magento/Persistent/etc/config.xml index 9c063b06453..bf3334d42d2 100644 --- a/app/code/Magento/Persistent/etc/config.xml +++ b/app/code/Magento/Persistent/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/crontab.xml b/app/code/Magento/Persistent/etc/crontab.xml index ed2c419ded9..9c770f3c051 100644 --- a/app/code/Magento/Persistent/etc/crontab.xml +++ b/app/code/Magento/Persistent/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/di.xml b/app/code/Magento/Persistent/etc/di.xml index dbea0991b02..393c1f4f72e 100644 --- a/app/code/Magento/Persistent/etc/di.xml +++ b/app/code/Magento/Persistent/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/extension_attributes.xml b/app/code/Magento/Persistent/etc/extension_attributes.xml index f359057bd63..001cd86d0a8 100644 --- a/app/code/Magento/Persistent/etc/extension_attributes.xml +++ b/app/code/Magento/Persistent/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/frontend/di.xml b/app/code/Magento/Persistent/etc/frontend/di.xml index f1f9a6a411d..f957d3f6d61 100644 --- a/app/code/Magento/Persistent/etc/frontend/di.xml +++ b/app/code/Magento/Persistent/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/frontend/events.xml b/app/code/Magento/Persistent/etc/frontend/events.xml index 80b76bcdfd9..a58760e2400 100644 --- a/app/code/Magento/Persistent/etc/frontend/events.xml +++ b/app/code/Magento/Persistent/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/frontend/routes.xml b/app/code/Magento/Persistent/etc/frontend/routes.xml index 7d58c1fb97d..2aa6d92d8b2 100644 --- a/app/code/Magento/Persistent/etc/frontend/routes.xml +++ b/app/code/Magento/Persistent/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Persistent" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Persistent/etc/module.xml b/app/code/Magento/Persistent/etc/module.xml index 97febd68b4d..857850e673a 100644 --- a/app/code/Magento/Persistent/etc/module.xml +++ b/app/code/Magento/Persistent/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/persistent.xml b/app/code/Magento/Persistent/etc/persistent.xml index b4b87cb8e76..7fdcc8c17da 100644 --- a/app/code/Magento/Persistent/etc/persistent.xml +++ b/app/code/Magento/Persistent/etc/persistent.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/persistent.xsd b/app/code/Magento/Persistent/etc/persistent.xsd index 133f0e6b83d..154eb40fb6a 100644 --- a/app/code/Magento/Persistent/etc/persistent.xsd +++ b/app/code/Magento/Persistent/etc/persistent.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/webapi_rest/events.xml b/app/code/Magento/Persistent/etc/webapi_rest/events.xml index d41dabba6e0..d3d15b9e996 100644 --- a/app/code/Magento/Persistent/etc/webapi_rest/events.xml +++ b/app/code/Magento/Persistent/etc/webapi_rest/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/etc/webapi_soap/events.xml b/app/code/Magento/Persistent/etc/webapi_soap/events.xml index d41dabba6e0..d3d15b9e996 100644 --- a/app/code/Magento/Persistent/etc/webapi_soap/events.xml +++ b/app/code/Magento/Persistent/etc/webapi_soap/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/registration.php b/app/code/Magento/Persistent/registration.php index 541e4899813..f6d87c00771 100644 --- a/app/code/Magento/Persistent/registration.php +++ b/app/code/Magento/Persistent/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/view/frontend/layout/customer_account_create.xml b/app/code/Magento/Persistent/view/frontend/layout/customer_account_create.xml index a94b59c9ff6..c58aa117907 100644 --- a/app/code/Magento/Persistent/view/frontend/layout/customer_account_create.xml +++ b/app/code/Magento/Persistent/view/frontend/layout/customer_account_create.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/view/frontend/layout/customer_account_login.xml b/app/code/Magento/Persistent/view/frontend/layout/customer_account_login.xml index a94b59c9ff6..c58aa117907 100644 --- a/app/code/Magento/Persistent/view/frontend/layout/customer_account_login.xml +++ b/app/code/Magento/Persistent/view/frontend/layout/customer_account_login.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Persistent/view/frontend/templates/remember_me.phtml b/app/code/Magento/Persistent/view/frontend/templates/remember_me.phtml index f4b3ec41cb3..415acb580ee 100644 --- a/app/code/Magento/Persistent/view/frontend/templates/remember_me.phtml +++ b/app/code/Magento/Persistent/view/frontend/templates/remember_me.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Persistent/view/frontend/web/js/view/remember-me.js b/app/code/Magento/Persistent/view/frontend/web/js/view/remember-me.js index 7d03e5983c2..f6c45d21eef 100644 --- a/app/code/Magento/Persistent/view/frontend/web/js/view/remember-me.js +++ b/app/code/Magento/Persistent/view/frontend/web/js/view/remember-me.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Persistent/view/frontend/web/template/remember-me.html b/app/code/Magento/Persistent/view/frontend/web/template/remember-me.html index 760f7e6b5bb..d6b083bc215 100644 --- a/app/code/Magento/Persistent/view/frontend/web/template/remember-me.html +++ b/app/code/Magento/Persistent/view/frontend/web/template/remember-me.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductAlert/Block/Email/AbstractEmail.php b/app/code/Magento/ProductAlert/Block/Email/AbstractEmail.php index d92c1711f82..5d704be9de4 100644 --- a/app/code/Magento/ProductAlert/Block/Email/AbstractEmail.php +++ b/app/code/Magento/ProductAlert/Block/Email/AbstractEmail.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductAlert/Block/Email/Price.php b/app/code/Magento/ProductAlert/Block/Email/Price.php index 838ef893787..0c824cb572d 100644 --- a/app/code/Magento/ProductAlert/Block/Email/Price.php +++ b/app/code/Magento/ProductAlert/Block/Email/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Block\Email; diff --git a/app/code/Magento/ProductAlert/Block/Email/Stock.php b/app/code/Magento/ProductAlert/Block/Email/Stock.php index ce26cfcb26a..a2187bbd34f 100644 --- a/app/code/Magento/ProductAlert/Block/Email/Stock.php +++ b/app/code/Magento/ProductAlert/Block/Email/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Block\Email; diff --git a/app/code/Magento/ProductAlert/Block/Product/View.php b/app/code/Magento/ProductAlert/Block/Product/View.php index 01f52c45ca9..3b010a62f48 100644 --- a/app/code/Magento/ProductAlert/Block/Product/View.php +++ b/app/code/Magento/ProductAlert/Block/Product/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Block\Product; diff --git a/app/code/Magento/ProductAlert/Block/Product/View/Price.php b/app/code/Magento/ProductAlert/Block/Product/View/Price.php index 930c1a61de6..3e87f3a2498 100644 --- a/app/code/Magento/ProductAlert/Block/Product/View/Price.php +++ b/app/code/Magento/ProductAlert/Block/Product/View/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Block\Product\View; diff --git a/app/code/Magento/ProductAlert/Block/Product/View/Stock.php b/app/code/Magento/ProductAlert/Block/Product/View/Stock.php index 4a8902059ad..ee01fa87849 100644 --- a/app/code/Magento/ProductAlert/Block/Product/View/Stock.php +++ b/app/code/Magento/ProductAlert/Block/Product/View/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Block\Product\View; diff --git a/app/code/Magento/ProductAlert/Controller/Add.php b/app/code/Magento/ProductAlert/Controller/Add.php index 36e175129a6..ddecd29af82 100644 --- a/app/code/Magento/ProductAlert/Controller/Add.php +++ b/app/code/Magento/ProductAlert/Controller/Add.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Controller; diff --git a/app/code/Magento/ProductAlert/Controller/Add/Price.php b/app/code/Magento/ProductAlert/Controller/Add/Price.php index 1095a7633fd..c7753ae23cc 100644 --- a/app/code/Magento/ProductAlert/Controller/Add/Price.php +++ b/app/code/Magento/ProductAlert/Controller/Add/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Controller\Add; diff --git a/app/code/Magento/ProductAlert/Controller/Add/Stock.php b/app/code/Magento/ProductAlert/Controller/Add/Stock.php index 29069fb1b1b..13cd6449dca 100644 --- a/app/code/Magento/ProductAlert/Controller/Add/Stock.php +++ b/app/code/Magento/ProductAlert/Controller/Add/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Controller\Add; diff --git a/app/code/Magento/ProductAlert/Controller/Add/TestObserver.php b/app/code/Magento/ProductAlert/Controller/Add/TestObserver.php index ed39a7173ad..3e66c3de477 100644 --- a/app/code/Magento/ProductAlert/Controller/Add/TestObserver.php +++ b/app/code/Magento/ProductAlert/Controller/Add/TestObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Controller\Add; diff --git a/app/code/Magento/ProductAlert/Controller/Unsubscribe.php b/app/code/Magento/ProductAlert/Controller/Unsubscribe.php index 909dbd46e4d..674b3de272c 100644 --- a/app/code/Magento/ProductAlert/Controller/Unsubscribe.php +++ b/app/code/Magento/ProductAlert/Controller/Unsubscribe.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Controller; diff --git a/app/code/Magento/ProductAlert/Controller/Unsubscribe/Price.php b/app/code/Magento/ProductAlert/Controller/Unsubscribe/Price.php index c2a1d0633a4..d4d6a1aa8a5 100644 --- a/app/code/Magento/ProductAlert/Controller/Unsubscribe/Price.php +++ b/app/code/Magento/ProductAlert/Controller/Unsubscribe/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Controller\Unsubscribe; diff --git a/app/code/Magento/ProductAlert/Controller/Unsubscribe/PriceAll.php b/app/code/Magento/ProductAlert/Controller/Unsubscribe/PriceAll.php index 2fae8d242c7..7986ef92f6f 100644 --- a/app/code/Magento/ProductAlert/Controller/Unsubscribe/PriceAll.php +++ b/app/code/Magento/ProductAlert/Controller/Unsubscribe/PriceAll.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Controller\Unsubscribe; diff --git a/app/code/Magento/ProductAlert/Controller/Unsubscribe/Stock.php b/app/code/Magento/ProductAlert/Controller/Unsubscribe/Stock.php index 12e770e2b95..857a7dcf24b 100644 --- a/app/code/Magento/ProductAlert/Controller/Unsubscribe/Stock.php +++ b/app/code/Magento/ProductAlert/Controller/Unsubscribe/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Controller\Unsubscribe; diff --git a/app/code/Magento/ProductAlert/Controller/Unsubscribe/StockAll.php b/app/code/Magento/ProductAlert/Controller/Unsubscribe/StockAll.php index 4752ea8a439..de4df459586 100644 --- a/app/code/Magento/ProductAlert/Controller/Unsubscribe/StockAll.php +++ b/app/code/Magento/ProductAlert/Controller/Unsubscribe/StockAll.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Controller\Unsubscribe; diff --git a/app/code/Magento/ProductAlert/Helper/Data.php b/app/code/Magento/ProductAlert/Helper/Data.php index 59f4b9cadea..7ce67ebe186 100644 --- a/app/code/Magento/ProductAlert/Helper/Data.php +++ b/app/code/Magento/ProductAlert/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Helper; diff --git a/app/code/Magento/ProductAlert/Model/Email.php b/app/code/Magento/ProductAlert/Model/Email.php index b63fb6058bd..fdf20b389f6 100644 --- a/app/code/Magento/ProductAlert/Model/Email.php +++ b/app/code/Magento/ProductAlert/Model/Email.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Model; diff --git a/app/code/Magento/ProductAlert/Model/Observer.php b/app/code/Magento/ProductAlert/Model/Observer.php index 1888c2acccf..67e762356e1 100644 --- a/app/code/Magento/ProductAlert/Model/Observer.php +++ b/app/code/Magento/ProductAlert/Model/Observer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Model; diff --git a/app/code/Magento/ProductAlert/Model/Price.php b/app/code/Magento/ProductAlert/Model/Price.php index c9d22d499db..0414fc05c30 100644 --- a/app/code/Magento/ProductAlert/Model/Price.php +++ b/app/code/Magento/ProductAlert/Model/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Model; diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/AbstractResource.php b/app/code/Magento/ProductAlert/Model/ResourceModel/AbstractResource.php index 985823fccab..6a1a1cffb69 100644 --- a/app/code/Magento/ProductAlert/Model/ResourceModel/AbstractResource.php +++ b/app/code/Magento/ProductAlert/Model/ResourceModel/AbstractResource.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Model\ResourceModel; diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Price.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Price.php index 984639b30df..d59b1933a21 100644 --- a/app/code/Magento/ProductAlert/Model/ResourceModel/Price.php +++ b/app/code/Magento/ProductAlert/Model/ResourceModel/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Collection.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Collection.php index b3f8b10e5f5..9bc1d1362e7 100644 --- a/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Collection.php +++ b/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Model\ResourceModel\Price; diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Customer/Collection.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Customer/Collection.php index 9b303341ff3..88752f532d7 100644 --- a/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Customer/Collection.php +++ b/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Customer/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Model\ResourceModel\Price\Customer; diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Stock.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Stock.php index 5fb2a685d75..157516a39e0 100644 --- a/app/code/Magento/ProductAlert/Model/ResourceModel/Stock.php +++ b/app/code/Magento/ProductAlert/Model/ResourceModel/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Collection.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Collection.php index 1b9dec78dcc..43e39bf500b 100644 --- a/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Collection.php +++ b/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Model\ResourceModel\Stock; diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Customer/Collection.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Customer/Collection.php index e5dbb56d215..0f3a7591a3b 100644 --- a/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Customer/Collection.php +++ b/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Customer/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Model\ResourceModel\Stock\Customer; diff --git a/app/code/Magento/ProductAlert/Model/Stock.php b/app/code/Magento/ProductAlert/Model/Stock.php index 26d87e1329a..434239a4bd8 100644 --- a/app/code/Magento/ProductAlert/Model/Stock.php +++ b/app/code/Magento/ProductAlert/Model/Stock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Model; diff --git a/app/code/Magento/ProductAlert/Setup/InstallSchema.php b/app/code/Magento/ProductAlert/Setup/InstallSchema.php index 3aa5a379fc4..a9fb914d237 100644 --- a/app/code/Magento/ProductAlert/Setup/InstallSchema.php +++ b/app/code/Magento/ProductAlert/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductAlert/Setup/Recurring.php b/app/code/Magento/ProductAlert/Setup/Recurring.php index e6b8cc1a3a5..ddd1e5d9562 100644 --- a/app/code/Magento/ProductAlert/Setup/Recurring.php +++ b/app/code/Magento/ProductAlert/Setup/Recurring.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Setup; diff --git a/app/code/Magento/ProductAlert/Test/Unit/Block/Email/StockTest.php b/app/code/Magento/ProductAlert/Test/Unit/Block/Email/StockTest.php index 46608c3db1b..f8183ef28ba 100644 --- a/app/code/Magento/ProductAlert/Test/Unit/Block/Email/StockTest.php +++ b/app/code/Magento/ProductAlert/Test/Unit/Block/Email/StockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Test\Unit\Block\Email; diff --git a/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/PriceTest.php b/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/PriceTest.php index b7859ca32ee..f32e214de8c 100644 --- a/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/PriceTest.php +++ b/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Test\Unit\Block\Product\View; diff --git a/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/StockTest.php b/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/StockTest.php index d5880f58240..db3855669b8 100644 --- a/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/StockTest.php +++ b/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/StockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Test\Unit\Block\Product\View; diff --git a/app/code/Magento/ProductAlert/Test/Unit/Block/Product/ViewTest.php b/app/code/Magento/ProductAlert/Test/Unit/Block/Product/ViewTest.php index 97b4a6f0a1d..35b0ad3cb4a 100644 --- a/app/code/Magento/ProductAlert/Test/Unit/Block/Product/ViewTest.php +++ b/app/code/Magento/ProductAlert/Test/Unit/Block/Product/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Test\Unit\Block\Product; diff --git a/app/code/Magento/ProductAlert/Test/Unit/Model/ObserverTest.php b/app/code/Magento/ProductAlert/Test/Unit/Model/ObserverTest.php index 84aa800521b..07e8c9bbfe3 100644 --- a/app/code/Magento/ProductAlert/Test/Unit/Model/ObserverTest.php +++ b/app/code/Magento/ProductAlert/Test/Unit/Model/ObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductAlert\Test\Unit\Model; diff --git a/app/code/Magento/ProductAlert/etc/adminhtml/system.xml b/app/code/Magento/ProductAlert/etc/adminhtml/system.xml index 957e7ac6264..228839e7675 100644 --- a/app/code/Magento/ProductAlert/etc/adminhtml/system.xml +++ b/app/code/Magento/ProductAlert/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductAlert/etc/config.xml b/app/code/Magento/ProductAlert/etc/config.xml index 844ffbd3b0e..55aa0f8a1d1 100644 --- a/app/code/Magento/ProductAlert/etc/config.xml +++ b/app/code/Magento/ProductAlert/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductAlert/etc/crontab.xml b/app/code/Magento/ProductAlert/etc/crontab.xml index 4871423b15f..dba69f2cfdb 100644 --- a/app/code/Magento/ProductAlert/etc/crontab.xml +++ b/app/code/Magento/ProductAlert/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductAlert/etc/di.xml b/app/code/Magento/ProductAlert/etc/di.xml index d5c81adce46..79543279505 100644 --- a/app/code/Magento/ProductAlert/etc/di.xml +++ b/app/code/Magento/ProductAlert/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductAlert/etc/email_templates.xml b/app/code/Magento/ProductAlert/etc/email_templates.xml index 413f7767a60..52954a8f1d1 100644 --- a/app/code/Magento/ProductAlert/etc/email_templates.xml +++ b/app/code/Magento/ProductAlert/etc/email_templates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductAlert/etc/frontend/routes.xml b/app/code/Magento/ProductAlert/etc/frontend/routes.xml index 3a85bab2be3..aaee7ac541a 100644 --- a/app/code/Magento/ProductAlert/etc/frontend/routes.xml +++ b/app/code/Magento/ProductAlert/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_ProductAlert" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/ProductAlert/etc/module.xml b/app/code/Magento/ProductAlert/etc/module.xml index b30e75bed9c..84f80624425 100644 --- a/app/code/Magento/ProductAlert/etc/module.xml +++ b/app/code/Magento/ProductAlert/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductAlert/registration.php b/app/code/Magento/ProductAlert/registration.php index c8eb9a8b3fd..c800f6a22c6 100644 --- a/app/code/Magento/ProductAlert/registration.php +++ b/app/code/Magento/ProductAlert/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductAlert/view/adminhtml/email/cron_error.html b/app/code/Magento/ProductAlert/view/adminhtml/email/cron_error.html index 4d81bfc62f0..6aabfa348ea 100644 --- a/app/code/Magento/ProductAlert/view/adminhtml/email/cron_error.html +++ b/app/code/Magento/ProductAlert/view/adminhtml/email/cron_error.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductAlert/view/frontend/email/price_alert.html b/app/code/Magento/ProductAlert/view/frontend/email/price_alert.html index 7238a645f16..60353a8007a 100644 --- a/app/code/Magento/ProductAlert/view/frontend/email/price_alert.html +++ b/app/code/Magento/ProductAlert/view/frontend/email/price_alert.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductAlert/view/frontend/email/stock_alert.html b/app/code/Magento/ProductAlert/view/frontend/email/stock_alert.html index 50aa44fd4b5..d2688ed77b9 100644 --- a/app/code/Magento/ProductAlert/view/frontend/email/stock_alert.html +++ b/app/code/Magento/ProductAlert/view/frontend/email/stock_alert.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductAlert/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/ProductAlert/view/frontend/layout/catalog_product_view.xml index 8305a324697..cb3a762cfa5 100644 --- a/app/code/Magento/ProductAlert/view/frontend/layout/catalog_product_view.xml +++ b/app/code/Magento/ProductAlert/view/frontend/layout/catalog_product_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductAlert/view/frontend/templates/email/price.phtml b/app/code/Magento/ProductAlert/view/frontend/templates/email/price.phtml index 06cd685ce6f..ed4529b74f2 100644 --- a/app/code/Magento/ProductAlert/view/frontend/templates/email/price.phtml +++ b/app/code/Magento/ProductAlert/view/frontend/templates/email/price.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductAlert/view/frontend/templates/email/stock.phtml b/app/code/Magento/ProductAlert/view/frontend/templates/email/stock.phtml index 57b830c8126..470a7084804 100644 --- a/app/code/Magento/ProductAlert/view/frontend/templates/email/stock.phtml +++ b/app/code/Magento/ProductAlert/view/frontend/templates/email/stock.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductAlert/view/frontend/templates/product/view.phtml b/app/code/Magento/ProductAlert/view/frontend/templates/product/view.phtml index 3847759e19c..174e782ae73 100644 --- a/app/code/Magento/ProductAlert/view/frontend/templates/product/view.phtml +++ b/app/code/Magento/ProductAlert/view/frontend/templates/product/view.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/ProductVideo/Block/Adminhtml/Product/Edit/NewVideo.php b/app/code/Magento/ProductVideo/Block/Adminhtml/Product/Edit/NewVideo.php index 1f696c62917..581015f4cff 100644 --- a/app/code/Magento/ProductVideo/Block/Adminhtml/Product/Edit/NewVideo.php +++ b/app/code/Magento/ProductVideo/Block/Adminhtml/Product/Edit/NewVideo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Block\Adminhtml\Product\Edit; diff --git a/app/code/Magento/ProductVideo/Block/Product/View/Gallery.php b/app/code/Magento/ProductVideo/Block/Product/View/Gallery.php index 1731fb55fe7..7453b7ff157 100644 --- a/app/code/Magento/ProductVideo/Block/Product/View/Gallery.php +++ b/app/code/Magento/ProductVideo/Block/Product/View/Gallery.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductVideo/Controller/Adminhtml/Product/Gallery/RetrieveImage.php b/app/code/Magento/ProductVideo/Controller/Adminhtml/Product/Gallery/RetrieveImage.php index 7a087f76987..071f4c507a4 100644 --- a/app/code/Magento/ProductVideo/Controller/Adminhtml/Product/Gallery/RetrieveImage.php +++ b/app/code/Magento/ProductVideo/Controller/Adminhtml/Product/Gallery/RetrieveImage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Controller\Adminhtml\Product\Gallery; diff --git a/app/code/Magento/ProductVideo/Helper/Media.php b/app/code/Magento/ProductVideo/Helper/Media.php index 5260ce574a5..7078db5f249 100644 --- a/app/code/Magento/ProductVideo/Helper/Media.php +++ b/app/code/Magento/ProductVideo/Helper/Media.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Helper; diff --git a/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/AbstractHandler.php b/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/AbstractHandler.php index 936949fe568..7516eeb815e 100644 --- a/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/AbstractHandler.php +++ b/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/AbstractHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Model\Plugin\Catalog\Product\Gallery; diff --git a/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/CreateHandler.php b/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/CreateHandler.php index 64ea65cd430..a84f66c81cf 100644 --- a/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/CreateHandler.php +++ b/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/CreateHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Model\Plugin\Catalog\Product\Gallery; diff --git a/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/ReadHandler.php b/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/ReadHandler.php index 73bfd9e3bd5..977eda39f6d 100644 --- a/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/ReadHandler.php +++ b/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Model\Plugin\Catalog\Product\Gallery; diff --git a/app/code/Magento/ProductVideo/Model/Plugin/ExternalVideoResourceBackend.php b/app/code/Magento/ProductVideo/Model/Plugin/ExternalVideoResourceBackend.php index db5d3d17bdd..70e10559d61 100644 --- a/app/code/Magento/ProductVideo/Model/Plugin/ExternalVideoResourceBackend.php +++ b/app/code/Magento/ProductVideo/Model/Plugin/ExternalVideoResourceBackend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Model\Plugin; diff --git a/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/ExternalVideoEntryConverter.php b/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/ExternalVideoEntryConverter.php index 92044aa7f8d..83c9df25e9f 100644 --- a/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/ExternalVideoEntryConverter.php +++ b/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/ExternalVideoEntryConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/VideoEntry.php b/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/VideoEntry.php index 43fdbebb1ea..14fd1231e0d 100644 --- a/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/VideoEntry.php +++ b/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/VideoEntry.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Model\Product\Attribute\Media; diff --git a/app/code/Magento/ProductVideo/Model/ResourceModel/Video.php b/app/code/Magento/ProductVideo/Model/ResourceModel/Video.php index af309c9913d..0ee0a2a8020 100644 --- a/app/code/Magento/ProductVideo/Model/ResourceModel/Video.php +++ b/app/code/Magento/ProductVideo/Model/ResourceModel/Video.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Model\ResourceModel; diff --git a/app/code/Magento/ProductVideo/Model/VideoExtractor.php b/app/code/Magento/ProductVideo/Model/VideoExtractor.php index 1a680ff5d51..17f68b10b20 100644 --- a/app/code/Magento/ProductVideo/Model/VideoExtractor.php +++ b/app/code/Magento/ProductVideo/Model/VideoExtractor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Model; diff --git a/app/code/Magento/ProductVideo/Observer/ChangeTemplateObserver.php b/app/code/Magento/ProductVideo/Observer/ChangeTemplateObserver.php index 4c5b87b1cfd..c4799d66212 100644 --- a/app/code/Magento/ProductVideo/Observer/ChangeTemplateObserver.php +++ b/app/code/Magento/ProductVideo/Observer/ChangeTemplateObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductVideo/Setup/InstallSchema.php b/app/code/Magento/ProductVideo/Setup/InstallSchema.php index 4dbdfdb3835..36e8b607dbe 100644 --- a/app/code/Magento/ProductVideo/Setup/InstallSchema.php +++ b/app/code/Magento/ProductVideo/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Setup; diff --git a/app/code/Magento/ProductVideo/Test/Unit/Block/Adminhtml/Product/Edit/NewVideoTest.php b/app/code/Magento/ProductVideo/Test/Unit/Block/Adminhtml/Product/Edit/NewVideoTest.php index 6a791023b4a..f4f97c36846 100644 --- a/app/code/Magento/ProductVideo/Test/Unit/Block/Adminhtml/Product/Edit/NewVideoTest.php +++ b/app/code/Magento/ProductVideo/Test/Unit/Block/Adminhtml/Product/Edit/NewVideoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Test\Unit\Block\Adminhtml\Product\Edit; diff --git a/app/code/Magento/ProductVideo/Test/Unit/Block/Product/View/GalleryTest.php b/app/code/Magento/ProductVideo/Test/Unit/Block/Product/View/GalleryTest.php index 64a4fccbfa6..a398a626d5e 100644 --- a/app/code/Magento/ProductVideo/Test/Unit/Block/Product/View/GalleryTest.php +++ b/app/code/Magento/ProductVideo/Test/Unit/Block/Product/View/GalleryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Test\Unit\Block\Product\View; diff --git a/app/code/Magento/ProductVideo/Test/Unit/Controller/Adminhtml/Product/Gallery/RetrieveImageTest.php b/app/code/Magento/ProductVideo/Test/Unit/Controller/Adminhtml/Product/Gallery/RetrieveImageTest.php index 64149d529e5..f6fbb2621e1 100644 --- a/app/code/Magento/ProductVideo/Test/Unit/Controller/Adminhtml/Product/Gallery/RetrieveImageTest.php +++ b/app/code/Magento/ProductVideo/Test/Unit/Controller/Adminhtml/Product/Gallery/RetrieveImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Test\Unit\Controller\Adminhtml\Product\Gallery; diff --git a/app/code/Magento/ProductVideo/Test/Unit/Helper/MediaTest.php b/app/code/Magento/ProductVideo/Test/Unit/Helper/MediaTest.php index 0fff02167ab..377aafa38fd 100644 --- a/app/code/Magento/ProductVideo/Test/Unit/Helper/MediaTest.php +++ b/app/code/Magento/ProductVideo/Test/Unit/Helper/MediaTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Test\Unit\Helper; diff --git a/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/CreateHandlerTest.php b/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/CreateHandlerTest.php index 6f230feff36..9f08eb46aa9 100644 --- a/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/CreateHandlerTest.php +++ b/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/CreateHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Test\Unit\Model\Plugin\Catalog\Product\Gallery; diff --git a/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/ReadHandlerTest.php b/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/ReadHandlerTest.php index 26c6e914ef1..e9685028836 100644 --- a/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/ReadHandlerTest.php +++ b/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/ReadHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Test\Unit\Model\Plugin\Catalog\Product\Gallery; diff --git a/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/ExternalVideoEntryConverterTest.php b/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/ExternalVideoEntryConverterTest.php index d10bb6eb253..6c01085d04b 100644 --- a/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/ExternalVideoEntryConverterTest.php +++ b/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/ExternalVideoEntryConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/VideoEntryTest.php b/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/VideoEntryTest.php index 9d7e9e9a939..859a034e874 100644 --- a/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/VideoEntryTest.php +++ b/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/VideoEntryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\ProductVideo\Test\Unit\Model\Product\Attribute\Media; diff --git a/app/code/Magento/ProductVideo/Test/Unit/Observer/ChangeTemplateObserverTest.php b/app/code/Magento/ProductVideo/Test/Unit/Observer/ChangeTemplateObserverTest.php index e27dc9a6274..7188edbe609 100644 --- a/app/code/Magento/ProductVideo/Test/Unit/Observer/ChangeTemplateObserverTest.php +++ b/app/code/Magento/ProductVideo/Test/Unit/Observer/ChangeTemplateObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductVideo/etc/adminhtml/events.xml b/app/code/Magento/ProductVideo/etc/adminhtml/events.xml index 4eb57c1ae38..40bcb7ceb89 100644 --- a/app/code/Magento/ProductVideo/etc/adminhtml/events.xml +++ b/app/code/Magento/ProductVideo/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductVideo/etc/adminhtml/routes.xml b/app/code/Magento/ProductVideo/etc/adminhtml/routes.xml index 64535db0906..4a6b81f1338 100644 --- a/app/code/Magento/ProductVideo/etc/adminhtml/routes.xml +++ b/app/code/Magento/ProductVideo/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductVideo/etc/adminhtml/system.xml b/app/code/Magento/ProductVideo/etc/adminhtml/system.xml index efa271ca379..04e33e58e62 100644 --- a/app/code/Magento/ProductVideo/etc/adminhtml/system.xml +++ b/app/code/Magento/ProductVideo/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductVideo/etc/config.xml b/app/code/Magento/ProductVideo/etc/config.xml index 63f0b2a5855..6231a7a954f 100644 --- a/app/code/Magento/ProductVideo/etc/config.xml +++ b/app/code/Magento/ProductVideo/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductVideo/etc/di.xml b/app/code/Magento/ProductVideo/etc/di.xml index 9aad01caaf7..805ade4e9d0 100644 --- a/app/code/Magento/ProductVideo/etc/di.xml +++ b/app/code/Magento/ProductVideo/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductVideo/etc/extension_attributes.xml b/app/code/Magento/ProductVideo/etc/extension_attributes.xml index 6d012b23173..90b79c60ced 100644 --- a/app/code/Magento/ProductVideo/etc/extension_attributes.xml +++ b/app/code/Magento/ProductVideo/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -9,4 +9,4 @@ <extension_attributes for="Magento\Catalog\Api\Data\ProductAttributeMediaGalleryEntryInterface"> <attribute code="video_content" type="Magento\Framework\Api\Data\VideoContentInterface" /> </extension_attributes> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/ProductVideo/etc/module.xml b/app/code/Magento/ProductVideo/etc/module.xml index 90383c9f1e2..fd7c3aa29e1 100644 --- a/app/code/Magento/ProductVideo/etc/module.xml +++ b/app/code/Magento/ProductVideo/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** -* Copyright © 2016 Magento. All rights reserved. +* Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductVideo/registration.php b/app/code/Magento/ProductVideo/registration.php index 880dd046ae5..536065b3fde 100644 --- a/app/code/Magento/ProductVideo/registration.php +++ b/app/code/Magento/ProductVideo/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductVideo/view/adminhtml/layout/catalog_product_form.xml b/app/code/Magento/ProductVideo/view/adminhtml/layout/catalog_product_form.xml index 19e59445f84..83407cace78 100644 --- a/app/code/Magento/ProductVideo/view/adminhtml/layout/catalog_product_form.xml +++ b/app/code/Magento/ProductVideo/view/adminhtml/layout/catalog_product_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductVideo/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/ProductVideo/view/adminhtml/layout/catalog_product_new.xml index 9ed7079fa23..c5510435c33 100644 --- a/app/code/Magento/ProductVideo/view/adminhtml/layout/catalog_product_new.xml +++ b/app/code/Magento/ProductVideo/view/adminhtml/layout/catalog_product_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductVideo/view/adminhtml/requirejs-config.js b/app/code/Magento/ProductVideo/view/adminhtml/requirejs-config.js index dcf5b3de9d3..38802512f31 100644 --- a/app/code/Magento/ProductVideo/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/ProductVideo/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*eslint no-unused-vars: 0*/ diff --git a/app/code/Magento/ProductVideo/view/adminhtml/templates/helper/gallery.phtml b/app/code/Magento/ProductVideo/view/adminhtml/templates/helper/gallery.phtml index ec917913a1b..fb3a25c1305 100755 --- a/app/code/Magento/ProductVideo/view/adminhtml/templates/helper/gallery.phtml +++ b/app/code/Magento/ProductVideo/view/adminhtml/templates/helper/gallery.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/base_image.phtml b/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/base_image.phtml index d0644d83778..d0c1f883b65 100644 --- a/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/base_image.phtml +++ b/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/base_image.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/slideout/form.phtml b/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/slideout/form.phtml index 17de9f99039..c296fcbad4f 100644 --- a/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/slideout/form.phtml +++ b/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/slideout/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /* @var Magento\ProductVideo\Block\Adminhtml\Product\Edit\NewVideo $block */ diff --git a/app/code/Magento/ProductVideo/view/adminhtml/web/js/get-video-information.js b/app/code/Magento/ProductVideo/view/adminhtml/web/js/get-video-information.js index 5885c157927..af4374c2c13 100644 --- a/app/code/Magento/ProductVideo/view/adminhtml/web/js/get-video-information.js +++ b/app/code/Magento/ProductVideo/view/adminhtml/web/js/get-video-information.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/ProductVideo/view/adminhtml/web/js/new-video-dialog.js b/app/code/Magento/ProductVideo/view/adminhtml/web/js/new-video-dialog.js index f19a2640c14..1baa0469724 100644 --- a/app/code/Magento/ProductVideo/view/adminhtml/web/js/new-video-dialog.js +++ b/app/code/Magento/ProductVideo/view/adminhtml/web/js/new-video-dialog.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/ProductVideo/view/adminhtml/web/js/video-modal.js b/app/code/Magento/ProductVideo/view/adminhtml/web/js/video-modal.js index e703178601e..e160194d169 100644 --- a/app/code/Magento/ProductVideo/view/adminhtml/web/js/video-modal.js +++ b/app/code/Magento/ProductVideo/view/adminhtml/web/js/video-modal.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/ProductVideo/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/ProductVideo/view/frontend/layout/catalog_product_view.xml index 7b86288532c..64a5219a512 100644 --- a/app/code/Magento/ProductVideo/view/frontend/layout/catalog_product_view.xml +++ b/app/code/Magento/ProductVideo/view/frontend/layout/catalog_product_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** -* Copyright © 2016 Magento. All rights reserved. +* Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/ProductVideo/view/frontend/requirejs-config.js b/app/code/Magento/ProductVideo/view/frontend/requirejs-config.js index b0b902ad98e..ed174ed00ea 100644 --- a/app/code/Magento/ProductVideo/view/frontend/requirejs-config.js +++ b/app/code/Magento/ProductVideo/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*eslint no-unused-vars: 0*/ diff --git a/app/code/Magento/ProductVideo/view/frontend/templates/product/view/gallery.phtml b/app/code/Magento/ProductVideo/view/frontend/templates/product/view/gallery.phtml index 7c505eee8d1..19e2ff93596 100644 --- a/app/code/Magento/ProductVideo/view/frontend/templates/product/view/gallery.phtml +++ b/app/code/Magento/ProductVideo/view/frontend/templates/product/view/gallery.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductVideo/view/frontend/web/js/fotorama-add-video-events.js b/app/code/Magento/ProductVideo/view/frontend/web/js/fotorama-add-video-events.js index 43a0292270a..502e5f900e9 100644 --- a/app/code/Magento/ProductVideo/view/frontend/web/js/fotorama-add-video-events.js +++ b/app/code/Magento/ProductVideo/view/frontend/web/js/fotorama-add-video-events.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/ProductVideo/view/frontend/web/js/load-player.js b/app/code/Magento/ProductVideo/view/frontend/web/js/load-player.js index 32b234490e3..bddfdf9d39a 100644 --- a/app/code/Magento/ProductVideo/view/frontend/web/js/load-player.js +++ b/app/code/Magento/ProductVideo/view/frontend/web/js/load-player.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Api/BillingAddressManagementInterface.php b/app/code/Magento/Quote/Api/BillingAddressManagementInterface.php index 1ef53bb6071..01e778d7025 100644 --- a/app/code/Magento/Quote/Api/BillingAddressManagementInterface.php +++ b/app/code/Magento/Quote/Api/BillingAddressManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/CartItemRepositoryInterface.php b/app/code/Magento/Quote/Api/CartItemRepositoryInterface.php index e0c0a498c67..80d1b0fe54d 100644 --- a/app/code/Magento/Quote/Api/CartItemRepositoryInterface.php +++ b/app/code/Magento/Quote/Api/CartItemRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/CartManagementInterface.php b/app/code/Magento/Quote/Api/CartManagementInterface.php index cee423dea33..ff2d64f9b6f 100644 --- a/app/code/Magento/Quote/Api/CartManagementInterface.php +++ b/app/code/Magento/Quote/Api/CartManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/CartRepositoryInterface.php b/app/code/Magento/Quote/Api/CartRepositoryInterface.php index a8ef3dfba76..584786d91ca 100644 --- a/app/code/Magento/Quote/Api/CartRepositoryInterface.php +++ b/app/code/Magento/Quote/Api/CartRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/CartTotalManagementInterface.php b/app/code/Magento/Quote/Api/CartTotalManagementInterface.php index 0c98e7e926f..094e275100f 100644 --- a/app/code/Magento/Quote/Api/CartTotalManagementInterface.php +++ b/app/code/Magento/Quote/Api/CartTotalManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/CartTotalRepositoryInterface.php b/app/code/Magento/Quote/Api/CartTotalRepositoryInterface.php index 0f0deb6f2f5..56c7834d7ee 100644 --- a/app/code/Magento/Quote/Api/CartTotalRepositoryInterface.php +++ b/app/code/Magento/Quote/Api/CartTotalRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/CouponManagementInterface.php b/app/code/Magento/Quote/Api/CouponManagementInterface.php index dc94875c692..1354abc620b 100644 --- a/app/code/Magento/Quote/Api/CouponManagementInterface.php +++ b/app/code/Magento/Quote/Api/CouponManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Api/Data/AddressAdditionalDataInterface.php b/app/code/Magento/Quote/Api/Data/AddressAdditionalDataInterface.php index 31a218eda72..dc425b0842d 100644 --- a/app/code/Magento/Quote/Api/Data/AddressAdditionalDataInterface.php +++ b/app/code/Magento/Quote/Api/Data/AddressAdditionalDataInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/AddressInterface.php b/app/code/Magento/Quote/Api/Data/AddressInterface.php index dfc06ab4f9b..e06bd53d4bf 100644 --- a/app/code/Magento/Quote/Api/Data/AddressInterface.php +++ b/app/code/Magento/Quote/Api/Data/AddressInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/CartInterface.php b/app/code/Magento/Quote/Api/Data/CartInterface.php index 9e9a0fa15c9..bcf53f4be24 100644 --- a/app/code/Magento/Quote/Api/Data/CartInterface.php +++ b/app/code/Magento/Quote/Api/Data/CartInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/CartItemInterface.php b/app/code/Magento/Quote/Api/Data/CartItemInterface.php index 6f76672b495..07f170d23e5 100644 --- a/app/code/Magento/Quote/Api/Data/CartItemInterface.php +++ b/app/code/Magento/Quote/Api/Data/CartItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/CartSearchResultsInterface.php b/app/code/Magento/Quote/Api/Data/CartSearchResultsInterface.php index e73c8f850d2..11fc31c9dc9 100644 --- a/app/code/Magento/Quote/Api/Data/CartSearchResultsInterface.php +++ b/app/code/Magento/Quote/Api/Data/CartSearchResultsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/CurrencyInterface.php b/app/code/Magento/Quote/Api/Data/CurrencyInterface.php index 42bc0bac06c..8cf6d4f3380 100644 --- a/app/code/Magento/Quote/Api/Data/CurrencyInterface.php +++ b/app/code/Magento/Quote/Api/Data/CurrencyInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/EstimateAddressInterface.php b/app/code/Magento/Quote/Api/Data/EstimateAddressInterface.php index 49fe934709d..06e2c53b398 100644 --- a/app/code/Magento/Quote/Api/Data/EstimateAddressInterface.php +++ b/app/code/Magento/Quote/Api/Data/EstimateAddressInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/PaymentInterface.php b/app/code/Magento/Quote/Api/Data/PaymentInterface.php index 22baaeeb4a2..42023bcadc2 100644 --- a/app/code/Magento/Quote/Api/Data/PaymentInterface.php +++ b/app/code/Magento/Quote/Api/Data/PaymentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/PaymentMethodInterface.php b/app/code/Magento/Quote/Api/Data/PaymentMethodInterface.php index ea452a6c1cb..b414bb12954 100644 --- a/app/code/Magento/Quote/Api/Data/PaymentMethodInterface.php +++ b/app/code/Magento/Quote/Api/Data/PaymentMethodInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/ProductOptionInterface.php b/app/code/Magento/Quote/Api/Data/ProductOptionInterface.php index 169d807a204..7978016d049 100644 --- a/app/code/Magento/Quote/Api/Data/ProductOptionInterface.php +++ b/app/code/Magento/Quote/Api/Data/ProductOptionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/ShippingAssignmentInterface.php b/app/code/Magento/Quote/Api/Data/ShippingAssignmentInterface.php index 31420f65c36..ec9714bfb70 100644 --- a/app/code/Magento/Quote/Api/Data/ShippingAssignmentInterface.php +++ b/app/code/Magento/Quote/Api/Data/ShippingAssignmentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Api/Data/ShippingInterface.php b/app/code/Magento/Quote/Api/Data/ShippingInterface.php index c396c164033..13fe0c423dc 100644 --- a/app/code/Magento/Quote/Api/Data/ShippingInterface.php +++ b/app/code/Magento/Quote/Api/Data/ShippingInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Api/Data/ShippingMethodInterface.php b/app/code/Magento/Quote/Api/Data/ShippingMethodInterface.php index ccf33dafb86..e235552e500 100644 --- a/app/code/Magento/Quote/Api/Data/ShippingMethodInterface.php +++ b/app/code/Magento/Quote/Api/Data/ShippingMethodInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/TotalSegmentInterface.php b/app/code/Magento/Quote/Api/Data/TotalSegmentInterface.php index 987de5006d4..c832abfd60b 100644 --- a/app/code/Magento/Quote/Api/Data/TotalSegmentInterface.php +++ b/app/code/Magento/Quote/Api/Data/TotalSegmentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/TotalsAdditionalDataInterface.php b/app/code/Magento/Quote/Api/Data/TotalsAdditionalDataInterface.php index 62686415684..42f7ac90de1 100644 --- a/app/code/Magento/Quote/Api/Data/TotalsAdditionalDataInterface.php +++ b/app/code/Magento/Quote/Api/Data/TotalsAdditionalDataInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/TotalsInterface.php b/app/code/Magento/Quote/Api/Data/TotalsInterface.php index 5bc2c8ee462..5ae823cf343 100644 --- a/app/code/Magento/Quote/Api/Data/TotalsInterface.php +++ b/app/code/Magento/Quote/Api/Data/TotalsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/Data/TotalsItemInterface.php b/app/code/Magento/Quote/Api/Data/TotalsItemInterface.php index 112073188b6..1067bd89cec 100644 --- a/app/code/Magento/Quote/Api/Data/TotalsItemInterface.php +++ b/app/code/Magento/Quote/Api/Data/TotalsItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api\Data; diff --git a/app/code/Magento/Quote/Api/GuestBillingAddressManagementInterface.php b/app/code/Magento/Quote/Api/GuestBillingAddressManagementInterface.php index 66bb7f45bc4..317b1bce2e1 100644 --- a/app/code/Magento/Quote/Api/GuestBillingAddressManagementInterface.php +++ b/app/code/Magento/Quote/Api/GuestBillingAddressManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/GuestCartItemRepositoryInterface.php b/app/code/Magento/Quote/Api/GuestCartItemRepositoryInterface.php index 6f06d3a1442..ee5f5e48569 100644 --- a/app/code/Magento/Quote/Api/GuestCartItemRepositoryInterface.php +++ b/app/code/Magento/Quote/Api/GuestCartItemRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/GuestCartManagementInterface.php b/app/code/Magento/Quote/Api/GuestCartManagementInterface.php index be73c22564a..ba59075fcad 100644 --- a/app/code/Magento/Quote/Api/GuestCartManagementInterface.php +++ b/app/code/Magento/Quote/Api/GuestCartManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/GuestCartRepositoryInterface.php b/app/code/Magento/Quote/Api/GuestCartRepositoryInterface.php index da50534db36..501920690ab 100644 --- a/app/code/Magento/Quote/Api/GuestCartRepositoryInterface.php +++ b/app/code/Magento/Quote/Api/GuestCartRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/GuestCartTotalManagementInterface.php b/app/code/Magento/Quote/Api/GuestCartTotalManagementInterface.php index ba62b6af8e2..cfe304d4ef0 100644 --- a/app/code/Magento/Quote/Api/GuestCartTotalManagementInterface.php +++ b/app/code/Magento/Quote/Api/GuestCartTotalManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/GuestCartTotalRepositoryInterface.php b/app/code/Magento/Quote/Api/GuestCartTotalRepositoryInterface.php index c43dce98640..7cf5c972455 100644 --- a/app/code/Magento/Quote/Api/GuestCartTotalRepositoryInterface.php +++ b/app/code/Magento/Quote/Api/GuestCartTotalRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Api/GuestCouponManagementInterface.php b/app/code/Magento/Quote/Api/GuestCouponManagementInterface.php index 07fe7b72162..1975ff3c300 100644 --- a/app/code/Magento/Quote/Api/GuestCouponManagementInterface.php +++ b/app/code/Magento/Quote/Api/GuestCouponManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Api/GuestPaymentMethodManagementInterface.php b/app/code/Magento/Quote/Api/GuestPaymentMethodManagementInterface.php index 9566cdaf6fe..44292e64710 100644 --- a/app/code/Magento/Quote/Api/GuestPaymentMethodManagementInterface.php +++ b/app/code/Magento/Quote/Api/GuestPaymentMethodManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/GuestShipmentEstimationInterface.php b/app/code/Magento/Quote/Api/GuestShipmentEstimationInterface.php index b0690c6be44..79648145f29 100644 --- a/app/code/Magento/Quote/Api/GuestShipmentEstimationInterface.php +++ b/app/code/Magento/Quote/Api/GuestShipmentEstimationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/GuestShippingMethodManagementInterface.php b/app/code/Magento/Quote/Api/GuestShippingMethodManagementInterface.php index 7a45a4fefd0..e1319a34bfa 100644 --- a/app/code/Magento/Quote/Api/GuestShippingMethodManagementInterface.php +++ b/app/code/Magento/Quote/Api/GuestShippingMethodManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/PaymentMethodManagementInterface.php b/app/code/Magento/Quote/Api/PaymentMethodManagementInterface.php index f836a42be1f..89fece48a52 100644 --- a/app/code/Magento/Quote/Api/PaymentMethodManagementInterface.php +++ b/app/code/Magento/Quote/Api/PaymentMethodManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/ShipmentEstimationInterface.php b/app/code/Magento/Quote/Api/ShipmentEstimationInterface.php index 46fd5b2b42a..971ec2ea2d5 100644 --- a/app/code/Magento/Quote/Api/ShipmentEstimationInterface.php +++ b/app/code/Magento/Quote/Api/ShipmentEstimationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Api/ShippingMethodManagementInterface.php b/app/code/Magento/Quote/Api/ShippingMethodManagementInterface.php index 608906a6eb2..94ebe8dc34d 100644 --- a/app/code/Magento/Quote/Api/ShippingMethodManagementInterface.php +++ b/app/code/Magento/Quote/Api/ShippingMethodManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Api; diff --git a/app/code/Magento/Quote/Model/AddressAdditionalData.php b/app/code/Magento/Quote/Model/AddressAdditionalData.php index 4d2e826592f..794838e9a3c 100644 --- a/app/code/Magento/Quote/Model/AddressAdditionalData.php +++ b/app/code/Magento/Quote/Model/AddressAdditionalData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/AddressAdditionalDataProcessor.php b/app/code/Magento/Quote/Model/AddressAdditionalDataProcessor.php index 02838b5a750..74e6632b27f 100644 --- a/app/code/Magento/Quote/Model/AddressAdditionalDataProcessor.php +++ b/app/code/Magento/Quote/Model/AddressAdditionalDataProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/BillingAddressManagement.php b/app/code/Magento/Quote/Model/BillingAddressManagement.php index bbbe775044d..788794d50b6 100644 --- a/app/code/Magento/Quote/Model/BillingAddressManagement.php +++ b/app/code/Magento/Quote/Model/BillingAddressManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/Cart/CartTotalManagement.php b/app/code/Magento/Quote/Model/Cart/CartTotalManagement.php index 24be9dd29e2..2c972a8f04b 100644 --- a/app/code/Magento/Quote/Model/Cart/CartTotalManagement.php +++ b/app/code/Magento/Quote/Model/Cart/CartTotalManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart; diff --git a/app/code/Magento/Quote/Model/Cart/CartTotalRepository.php b/app/code/Magento/Quote/Model/Cart/CartTotalRepository.php index 21ec42f7654..ff0ad6e61cb 100644 --- a/app/code/Magento/Quote/Model/Cart/CartTotalRepository.php +++ b/app/code/Magento/Quote/Model/Cart/CartTotalRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart; diff --git a/app/code/Magento/Quote/Model/Cart/Currency.php b/app/code/Magento/Quote/Model/Cart/Currency.php index fe09230c4fd..0b5402957de 100644 --- a/app/code/Magento/Quote/Model/Cart/Currency.php +++ b/app/code/Magento/Quote/Model/Cart/Currency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart; diff --git a/app/code/Magento/Quote/Model/Cart/ShippingMethod.php b/app/code/Magento/Quote/Model/Cart/ShippingMethod.php index 9e067c09953..897f596aca4 100644 --- a/app/code/Magento/Quote/Model/Cart/ShippingMethod.php +++ b/app/code/Magento/Quote/Model/Cart/ShippingMethod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart; diff --git a/app/code/Magento/Quote/Model/Cart/ShippingMethodConverter.php b/app/code/Magento/Quote/Model/Cart/ShippingMethodConverter.php index 88d8a5e0d3d..d72d8704fde 100644 --- a/app/code/Magento/Quote/Model/Cart/ShippingMethodConverter.php +++ b/app/code/Magento/Quote/Model/Cart/ShippingMethodConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart; diff --git a/app/code/Magento/Quote/Model/Cart/TotalSegment.php b/app/code/Magento/Quote/Model/Cart/TotalSegment.php index bd74b34056d..b3c15faa994 100644 --- a/app/code/Magento/Quote/Model/Cart/TotalSegment.php +++ b/app/code/Magento/Quote/Model/Cart/TotalSegment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart; diff --git a/app/code/Magento/Quote/Model/Cart/Totals.php b/app/code/Magento/Quote/Model/Cart/Totals.php index 81ca140546d..73198d4b3fb 100644 --- a/app/code/Magento/Quote/Model/Cart/Totals.php +++ b/app/code/Magento/Quote/Model/Cart/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart; diff --git a/app/code/Magento/Quote/Model/Cart/Totals/Item.php b/app/code/Magento/Quote/Model/Cart/Totals/Item.php index ae71f199121..1b95da6d776 100644 --- a/app/code/Magento/Quote/Model/Cart/Totals/Item.php +++ b/app/code/Magento/Quote/Model/Cart/Totals/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart\Totals; diff --git a/app/code/Magento/Quote/Model/Cart/Totals/ItemConverter.php b/app/code/Magento/Quote/Model/Cart/Totals/ItemConverter.php index 3cce0b07dcc..32c24eed5e9 100644 --- a/app/code/Magento/Quote/Model/Cart/Totals/ItemConverter.php +++ b/app/code/Magento/Quote/Model/Cart/Totals/ItemConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart\Totals; diff --git a/app/code/Magento/Quote/Model/Cart/TotalsAdditionalData.php b/app/code/Magento/Quote/Model/Cart/TotalsAdditionalData.php index f0e33699466..4abdc3361fe 100644 --- a/app/code/Magento/Quote/Model/Cart/TotalsAdditionalData.php +++ b/app/code/Magento/Quote/Model/Cart/TotalsAdditionalData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart; diff --git a/app/code/Magento/Quote/Model/Cart/TotalsAdditionalDataProcessor.php b/app/code/Magento/Quote/Model/Cart/TotalsAdditionalDataProcessor.php index be0e4c85376..73d4f6ea6d9 100644 --- a/app/code/Magento/Quote/Model/Cart/TotalsAdditionalDataProcessor.php +++ b/app/code/Magento/Quote/Model/Cart/TotalsAdditionalDataProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart; diff --git a/app/code/Magento/Quote/Model/Cart/TotalsConverter.php b/app/code/Magento/Quote/Model/Cart/TotalsConverter.php index f196493e27b..96c3306b497 100644 --- a/app/code/Magento/Quote/Model/Cart/TotalsConverter.php +++ b/app/code/Magento/Quote/Model/Cart/TotalsConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart; diff --git a/app/code/Magento/Quote/Model/CouponManagement.php b/app/code/Magento/Quote/Model/CouponManagement.php index 157db5a7e71..e4901c5046f 100644 --- a/app/code/Magento/Quote/Model/CouponManagement.php +++ b/app/code/Magento/Quote/Model/CouponManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/CustomerManagement.php b/app/code/Magento/Quote/Model/CustomerManagement.php index b796ebe9d0d..1858150112e 100644 --- a/app/code/Magento/Quote/Model/CustomerManagement.php +++ b/app/code/Magento/Quote/Model/CustomerManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/EstimateAddress.php b/app/code/Magento/Quote/Model/EstimateAddress.php index f17bfe58adc..ac1063c72b2 100644 --- a/app/code/Magento/Quote/Model/EstimateAddress.php +++ b/app/code/Magento/Quote/Model/EstimateAddress.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestBillingAddressManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestBillingAddressManagement.php index 05a1e7f7aaa..3f441fd9be9 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestBillingAddressManagement.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestBillingAddressManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\GuestCart; diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCartItemRepository.php b/app/code/Magento/Quote/Model/GuestCart/GuestCartItemRepository.php index 739adbbe6ee..33465ff6193 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestCartItemRepository.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestCartItemRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\GuestCart; diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCartManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestCartManagement.php index 8135a656925..7131706a595 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestCartManagement.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestCartManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCartRepository.php b/app/code/Magento/Quote/Model/GuestCart/GuestCartRepository.php index cf8cd02fa20..c832a769856 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestCartRepository.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestCartRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\GuestCart; diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalManagement.php index e110e40aec3..7937df91597 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalManagement.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\GuestCart; diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalRepository.php b/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalRepository.php index e6bff6e279d..1a1f2996728 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalRepository.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCouponManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestCouponManagement.php index 0bba923ab7f..0a127b7cfbf 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestCouponManagement.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestCouponManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\GuestCart; diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestPaymentMethodManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestPaymentMethodManagement.php index e0b741d179b..e643fe1c763 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestPaymentMethodManagement.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestPaymentMethodManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\GuestCart; diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagement.php index 7d1b8964fc1..5483686b690 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagement.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\GuestCart; diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagementInterface.php b/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagementInterface.php index c67ef9c7d71..66b5433e90a 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagementInterface.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\GuestCart; diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagement.php index 19fc0fc2b83..933707ed362 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagement.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagementInterface.php b/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagementInterface.php index ed030b4d2ca..bb632d57398 100644 --- a/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagementInterface.php +++ b/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\GuestCart; diff --git a/app/code/Magento/Quote/Model/GuestCartManagement/Plugin/Authorization.php b/app/code/Magento/Quote/Model/GuestCartManagement/Plugin/Authorization.php index 0eabb28e83e..1bdf2aa8cc2 100644 --- a/app/code/Magento/Quote/Model/GuestCartManagement/Plugin/Authorization.php +++ b/app/code/Magento/Quote/Model/GuestCartManagement/Plugin/Authorization.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\GuestCartManagement\Plugin; diff --git a/app/code/Magento/Quote/Model/PaymentMethodManagement.php b/app/code/Magento/Quote/Model/PaymentMethodManagement.php index 6bff056cd03..ea63f8e8bf6 100644 --- a/app/code/Magento/Quote/Model/PaymentMethodManagement.php +++ b/app/code/Magento/Quote/Model/PaymentMethodManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/Product/Plugin/RemoveQuoteItems.php b/app/code/Magento/Quote/Model/Product/Plugin/RemoveQuoteItems.php index 76af26e3c89..f89e35b1fc5 100644 --- a/app/code/Magento/Quote/Model/Product/Plugin/RemoveQuoteItems.php +++ b/app/code/Magento/Quote/Model/Product/Plugin/RemoveQuoteItems.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Product\Plugin; diff --git a/app/code/Magento/Quote/Model/Product/Plugin/UpdateQuoteItems.php b/app/code/Magento/Quote/Model/Product/Plugin/UpdateQuoteItems.php index c6062e351db..f062124f940 100644 --- a/app/code/Magento/Quote/Model/Product/Plugin/UpdateQuoteItems.php +++ b/app/code/Magento/Quote/Model/Product/Plugin/UpdateQuoteItems.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Product\Plugin; diff --git a/app/code/Magento/Quote/Model/Product/QuoteItemsCleaner.php b/app/code/Magento/Quote/Model/Product/QuoteItemsCleaner.php index ec0e6809c48..d51e9d89415 100644 --- a/app/code/Magento/Quote/Model/Product/QuoteItemsCleaner.php +++ b/app/code/Magento/Quote/Model/Product/QuoteItemsCleaner.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Product; diff --git a/app/code/Magento/Quote/Model/Product/QuoteItemsCleanerInterface.php b/app/code/Magento/Quote/Model/Product/QuoteItemsCleanerInterface.php index 1691efab5e5..cf23c3b4d51 100644 --- a/app/code/Magento/Quote/Model/Product/QuoteItemsCleanerInterface.php +++ b/app/code/Magento/Quote/Model/Product/QuoteItemsCleanerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Product; diff --git a/app/code/Magento/Quote/Model/QueryResolver.php b/app/code/Magento/Quote/Model/QueryResolver.php index 04d83bab85b..ec90873b414 100644 --- a/app/code/Magento/Quote/Model/QueryResolver.php +++ b/app/code/Magento/Quote/Model/QueryResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/Quote.php b/app/code/Magento/Quote/Model/Quote.php index f84ca33b436..1cb6f5d754d 100644 --- a/app/code/Magento/Quote/Model/Quote.php +++ b/app/code/Magento/Quote/Model/Quote.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/Quote/Address.php b/app/code/Magento/Quote/Model/Quote/Address.php index f1764da5e55..a18807e80c9 100644 --- a/app/code/Magento/Quote/Model/Quote/Address.php +++ b/app/code/Magento/Quote/Model/Quote/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote; diff --git a/app/code/Magento/Quote/Model/Quote/Address/BillingAddressPersister.php b/app/code/Magento/Quote/Model/Quote/Address/BillingAddressPersister.php index 7d4b9831dcc..e855dba9b7e 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/BillingAddressPersister.php +++ b/app/code/Magento/Quote/Model/Quote/Address/BillingAddressPersister.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeList.php b/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeList.php index 1dcd08e71bc..c86d5ab29e8 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeList.php +++ b/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeListInterface.php b/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeListInterface.php index a5ad60916d3..d080ef2f1cb 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeListInterface.php +++ b/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeListInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/FreeShipping.php b/app/code/Magento/Quote/Model/Quote/Address/FreeShipping.php index 8d85318929a..941759a7fc2 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/FreeShipping.php +++ b/app/code/Magento/Quote/Model/Quote/Address/FreeShipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/FreeShippingInterface.php b/app/code/Magento/Quote/Model/Quote/Address/FreeShippingInterface.php index 84b13fd7227..1acaa26c183 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/FreeShippingInterface.php +++ b/app/code/Magento/Quote/Model/Quote/Address/FreeShippingInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Item.php b/app/code/Magento/Quote/Model/Quote/Address/Item.php index 878ebfa361f..8f9bea829da 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Item.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Rate.php b/app/code/Magento/Quote/Model/Quote/Address/Rate.php index 2c824276263..fb9df094831 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Rate.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Rate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterface.php b/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterface.php index ffb1aae579b..958c86fb37b 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterface.php +++ b/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterfaceFactory.php b/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterfaceFactory.php index a807a03d99d..71673c8bc0b 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterfaceFactory.php +++ b/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterfaceFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateRequest.php b/app/code/Magento/Quote/Model/Quote/Address/RateRequest.php index 12646ff0acd..3997029da54 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/RateRequest.php +++ b/app/code/Magento/Quote/Model/Quote/Address/RateRequest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateResult/AbstractResult.php b/app/code/Magento/Quote/Model/Quote/Address/RateResult/AbstractResult.php index 318f67318f2..ac17fb34c7b 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/RateResult/AbstractResult.php +++ b/app/code/Magento/Quote/Model/Quote/Address/RateResult/AbstractResult.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address\RateResult; diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateResult/Error.php b/app/code/Magento/Quote/Model/Quote/Address/RateResult/Error.php index 089e5a5069c..fafc0393167 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/RateResult/Error.php +++ b/app/code/Magento/Quote/Model/Quote/Address/RateResult/Error.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address\RateResult; diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateResult/Method.php b/app/code/Magento/Quote/Model/Quote/Address/RateResult/Method.php index 7378b59f6b6..bad3ec610a7 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/RateResult/Method.php +++ b/app/code/Magento/Quote/Model/Quote/Address/RateResult/Method.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address\RateResult; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Relation.php b/app/code/Magento/Quote/Model/Quote/Address/Relation.php index d556f6b23c8..79f5e52426a 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Relation.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Relation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/ToOrder.php b/app/code/Magento/Quote/Model/Quote/Address/ToOrder.php index 205eede2ec3..b65c59bb390 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/ToOrder.php +++ b/app/code/Magento/Quote/Model/Quote/Address/ToOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/Quote/Address/ToOrderAddress.php b/app/code/Magento/Quote/Model/Quote/Address/ToOrderAddress.php index d71e7979216..9ebd37d60ba 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/ToOrderAddress.php +++ b/app/code/Magento/Quote/Model/Quote/Address/ToOrderAddress.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total.php b/app/code/Magento/Quote/Model/Quote/Address/Total.php index aeaa71fb8da..5cd09935834 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/AbstractTotal.php b/app/code/Magento/Quote/Model/Quote/Address/Total/AbstractTotal.php index c152e43696a..40d6cf028e9 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total/AbstractTotal.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total/AbstractTotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address\Total; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/Collector.php b/app/code/Magento/Quote/Model/Quote/Address/Total/Collector.php index d430bf3acc6..e7ae339571f 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total/Collector.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total/Collector.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address\Total; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/CollectorInterface.php b/app/code/Magento/Quote/Model/Quote/Address/Total/CollectorInterface.php index ce237b98792..42a76055ea8 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total/CollectorInterface.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total/CollectorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address\Total; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/Grand.php b/app/code/Magento/Quote/Model/Quote/Address/Total/Grand.php index 58130fe5d22..ca70c825cd0 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total/Grand.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total/Grand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address\Total; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/ReaderInterface.php b/app/code/Magento/Quote/Model/Quote/Address/Total/ReaderInterface.php index ce97683fa98..98bfabb471c 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total/ReaderInterface.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total/ReaderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address\Total; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/Shipping.php b/app/code/Magento/Quote/Model/Quote/Address/Total/Shipping.php index 7d894666147..4b91466195e 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total/Shipping.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address\Total; diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/Subtotal.php b/app/code/Magento/Quote/Model/Quote/Address/Total/Subtotal.php index e76c6600928..4558a1cdd48 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Total/Subtotal.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Total/Subtotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Address\Total; diff --git a/app/code/Magento/Quote/Model/Quote/Address/TotalFactory.php b/app/code/Magento/Quote/Model/Quote/Address/TotalFactory.php index b73bd2833c6..a7f1c9cfa58 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/TotalFactory.php +++ b/app/code/Magento/Quote/Model/Quote/Address/TotalFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/Quote/Address/Validator.php b/app/code/Magento/Quote/Model/Quote/Address/Validator.php index be74f716666..46d94712f53 100644 --- a/app/code/Magento/Quote/Model/Quote/Address/Validator.php +++ b/app/code/Magento/Quote/Model/Quote/Address/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/Quote/Config.php b/app/code/Magento/Quote/Model/Quote/Config.php index d6d8ddeb7dd..25a57178e8a 100644 --- a/app/code/Magento/Quote/Model/Quote/Config.php +++ b/app/code/Magento/Quote/Model/Quote/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote; diff --git a/app/code/Magento/Quote/Model/Quote/Item.php b/app/code/Magento/Quote/Model/Quote/Item.php index ac3a1109d71..6ebe58622e5 100644 --- a/app/code/Magento/Quote/Model/Quote/Item.php +++ b/app/code/Magento/Quote/Model/Quote/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote; diff --git a/app/code/Magento/Quote/Model/Quote/Item/AbstractItem.php b/app/code/Magento/Quote/Model/Quote/Item/AbstractItem.php index 1971b583ebb..ef5d35d7e94 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/AbstractItem.php +++ b/app/code/Magento/Quote/Model/Quote/Item/AbstractItem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Model/Quote/Item/CartItemOptionsProcessor.php b/app/code/Magento/Quote/Model/Quote/Item/CartItemOptionsProcessor.php index d80d4ad679b..2fe5cd2a7b1 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/CartItemOptionsProcessor.php +++ b/app/code/Magento/Quote/Model/Quote/Item/CartItemOptionsProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Model/Quote/Item/CartItemPersister.php b/app/code/Magento/Quote/Model/Quote/Item/CartItemPersister.php index 7005b1f303f..995acaffcd5 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/CartItemPersister.php +++ b/app/code/Magento/Quote/Model/Quote/Item/CartItemPersister.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorInterface.php b/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorInterface.php index 2c428568019..254bde549e1 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorInterface.php +++ b/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorsPool.php b/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorsPool.php index b16b1168c0f..4e58688fcf5 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorsPool.php +++ b/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorsPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Model/Quote/Item/Compare.php b/app/code/Magento/Quote/Model/Quote/Item/Compare.php index 10bb7120254..32e5b1d2c21 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Compare.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Compare.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Model/Quote/Item/Option.php b/app/code/Magento/Quote/Model/Quote/Item/Option.php index c51d0daca31..a996d404016 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Option.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Model/Quote/Item/Processor.php b/app/code/Magento/Quote/Model/Quote/Item/Processor.php index 6345e5722fa..b9d94146724 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Processor.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Model/Quote/Item/RelatedProducts.php b/app/code/Magento/Quote/Model/Quote/Item/RelatedProducts.php index b626f62d7b9..f514ffe6794 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/RelatedProducts.php +++ b/app/code/Magento/Quote/Model/Quote/Item/RelatedProducts.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Model/Quote/Item/Repository.php b/app/code/Magento/Quote/Model/Quote/Item/Repository.php index 8e3c0e0bdab..9e4aeb9f503 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Repository.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Repository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Model/Quote/Item/ToOrderItem.php b/app/code/Magento/Quote/Model/Quote/Item/ToOrderItem.php index dcb6a5d41c1..3b478e2219d 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/ToOrderItem.php +++ b/app/code/Magento/Quote/Model/Quote/Item/ToOrderItem.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/Quote/Item/Updater.php b/app/code/Magento/Quote/Model/Quote/Item/Updater.php index 45f9d3d90e3..693ade50d31 100644 --- a/app/code/Magento/Quote/Model/Quote/Item/Updater.php +++ b/app/code/Magento/Quote/Model/Quote/Item/Updater.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Model/Quote/Payment.php b/app/code/Magento/Quote/Model/Quote/Payment.php index 612802ccd27..68707af196e 100644 --- a/app/code/Magento/Quote/Model/Quote/Payment.php +++ b/app/code/Magento/Quote/Model/Quote/Payment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote; diff --git a/app/code/Magento/Quote/Model/Quote/Payment/ToOrderPayment.php b/app/code/Magento/Quote/Model/Quote/Payment/ToOrderPayment.php index 79db47646bf..5141f3f19f5 100644 --- a/app/code/Magento/Quote/Model/Quote/Payment/ToOrderPayment.php +++ b/app/code/Magento/Quote/Model/Quote/Payment/ToOrderPayment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/Quote/ProductOption.php b/app/code/Magento/Quote/Model/Quote/ProductOption.php index 0ce52849934..10bf69c92d8 100644 --- a/app/code/Magento/Quote/Model/Quote/ProductOption.php +++ b/app/code/Magento/Quote/Model/Quote/ProductOption.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote; diff --git a/app/code/Magento/Quote/Model/Quote/Relation.php b/app/code/Magento/Quote/Model/Quote/Relation.php index b48f3236631..f301e0c8746 100644 --- a/app/code/Magento/Quote/Model/Quote/Relation.php +++ b/app/code/Magento/Quote/Model/Quote/Relation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote; diff --git a/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentPersister.php b/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentPersister.php index 73aee73b280..8d7282682fd 100644 --- a/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentPersister.php +++ b/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentPersister.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\ShippingAssignment; diff --git a/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentProcessor.php b/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentProcessor.php index 7643160e448..fdf819c8d86 100644 --- a/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentProcessor.php +++ b/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\ShippingAssignment; diff --git a/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingProcessor.php b/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingProcessor.php index 71d0465d709..4d18ae7a581 100644 --- a/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingProcessor.php +++ b/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\ShippingAssignment; diff --git a/app/code/Magento/Quote/Model/Quote/TotalsCollector.php b/app/code/Magento/Quote/Model/Quote/TotalsCollector.php index a78f09f00ed..a5635dbf463 100644 --- a/app/code/Magento/Quote/Model/Quote/TotalsCollector.php +++ b/app/code/Magento/Quote/Model/Quote/TotalsCollector.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/Quote/TotalsCollectorList.php b/app/code/Magento/Quote/Model/Quote/TotalsCollectorList.php index 1bc2a6fd55c..8dcc2e924eb 100644 --- a/app/code/Magento/Quote/Model/Quote/TotalsCollectorList.php +++ b/app/code/Magento/Quote/Model/Quote/TotalsCollectorList.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/Quote/TotalsReader.php b/app/code/Magento/Quote/Model/Quote/TotalsReader.php index bd5e8c75fef..88cb6ae98ee 100644 --- a/app/code/Magento/Quote/Model/Quote/TotalsReader.php +++ b/app/code/Magento/Quote/Model/Quote/TotalsReader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote; diff --git a/app/code/Magento/Quote/Model/Quote/Validator/MinimumOrderAmount/ValidationMessage.php b/app/code/Magento/Quote/Model/Quote/Validator/MinimumOrderAmount/ValidationMessage.php index ad3c7164667..d4a0186bec2 100644 --- a/app/code/Magento/Quote/Model/Quote/Validator/MinimumOrderAmount/ValidationMessage.php +++ b/app/code/Magento/Quote/Model/Quote/Validator/MinimumOrderAmount/ValidationMessage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Quote\Validator\MinimumOrderAmount; diff --git a/app/code/Magento/Quote/Model/QuoteAddressValidator.php b/app/code/Magento/Quote/Model/QuoteAddressValidator.php index 99451105ff2..380d2248609 100644 --- a/app/code/Magento/Quote/Model/QuoteAddressValidator.php +++ b/app/code/Magento/Quote/Model/QuoteAddressValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/QuoteIdMask.php b/app/code/Magento/Quote/Model/QuoteIdMask.php index 1fd1ad59393..5bab110037d 100644 --- a/app/code/Magento/Quote/Model/QuoteIdMask.php +++ b/app/code/Magento/Quote/Model/QuoteIdMask.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/QuoteManagement.php b/app/code/Magento/Quote/Model/QuoteManagement.php index f1c36ede984..efd373d4cd9 100644 --- a/app/code/Magento/Quote/Model/QuoteManagement.php +++ b/app/code/Magento/Quote/Model/QuoteManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/QuoteRepository.php b/app/code/Magento/Quote/Model/QuoteRepository.php index c73b7715d77..e63e815d806 100644 --- a/app/code/Magento/Quote/Model/QuoteRepository.php +++ b/app/code/Magento/Quote/Model/QuoteRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/QuoteRepository/LoadHandler.php b/app/code/Magento/Quote/Model/QuoteRepository/LoadHandler.php index fa72630db2c..a26702666a7 100644 --- a/app/code/Magento/Quote/Model/QuoteRepository/LoadHandler.php +++ b/app/code/Magento/Quote/Model/QuoteRepository/LoadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\QuoteRepository; diff --git a/app/code/Magento/Quote/Model/QuoteRepository/Plugin/Authorization.php b/app/code/Magento/Quote/Model/QuoteRepository/Plugin/Authorization.php index 325b0408f32..3de93b1c354 100644 --- a/app/code/Magento/Quote/Model/QuoteRepository/Plugin/Authorization.php +++ b/app/code/Magento/Quote/Model/QuoteRepository/Plugin/Authorization.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\QuoteRepository\Plugin; diff --git a/app/code/Magento/Quote/Model/QuoteRepository/SaveHandler.php b/app/code/Magento/Quote/Model/QuoteRepository/SaveHandler.php index 1bece9a0887..647946e141a 100644 --- a/app/code/Magento/Quote/Model/QuoteRepository/SaveHandler.php +++ b/app/code/Magento/Quote/Model/QuoteRepository/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\QuoteRepository; diff --git a/app/code/Magento/Quote/Model/QuoteValidator.php b/app/code/Magento/Quote/Model/QuoteValidator.php index 54851cd4692..96fd742c369 100644 --- a/app/code/Magento/Quote/Model/QuoteValidator.php +++ b/app/code/Magento/Quote/Model/QuoteValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote.php b/app/code/Magento/Quote/Model/ResourceModel/Quote.php index 6113a1ba56a..f9d12628fa0 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address.php index af6561fc0e9..bad14c67492 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend.php index eaf2b95ca41..e3934ba1b8d 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Attribute; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Child.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Child.php index efb0eb3c7a6..24f048307a3 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Child.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Child.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Attribute\Backend; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Region.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Region.php index d30f60e8a1a..8d3092ea0af 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Region.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Region.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Attribute\Backend; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend.php index 2a7e7a017f4..912ce576c45 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Attribute; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Custbalance.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Custbalance.php index 6d535e933ef..656839505e7 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Custbalance.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Custbalance.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Attribute\Frontend; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Discount.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Discount.php index 49311f619ff..2cdbc82b838 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Discount.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Discount.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Attribute\Frontend; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Grand.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Grand.php index af465541367..40977919f1f 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Grand.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Grand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Attribute\Frontend; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Shipping.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Shipping.php index 086eb2a9620..8e850f14173 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Shipping.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Attribute\Frontend; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Subtotal.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Subtotal.php index 42c7c8c0db8..1578125db81 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Subtotal.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Subtotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Attribute\Frontend; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Tax.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Tax.php index 71930dbdac2..abd1442f2c8 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Tax.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Attribute\Frontend; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Collection.php index 753bc87146d..3978fb98b64 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Collection.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item.php index c4b83d7a024..7f20f6f94f1 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item/Collection.php index 9bfdef1f38f..03030bd41aa 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item/Collection.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Item; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate.php index 5cc13c45926..cade816360e 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate/Collection.php index 8af1d84ac14..c1190a7e4f6 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate/Collection.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Address\Rate; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Collection.php index 2a9cc2307db..81e5d323db3 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Collection.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item.php index fafe3e067e4..43c1428d86d 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Collection.php index 82544a72aff..644e7a76898 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Collection.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Item; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option.php index e5446ee1cff..06131a652e4 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Item; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option/Collection.php index 15e93a0ceaa..e2ced8be306 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option/Collection.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Item\Option; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment.php index 5abd69463a7..76962e1c19c 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment/Collection.php index 2da6f3967a8..a93c0e93a81 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment/Collection.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote\Payment; diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/QuoteIdMask.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/QuoteIdMask.php index d6785b415a8..f8e1d7074c0 100644 --- a/app/code/Magento/Quote/Model/ResourceModel/Quote/QuoteIdMask.php +++ b/app/code/Magento/Quote/Model/ResourceModel/Quote/QuoteIdMask.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\ResourceModel\Quote; diff --git a/app/code/Magento/Quote/Model/Shipping.php b/app/code/Magento/Quote/Model/Shipping.php index 141d66ffb83..9922b68ff31 100644 --- a/app/code/Magento/Quote/Model/Shipping.php +++ b/app/code/Magento/Quote/Model/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/ShippingAddressAssignment.php b/app/code/Magento/Quote/Model/ShippingAddressAssignment.php index 9a918f3f3fb..553be0fc9c4 100644 --- a/app/code/Magento/Quote/Model/ShippingAddressAssignment.php +++ b/app/code/Magento/Quote/Model/ShippingAddressAssignment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/ShippingAddressManagement.php b/app/code/Magento/Quote/Model/ShippingAddressManagement.php index cbb725639cf..95b263c35d6 100644 --- a/app/code/Magento/Quote/Model/ShippingAddressManagement.php +++ b/app/code/Magento/Quote/Model/ShippingAddressManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/ShippingAddressManagementInterface.php b/app/code/Magento/Quote/Model/ShippingAddressManagementInterface.php index a3377905a91..7e2a47f14e1 100644 --- a/app/code/Magento/Quote/Model/ShippingAddressManagementInterface.php +++ b/app/code/Magento/Quote/Model/ShippingAddressManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/ShippingAssignment.php b/app/code/Magento/Quote/Model/ShippingAssignment.php index e4679bc5a2d..c23dfaed877 100644 --- a/app/code/Magento/Quote/Model/ShippingAssignment.php +++ b/app/code/Magento/Quote/Model/ShippingAssignment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Model/ShippingMethodManagement.php b/app/code/Magento/Quote/Model/ShippingMethodManagement.php index 0bf59a623a6..d904c6fd901 100644 --- a/app/code/Magento/Quote/Model/ShippingMethodManagement.php +++ b/app/code/Magento/Quote/Model/ShippingMethodManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/ShippingMethodManagementInterface.php b/app/code/Magento/Quote/Model/ShippingMethodManagementInterface.php index ce64b6e5660..366c2c462fc 100644 --- a/app/code/Magento/Quote/Model/ShippingMethodManagementInterface.php +++ b/app/code/Magento/Quote/Model/ShippingMethodManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model; diff --git a/app/code/Magento/Quote/Model/Webapi/ParamOverriderCartId.php b/app/code/Magento/Quote/Model/Webapi/ParamOverriderCartId.php index 63e7fe30cbc..f27400f39f4 100644 --- a/app/code/Magento/Quote/Model/Webapi/ParamOverriderCartId.php +++ b/app/code/Magento/Quote/Model/Webapi/ParamOverriderCartId.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Observer/Backend/CustomerQuoteObserver.php b/app/code/Magento/Quote/Observer/Backend/CustomerQuoteObserver.php index 268a13d01c3..9fb98d4ee92 100644 --- a/app/code/Magento/Quote/Observer/Backend/CustomerQuoteObserver.php +++ b/app/code/Magento/Quote/Observer/Backend/CustomerQuoteObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Observer\Backend; diff --git a/app/code/Magento/Quote/Observer/Frontend/Quote/Address/CollectTotalsObserver.php b/app/code/Magento/Quote/Observer/Frontend/Quote/Address/CollectTotalsObserver.php index cd8c6dabb53..041ba15b353 100644 --- a/app/code/Magento/Quote/Observer/Frontend/Quote/Address/CollectTotalsObserver.php +++ b/app/code/Magento/Quote/Observer/Frontend/Quote/Address/CollectTotalsObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Observer\Frontend\Quote\Address; diff --git a/app/code/Magento/Quote/Observer/Frontend/Quote/Address/VatValidator.php b/app/code/Magento/Quote/Observer/Frontend/Quote/Address/VatValidator.php index 05c0884710f..9b3c6342868 100644 --- a/app/code/Magento/Quote/Observer/Frontend/Quote/Address/VatValidator.php +++ b/app/code/Magento/Quote/Observer/Frontend/Quote/Address/VatValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Observer\Frontend\Quote\Address; diff --git a/app/code/Magento/Quote/Observer/Webapi/SubmitObserver.php b/app/code/Magento/Quote/Observer/Webapi/SubmitObserver.php index 187b4b6a589..680b8abf97e 100644 --- a/app/code/Magento/Quote/Observer/Webapi/SubmitObserver.php +++ b/app/code/Magento/Quote/Observer/Webapi/SubmitObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Observer\Webapi; diff --git a/app/code/Magento/Quote/Setup/InstallData.php b/app/code/Magento/Quote/Setup/InstallData.php index 9af498946df..019257c1eb7 100644 --- a/app/code/Magento/Quote/Setup/InstallData.php +++ b/app/code/Magento/Quote/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Setup/InstallSchema.php b/app/code/Magento/Quote/Setup/InstallSchema.php index 7f3ce323bc7..236fa027957 100644 --- a/app/code/Magento/Quote/Setup/InstallSchema.php +++ b/app/code/Magento/Quote/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Setup/QuoteSetup.php b/app/code/Magento/Quote/Setup/QuoteSetup.php index 1ef5f4b0dae..5baf4a22689 100644 --- a/app/code/Magento/Quote/Setup/QuoteSetup.php +++ b/app/code/Magento/Quote/Setup/QuoteSetup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Setup; diff --git a/app/code/Magento/Quote/Setup/UpgradeSchema.php b/app/code/Magento/Quote/Setup/UpgradeSchema.php index 0ea04377eaa..deaef9c8a18 100644 --- a/app/code/Magento/Quote/Setup/UpgradeSchema.php +++ b/app/code/Magento/Quote/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Setup; diff --git a/app/code/Magento/Quote/Test/Unit/Model/BillingAddressManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/BillingAddressManagementTest.php index 81eaeed19fe..88ff3af829d 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/BillingAddressManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/BillingAddressManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalManagementTest.php index 426e2e00da7..d9d8988839f 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Cart; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalRepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalRepositoryTest.php index eeceebcd042..652e5046b0b 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalRepositoryTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Cart; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Cart/ShippingMethodConverterTest.php b/app/code/Magento/Quote/Test/Unit/Model/Cart/ShippingMethodConverterTest.php index fcddc737c48..9ecb08ebc60 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Cart/ShippingMethodConverterTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Cart/ShippingMethodConverterTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Cart/Totals/ItemConverterTest.php b/app/code/Magento/Quote/Test/Unit/Model/Cart/Totals/ItemConverterTest.php index 52198424cda..5441317f6dc 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Cart/Totals/ItemConverterTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Cart/Totals/ItemConverterTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Cart\Totals; diff --git a/app/code/Magento/Quote/Test/Unit/Model/CouponManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/CouponManagementTest.php index e5d9a5c1589..ebec370bfa1 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/CouponManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/CouponManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/CustomerManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/CustomerManagementTest.php index 600bf1723a5..41daf824c9d 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/CustomerManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/CustomerManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model; diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestBillingAddressManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestBillingAddressManagementTest.php index d38c2480525..7feba1c0ef8 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestBillingAddressManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestBillingAddressManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\GuestCart; diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartItemRepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartItemRepositoryTest.php index 2b6f378e7e3..8fe296de34f 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartItemRepositoryTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartItemRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartManagementTest.php index 5f13a802a67..472754e3df4 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartRepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartRepositoryTest.php index 72fc16b7c4f..958724b74ff 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartRepositoryTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\GuestCart; diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTestHelper.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTestHelper.php index 702bf995a20..5023e924867 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTestHelper.php +++ b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTestHelper.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\GuestCart; diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTotalRepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTotalRepositoryTest.php index 0c6416c9b08..32cb36d0d7a 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTotalRepositoryTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTotalRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\GuestCart; diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCouponManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCouponManagementTest.php index d6febdf6187..64cfd0d4578 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCouponManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCouponManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\GuestCart; diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestPaymentMethodManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestPaymentMethodManagementTest.php index b93bdb5ac1d..61de2a1d4d0 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestPaymentMethodManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestPaymentMethodManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\GuestCart; diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingAddressManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingAddressManagementTest.php index c825b12770b..4209b8162f8 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingAddressManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingAddressManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\GuestCart; diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingMethodManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingMethodManagementTest.php index 9c022b9d435..b045cd04927 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingMethodManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingMethodManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCartManagement/Plugin/AuthorizationTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCartManagement/Plugin/AuthorizationTest.php index ae83c500925..3fc3f08edad 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/GuestCartManagement/Plugin/AuthorizationTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/GuestCartManagement/Plugin/AuthorizationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/PaymentMethodManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/PaymentMethodManagementTest.php index 9e4173a164b..46335017219 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/PaymentMethodManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/PaymentMethodManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/RemoveQuoteItemsTest.php b/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/RemoveQuoteItemsTest.php index deb6aab3a98..d331bb4747a 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/RemoveQuoteItemsTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/RemoveQuoteItemsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Product\Plugin; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/UpdateQuoteItemsTest.php b/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/UpdateQuoteItemsTest.php index 53015669816..3a916926d7a 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/UpdateQuoteItemsTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/UpdateQuoteItemsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Product\Plugin; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Product/QuoteItemsCleanerTest.php b/app/code/Magento/Quote/Test/Unit/Model/Product/QuoteItemsCleanerTest.php index d6bb3e5ae31..0564fa93b74 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Product/QuoteItemsCleanerTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Product/QuoteItemsCleanerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Product; diff --git a/app/code/Magento/Quote/Test/Unit/Model/QueryResolverTest.php b/app/code/Magento/Quote/Test/Unit/Model/QueryResolverTest.php index eb6828afff4..7af79def320 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/QueryResolverTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/QueryResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/RelationTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/RelationTest.php index 006869460c4..3a4dd6bdb0d 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/RelationTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/RelationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderAddressTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderAddressTest.php index 1b0d7132d02..ca85ad1b9c4 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderAddressTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderAddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderTest.php index 782644d072f..81c461f5d2b 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Address; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/GrandTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/GrandTest.php index 842106a4d13..e98ea50d28f 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/GrandTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/GrandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Address\Total; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/ShippingTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/ShippingTest.php index 7ae2206ca9e..fd4a5a5f9a8 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/ShippingTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/ShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Address\Total; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/SubtotalTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/SubtotalTest.php index 8f2d0242e6a..3a1d224ec13 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/SubtotalTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/SubtotalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Address\Total; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php index efe6a81ce92..367306fd23c 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ValidatorTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ValidatorTest.php index a87f889e51d..272bd3d2eda 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ValidatorTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php index 7a8ccb232ba..c69b3ce860a 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/ConfigTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/ConfigTest.php index 1f824e87344..c7822320b5d 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/ConfigTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/AbstractItemTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/AbstractItemTest.php index 857267f2b83..21a3f78977c 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/AbstractItemTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/AbstractItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php index f8b72e4df6b..cdf5fa397d8 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ProcessorTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ProcessorTest.php index 580d7c4b9d2..fa88052c61d 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ProcessorTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RelatedProductsTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RelatedProductsTest.php index b9db00cd8cc..e9b205323c0 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RelatedProductsTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RelatedProductsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RepositoryTest.php index c6e5241282c..9f2f324b295 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RepositoryTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ToOrderItemTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ToOrderItemTest.php index c09900e6571..0e52c6e2bd2 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ToOrderItemTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ToOrderItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php index fc86df0819e..af2ae73fc56 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Item; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php index 7e07fcddf4a..211f0542fe4 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Payment/ToOrderPaymentTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Payment/ToOrderPaymentTest.php index 5400293a9ec..0c2804a3a5e 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Payment/ToOrderPaymentTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Payment/ToOrderPaymentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php index cc23683cb48..89af616bbbd 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/RelationTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/RelationTest.php index dae711863bd..7c02463d842 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/RelationTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/RelationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingAssignmentProcessorTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingAssignmentProcessorTest.php index 52c0a48bfd2..e74070c3eae 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingAssignmentProcessorTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingAssignmentProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\ShippingAssignment; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingProcessorTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingProcessorTest.php index 71cf24a0fed..9214d4437a1 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingProcessorTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\ShippingAssignment; diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/TotalsReaderTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/TotalsReaderTest.php index 414b7880d96..49a64bc0726 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/TotalsReaderTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/TotalsReaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Validator/MinimumOrderAmount/ValidationMessageTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Validator/MinimumOrderAmount/ValidationMessageTest.php index bb8282626da..b3ff106d0b2 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Validator/MinimumOrderAmount/ValidationMessageTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Validator/MinimumOrderAmount/ValidationMessageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\Quote\Validator\MinimumOrderAmount; diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteAddressValidatorTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteAddressValidatorTest.php index 9d75c219e69..a66caf4407b 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/QuoteAddressValidatorTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/QuoteAddressValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteIdMaskTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteIdMaskTest.php index 2200ed2e392..18a38f4ab5c 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/QuoteIdMaskTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/QuoteIdMaskTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteManagementTest.php index 8df85ec47af..635c3a01109 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/QuoteManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/QuoteManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/Plugin/AuthorizationTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/Plugin/AuthorizationTest.php index 5d00745f4ab..cff0d638bbe 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/Plugin/AuthorizationTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/Plugin/AuthorizationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\QuoteRepository\Plugin; diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/SaveHandlerTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/SaveHandlerTest.php index 33091fc00ca..633beb6c185 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/SaveHandlerTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/SaveHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteRepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteRepositoryTest.php index 891eb108b22..59ababe2204 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/QuoteRepositoryTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/QuoteRepositoryTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteTest.php index b54ce84fe1a..69fcee237aa 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/QuoteTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/QuoteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteValidatorTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteValidatorTest.php index b018ee074d2..ab766d99048 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/QuoteValidatorTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/QuoteValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model; diff --git a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/Item/CollectionTest.php b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/Item/CollectionTest.php index 59dab754053..ead999a5cbc 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/Item/CollectionTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/Item/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\ResourceModel\Quote\Item; diff --git a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/ItemTest.php b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/ItemTest.php index 2e39e03ebb0..ddfe0ffa8ae 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/ItemTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\ResourceModel\Quote; diff --git a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/QuoteAddressTest.php b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/QuoteAddressTest.php index bd0a7eb56b6..f07ea6cc1de 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/QuoteAddressTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/QuoteAddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Model\ResourceModel\Quote; diff --git a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/QuoteTest.php b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/QuoteTest.php index 15c58073c2e..63e77501d6d 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/QuoteTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/QuoteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressAssignmentTest.php b/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressAssignmentTest.php index 1acf50a4d4b..bada336e2e1 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressAssignmentTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressAssignmentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressManagementTest.php index d8e65de8474..316884b0469 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/ShippingMethodManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/ShippingMethodManagementTest.php index bb0eab1d8ae..17fa070aedc 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/ShippingMethodManagementTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/ShippingMethodManagementTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Model/Webapi/ParamOverriderCartIdTest.php b/app/code/Magento/Quote/Test/Unit/Model/Webapi/ParamOverriderCartIdTest.php index 4a36cd8bb98..e38fced91f3 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Webapi/ParamOverriderCartIdTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Webapi/ParamOverriderCartIdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Observer/Backend/CustomerQuoteObserverTest.php b/app/code/Magento/Quote/Test/Unit/Observer/Backend/CustomerQuoteObserverTest.php index 6970376c4d5..9dbcc5095c5 100644 --- a/app/code/Magento/Quote/Test/Unit/Observer/Backend/CustomerQuoteObserverTest.php +++ b/app/code/Magento/Quote/Test/Unit/Observer/Backend/CustomerQuoteObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/CollectTotalsObserverTest.php b/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/CollectTotalsObserverTest.php index ff6f04941ca..a003a3fa787 100644 --- a/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/CollectTotalsObserverTest.php +++ b/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/CollectTotalsObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/VatValidatorTest.php b/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/VatValidatorTest.php index 41e80c8e87a..97aa387fc51 100644 --- a/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/VatValidatorTest.php +++ b/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/VatValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Observer\Frontend\Quote\Address; diff --git a/app/code/Magento/Quote/Test/Unit/Observer/Webapi/SubmitObserverTest.php b/app/code/Magento/Quote/Test/Unit/Observer/Webapi/SubmitObserverTest.php index dc73b2e6ec7..5cdbf39a771 100644 --- a/app/code/Magento/Quote/Test/Unit/Observer/Webapi/SubmitObserverTest.php +++ b/app/code/Magento/Quote/Test/Unit/Observer/Webapi/SubmitObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Test\Unit\Observer\Webapi; diff --git a/app/code/Magento/Quote/etc/acl.xml b/app/code/Magento/Quote/etc/acl.xml index 5959f75c899..9d7105888bf 100644 --- a/app/code/Magento/Quote/etc/acl.xml +++ b/app/code/Magento/Quote/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Quote/etc/adminhtml/events.xml b/app/code/Magento/Quote/etc/adminhtml/events.xml index ceffefc0938..51423b95745 100644 --- a/app/code/Magento/Quote/etc/adminhtml/events.xml +++ b/app/code/Magento/Quote/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Quote/etc/di.xml b/app/code/Magento/Quote/etc/di.xml index 6fb03921396..352408c0bb0 100644 --- a/app/code/Magento/Quote/etc/di.xml +++ b/app/code/Magento/Quote/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Quote/etc/events.xml b/app/code/Magento/Quote/etc/events.xml index 057983a6cee..b45c15abc7a 100644 --- a/app/code/Magento/Quote/etc/events.xml +++ b/app/code/Magento/Quote/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Quote/etc/extension_attributes.xml b/app/code/Magento/Quote/etc/extension_attributes.xml index 17cfd36e134..4be9018929b 100644 --- a/app/code/Magento/Quote/etc/extension_attributes.xml +++ b/app/code/Magento/Quote/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Quote/etc/fieldset.xml b/app/code/Magento/Quote/etc/fieldset.xml index 2a86a2773d8..3629350fdc8 100644 --- a/app/code/Magento/Quote/etc/fieldset.xml +++ b/app/code/Magento/Quote/etc/fieldset.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Quote/etc/module.xml b/app/code/Magento/Quote/etc/module.xml index 281cde9eeb9..f706b31daf2 100644 --- a/app/code/Magento/Quote/etc/module.xml +++ b/app/code/Magento/Quote/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Quote/etc/sales.xml b/app/code/Magento/Quote/etc/sales.xml index 221da3c02c1..b3fa5d73a57 100644 --- a/app/code/Magento/Quote/etc/sales.xml +++ b/app/code/Magento/Quote/etc/sales.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Quote/etc/webapi.xml b/app/code/Magento/Quote/etc/webapi.xml index 1947be77c2a..16661389972 100644 --- a/app/code/Magento/Quote/etc/webapi.xml +++ b/app/code/Magento/Quote/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Quote/etc/webapi_rest/di.xml b/app/code/Magento/Quote/etc/webapi_rest/di.xml index 654c9d73741..1e20f64e550 100644 --- a/app/code/Magento/Quote/etc/webapi_rest/di.xml +++ b/app/code/Magento/Quote/etc/webapi_rest/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Quote/etc/webapi_rest/events.xml b/app/code/Magento/Quote/etc/webapi_rest/events.xml index 7c3c0d0aa42..d8ce2753366 100644 --- a/app/code/Magento/Quote/etc/webapi_rest/events.xml +++ b/app/code/Magento/Quote/etc/webapi_rest/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -9,4 +9,4 @@ <event name="sales_model_service_quote_submit_success"> <observer name="sendEmail" instance="Magento\Quote\Observer\Webapi\SubmitObserver" /> </event> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Quote/etc/webapi_soap/di.xml b/app/code/Magento/Quote/etc/webapi_soap/di.xml index 654c9d73741..1e20f64e550 100644 --- a/app/code/Magento/Quote/etc/webapi_soap/di.xml +++ b/app/code/Magento/Quote/etc/webapi_soap/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Quote/etc/webapi_soap/events.xml b/app/code/Magento/Quote/etc/webapi_soap/events.xml index 7c3c0d0aa42..d8ce2753366 100644 --- a/app/code/Magento/Quote/etc/webapi_soap/events.xml +++ b/app/code/Magento/Quote/etc/webapi_soap/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -9,4 +9,4 @@ <event name="sales_model_service_quote_submit_success"> <observer name="sendEmail" instance="Magento\Quote\Observer\Webapi\SubmitObserver" /> </event> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Quote/registration.php b/app/code/Magento/Quote/registration.php index 646cd45863a..3ed62ea248d 100644 --- a/app/code/Magento/Quote/registration.php +++ b/app/code/Magento/Quote/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/MtdStart.php b/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/MtdStart.php index d3c5bc9a5ef..1766ef54dbb 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/MtdStart.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/MtdStart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Config\Form\Field; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/YtdStart.php b/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/YtdStart.php index aac0039dcc0..6882591b293 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/YtdStart.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/YtdStart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Config\Form\Field; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Customer/Accounts.php b/app/code/Magento/Reports/Block/Adminhtml/Customer/Accounts.php index 3c05dcbc087..a5b9d9a2a40 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Customer/Accounts.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Customer/Accounts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Customer; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Customer/Orders.php b/app/code/Magento/Reports/Block/Adminhtml/Customer/Orders.php index f210cdcb8ea..0c371b088bf 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Customer/Orders.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Customer/Orders.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Customer; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Customer/Totals.php b/app/code/Magento/Reports/Block/Adminhtml/Customer/Totals.php index 8f6e9ddec13..0136e3e4e55 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Customer/Totals.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Customer/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Customer; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php b/app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php index 437f7f6cd2f..225a02e1814 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Grid.php index e1d8115f94f..36706ec5966 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/AbstractGrid.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/AbstractGrid.php index 3dbc9607e4d..670bf38a4b5 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Grid/AbstractGrid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Grid/AbstractGrid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Grid; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Blanknumber.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Blanknumber.php index a8bad1bbbb9..be9c6e5cb8d 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Blanknumber.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Blanknumber.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Grid\Column\Renderer; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Currency.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Currency.php index e7305a32d4c..bc02fc71024 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Currency.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Currency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Customer.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Customer.php index fef6eea262b..d8b9a550a20 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Customer.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Grid\Column\Renderer; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Product.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Product.php index 0c789401b48..a995e00e951 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Product.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Grid\Column\Renderer; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/Shopcart.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/Shopcart.php index 2a6f9e48c82..a384e4be15f 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Grid/Shopcart.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Grid/Shopcart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Grid; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product.php b/app/code/Magento/Reports/Block/Adminhtml/Product.php index a7f137b993e..1f8751606b9 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Product.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads.php index 588f53f0d50..2720a878e7f 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Product; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Grid.php index 06045d1f2f5..1803170a7a4 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Product\Downloads; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Renderer/Purchases.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Renderer/Purchases.php index 6cbb1397bcc..437dedd8eb7 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Renderer/Purchases.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Renderer/Purchases.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Product\Downloads\Renderer; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock.php index 7c1e74e6a31..01a0a76af5d 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Product; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock/Grid.php index 1876ad27cac..64860f99943 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Product\Lowstock; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Sold.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Sold.php index 59a83723ca3..b261cef1315 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Product/Sold.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Product/Sold.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Product; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed.php index 0069551bba2..ec3b288b459 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Product; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed/Grid.php index 4fa70d2b692..62df3b19670 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Product\Viewed; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Refresh/Statistics.php b/app/code/Magento/Reports/Block/Adminhtml/Refresh/Statistics.php index 42e454c67af..8a00c807dfb 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Refresh/Statistics.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Refresh/Statistics.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Refresh; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Review/Customer.php b/app/code/Magento/Reports/Block/Adminhtml/Review/Customer.php index 3c48cf4c507..4cbd562060f 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Review/Customer.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Review/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Review; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Review/Detail.php b/app/code/Magento/Reports/Block/Adminhtml/Review/Detail.php index 9c0c0e7d992..20ca46b16e6 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Review/Detail.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Review/Detail.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Review; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Review/Detail/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Review/Detail/Grid.php index aa32ecc4f5c..3654d5e2be3 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Review/Detail/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Review/Detail/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Review\Detail; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Review/Product.php b/app/code/Magento/Reports/Block/Adminhtml/Review/Product.php index ad115ec3a9b..d2d57134736 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Review/Product.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Review/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Review; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers.php index abf348f1f1a..72cda825ac7 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Sales; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers/Grid.php index 07a7c1a08c2..ce4f9782e50 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Sales\Bestsellers; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons.php index da8fc661246..6b81111c91f 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Sales; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons/Grid.php index 45e679e69c3..ca848b4514f 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Sales\Coupons; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Grid/Column/Renderer/Date.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Grid/Column/Renderer/Date.php index 477eb460013..d440e066302 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Grid/Column/Renderer/Date.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Grid/Column/Renderer/Date.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Sales\Grid\Column\Renderer; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced.php index 1d8b0509074..94855437091 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Sales; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced/Grid.php index 50e164ce166..6ad8eb2899d 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded.php index d9fbf973846..2da9a67672f 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Sales; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded/Grid.php index d7de298111c..d1b02d9badd 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales.php index 942decee5f8..8c4ca3bbc2c 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Sales; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales/Grid.php index 39dc9851171..2d5e2c92ea7 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping.php index 17fd17cb5b2..10d400fae79 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Sales; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping/Grid.php index 8338877f475..4b58a79c4ed 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax.php index e1587deccca..0e3901f9f8c 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Sales; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax/Grid.php index b55a05b7df7..0c5bf9ec89e 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned.php index 187bd1c0c81..aabce9b8780 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Shopcart; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned/Grid.php index c6b66565c8d..b6a33e27344 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Shopcart\Abandoned; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer.php index f43943b113b..e0a6ce52dfc 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Shopcart; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer/Grid.php index ae203b37ee0..84c708342a4 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Shopcart\Customer; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product.php index 6588185d859..9065d19294b 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Shopcart; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product/Grid.php index 75d1ae7ac5c..c89ecacf193 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Shopcart\Product; diff --git a/app/code/Magento/Reports/Block/Adminhtml/Wishlist.php b/app/code/Magento/Reports/Block/Adminhtml/Wishlist.php index b4ebd37a6e9..2c7a683304a 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Wishlist.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Wishlist.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Adminhtml/Wishlist/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Wishlist/Grid.php index 1a152106a30..7229fb6d564 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Wishlist/Grid.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Wishlist/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Adminhtml\Wishlist; diff --git a/app/code/Magento/Reports/Block/Product/AbstractProduct.php b/app/code/Magento/Reports/Block/Product/AbstractProduct.php index 1fdcc297b28..ff41a0eb84a 100644 --- a/app/code/Magento/Reports/Block/Product/AbstractProduct.php +++ b/app/code/Magento/Reports/Block/Product/AbstractProduct.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Product; diff --git a/app/code/Magento/Reports/Block/Product/Compared.php b/app/code/Magento/Reports/Block/Product/Compared.php index f3d07601694..51ab976071c 100644 --- a/app/code/Magento/Reports/Block/Product/Compared.php +++ b/app/code/Magento/Reports/Block/Product/Compared.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Product/Viewed.php b/app/code/Magento/Reports/Block/Product/Viewed.php index b52568c0c1c..ef4d95f078f 100644 --- a/app/code/Magento/Reports/Block/Product/Viewed.php +++ b/app/code/Magento/Reports/Block/Product/Viewed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Block/Product/Widget/Compared.php b/app/code/Magento/Reports/Block/Product/Widget/Compared.php index 7ca7cbf9616..35619de79bc 100644 --- a/app/code/Magento/Reports/Block/Product/Widget/Compared.php +++ b/app/code/Magento/Reports/Block/Product/Widget/Compared.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Product\Widget; diff --git a/app/code/Magento/Reports/Block/Product/Widget/Viewed.php b/app/code/Magento/Reports/Block/Product/Widget/Viewed.php index b12149ef2e6..4ccaa17365c 100644 --- a/app/code/Magento/Reports/Block/Product/Widget/Viewed.php +++ b/app/code/Magento/Reports/Block/Product/Widget/Viewed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Product\Widget; diff --git a/app/code/Magento/Reports/Block/Product/Widget/Viewed/Item.php b/app/code/Magento/Reports/Block/Product/Widget/Viewed/Item.php index 07dd4791880..07c89cf7c6e 100644 --- a/app/code/Magento/Reports/Block/Product/Widget/Viewed/Item.php +++ b/app/code/Magento/Reports/Block/Product/Widget/Viewed/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Block\Product\Widget\Viewed; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Index.php b/app/code/Magento/Reports/Controller/Adminhtml/Index.php index 818632a2fb5..157daaec6be 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Index.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/AbstractReport.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/AbstractReport.php index bb7265a1a1a..f153576ba8b 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/AbstractReport.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/AbstractReport.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer.php index 3c4537c7577..a5565cda1e8 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Accounts.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Accounts.php index 54737512fb4..724fc2c3206 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Accounts.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Accounts.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Customer; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsCsv.php index 8b7eade4daa..6c5c2281abd 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Customer; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsExcel.php index 9fa2cf44a92..688cf6ef806 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Customer; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersCsv.php index 996df1a054f..20bef3b4be2 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Customer; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersExcel.php index 937d78c76f1..b44f973363d 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Customer; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsCsv.php index 34187aa87e3..6d832639ff8 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Customer; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsExcel.php index b97fc65b081..d6c6d368c66 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Customer; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Orders.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Orders.php index def6c594b1d..f4640c912fc 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Orders.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Orders.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Customer; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Totals.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Totals.php index 334c18f3509..0a873591f9d 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Totals.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Totals.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Customer; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product.php index cde36386f58..fb19d26ae33 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Downloads.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Downloads.php index 8635c0fbfc9..53af0a8a416 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Downloads.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Downloads.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsCsv.php index ab45869506b..f11e14d4981 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsExcel.php index fb7bfab47aa..ee20d716d7e 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockCsv.php index d24f6a235f3..8384a8fdaf8 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockExcel.php index c56f9656ec4..06ac73bac6d 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldCsv.php index 57e5407c6cb..686e0f1abb9 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldExcel.php index b3d02858f55..45bf7191163 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedCsv.php index 1c9dd4b35ed..f19676b6642 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedExcel.php index 7958775b535..f5d0bc708b7 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Lowstock.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Lowstock.php index 85ebe55f90e..9a346575cf5 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Lowstock.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Lowstock.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Sold.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Sold.php index 7377d3f8f52..ecaa08fb35e 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Sold.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Sold.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Viewed.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Viewed.php index 6565a5794c6..79a22d9008c 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Viewed.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Viewed.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Product; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review.php index f46a9abb95f..7ab251f3a11 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Customer.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Customer.php index 33c603bb7cd..e0a7741a27c 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Customer.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Customer.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Review; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerCsv.php index 6c7f7303a7d..d7514c01931 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Review; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerExcel.php index cfd5de10825..79d2e098dd1 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Review; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductCsv.php index fda367e81af..27d8ca450ce 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Review; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailCsv.php index 5ef4ece6f6e..98b80fe10e0 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Review; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailExcel.php index ccc4ef60965..7837a3a2f22 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Review; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductExcel.php index f4f11fe6b44..5b3e3f6f13a 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Review; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Product.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Product.php index 66b66c69c55..6e52c98eeb3 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Product.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Product.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Review; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ProductDetail.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ProductDetail.php index 081203325b0..50aaaa85caf 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ProductDetail.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ProductDetail.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Review; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales.php index c36dd05673c..00b2fb70c1c 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Bestsellers.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Bestsellers.php index 15b9185374f..397fc10664b 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Bestsellers.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Bestsellers.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Coupons.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Coupons.php index b4e7dacf357..42ce28cd511 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Coupons.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Coupons.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersCsv.php index 4068a0393e3..8ddef9dfb38 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersExcel.php index 68dc386b86a..d3f6a6d6f16 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsCsv.php index 0402d173d7f..d8d841cc06c 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsExcel.php index c6023bc32d9..b1f0021a14c 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedCsv.php index 16f18da2ecd..c5994cc4524 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedExcel.php index 5eb08203ee5..c8fc5db8faf 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedCsv.php index c93bce51f55..964978a8620 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedExcel.php index fd571d8a68a..b984e105b13 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesCsv.php index ed0fde22ebf..bfe0c184dfa 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesExcel.php index 26c3d3286f5..b2890c5fb32 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingCsv.php index 517e56838fa..725b58d5d90 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingExcel.php index 77e45d37767..a068c27577b 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxCsv.php index b6a7a9701a6..87eea1b333f 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxExcel.php index 0d58ec6034b..3a2753f8201 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Invoiced.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Invoiced.php index b30318c55ad..d28551659aa 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Invoiced.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Invoiced.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshLifetime.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshLifetime.php index 0caa0b48afd..99749ffd1a1 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshLifetime.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshLifetime.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshRecent.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshRecent.php index 8f96ccab05c..f6db372c81a 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshRecent.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshRecent.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshStatistics.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshStatistics.php index f36b80783f5..519a9e1827a 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshStatistics.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshStatistics.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Refunded.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Refunded.php index 5563f73e08c..0384c3f7194 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Refunded.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Refunded.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Sales.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Sales.php index a9f3e135d7d..88dafbef3ee 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Sales.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Sales.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Shipping.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Shipping.php index f36a605d8fc..da235ad81da 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Shipping.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Shipping.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Tax.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Tax.php index 2e79064d499..2e0463c5e83 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Tax.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Tax.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Sales; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart.php index 44438de0241..a45560c2fc6 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Abandoned.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Abandoned.php index 271c7a016f7..79b3a5c3909 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Abandoned.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Abandoned.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Shopcart; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Customer.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Customer.php index f5c9816b16f..6a4f99d7621 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Customer.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Customer.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Shopcart; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedCsv.php index 8be4bde3fbe..1bae56be4f9 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Shopcart; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedExcel.php index b3520391c31..367af4d1979 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Shopcart; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerCsv.php index 6b2dc465cc3..08759381d06 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Shopcart; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerExcel.php index 6bc0a460881..d6964bb77ab 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Shopcart; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductCsv.php index 15c28b6d39d..9fb1124cb9c 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductCsv.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Shopcart; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductExcel.php index 55d8715528d..134aad64a00 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductExcel.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductExcel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Shopcart; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Product.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Product.php index 9ab49da51aa..51754b81631 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Product.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Product.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Shopcart; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics.php index e096abef915..5da5251af0d 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/Index.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/Index.php index 7e95848a456..d87101a5f08 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/Index.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Statistics; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshLifetime.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshLifetime.php index a6c9b2d512d..1c6087355f9 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshLifetime.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshLifetime.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Statistics; diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshRecent.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshRecent.php index 1a57e433d85..40dcbd08636 100644 --- a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshRecent.php +++ b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshRecent.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Controller\Adminhtml\Report\Statistics; diff --git a/app/code/Magento/Reports/Helper/Data.php b/app/code/Magento/Reports/Helper/Data.php index 55d4525a94d..6a6a9954643 100644 --- a/app/code/Magento/Reports/Helper/Data.php +++ b/app/code/Magento/Reports/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/Config.php b/app/code/Magento/Reports/Model/Config.php index 99664397a9c..58b699688b4 100644 --- a/app/code/Magento/Reports/Model/Config.php +++ b/app/code/Magento/Reports/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model; diff --git a/app/code/Magento/Reports/Model/Event.php b/app/code/Magento/Reports/Model/Event.php index 8c7f52fd88f..5a388b1025f 100644 --- a/app/code/Magento/Reports/Model/Event.php +++ b/app/code/Magento/Reports/Model/Event.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model; diff --git a/app/code/Magento/Reports/Model/Event/Type.php b/app/code/Magento/Reports/Model/Event/Type.php index 7d12bab105f..49a44fb3faf 100644 --- a/app/code/Magento/Reports/Model/Event/Type.php +++ b/app/code/Magento/Reports/Model/Event/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\Event; diff --git a/app/code/Magento/Reports/Model/Flag.php b/app/code/Magento/Reports/Model/Flag.php index 5fb2392f689..cbe14f2884e 100644 --- a/app/code/Magento/Reports/Model/Flag.php +++ b/app/code/Magento/Reports/Model/Flag.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model; diff --git a/app/code/Magento/Reports/Model/Grouped/Collection.php b/app/code/Magento/Reports/Model/Grouped/Collection.php index 50cbab309d6..89800158f41 100644 --- a/app/code/Magento/Reports/Model/Grouped/Collection.php +++ b/app/code/Magento/Reports/Model/Grouped/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\Grouped; diff --git a/app/code/Magento/Reports/Model/Item.php b/app/code/Magento/Reports/Model/Item.php index 65444fd3a73..0673153fd0a 100644 --- a/app/code/Magento/Reports/Model/Item.php +++ b/app/code/Magento/Reports/Model/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model; diff --git a/app/code/Magento/Reports/Model/Plugin/Log.php b/app/code/Magento/Reports/Model/Plugin/Log.php index 98930a5d870..e1b2c19607c 100644 --- a/app/code/Magento/Reports/Model/Plugin/Log.php +++ b/app/code/Magento/Reports/Model/Plugin/Log.php @@ -2,7 +2,7 @@ /** * Plugin for \Magento\Customer\Model\ResourceModel\Visitor model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\Plugin; diff --git a/app/code/Magento/Reports/Model/Product/Index/AbstractIndex.php b/app/code/Magento/Reports/Model/Product/Index/AbstractIndex.php index 9b59e309dfd..1a933178ef9 100644 --- a/app/code/Magento/Reports/Model/Product/Index/AbstractIndex.php +++ b/app/code/Magento/Reports/Model/Product/Index/AbstractIndex.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\Product\Index; diff --git a/app/code/Magento/Reports/Model/Product/Index/Compared.php b/app/code/Magento/Reports/Model/Product/Index/Compared.php index e4a7f4a59ad..71a38cae5f7 100644 --- a/app/code/Magento/Reports/Model/Product/Index/Compared.php +++ b/app/code/Magento/Reports/Model/Product/Index/Compared.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\Product\Index; diff --git a/app/code/Magento/Reports/Model/Product/Index/Factory.php b/app/code/Magento/Reports/Model/Product/Index/Factory.php index 1dfeb8b0659..9af74f44363 100644 --- a/app/code/Magento/Reports/Model/Product/Index/Factory.php +++ b/app/code/Magento/Reports/Model/Product/Index/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\Product\Index; diff --git a/app/code/Magento/Reports/Model/Product/Index/Viewed.php b/app/code/Magento/Reports/Model/Product/Index/Viewed.php index 8c1ffeb4e48..d894fc431a8 100644 --- a/app/code/Magento/Reports/Model/Product/Index/Viewed.php +++ b/app/code/Magento/Reports/Model/Product/Index/Viewed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\Product\Index; diff --git a/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection.php index 59eaba614b2..73aba76f07a 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection/Initial.php b/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection/Initial.php index 68d67c964c9..8b3e73ba049 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection/Initial.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection/Initial.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Customer/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Customer/Collection.php index 6ba4733936b..831acaebda3 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Customer/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Customer/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection.php index d009a1e07ea..640a5b95c74 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection/Initial.php b/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection/Initial.php index ec7fef4f7d4..bc077339f3f 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection/Initial.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection/Initial.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection.php index 6ee38a04c49..553305a1275 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection/Initial.php b/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection/Initial.php index c76dfcfa1d8..ca7afbe5115 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection/Initial.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection/Initial.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Event.php b/app/code/Magento/Reports/Model/ResourceModel/Event.php index 912112deeb1..642217dd8c9 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Event.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Event.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\ResourceModel; diff --git a/app/code/Magento/Reports/Model/ResourceModel/Event/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Event/Collection.php index 0a45adfbfdf..65ef079f67c 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Event/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Event/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Event/Type.php b/app/code/Magento/Reports/Model/ResourceModel/Event/Type.php index 24b66f4c2d7..c50299c9aff 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Event/Type.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Event/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Event/Type/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Event/Type/Collection.php index 8e082bb36cc..8383ca8f92d 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Event/Type/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Event/Type/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Helper.php b/app/code/Magento/Reports/Model/ResourceModel/Helper.php index 8ad03ccdcb6..eaa3886222b 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Helper.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Helper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/HelperInterface.php b/app/code/Magento/Reports/Model/ResourceModel/HelperInterface.php index 39f37d979d1..24b0b751407 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/HelperInterface.php +++ b/app/code/Magento/Reports/Model/ResourceModel/HelperInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Order/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Order/Collection.php index 82390b91258..6b6a0ddd7d4 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Order/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Order/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Collection.php index 34af05abd48..4f5c6d1c3c9 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Product/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Product/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Downloads/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Downloads/Collection.php index bf4b8d3f8bd..7d3b3e4dc13 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Product/Downloads/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Product/Downloads/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/AbstractIndex.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/AbstractIndex.php index 2d814c0525e..4479c7fcbce 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/AbstractIndex.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/AbstractIndex.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Collection/AbstractCollection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Collection/AbstractCollection.php index 36043a82817..d4e6f051212 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Collection/AbstractCollection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Collection/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared.php index 231b1dc1e8d..b68cdcdf160 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared/Collection.php index 15241af6be1..8d6f2e7cd88 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed.php index 8ec8429bb19..c6ab3042c0b 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed/Collection.php index 661c9bcab54..bb844b5cc30 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Lowstock/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Lowstock/Collection.php index 9c8afd21cd6..764fa5743e8 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Product/Lowstock/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Product/Lowstock/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection.php index c45d2a3480c..5ef71e88bae 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection/Initial.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection/Initial.php index 00c55b2161d..053e48679c6 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection/Initial.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection/Initial.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Quote/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Quote/Collection.php index 151f8478c0b..e8c8b79cd91 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Quote/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Quote/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\ResourceModel\Quote; diff --git a/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactory.php b/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactory.php index e791412f4f4..5930b7316f3 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactory.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\ResourceModel\Quote; diff --git a/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactoryInterface.php b/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactoryInterface.php index 00e2f76f427..c5ee6f8fe02 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactoryInterface.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\ResourceModel\Quote; diff --git a/app/code/Magento/Reports/Model/ResourceModel/Quote/Item/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Quote/Item/Collection.php index caad6a8b606..c9f1c3d3c7a 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Quote/Item/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Quote/Item/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Refresh/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Refresh/Collection.php index b241e67c67e..06e638c4544 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Refresh/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Refresh/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/AbstractReport.php b/app/code/Magento/Reports/Model/ResourceModel/Report/AbstractReport.php index a4c5a62d347..120cb84b507 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Report/AbstractReport.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Report/AbstractReport.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Report/Collection.php index 3c34476807e..61cfa1ebe9d 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Report/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Report/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/AbstractCollection.php b/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/AbstractCollection.php index 0e2b25452fc..c56c5c07d19 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/AbstractCollection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/Factory.php b/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/Factory.php index ebf8ff6223f..4b1ef4d3729 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/Factory.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Model\ResourceModel\Report\Collection; diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed.php b/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed.php index 9d1fc53664a..c8daccc2cb4 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed/Collection.php index 61855b4e768..2e09227b1c1 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Review/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Review/Collection.php index c97699bcc79..a29d68a79f0 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Review/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Review/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Review/Customer/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Review/Customer/Collection.php index 50b570cc366..fc1a59d0c54 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Review/Customer/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Review/Customer/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Review/Product/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Review/Product/Collection.php index dae41f6d59a..ad266d45fa0 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Review/Product/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Review/Product/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Collection.php index b566687ef99..24669669507 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Product/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Product/Collection.php index b2c0a99a6af..cbbdfb88dd2 100644 --- a/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Product/Collection.php +++ b/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Product/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Observer/CatalogProductCompareAddProductObserver.php b/app/code/Magento/Reports/Observer/CatalogProductCompareAddProductObserver.php index 12fa3369bcf..5fa1fe70910 100644 --- a/app/code/Magento/Reports/Observer/CatalogProductCompareAddProductObserver.php +++ b/app/code/Magento/Reports/Observer/CatalogProductCompareAddProductObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Observer; diff --git a/app/code/Magento/Reports/Observer/CatalogProductCompareClearObserver.php b/app/code/Magento/Reports/Observer/CatalogProductCompareClearObserver.php index b7aa4a57d4b..70a106fb567 100644 --- a/app/code/Magento/Reports/Observer/CatalogProductCompareClearObserver.php +++ b/app/code/Magento/Reports/Observer/CatalogProductCompareClearObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Observer; diff --git a/app/code/Magento/Reports/Observer/CatalogProductViewObserver.php b/app/code/Magento/Reports/Observer/CatalogProductViewObserver.php index 36df8398e64..f831bb1251b 100644 --- a/app/code/Magento/Reports/Observer/CatalogProductViewObserver.php +++ b/app/code/Magento/Reports/Observer/CatalogProductViewObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Observer; diff --git a/app/code/Magento/Reports/Observer/CheckoutCartAddProductObserver.php b/app/code/Magento/Reports/Observer/CheckoutCartAddProductObserver.php index 6d6ed3bbbe4..b48b0b465a4 100644 --- a/app/code/Magento/Reports/Observer/CheckoutCartAddProductObserver.php +++ b/app/code/Magento/Reports/Observer/CheckoutCartAddProductObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Observer; diff --git a/app/code/Magento/Reports/Observer/CustomerLoginObserver.php b/app/code/Magento/Reports/Observer/CustomerLoginObserver.php index 4be4770c632..285049a937f 100644 --- a/app/code/Magento/Reports/Observer/CustomerLoginObserver.php +++ b/app/code/Magento/Reports/Observer/CustomerLoginObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Observer; diff --git a/app/code/Magento/Reports/Observer/CustomerLogoutObserver.php b/app/code/Magento/Reports/Observer/CustomerLogoutObserver.php index 0b0ba3bba1a..bebc5806b3c 100644 --- a/app/code/Magento/Reports/Observer/CustomerLogoutObserver.php +++ b/app/code/Magento/Reports/Observer/CustomerLogoutObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Observer; diff --git a/app/code/Magento/Reports/Observer/EventSaver.php b/app/code/Magento/Reports/Observer/EventSaver.php index 0835ccf75eb..fac439bbfe6 100644 --- a/app/code/Magento/Reports/Observer/EventSaver.php +++ b/app/code/Magento/Reports/Observer/EventSaver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Observer; diff --git a/app/code/Magento/Reports/Observer/SendfriendProductObserver.php b/app/code/Magento/Reports/Observer/SendfriendProductObserver.php index de609ea6e2e..952247520f0 100644 --- a/app/code/Magento/Reports/Observer/SendfriendProductObserver.php +++ b/app/code/Magento/Reports/Observer/SendfriendProductObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Observer; diff --git a/app/code/Magento/Reports/Observer/WishlistAddProductObserver.php b/app/code/Magento/Reports/Observer/WishlistAddProductObserver.php index ca82545cd3b..f54916e3afe 100644 --- a/app/code/Magento/Reports/Observer/WishlistAddProductObserver.php +++ b/app/code/Magento/Reports/Observer/WishlistAddProductObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Observer; diff --git a/app/code/Magento/Reports/Observer/WishlistShareObserver.php b/app/code/Magento/Reports/Observer/WishlistShareObserver.php index 540e69896c7..3d22cb2a4fb 100644 --- a/app/code/Magento/Reports/Observer/WishlistShareObserver.php +++ b/app/code/Magento/Reports/Observer/WishlistShareObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Observer; diff --git a/app/code/Magento/Reports/Setup/InstallData.php b/app/code/Magento/Reports/Setup/InstallData.php index 678d192a628..0e19ae4d8dc 100644 --- a/app/code/Magento/Reports/Setup/InstallData.php +++ b/app/code/Magento/Reports/Setup/InstallData.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Setup/InstallSchema.php b/app/code/Magento/Reports/Setup/InstallSchema.php index aace6f9eaaa..c8ef39f5515 100644 --- a/app/code/Magento/Reports/Setup/InstallSchema.php +++ b/app/code/Magento/Reports/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Setup/Recurring.php b/app/code/Magento/Reports/Setup/Recurring.php index 9e4a2512d24..8b0d191338c 100644 --- a/app/code/Magento/Reports/Setup/Recurring.php +++ b/app/code/Magento/Reports/Setup/Recurring.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Setup; diff --git a/app/code/Magento/Reports/Test/Unit/Block/Adminhtml/Sales/Grid/Column/Renderer/DateTest.php b/app/code/Magento/Reports/Test/Unit/Block/Adminhtml/Sales/Grid/Column/Renderer/DateTest.php index a74cac42812..a1e3763b0d2 100644 --- a/app/code/Magento/Reports/Test/Unit/Block/Adminhtml/Sales/Grid/Column/Renderer/DateTest.php +++ b/app/code/Magento/Reports/Test/Unit/Block/Adminhtml/Sales/Grid/Column/Renderer/DateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Block/Product/ComparedTest.php b/app/code/Magento/Reports/Test/Unit/Block/Product/ComparedTest.php index f7030b8a731..01f162d3a5a 100644 --- a/app/code/Magento/Reports/Test/Unit/Block/Product/ComparedTest.php +++ b/app/code/Magento/Reports/Test/Unit/Block/Product/ComparedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Block/Product/ViewedTest.php b/app/code/Magento/Reports/Test/Unit/Block/Product/ViewedTest.php index 2f95cf4b3c2..af8f7a414ee 100644 --- a/app/code/Magento/Reports/Test/Unit/Block/Product/ViewedTest.php +++ b/app/code/Magento/Reports/Test/Unit/Block/Product/ViewedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Test\Unit\Block\Product; diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/AbstractControllerTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/AbstractControllerTest.php index 20b3cb6c572..ad0be4861aa 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/AbstractControllerTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/AbstractControllerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/AccountsTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/AccountsTest.php index 027890da8a1..e8fe98e2823 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/AccountsTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/AccountsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsCsvTest.php index 883a608eeee..991607d6465 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsCsvTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsCsvTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsExcelTest.php index 99d1cbc77e8..66ce0e729b6 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsExcelTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsExcelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersCsvTest.php index 6d06deffe63..9388d6b716f 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersCsvTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersCsvTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersExcelTest.php index 66e0c3368bc..c62e90fce5a 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersExcelTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersExcelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsCsvTest.php index 139499fd326..8d5508b0d8d 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsCsvTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsCsvTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsExcelTest.php index 726a40bf4d3..fe4a8ab42cb 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsExcelTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsExcelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/OrdersTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/OrdersTest.php index 0e31a2aee37..dc2de94f207 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/OrdersTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/OrdersTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/TotalsTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/TotalsTest.php index d7091d4c422..e0de5aa022f 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/TotalsTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/TotalsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/DownloadsTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/DownloadsTest.php index 53b5cff617f..ff7021de6e0 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/DownloadsTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/DownloadsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsCsvTest.php index c6c3608aa0d..dcd8969aaf5 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsCsvTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsCsvTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsExcelTest.php index 62809603e0d..b1009f6d932 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsExcelTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsExcelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockCsvTest.php index 5e520d2de9c..7ad632ea9c4 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockCsvTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockCsvTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockExcelTest.php index 1b83fa9ff66..f378d6e32d8 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockExcelTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockExcelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldCsvTest.php index f2101baaeea..5eb4096646c 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldCsvTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldCsvTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldExcelTest.php index 60e0c889ce1..0871ac6b3f2 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldExcelTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldExcelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedCsvTest.php index c71834da605..6bcd071b250 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedCsvTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedCsvTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedExcelTest.php index 3d22dd4eeeb..72ad9087871 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedExcelTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedExcelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/LowstockTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/LowstockTest.php index 96d95b6064c..8e21472cb37 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/LowstockTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/LowstockTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/SoldTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/SoldTest.php index d6ec8e7f217..7b49b1a44b0 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/SoldTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/SoldTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ViewedTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ViewedTest.php index b6c3cf705a9..99939df2031 100644 --- a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ViewedTest.php +++ b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ViewedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Helper/DataTest.php b/app/code/Magento/Reports/Test/Unit/Helper/DataTest.php index c76c071f792..25357c47f9b 100644 --- a/app/code/Magento/Reports/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Reports/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Model/Plugin/LogTest.php b/app/code/Magento/Reports/Test/Unit/Model/Plugin/LogTest.php index 5fa44ef2aef..14438edbaf6 100644 --- a/app/code/Magento/Reports/Test/Unit/Model/Plugin/LogTest.php +++ b/app/code/Magento/Reports/Test/Unit/Model/Plugin/LogTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Model/Product/Index/ComparedTest.php b/app/code/Magento/Reports/Test/Unit/Model/Product/Index/ComparedTest.php index bf308ce1bc2..ee9f418105e 100644 --- a/app/code/Magento/Reports/Test/Unit/Model/Product/Index/ComparedTest.php +++ b/app/code/Magento/Reports/Test/Unit/Model/Product/Index/ComparedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Event/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Event/CollectionTest.php index 80dadc5e398..5a820355ea2 100644 --- a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Event/CollectionTest.php +++ b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Event/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/EventTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/EventTest.php index 5508d94d3d1..964dc5eb05e 100644 --- a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/EventTest.php +++ b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/EventTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/HelperTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/HelperTest.php index 8911975d1e1..5d622f8fdfa 100644 --- a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/HelperTest.php +++ b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/HelperTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Order/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Order/CollectionTest.php index 692ccaf42f1..702e6762536 100644 --- a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Order/CollectionTest.php +++ b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Order/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Quote/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Quote/CollectionTest.php index d1757d53ed5..b7c051a6177 100644 --- a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Quote/CollectionTest.php +++ b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Quote/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Test\Unit\Model\ResourceModel\Quote; diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Collection/AbstractCollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Collection/AbstractCollectionTest.php index fdacb261794..edace1e8857 100644 --- a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Collection/AbstractCollectionTest.php +++ b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Collection/AbstractCollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/CollectionTest.php index 069bb5e5edf..7a79e618c65 100644 --- a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/CollectionTest.php +++ b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Product/ViewedTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Product/ViewedTest.php index c431472ca04..4ae83e04b9f 100644 --- a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Product/ViewedTest.php +++ b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Product/ViewedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Quote/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Quote/CollectionTest.php index 7d208d6d4b6..20d77b3019f 100644 --- a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Quote/CollectionTest.php +++ b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Quote/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Test\Unit\Model\ResourceModel\Report\Quote; diff --git a/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductCompareAddProductObserverTest.php b/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductCompareAddProductObserverTest.php index ebac9e9daa6..7a1e5df5988 100644 --- a/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductCompareAddProductObserverTest.php +++ b/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductCompareAddProductObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Test\Unit\Observer; diff --git a/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductViewObserverTest.php b/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductViewObserverTest.php index 452f0e57070..f5af3d97ae9 100644 --- a/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductViewObserverTest.php +++ b/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductViewObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Test\Unit\Observer; diff --git a/app/code/Magento/Reports/Test/Unit/Observer/CustomerLoginObserverTest.php b/app/code/Magento/Reports/Test/Unit/Observer/CustomerLoginObserverTest.php index 2392ea14812..7e493ec4d3f 100644 --- a/app/code/Magento/Reports/Test/Unit/Observer/CustomerLoginObserverTest.php +++ b/app/code/Magento/Reports/Test/Unit/Observer/CustomerLoginObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Test\Unit\Observer; diff --git a/app/code/Magento/Reports/Test/Unit/Observer/CustomerLogoutObserverTest.php b/app/code/Magento/Reports/Test/Unit/Observer/CustomerLogoutObserverTest.php index 92add4c3694..fbe19d690f6 100644 --- a/app/code/Magento/Reports/Test/Unit/Observer/CustomerLogoutObserverTest.php +++ b/app/code/Magento/Reports/Test/Unit/Observer/CustomerLogoutObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Reports\Test\Unit\Observer; diff --git a/app/code/Magento/Reports/etc/acl.xml b/app/code/Magento/Reports/etc/acl.xml index 88fd703c3f8..e7addc20914 100644 --- a/app/code/Magento/Reports/etc/acl.xml +++ b/app/code/Magento/Reports/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/etc/adminhtml/di.xml b/app/code/Magento/Reports/etc/adminhtml/di.xml index 2fc15cff9df..667d9761524 100644 --- a/app/code/Magento/Reports/etc/adminhtml/di.xml +++ b/app/code/Magento/Reports/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/etc/adminhtml/menu.xml b/app/code/Magento/Reports/etc/adminhtml/menu.xml index 93359f020a6..a92d1df052b 100644 --- a/app/code/Magento/Reports/etc/adminhtml/menu.xml +++ b/app/code/Magento/Reports/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/etc/adminhtml/routes.xml b/app/code/Magento/Reports/etc/adminhtml/routes.xml index 5b73b1ee172..62216db7f94 100644 --- a/app/code/Magento/Reports/etc/adminhtml/routes.xml +++ b/app/code/Magento/Reports/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/etc/adminhtml/system.xml b/app/code/Magento/Reports/etc/adminhtml/system.xml index acd8dfb8f06..20705675161 100644 --- a/app/code/Magento/Reports/etc/adminhtml/system.xml +++ b/app/code/Magento/Reports/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/etc/config.xml b/app/code/Magento/Reports/etc/config.xml index e9ddc727abe..73f5d50a177 100644 --- a/app/code/Magento/Reports/etc/config.xml +++ b/app/code/Magento/Reports/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/etc/di.xml b/app/code/Magento/Reports/etc/di.xml index c70f0dfb055..8aaadb8b8b9 100644 --- a/app/code/Magento/Reports/etc/di.xml +++ b/app/code/Magento/Reports/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/etc/frontend/events.xml b/app/code/Magento/Reports/etc/frontend/events.xml index 864cfb20d67..783dca55532 100644 --- a/app/code/Magento/Reports/etc/frontend/events.xml +++ b/app/code/Magento/Reports/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/etc/module.xml b/app/code/Magento/Reports/etc/module.xml index 50e5dff4ec9..c2e521b0dae 100644 --- a/app/code/Magento/Reports/etc/module.xml +++ b/app/code/Magento/Reports/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/etc/webapi_rest/events.xml b/app/code/Magento/Reports/etc/webapi_rest/events.xml index a641f1410a2..2e7416be27a 100644 --- a/app/code/Magento/Reports/etc/webapi_rest/events.xml +++ b/app/code/Magento/Reports/etc/webapi_rest/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/etc/webapi_soap/events.xml b/app/code/Magento/Reports/etc/webapi_soap/events.xml index a641f1410a2..2e7416be27a 100644 --- a/app/code/Magento/Reports/etc/webapi_soap/events.xml +++ b/app/code/Magento/Reports/etc/webapi_soap/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/etc/widget.xml b/app/code/Magento/Reports/etc/widget.xml index d5902c7a53e..95e607a4127 100644 --- a/app/code/Magento/Reports/etc/widget.xml +++ b/app/code/Magento/Reports/etc/widget.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/registration.php b/app/code/Magento/Reports/registration.php index b4bac494849..6a7c5358942 100644 --- a/app/code/Magento/Reports/registration.php +++ b/app/code/Magento/Reports/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts.xml index f24b1b49930..9479146aee8 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts_grid.xml index 5ea29ea5eba..d4fe28ed204 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts_grid.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountscsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountscsv.xml index ff53c0fc7be..a6a72b4db15 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountscsv.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountscsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountsexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountsexcel.xml index ff53c0fc7be..a6a72b4db15 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountsexcel.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountsexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportorderscsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportorderscsv.xml index b19a9dca6f6..9878151b369 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportorderscsv.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportorderscsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportordersexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportordersexcel.xml index b19a9dca6f6..9878151b369 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportordersexcel.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportordersexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalscsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalscsv.xml index 6759e441551..b0923da0eed 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalscsv.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalscsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalsexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalsexcel.xml index 6759e441551..b0923da0eed 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalsexcel.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalsexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders.xml index e7dd8a975cb..790fef75739 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders_grid.xml index b24b8801cd0..f7b9cdc66cc 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders_grid.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals.xml index 449946edb81..950c98a53a5 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals_grid.xml index 194a580bec3..3fa7173dbc7 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals_grid.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_grid.xml index b190ce77e22..3633d8d1101 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_grid.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_downloads.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_downloads.xml index ada8319d7f5..6e0dffe984e 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_downloads.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_downloads.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockcsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockcsv.xml index 357891c39cf..f07b9c58229 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockcsv.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockcsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockexcel.xml index 470e2abf747..db92cf2ff66 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockexcel.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldcsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldcsv.xml index a75b547e57a..4b01f4ff342 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldcsv.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldcsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldexcel.xml index a75b547e57a..4b01f4ff342 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldexcel.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock.xml index 86eebb4baa2..cb3a7b7153a 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock_grid.xml index 5d46cc329e7..a837ca13231 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock_grid.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold.xml index 3c5b544dd1c..886554dd84f 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold_grid.xml index 6d13fa2d7c9..24014ded59c 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold_grid.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_viewed.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_viewed.xml index 1da38794b3f..c7620f5f68a 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_viewed.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_viewed.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer.xml index 1bf4d38bf72..730a723e85c 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer_grid.xml index da8f5803566..0a21902847d 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer_grid.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomercsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomercsv.xml index 51d85b4cdc6..4a6001d1284 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomercsv.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomercsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomerexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomerexcel.xml index 51d85b4cdc6..4a6001d1284 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomerexcel.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomerexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductcsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductcsv.xml index 1d68a6be744..74987c9a803 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductcsv.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductcsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductexcel.xml index 1d68a6be744..74987c9a803 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductexcel.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product.xml index 160e0b2d80f..88f8ce42a86 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product_grid.xml index c795a9e2922..68633166ab1 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product_grid.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_bestsellers.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_bestsellers.xml index 78625b7d6d8..e66157d57d3 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_bestsellers.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_bestsellers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_coupons.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_coupons.xml index 479ebea8312..c1a655da05a 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_coupons.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_coupons.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_invoiced.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_invoiced.xml index e2932d3b954..eb43c741623 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_invoiced.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_invoiced.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_refunded.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_refunded.xml index fe58a42dff1..fb9440a2c8c 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_refunded.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_refunded.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_sales.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_sales.xml index e5211cface1..5171181ba53 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_sales.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_sales.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_shipping.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_shipping.xml index ee2e1d3f458..8f18330f6a4 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_shipping.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_shipping.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_tax.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_tax.xml index d35df8dcea3..9b3327cc111 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_tax.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_tax.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_shopcart_abandoned.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_shopcart_abandoned.xml index 79f021d5749..c260338f864 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_shopcart_abandoned.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_shopcart_abandoned.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_statistics_index.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_statistics_index.xml index be5020984a3..c87961cf383 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_statistics_index.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_statistics_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_sales.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_sales.xml index b2e8368c9dd..49d83b7825d 100644 --- a/app/code/Magento/Reports/view/adminhtml/layout/reports_sales.xml +++ b/app/code/Magento/Reports/view/adminhtml/layout/reports_sales.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/adminhtml/templates/grid.phtml b/app/code/Magento/Reports/view/adminhtml/templates/grid.phtml index 2e954a43941..119a64c5ae0 100644 --- a/app/code/Magento/Reports/view/adminhtml/templates/grid.phtml +++ b/app/code/Magento/Reports/view/adminhtml/templates/grid.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/adminhtml/templates/report/grid/container.phtml b/app/code/Magento/Reports/view/adminhtml/templates/report/grid/container.phtml index f927a4cda56..0017862d847 100644 --- a/app/code/Magento/Reports/view/adminhtml/templates/report/grid/container.phtml +++ b/app/code/Magento/Reports/view/adminhtml/templates/report/grid/container.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/adminhtml/templates/report/refresh/statistics.phtml b/app/code/Magento/Reports/view/adminhtml/templates/report/refresh/statistics.phtml index d4e3aed2900..355c3d1759e 100644 --- a/app/code/Magento/Reports/view/adminhtml/templates/report/refresh/statistics.phtml +++ b/app/code/Magento/Reports/view/adminhtml/templates/report/refresh/statistics.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/adminhtml/templates/report/wishlist.phtml b/app/code/Magento/Reports/view/adminhtml/templates/report/wishlist.phtml index 307d8805e0c..01dcd56d942 100644 --- a/app/code/Magento/Reports/view/adminhtml/templates/report/wishlist.phtml +++ b/app/code/Magento/Reports/view/adminhtml/templates/report/wishlist.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/adminhtml/templates/store/switcher.phtml b/app/code/Magento/Reports/view/adminhtml/templates/store/switcher.phtml index 6d98022c71f..949502757d2 100644 --- a/app/code/Magento/Reports/view/adminhtml/templates/store/switcher.phtml +++ b/app/code/Magento/Reports/view/adminhtml/templates/store/switcher.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/adminhtml/templates/store/switcher/enhanced.phtml b/app/code/Magento/Reports/view/adminhtml/templates/store/switcher/enhanced.phtml index 31c85cbc4d5..5b224e940e5 100644 --- a/app/code/Magento/Reports/view/adminhtml/templates/store/switcher/enhanced.phtml +++ b/app/code/Magento/Reports/view/adminhtml/templates/store/switcher/enhanced.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/layout/default.xml b/app/code/Magento/Reports/view/frontend/layout/default.xml index d44d295ab8d..8fb6c4360e3 100644 --- a/app/code/Magento/Reports/view/frontend/layout/default.xml +++ b/app/code/Magento/Reports/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/frontend/layout/print.xml b/app/code/Magento/Reports/view/frontend/layout/print.xml index 7509438df25..e01b48cc71b 100644 --- a/app/code/Magento/Reports/view/frontend/layout/print.xml +++ b/app/code/Magento/Reports/view/frontend/layout/print.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Reports/view/frontend/requirejs-config.js b/app/code/Magento/Reports/view/frontend/requirejs-config.js index 35093099ac0..d06a05d5ec7 100644 --- a/app/code/Magento/Reports/view/frontend/requirejs-config.js +++ b/app/code/Magento/Reports/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { recentlyViewedProducts: 'Magento_Reports/js/recently-viewed' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Reports/view/frontend/templates/js/components.phtml b/app/code/Magento/Reports/view/frontend/templates/js/components.phtml index e490a6aa049..bdcb2e9bf77 100644 --- a/app/code/Magento/Reports/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed.phtml b/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed.phtml index aa694c03d50..7e6f50b3728 100644 --- a/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed/item.phtml b/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed/item.phtml index eef9b5d7cab..950ab50bf74 100644 --- a/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed/item.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed/item.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_default_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_default_list.phtml index 394ee3bd9d2..f26c96a9f9e 100644 --- a/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_default_list.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_default_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_images_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_images_list.phtml index 6c7c989ce3e..cb9eb1229c3 100644 --- a/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_images_list.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_images_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_names_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_names_list.phtml index cf66c895fb0..b6e3b534521 100644 --- a/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_names_list.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_names_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_grid.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_grid.phtml index b134a766cac..151e5d60445 100644 --- a/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_grid.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_grid.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_list.phtml index a828f47603e..9b6dbc9cbac 100644 --- a/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_list.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_default_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_default_list.phtml index 725536e6eab..0c4b84737a0 100644 --- a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_default_list.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_default_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_images_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_images_list.phtml index 22906db3613..3a548aaedb8 100644 --- a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_images_list.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_images_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_names_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_names_list.phtml index b0b9f31ce85..e739b5d10f5 100644 --- a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_names_list.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_names_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_grid.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_grid.phtml index 4a0ba45f6f1..e9fe8c8c3ae 100644 --- a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_grid.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_grid.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_list.phtml index 547d0f80b65..b2077b441b7 100644 --- a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_list.phtml +++ b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Reports/view/frontend/web/js/recently-viewed.js b/app/code/Magento/Reports/view/frontend/web/js/recently-viewed.js index 99f4ba1d90e..4375a8b4028 100644 --- a/app/code/Magento/Reports/view/frontend/web/js/recently-viewed.js +++ b/app/code/Magento/Reports/view/frontend/web/js/recently-viewed.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint jquery:true*/ @@ -51,4 +51,4 @@ define([ }); return $.mage.recentlyViewedProducts; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/RequireJs/Block/Html/Head/Config.php b/app/code/Magento/RequireJs/Block/Html/Head/Config.php index 5bf81eb4d53..d382029e3eb 100644 --- a/app/code/Magento/RequireJs/Block/Html/Head/Config.php +++ b/app/code/Magento/RequireJs/Block/Html/Head/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/RequireJs/Model/FileManager.php b/app/code/Magento/RequireJs/Model/FileManager.php index 90dfd968abb..6edb7a8bb92 100644 --- a/app/code/Magento/RequireJs/Model/FileManager.php +++ b/app/code/Magento/RequireJs/Model/FileManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\RequireJs\Model; diff --git a/app/code/Magento/RequireJs/Test/Unit/Block/Html/Head/ConfigTest.php b/app/code/Magento/RequireJs/Test/Unit/Block/Html/Head/ConfigTest.php index 2b763824dfe..8278efeef5c 100644 --- a/app/code/Magento/RequireJs/Test/Unit/Block/Html/Head/ConfigTest.php +++ b/app/code/Magento/RequireJs/Test/Unit/Block/Html/Head/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/RequireJs/Test/Unit/Model/FileManagerTest.php b/app/code/Magento/RequireJs/Test/Unit/Model/FileManagerTest.php index 4a8ea649941..73ba0a3be62 100644 --- a/app/code/Magento/RequireJs/Test/Unit/Model/FileManagerTest.php +++ b/app/code/Magento/RequireJs/Test/Unit/Model/FileManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/RequireJs/etc/di.xml b/app/code/Magento/RequireJs/etc/di.xml index 291fae29290..8538f37909f 100644 --- a/app/code/Magento/RequireJs/etc/di.xml +++ b/app/code/Magento/RequireJs/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/RequireJs/etc/module.xml b/app/code/Magento/RequireJs/etc/module.xml index 64b3a9f9fe0..d3e479c5844 100644 --- a/app/code/Magento/RequireJs/etc/module.xml +++ b/app/code/Magento/RequireJs/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/RequireJs/registration.php b/app/code/Magento/RequireJs/registration.php index 615be03e1bb..f2f2c0091c7 100644 --- a/app/code/Magento/RequireJs/registration.php +++ b/app/code/Magento/RequireJs/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Block/Adminhtml/Add.php b/app/code/Magento/Review/Block/Adminhtml/Add.php index f2b43473d82..e6d6e03d0d4 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Add.php +++ b/app/code/Magento/Review/Block/Adminhtml/Add.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Block/Adminhtml/Add/Form.php b/app/code/Magento/Review/Block/Adminhtml/Add/Form.php index a8cf84112ab..897a44f6951 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Add/Form.php +++ b/app/code/Magento/Review/Block/Adminhtml/Add/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Add; diff --git a/app/code/Magento/Review/Block/Adminhtml/Edit.php b/app/code/Magento/Review/Block/Adminhtml/Edit.php index 385bc3be594..b36cffcfbd6 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Edit.php +++ b/app/code/Magento/Review/Block/Adminhtml/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml; diff --git a/app/code/Magento/Review/Block/Adminhtml/Edit/Form.php b/app/code/Magento/Review/Block/Adminhtml/Edit/Form.php index 9aad5e1e236..a47744c470c 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Edit/Form.php +++ b/app/code/Magento/Review/Block/Adminhtml/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Block/Adminhtml/Grid.php b/app/code/Magento/Review/Block/Adminhtml/Grid.php index 9fa47b46eff..8f6a8866161 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Grid.php +++ b/app/code/Magento/Review/Block/Adminhtml/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Block/Adminhtml/Grid/Filter/Type.php b/app/code/Magento/Review/Block/Adminhtml/Grid/Filter/Type.php index 24e56b5fbde..29aa3b45f7d 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Grid/Filter/Type.php +++ b/app/code/Magento/Review/Block/Adminhtml/Grid/Filter/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Grid\Filter; diff --git a/app/code/Magento/Review/Block/Adminhtml/Grid/Renderer/Type.php b/app/code/Magento/Review/Block/Adminhtml/Grid/Renderer/Type.php index 8dcea8d03df..67235b37356 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Grid/Renderer/Type.php +++ b/app/code/Magento/Review/Block/Adminhtml/Grid/Renderer/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Grid\Renderer; diff --git a/app/code/Magento/Review/Block/Adminhtml/Main.php b/app/code/Magento/Review/Block/Adminhtml/Main.php index 85ccb97d539..16a6cb85d52 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Main.php +++ b/app/code/Magento/Review/Block/Adminhtml/Main.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab.php b/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab.php index 51e7e8e51a4..40d491a1dc7 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab.php +++ b/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Product\Edit; diff --git a/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab/Reviews.php b/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab/Reviews.php index 9a0c365c430..c0d44446ce6 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab/Reviews.php +++ b/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab/Reviews.php @@ -2,7 +2,7 @@ /** * Reviews products admin grid * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Product\Edit\Tab; diff --git a/app/code/Magento/Review/Block/Adminhtml/Product/Grid.php b/app/code/Magento/Review/Block/Adminhtml/Product/Grid.php index b8506549ddd..bad73fe3f69 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Product/Grid.php +++ b/app/code/Magento/Review/Block/Adminhtml/Product/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Product; diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating.php b/app/code/Magento/Review/Block/Adminhtml/Rating.php index 598bddfe2e9..6c133f132c3 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Rating.php +++ b/app/code/Magento/Review/Block/Adminhtml/Rating.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml; diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Detailed.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Detailed.php index ac7293eaae2..6b304a4cfb1 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Rating/Detailed.php +++ b/app/code/Magento/Review/Block/Adminhtml/Rating/Detailed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Rating; diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit.php index 096d348b02c..6514d7bb853 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit.php +++ b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Rating; diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Form.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Form.php index 4e75f4352d1..0a112023d8f 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Form.php +++ b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Rating\Edit; diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tab/Form.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tab/Form.php index f6957e5cb92..b28883ee92e 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tab/Form.php +++ b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tab/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Rating\Edit\Tab; diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tabs.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tabs.php index 422aa8a5f42..b945bef02df 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tabs.php +++ b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Rating\Edit; diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Summary.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Summary.php index bf64f545606..8a261352a00 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Rating/Summary.php +++ b/app/code/Magento/Review/Block/Adminhtml/Rating/Summary.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Rating; diff --git a/app/code/Magento/Review/Block/Adminhtml/ReviewTab.php b/app/code/Magento/Review/Block/Adminhtml/ReviewTab.php index f56d0acaa38..882a2671e98 100644 --- a/app/code/Magento/Review/Block/Adminhtml/ReviewTab.php +++ b/app/code/Magento/Review/Block/Adminhtml/ReviewTab.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml; diff --git a/app/code/Magento/Review/Block/Adminhtml/Rss.php b/app/code/Magento/Review/Block/Adminhtml/Rss.php index a35fd3a4e58..4528c863861 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Rss.php +++ b/app/code/Magento/Review/Block/Adminhtml/Rss.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml; diff --git a/app/code/Magento/Review/Block/Adminhtml/Rss/Grid/Link.php b/app/code/Magento/Review/Block/Adminhtml/Rss/Grid/Link.php index 0c2d2d16b3c..3d25fdcc184 100644 --- a/app/code/Magento/Review/Block/Adminhtml/Rss/Grid/Link.php +++ b/app/code/Magento/Review/Block/Adminhtml/Rss/Grid/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Adminhtml\Rss\Grid; diff --git a/app/code/Magento/Review/Block/Customer/ListCustomer.php b/app/code/Magento/Review/Block/Customer/ListCustomer.php index d596f1d46db..8de1f45ea9d 100644 --- a/app/code/Magento/Review/Block/Customer/ListCustomer.php +++ b/app/code/Magento/Review/Block/Customer/ListCustomer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Customer; diff --git a/app/code/Magento/Review/Block/Customer/Recent.php b/app/code/Magento/Review/Block/Customer/Recent.php index 75d046725d4..fd683ab9890 100644 --- a/app/code/Magento/Review/Block/Customer/Recent.php +++ b/app/code/Magento/Review/Block/Customer/Recent.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Customer; diff --git a/app/code/Magento/Review/Block/Customer/View.php b/app/code/Magento/Review/Block/Customer/View.php index 35c960a86ea..55e7c430f4d 100644 --- a/app/code/Magento/Review/Block/Customer/View.php +++ b/app/code/Magento/Review/Block/Customer/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Customer; diff --git a/app/code/Magento/Review/Block/Form.php b/app/code/Magento/Review/Block/Form.php index 806492884f1..1184cf87627 100644 --- a/app/code/Magento/Review/Block/Form.php +++ b/app/code/Magento/Review/Block/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block; diff --git a/app/code/Magento/Review/Block/Form/Configure.php b/app/code/Magento/Review/Block/Form/Configure.php index 75f9723d8f4..6dca4dc3e16 100644 --- a/app/code/Magento/Review/Block/Form/Configure.php +++ b/app/code/Magento/Review/Block/Form/Configure.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Form; diff --git a/app/code/Magento/Review/Block/Product/Compare/ListCompare/Plugin/Review.php b/app/code/Magento/Review/Block/Product/Compare/ListCompare/Plugin/Review.php index 6fc980443bc..1c5f75a80f8 100644 --- a/app/code/Magento/Review/Block/Product/Compare/ListCompare/Plugin/Review.php +++ b/app/code/Magento/Review/Block/Product/Compare/ListCompare/Plugin/Review.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Block/Product/Review.php b/app/code/Magento/Review/Block/Product/Review.php index a910cd1f211..96afb3c287c 100644 --- a/app/code/Magento/Review/Block/Product/Review.php +++ b/app/code/Magento/Review/Block/Product/Review.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Product; diff --git a/app/code/Magento/Review/Block/Product/ReviewRenderer.php b/app/code/Magento/Review/Block/Product/ReviewRenderer.php index 35ee689df9a..dae17d26043 100644 --- a/app/code/Magento/Review/Block/Product/ReviewRenderer.php +++ b/app/code/Magento/Review/Block/Product/ReviewRenderer.php @@ -2,7 +2,7 @@ /** * Review renderer * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Product; diff --git a/app/code/Magento/Review/Block/Product/View.php b/app/code/Magento/Review/Block/Product/View.php index d7b8502b33d..e6d2364a106 100644 --- a/app/code/Magento/Review/Block/Product/View.php +++ b/app/code/Magento/Review/Block/Product/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Product; diff --git a/app/code/Magento/Review/Block/Product/View/ListView.php b/app/code/Magento/Review/Block/Product/View/ListView.php index 02b040b0c2a..3d2b9c6911a 100644 --- a/app/code/Magento/Review/Block/Product/View/ListView.php +++ b/app/code/Magento/Review/Block/Product/View/ListView.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Product\View; diff --git a/app/code/Magento/Review/Block/Product/View/Other.php b/app/code/Magento/Review/Block/Product/View/Other.php index d8120918d64..e1f4a18693a 100644 --- a/app/code/Magento/Review/Block/Product/View/Other.php +++ b/app/code/Magento/Review/Block/Product/View/Other.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Product\View; diff --git a/app/code/Magento/Review/Block/Rating/Entity/Detailed.php b/app/code/Magento/Review/Block/Rating/Entity/Detailed.php index f96380ce427..55d34621bb7 100644 --- a/app/code/Magento/Review/Block/Rating/Entity/Detailed.php +++ b/app/code/Magento/Review/Block/Rating/Entity/Detailed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block\Rating\Entity; diff --git a/app/code/Magento/Review/Block/View.php b/app/code/Magento/Review/Block/View.php index 2a252828a36..0e268e52bd8 100644 --- a/app/code/Magento/Review/Block/View.php +++ b/app/code/Magento/Review/Block/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Block; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product.php b/app/code/Magento/Review/Controller/Adminhtml/Product.php index d61033e676f..5d782f1ac52 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Delete.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Delete.php index 0afa798a3c2..7e0fe40c813 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/Delete.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/Delete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Edit.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Edit.php index e81e95613bf..9c3663c362d 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/Edit.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Index.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Index.php index 0d7629a8bfd..e0c4efa6676 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/Index.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/JsonProductInfo.php b/app/code/Magento/Review/Controller/Adminhtml/Product/JsonProductInfo.php index fe162464d02..72a245ff336 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/JsonProductInfo.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/JsonProductInfo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/MassDelete.php b/app/code/Magento/Review/Controller/Adminhtml/Product/MassDelete.php index 0f74f4fe0e6..28db6515a87 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/MassDelete.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/MassDelete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/MassUpdateStatus.php b/app/code/Magento/Review/Controller/Adminhtml/Product/MassUpdateStatus.php index 9b43a30c5e4..9f6926d5d5d 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/MassUpdateStatus.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/MassUpdateStatus.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/MassVisibleIn.php b/app/code/Magento/Review/Controller/Adminhtml/Product/MassVisibleIn.php index 6437253d879..7402fa2e044 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/MassVisibleIn.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/MassVisibleIn.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/NewAction.php b/app/code/Magento/Review/Controller/Adminhtml/Product/NewAction.php index e9c8426ba9d..10e498dc544 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/NewAction.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/NewAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Pending.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Pending.php index 50167f2a570..683f23b426d 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/Pending.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/Pending.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Post.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Post.php index 67480ca3038..c7fc0238ff2 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/Post.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/Post.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/ProductGrid.php b/app/code/Magento/Review/Controller/Adminhtml/Product/ProductGrid.php index 2f15fc655a2..511591d9aca 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/ProductGrid.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/ProductGrid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/RatingItems.php b/app/code/Magento/Review/Controller/Adminhtml/Product/RatingItems.php index 6fa59969497..e13cb216a0e 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/RatingItems.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/RatingItems.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/ReviewGrid.php b/app/code/Magento/Review/Controller/Adminhtml/Product/ReviewGrid.php index dfd3637c222..5475b4333e4 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/ReviewGrid.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/ReviewGrid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Reviews/Grid.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Reviews/Grid.php index 02a871cb5aa..9d4871dc4d8 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/Reviews/Grid.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/Reviews/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product\Reviews; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Save.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Save.php index b260a84ffe6..2057c7173f8 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Product/Save.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Product/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating.php b/app/code/Magento/Review/Controller/Adminhtml/Rating.php index e36ba72eeb6..9b1229b0664 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Rating.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Rating.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating/Delete.php b/app/code/Magento/Review/Controller/Adminhtml/Rating/Delete.php index efc9eac2dbb..d15446a6382 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Rating/Delete.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Rating/Delete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Rating; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating/Edit.php b/app/code/Magento/Review/Controller/Adminhtml/Rating/Edit.php index 04aaa0cf646..2191f911dd1 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Rating/Edit.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Rating/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Rating; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating/Index.php b/app/code/Magento/Review/Controller/Adminhtml/Rating/Index.php index 3626a583b3a..f683f805f6e 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Rating/Index.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Rating/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Rating; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating/NewAction.php b/app/code/Magento/Review/Controller/Adminhtml/Rating/NewAction.php index 49ea9f2e2b4..1ba83253ee2 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Rating/NewAction.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Rating/NewAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Rating; diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating/Save.php b/app/code/Magento/Review/Controller/Adminhtml/Rating/Save.php index ef080456343..8fe579ea77c 100644 --- a/app/code/Magento/Review/Controller/Adminhtml/Rating/Save.php +++ b/app/code/Magento/Review/Controller/Adminhtml/Rating/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Adminhtml\Rating; diff --git a/app/code/Magento/Review/Controller/Customer.php b/app/code/Magento/Review/Controller/Customer.php index 27e24148362..2fcbbfcb4e2 100644 --- a/app/code/Magento/Review/Controller/Customer.php +++ b/app/code/Magento/Review/Controller/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller; diff --git a/app/code/Magento/Review/Controller/Customer/Index.php b/app/code/Magento/Review/Controller/Customer/Index.php index 95d2e68dcae..c419d0cf98d 100644 --- a/app/code/Magento/Review/Controller/Customer/Index.php +++ b/app/code/Magento/Review/Controller/Customer/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Customer; diff --git a/app/code/Magento/Review/Controller/Customer/View.php b/app/code/Magento/Review/Controller/Customer/View.php index bf15295be77..a3602216269 100644 --- a/app/code/Magento/Review/Controller/Customer/View.php +++ b/app/code/Magento/Review/Controller/Customer/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Customer; diff --git a/app/code/Magento/Review/Controller/Product.php b/app/code/Magento/Review/Controller/Product.php index fbc3f1e6110..ca2e9ade5f5 100644 --- a/app/code/Magento/Review/Controller/Product.php +++ b/app/code/Magento/Review/Controller/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller; diff --git a/app/code/Magento/Review/Controller/Product/ListAction.php b/app/code/Magento/Review/Controller/Product/ListAction.php index 5f5225a934d..b2855502cee 100644 --- a/app/code/Magento/Review/Controller/Product/ListAction.php +++ b/app/code/Magento/Review/Controller/Product/ListAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Product; diff --git a/app/code/Magento/Review/Controller/Product/ListAjax.php b/app/code/Magento/Review/Controller/Product/ListAjax.php index 7f03acfe51a..c17da4f224d 100644 --- a/app/code/Magento/Review/Controller/Product/ListAjax.php +++ b/app/code/Magento/Review/Controller/Product/ListAjax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Product; diff --git a/app/code/Magento/Review/Controller/Product/Post.php b/app/code/Magento/Review/Controller/Product/Post.php index 0cead095f8f..db71bcf1cf3 100644 --- a/app/code/Magento/Review/Controller/Product/Post.php +++ b/app/code/Magento/Review/Controller/Product/Post.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Product; diff --git a/app/code/Magento/Review/Controller/Product/View.php b/app/code/Magento/Review/Controller/Product/View.php index 41cb560956b..01da0cdd256 100644 --- a/app/code/Magento/Review/Controller/Product/View.php +++ b/app/code/Magento/Review/Controller/Product/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Controller\Product; diff --git a/app/code/Magento/Review/CustomerData/Review.php b/app/code/Magento/Review/CustomerData/Review.php index 9bdd21fc8db..dbc3667f118 100644 --- a/app/code/Magento/Review/CustomerData/Review.php +++ b/app/code/Magento/Review/CustomerData/Review.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Helper/Action/Pager.php b/app/code/Magento/Review/Helper/Action/Pager.php index fcf4e707eed..88cc2513672 100644 --- a/app/code/Magento/Review/Helper/Action/Pager.php +++ b/app/code/Magento/Review/Helper/Action/Pager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Helper/Data.php b/app/code/Magento/Review/Helper/Data.php index e5681f43fd1..1f113e3bedc 100644 --- a/app/code/Magento/Review/Helper/Data.php +++ b/app/code/Magento/Review/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Model/Rating.php b/app/code/Magento/Review/Model/Rating.php index a7b0f0129e7..e996e4dba99 100644 --- a/app/code/Magento/Review/Model/Rating.php +++ b/app/code/Magento/Review/Model/Rating.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model; diff --git a/app/code/Magento/Review/Model/Rating/Entity.php b/app/code/Magento/Review/Model/Rating/Entity.php index 4332e6e18f5..b7e6eb3653f 100644 --- a/app/code/Magento/Review/Model/Rating/Entity.php +++ b/app/code/Magento/Review/Model/Rating/Entity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\Rating; diff --git a/app/code/Magento/Review/Model/Rating/Option.php b/app/code/Magento/Review/Model/Rating/Option.php index 2e75414491b..f808ae2d8ba 100644 --- a/app/code/Magento/Review/Model/Rating/Option.php +++ b/app/code/Magento/Review/Model/Rating/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\Rating; diff --git a/app/code/Magento/Review/Model/Rating/Option/Vote.php b/app/code/Magento/Review/Model/Rating/Option/Vote.php index 2065ccbaeec..d43d6498494 100644 --- a/app/code/Magento/Review/Model/Rating/Option/Vote.php +++ b/app/code/Magento/Review/Model/Rating/Option/Vote.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\Rating\Option; diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating.php b/app/code/Magento/Review/Model/ResourceModel/Rating.php index 1d1d74be684..472acefc655 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Rating.php +++ b/app/code/Magento/Review/Model/ResourceModel/Rating.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel; diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Collection.php index 3693b508067..372754fc60f 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Rating/Collection.php +++ b/app/code/Magento/Review/Model/ResourceModel/Rating/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Rating; diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Entity.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Entity.php index e4ae99142ee..b2a1bc64b5a 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Rating/Entity.php +++ b/app/code/Magento/Review/Model/ResourceModel/Rating/Entity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Rating; diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Grid/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Grid/Collection.php index 69a88bd439c..9b8b5955214 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Rating/Grid/Collection.php +++ b/app/code/Magento/Review/Model/ResourceModel/Rating/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Rating\Grid; diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Option.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Option.php index 6edb6218e7e..9651c56d18f 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Rating/Option.php +++ b/app/code/Magento/Review/Model/ResourceModel/Rating/Option.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Rating; diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Collection.php index 522084bb156..4708dafee6d 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Collection.php +++ b/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Rating\Option; diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote.php index c0beac71ca2..92867386a77 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote.php +++ b/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Rating\Option; diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote/Collection.php index c6fe678e922..54657d1c6ec 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote/Collection.php +++ b/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Rating\Option\Vote; diff --git a/app/code/Magento/Review/Model/ResourceModel/Review.php b/app/code/Magento/Review/Model/ResourceModel/Review.php index 5900179158e..57bdbeacc14 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Review.php +++ b/app/code/Magento/Review/Model/ResourceModel/Review.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel; diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Review/Collection.php index 5f5737cb10d..90c7e0421d2 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Review/Collection.php +++ b/app/code/Magento/Review/Model/ResourceModel/Review/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Review; diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Product/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Review/Product/Collection.php index f066bb53b51..d41c2eaba47 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Review/Product/Collection.php +++ b/app/code/Magento/Review/Model/ResourceModel/Review/Product/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Review\Product; diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Status.php b/app/code/Magento/Review/Model/ResourceModel/Review/Status.php index 4a9aa7c5a56..25f93ec82c8 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Review/Status.php +++ b/app/code/Magento/Review/Model/ResourceModel/Review/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Review; diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Status/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Review/Status/Collection.php index 1d2c7fead3e..50e604958e7 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Review/Status/Collection.php +++ b/app/code/Magento/Review/Model/ResourceModel/Review/Status/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Summary.php b/app/code/Magento/Review/Model/ResourceModel/Review/Summary.php index 026201f9f8b..68e46cad250 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Review/Summary.php +++ b/app/code/Magento/Review/Model/ResourceModel/Review/Summary.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Review; diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Summary/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Review/Summary/Collection.php index 478dda8a07e..1d442ff8cf8 100644 --- a/app/code/Magento/Review/Model/ResourceModel/Review/Summary/Collection.php +++ b/app/code/Magento/Review/Model/ResourceModel/Review/Summary/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\ResourceModel\Review\Summary; diff --git a/app/code/Magento/Review/Model/Review.php b/app/code/Magento/Review/Model/Review.php index cc9a35ac540..c0a0ef43b31 100644 --- a/app/code/Magento/Review/Model/Review.php +++ b/app/code/Magento/Review/Model/Review.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model; diff --git a/app/code/Magento/Review/Model/Review/Status.php b/app/code/Magento/Review/Model/Review/Status.php index 46d5e0a65cc..20bb3b8b074 100644 --- a/app/code/Magento/Review/Model/Review/Status.php +++ b/app/code/Magento/Review/Model/Review/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Model/Review/Summary.php b/app/code/Magento/Review/Model/Review/Summary.php index 16cfd31b42a..e8f0e63c250 100644 --- a/app/code/Magento/Review/Model/Review/Summary.php +++ b/app/code/Magento/Review/Model/Review/Summary.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model\Review; diff --git a/app/code/Magento/Review/Model/Rss.php b/app/code/Magento/Review/Model/Rss.php index 27eb8f2db53..e37a610b052 100644 --- a/app/code/Magento/Review/Model/Rss.php +++ b/app/code/Magento/Review/Model/Rss.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Model; diff --git a/app/code/Magento/Review/Observer/CatalogBlockProductCollectionBeforeToHtmlObserver.php b/app/code/Magento/Review/Observer/CatalogBlockProductCollectionBeforeToHtmlObserver.php index 8e68b5d0657..55e709fcae6 100644 --- a/app/code/Magento/Review/Observer/CatalogBlockProductCollectionBeforeToHtmlObserver.php +++ b/app/code/Magento/Review/Observer/CatalogBlockProductCollectionBeforeToHtmlObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Observer; diff --git a/app/code/Magento/Review/Observer/ProcessProductAfterDeleteEventObserver.php b/app/code/Magento/Review/Observer/ProcessProductAfterDeleteEventObserver.php index 104d0b7928d..3eb009f9a9d 100644 --- a/app/code/Magento/Review/Observer/ProcessProductAfterDeleteEventObserver.php +++ b/app/code/Magento/Review/Observer/ProcessProductAfterDeleteEventObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Observer; diff --git a/app/code/Magento/Review/Observer/TagProductCollectionLoadAfterObserver.php b/app/code/Magento/Review/Observer/TagProductCollectionLoadAfterObserver.php index 37f5fb95eef..1c8247c0584 100644 --- a/app/code/Magento/Review/Observer/TagProductCollectionLoadAfterObserver.php +++ b/app/code/Magento/Review/Observer/TagProductCollectionLoadAfterObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Observer; diff --git a/app/code/Magento/Review/Setup/InstallData.php b/app/code/Magento/Review/Setup/InstallData.php index 0ad5bc794b6..3977116843b 100644 --- a/app/code/Magento/Review/Setup/InstallData.php +++ b/app/code/Magento/Review/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Setup/InstallSchema.php b/app/code/Magento/Review/Setup/InstallSchema.php index 6dcbbfba2b7..b700aef7c72 100644 --- a/app/code/Magento/Review/Setup/InstallSchema.php +++ b/app/code/Magento/Review/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/MainTest.php b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/MainTest.php index e03218dd8b6..33ea506683b 100644 --- a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/MainTest.php +++ b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/MainTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rating/Edit/Tab/FormTest.php b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rating/Edit/Tab/FormTest.php index 257b8300d4a..337b458305d 100644 --- a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rating/Edit/Tab/FormTest.php +++ b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rating/Edit/Tab/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Block\Adminhtml\Rating\Edit\Tab; diff --git a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php index 869d1506446..d5f7250e3e6 100644 --- a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php +++ b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Block\Adminhtml\Rss\Grid; diff --git a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/RssTest.php b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/RssTest.php index 56b41817704..eb095015331 100644 --- a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/RssTest.php +++ b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/RssTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Test/Unit/Block/Customer/RecentTest.php b/app/code/Magento/Review/Test/Unit/Block/Customer/RecentTest.php index 12806ab2764..84c97d7ae27 100644 --- a/app/code/Magento/Review/Test/Unit/Block/Customer/RecentTest.php +++ b/app/code/Magento/Review/Test/Unit/Block/Customer/RecentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Block\Customer; diff --git a/app/code/Magento/Review/Test/Unit/Block/FormTest.php b/app/code/Magento/Review/Test/Unit/Block/FormTest.php index 3785401d591..7e1d659f38f 100644 --- a/app/code/Magento/Review/Test/Unit/Block/FormTest.php +++ b/app/code/Magento/Review/Test/Unit/Block/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Block; diff --git a/app/code/Magento/Review/Test/Unit/Block/Product/ReviewTest.php b/app/code/Magento/Review/Test/Unit/Block/Product/ReviewTest.php index 731145b44a3..c3533e2f81f 100644 --- a/app/code/Magento/Review/Test/Unit/Block/Product/ReviewTest.php +++ b/app/code/Magento/Review/Test/Unit/Block/Product/ReviewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Test/Unit/Controller/Adminhtml/Product/PostTest.php b/app/code/Magento/Review/Test/Unit/Controller/Adminhtml/Product/PostTest.php index e728f89265e..f3d3725a310 100644 --- a/app/code/Magento/Review/Test/Unit/Controller/Adminhtml/Product/PostTest.php +++ b/app/code/Magento/Review/Test/Unit/Controller/Adminhtml/Product/PostTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Controller\Adminhtml\Product; diff --git a/app/code/Magento/Review/Test/Unit/Controller/Product/PostTest.php b/app/code/Magento/Review/Test/Unit/Controller/Product/PostTest.php index 211d0048a53..b88f1b45495 100644 --- a/app/code/Magento/Review/Test/Unit/Controller/Product/PostTest.php +++ b/app/code/Magento/Review/Test/Unit/Controller/Product/PostTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Controller\Product; diff --git a/app/code/Magento/Review/Test/Unit/Helper/Action/PagerTest.php b/app/code/Magento/Review/Test/Unit/Helper/Action/PagerTest.php index d4fd772b37f..8e326465301 100644 --- a/app/code/Magento/Review/Test/Unit/Helper/Action/PagerTest.php +++ b/app/code/Magento/Review/Test/Unit/Helper/Action/PagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Helper\Action; diff --git a/app/code/Magento/Review/Test/Unit/Model/RatingTest.php b/app/code/Magento/Review/Test/Unit/Model/RatingTest.php index b6c64391472..376c8fccd83 100644 --- a/app/code/Magento/Review/Test/Unit/Model/RatingTest.php +++ b/app/code/Magento/Review/Test/Unit/Model/RatingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Model; diff --git a/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/CollectionTest.php b/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/CollectionTest.php index 859c431ed97..66b9438f30b 100644 --- a/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/CollectionTest.php +++ b/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Model\ResourceModel\Review; diff --git a/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Product/CollectionTest.php b/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Product/CollectionTest.php index 8c51535a7f6..9b4bdc6f2f4 100644 --- a/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Product/CollectionTest.php +++ b/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Product/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Model\ResourceModel\Review\Product; diff --git a/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Summary/CollectionTest.php b/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Summary/CollectionTest.php index d4c894a4734..eda43376552 100644 --- a/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Summary/CollectionTest.php +++ b/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Summary/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Test/Unit/Model/ReviewTest.php b/app/code/Magento/Review/Test/Unit/Model/ReviewTest.php index cc92a675624..4b81076b2b5 100644 --- a/app/code/Magento/Review/Test/Unit/Model/ReviewTest.php +++ b/app/code/Magento/Review/Test/Unit/Model/ReviewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Test/Unit/Model/RssTest.php b/app/code/Magento/Review/Test/Unit/Model/RssTest.php index 68305bc1ac9..e772501c92b 100644 --- a/app/code/Magento/Review/Test/Unit/Model/RssTest.php +++ b/app/code/Magento/Review/Test/Unit/Model/RssTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/ReviewActionsTest.php b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/ReviewActionsTest.php index 86c6ebc000c..e82ef57a6ea 100644 --- a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/ReviewActionsTest.php +++ b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/ReviewActionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/StatusTest.php b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/StatusTest.php index 625c1d4375a..21ddaebe1fa 100644 --- a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/StatusTest.php +++ b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/StatusTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/TypeTest.php b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/TypeTest.php index 4fb7d90672a..f2e1d85a127 100644 --- a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/TypeTest.php +++ b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/TypeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/VisibilityTest.php b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/VisibilityTest.php index 55ae8c29251..99bd91e3741 100644 --- a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/VisibilityTest.php +++ b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/VisibilityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ReviewTest.php b/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ReviewTest.php index b93cb70fdda..feb8f9c02d3 100644 --- a/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ReviewTest.php +++ b/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ReviewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/ReviewDataProviderTest.php b/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/ReviewDataProviderTest.php index 0bfc843a259..4bae4da42b7 100644 --- a/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/ReviewDataProviderTest.php +++ b/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/ReviewDataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Test\Unit\Ui\DataProvider\Product; diff --git a/app/code/Magento/Review/Ui/Component/Listing/Columns/ReviewActions.php b/app/code/Magento/Review/Ui/Component/Listing/Columns/ReviewActions.php index 155854c0021..907cd4a94ba 100644 --- a/app/code/Magento/Review/Ui/Component/Listing/Columns/ReviewActions.php +++ b/app/code/Magento/Review/Ui/Component/Listing/Columns/ReviewActions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Review/Ui/Component/Listing/Columns/Status.php b/app/code/Magento/Review/Ui/Component/Listing/Columns/Status.php index 95d1c6894b9..0721095542c 100644 --- a/app/code/Magento/Review/Ui/Component/Listing/Columns/Status.php +++ b/app/code/Magento/Review/Ui/Component/Listing/Columns/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Review/Ui/Component/Listing/Columns/Type.php b/app/code/Magento/Review/Ui/Component/Listing/Columns/Type.php index c9f638c38d7..42ed0bf9bc3 100644 --- a/app/code/Magento/Review/Ui/Component/Listing/Columns/Type.php +++ b/app/code/Magento/Review/Ui/Component/Listing/Columns/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Review/Ui/Component/Listing/Columns/Visibility.php b/app/code/Magento/Review/Ui/Component/Listing/Columns/Visibility.php index a8752c753c6..dae2f8ab1c7 100644 --- a/app/code/Magento/Review/Ui/Component/Listing/Columns/Visibility.php +++ b/app/code/Magento/Review/Ui/Component/Listing/Columns/Visibility.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Ui\Component\Listing\Columns; diff --git a/app/code/Magento/Review/Ui/DataProvider/Product/Form/Modifier/Review.php b/app/code/Magento/Review/Ui/DataProvider/Product/Form/Modifier/Review.php index 0ef1057eb4b..a226473ab98 100644 --- a/app/code/Magento/Review/Ui/DataProvider/Product/Form/Modifier/Review.php +++ b/app/code/Magento/Review/Ui/DataProvider/Product/Form/Modifier/Review.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Ui\DataProvider\Product\Form\Modifier; diff --git a/app/code/Magento/Review/Ui/DataProvider/Product/ReviewDataProvider.php b/app/code/Magento/Review/Ui/DataProvider/Product/ReviewDataProvider.php index d48b6801a76..7bfe2592fbe 100644 --- a/app/code/Magento/Review/Ui/DataProvider/Product/ReviewDataProvider.php +++ b/app/code/Magento/Review/Ui/DataProvider/Product/ReviewDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Review\Ui\DataProvider\Product; diff --git a/app/code/Magento/Review/etc/acl.xml b/app/code/Magento/Review/etc/acl.xml index 5a53e97b0a8..b0d976920e0 100644 --- a/app/code/Magento/Review/etc/acl.xml +++ b/app/code/Magento/Review/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/adminhtml/di.xml b/app/code/Magento/Review/etc/adminhtml/di.xml index 41babd4f442..74754c9853a 100644 --- a/app/code/Magento/Review/etc/adminhtml/di.xml +++ b/app/code/Magento/Review/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/adminhtml/events.xml b/app/code/Magento/Review/etc/adminhtml/events.xml index 0635c033807..f3f31069ea3 100644 --- a/app/code/Magento/Review/etc/adminhtml/events.xml +++ b/app/code/Magento/Review/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/adminhtml/menu.xml b/app/code/Magento/Review/etc/adminhtml/menu.xml index ffc86f1cb38..5d195ec6d99 100644 --- a/app/code/Magento/Review/etc/adminhtml/menu.xml +++ b/app/code/Magento/Review/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/adminhtml/routes.xml b/app/code/Magento/Review/etc/adminhtml/routes.xml index bd7338b4559..e3c3802df84 100644 --- a/app/code/Magento/Review/etc/adminhtml/routes.xml +++ b/app/code/Magento/Review/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/adminhtml/system.xml b/app/code/Magento/Review/etc/adminhtml/system.xml index b7059a8f6a8..b035b5a0356 100644 --- a/app/code/Magento/Review/etc/adminhtml/system.xml +++ b/app/code/Magento/Review/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/config.xml b/app/code/Magento/Review/etc/config.xml index c3257d88afe..98dc18d5c03 100644 --- a/app/code/Magento/Review/etc/config.xml +++ b/app/code/Magento/Review/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/di.xml b/app/code/Magento/Review/etc/di.xml index 13f7d0b84bc..076856f8490 100644 --- a/app/code/Magento/Review/etc/di.xml +++ b/app/code/Magento/Review/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/frontend/di.xml b/app/code/Magento/Review/etc/frontend/di.xml index 64e77216f4b..4226f432a15 100644 --- a/app/code/Magento/Review/etc/frontend/di.xml +++ b/app/code/Magento/Review/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/frontend/events.xml b/app/code/Magento/Review/etc/frontend/events.xml index 862a0bc286c..1f38256c3e1 100644 --- a/app/code/Magento/Review/etc/frontend/events.xml +++ b/app/code/Magento/Review/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/frontend/page_types.xml b/app/code/Magento/Review/etc/frontend/page_types.xml index 2b0a521a30b..d0983bf9ed8 100644 --- a/app/code/Magento/Review/etc/frontend/page_types.xml +++ b/app/code/Magento/Review/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/frontend/routes.xml b/app/code/Magento/Review/etc/frontend/routes.xml index ed8e6a33937..96aefb9415a 100644 --- a/app/code/Magento/Review/etc/frontend/routes.xml +++ b/app/code/Magento/Review/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Review" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Review/etc/frontend/sections.xml b/app/code/Magento/Review/etc/frontend/sections.xml index 3488cdddbaf..123c03ba74c 100644 --- a/app/code/Magento/Review/etc/frontend/sections.xml +++ b/app/code/Magento/Review/etc/frontend/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/etc/module.xml b/app/code/Magento/Review/etc/module.xml index 6794110604c..d92832bc313 100644 --- a/app/code/Magento/Review/etc/module.xml +++ b/app/code/Magento/Review/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/registration.php b/app/code/Magento/Review/registration.php index 871ebb92b2e..04447de8736 100644 --- a/app/code/Magento/Review/registration.php +++ b/app/code/Magento/Review/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/Review/view/adminhtml/layout/catalog_product_new.xml index d0138614dc9..4450cd478d9 100644 --- a/app/code/Magento/Review/view/adminhtml/layout/catalog_product_new.xml +++ b/app/code/Magento/Review/view/adminhtml/layout/catalog_product_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/adminhtml/layout/customer_index_edit.xml b/app/code/Magento/Review/view/adminhtml/layout/customer_index_edit.xml index c00e0484ebc..6a880c0a22e 100644 --- a/app/code/Magento/Review/view/adminhtml/layout/customer_index_edit.xml +++ b/app/code/Magento/Review/view/adminhtml/layout/customer_index_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/adminhtml/layout/rating_block.xml b/app/code/Magento/Review/view/adminhtml/layout/rating_block.xml index d7240c817e6..233d355bdf2 100644 --- a/app/code/Magento/Review/view/adminhtml/layout/rating_block.xml +++ b/app/code/Magento/Review/view/adminhtml/layout/rating_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/adminhtml/layout/review_product_edit.xml b/app/code/Magento/Review/view/adminhtml/layout/review_product_edit.xml index ca5c04dd256..773407823ac 100644 --- a/app/code/Magento/Review/view/adminhtml/layout/review_product_edit.xml +++ b/app/code/Magento/Review/view/adminhtml/layout/review_product_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/adminhtml/layout/review_product_index.xml b/app/code/Magento/Review/view/adminhtml/layout/review_product_index.xml index 59820499a2b..3550359c817 100644 --- a/app/code/Magento/Review/view/adminhtml/layout/review_product_index.xml +++ b/app/code/Magento/Review/view/adminhtml/layout/review_product_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/adminhtml/layout/review_product_reviews_grid.xml b/app/code/Magento/Review/view/adminhtml/layout/review_product_reviews_grid.xml index 48365a857c0..58bd742f314 100644 --- a/app/code/Magento/Review/view/adminhtml/layout/review_product_reviews_grid.xml +++ b/app/code/Magento/Review/view/adminhtml/layout/review_product_reviews_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/adminhtml/layout/review_rating_edit.xml b/app/code/Magento/Review/view/adminhtml/layout/review_rating_edit.xml index 4f5d3a778a1..91469c51e06 100644 --- a/app/code/Magento/Review/view/adminhtml/layout/review_rating_edit.xml +++ b/app/code/Magento/Review/view/adminhtml/layout/review_rating_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/adminhtml/layout/review_rating_index.xml b/app/code/Magento/Review/view/adminhtml/layout/review_rating_index.xml index c8281e38ad7..655439b0237 100644 --- a/app/code/Magento/Review/view/adminhtml/layout/review_rating_index.xml +++ b/app/code/Magento/Review/view/adminhtml/layout/review_rating_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/adminhtml/templates/add.phtml b/app/code/Magento/Review/view/adminhtml/templates/add.phtml index 2671d46311c..6f2e24afec3 100644 --- a/app/code/Magento/Review/view/adminhtml/templates/add.phtml +++ b/app/code/Magento/Review/view/adminhtml/templates/add.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Review/view/adminhtml/templates/rating/detailed.phtml b/app/code/Magento/Review/view/adminhtml/templates/rating/detailed.phtml index 2c7ca7a61ec..768fc22956b 100644 --- a/app/code/Magento/Review/view/adminhtml/templates/rating/detailed.phtml +++ b/app/code/Magento/Review/view/adminhtml/templates/rating/detailed.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/adminhtml/templates/rating/form.phtml b/app/code/Magento/Review/view/adminhtml/templates/rating/form.phtml index 019cbec2944..5f535820eda 100644 --- a/app/code/Magento/Review/view/adminhtml/templates/rating/form.phtml +++ b/app/code/Magento/Review/view/adminhtml/templates/rating/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/adminhtml/templates/rating/options.phtml b/app/code/Magento/Review/view/adminhtml/templates/rating/options.phtml index f267d8e9957..1f335934d21 100644 --- a/app/code/Magento/Review/view/adminhtml/templates/rating/options.phtml +++ b/app/code/Magento/Review/view/adminhtml/templates/rating/options.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/adminhtml/templates/rating/stars/detailed.phtml b/app/code/Magento/Review/view/adminhtml/templates/rating/stars/detailed.phtml index 930ddcc6cce..2943250f805 100644 --- a/app/code/Magento/Review/view/adminhtml/templates/rating/stars/detailed.phtml +++ b/app/code/Magento/Review/view/adminhtml/templates/rating/stars/detailed.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/adminhtml/templates/rating/stars/summary.phtml b/app/code/Magento/Review/view/adminhtml/templates/rating/stars/summary.phtml index 8c4ea6a02c1..c3ef5228460 100644 --- a/app/code/Magento/Review/view/adminhtml/templates/rating/stars/summary.phtml +++ b/app/code/Magento/Review/view/adminhtml/templates/rating/stars/summary.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/adminhtml/templates/rss/grid/link.phtml b/app/code/Magento/Review/view/adminhtml/templates/rss/grid/link.phtml index 763d8e8ed29..be971502026 100644 --- a/app/code/Magento/Review/view/adminhtml/templates/rss/grid/link.phtml +++ b/app/code/Magento/Review/view/adminhtml/templates/rss/grid/link.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/adminhtml/ui_component/review_listing.xml b/app/code/Magento/Review/view/adminhtml/ui_component/review_listing.xml index e2b15ddf4b5..b55e3c9d128 100644 --- a/app/code/Magento/Review/view/adminhtml/ui_component/review_listing.xml +++ b/app/code/Magento/Review/view/adminhtml/ui_component/review_listing.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/adminhtml/web/js/rating.js b/app/code/Magento/Review/view/adminhtml/web/js/rating.js index 3c2d41d2f33..5525a8c517b 100644 --- a/app/code/Magento/Review/view/adminhtml/web/js/rating.js +++ b/app/code/Magento/Review/view/adminhtml/web/js/rating.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ @@ -52,4 +52,4 @@ define([ } }); -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Review/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Review/view/frontend/layout/catalog_product_view.xml index ded60d5cf6e..c3809ba564e 100644 --- a/app/code/Magento/Review/view/frontend/layout/catalog_product_view.xml +++ b/app/code/Magento/Review/view/frontend/layout/catalog_product_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/frontend/layout/checkout_cart_configure.xml b/app/code/Magento/Review/view/frontend/layout/checkout_cart_configure.xml index 022e98eebb4..92258354614 100644 --- a/app/code/Magento/Review/view/frontend/layout/checkout_cart_configure.xml +++ b/app/code/Magento/Review/view/frontend/layout/checkout_cart_configure.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/frontend/layout/customer_account.xml b/app/code/Magento/Review/view/frontend/layout/customer_account.xml index 5506a904ce0..518957166a2 100644 --- a/app/code/Magento/Review/view/frontend/layout/customer_account.xml +++ b/app/code/Magento/Review/view/frontend/layout/customer_account.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/frontend/layout/customer_account_index.xml b/app/code/Magento/Review/view/frontend/layout/customer_account_index.xml index 6b5631f6e15..fb902cb7f3c 100644 --- a/app/code/Magento/Review/view/frontend/layout/customer_account_index.xml +++ b/app/code/Magento/Review/view/frontend/layout/customer_account_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/frontend/layout/review_customer_index.xml b/app/code/Magento/Review/view/frontend/layout/review_customer_index.xml index 931ee5a7688..ca67c412223 100644 --- a/app/code/Magento/Review/view/frontend/layout/review_customer_index.xml +++ b/app/code/Magento/Review/view/frontend/layout/review_customer_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/frontend/layout/review_customer_view.xml b/app/code/Magento/Review/view/frontend/layout/review_customer_view.xml index 71c22043df6..e9263c076f5 100644 --- a/app/code/Magento/Review/view/frontend/layout/review_customer_view.xml +++ b/app/code/Magento/Review/view/frontend/layout/review_customer_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/frontend/layout/review_product_form_component.xml b/app/code/Magento/Review/view/frontend/layout/review_product_form_component.xml index 13e50e6fdae..d8dcf26153b 100644 --- a/app/code/Magento/Review/view/frontend/layout/review_product_form_component.xml +++ b/app/code/Magento/Review/view/frontend/layout/review_product_form_component.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -19,4 +19,4 @@ </arguments> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Review/view/frontend/layout/review_product_list.xml b/app/code/Magento/Review/view/frontend/layout/review_product_list.xml index 0970aaf522e..d1264612c52 100644 --- a/app/code/Magento/Review/view/frontend/layout/review_product_list.xml +++ b/app/code/Magento/Review/view/frontend/layout/review_product_list.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/frontend/layout/review_product_listajax.xml b/app/code/Magento/Review/view/frontend/layout/review_product_listajax.xml index 5f6a0ebbb97..e636d601543 100644 --- a/app/code/Magento/Review/view/frontend/layout/review_product_listajax.xml +++ b/app/code/Magento/Review/view/frontend/layout/review_product_listajax.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/frontend/layout/review_product_view.xml b/app/code/Magento/Review/view/frontend/layout/review_product_view.xml index 60c65b84e95..e80bc26f164 100644 --- a/app/code/Magento/Review/view/frontend/layout/review_product_view.xml +++ b/app/code/Magento/Review/view/frontend/layout/review_product_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/frontend/layout/wishlist_index_configure.xml b/app/code/Magento/Review/view/frontend/layout/wishlist_index_configure.xml index 022e98eebb4..92258354614 100644 --- a/app/code/Magento/Review/view/frontend/layout/wishlist_index_configure.xml +++ b/app/code/Magento/Review/view/frontend/layout/wishlist_index_configure.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Review/view/frontend/templates/customer/list.phtml b/app/code/Magento/Review/view/frontend/templates/customer/list.phtml index 69d5ac0fa7d..2dfee842171 100644 --- a/app/code/Magento/Review/view/frontend/templates/customer/list.phtml +++ b/app/code/Magento/Review/view/frontend/templates/customer/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/customer/recent.phtml b/app/code/Magento/Review/view/frontend/templates/customer/recent.phtml index 1807096b315..a1a2675092d 100644 --- a/app/code/Magento/Review/view/frontend/templates/customer/recent.phtml +++ b/app/code/Magento/Review/view/frontend/templates/customer/recent.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/customer/view.phtml b/app/code/Magento/Review/view/frontend/templates/customer/view.phtml index 638d53da64e..2198a42fdf9 100644 --- a/app/code/Magento/Review/view/frontend/templates/customer/view.phtml +++ b/app/code/Magento/Review/view/frontend/templates/customer/view.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/detailed.phtml b/app/code/Magento/Review/view/frontend/templates/detailed.phtml index 46d7b34a757..484a36f4bb2 100644 --- a/app/code/Magento/Review/view/frontend/templates/detailed.phtml +++ b/app/code/Magento/Review/view/frontend/templates/detailed.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/empty.phtml b/app/code/Magento/Review/view/frontend/templates/empty.phtml index 9f32021c3d1..6fd2e388c88 100644 --- a/app/code/Magento/Review/view/frontend/templates/empty.phtml +++ b/app/code/Magento/Review/view/frontend/templates/empty.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/form.phtml b/app/code/Magento/Review/view/frontend/templates/form.phtml index bcac1dbca05..b96e1ea01f7 100644 --- a/app/code/Magento/Review/view/frontend/templates/form.phtml +++ b/app/code/Magento/Review/view/frontend/templates/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/helper/summary.phtml b/app/code/Magento/Review/view/frontend/templates/helper/summary.phtml index eabdb0a3e51..ca08a5f2cf8 100644 --- a/app/code/Magento/Review/view/frontend/templates/helper/summary.phtml +++ b/app/code/Magento/Review/view/frontend/templates/helper/summary.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/helper/summary_short.phtml b/app/code/Magento/Review/view/frontend/templates/helper/summary_short.phtml index 90ddfda19f2..1c23b33c055 100644 --- a/app/code/Magento/Review/view/frontend/templates/helper/summary_short.phtml +++ b/app/code/Magento/Review/view/frontend/templates/helper/summary_short.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/product/view/count.phtml b/app/code/Magento/Review/view/frontend/templates/product/view/count.phtml index 8b515ca2b7b..1cc3e9f5ce9 100644 --- a/app/code/Magento/Review/view/frontend/templates/product/view/count.phtml +++ b/app/code/Magento/Review/view/frontend/templates/product/view/count.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/product/view/list.phtml b/app/code/Magento/Review/view/frontend/templates/product/view/list.phtml index 262208b169e..60a4fdcdf3e 100644 --- a/app/code/Magento/Review/view/frontend/templates/product/view/list.phtml +++ b/app/code/Magento/Review/view/frontend/templates/product/view/list.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/product/view/other.phtml b/app/code/Magento/Review/view/frontend/templates/product/view/other.phtml index fadc72ce7da..8b0fe6193e5 100644 --- a/app/code/Magento/Review/view/frontend/templates/product/view/other.phtml +++ b/app/code/Magento/Review/view/frontend/templates/product/view/other.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/redirect.phtml b/app/code/Magento/Review/view/frontend/templates/redirect.phtml index e90fb50a7b4..5319b92490a 100644 --- a/app/code/Magento/Review/view/frontend/templates/redirect.phtml +++ b/app/code/Magento/Review/view/frontend/templates/redirect.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/review.phtml b/app/code/Magento/Review/view/frontend/templates/review.phtml index c332a1b4c87..b4dce64015b 100644 --- a/app/code/Magento/Review/view/frontend/templates/review.phtml +++ b/app/code/Magento/Review/view/frontend/templates/review.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/templates/view.phtml b/app/code/Magento/Review/view/frontend/templates/view.phtml index 12a28ccf540..47941e1aaeb 100644 --- a/app/code/Magento/Review/view/frontend/templates/view.phtml +++ b/app/code/Magento/Review/view/frontend/templates/view.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Review/view/frontend/web/js/error-placement.js b/app/code/Magento/Review/view/frontend/web/js/error-placement.js index f05695778c4..6097c02d347 100644 --- a/app/code/Magento/Review/view/frontend/web/js/error-placement.js +++ b/app/code/Magento/Review/view/frontend/web/js/error-placement.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Review/view/frontend/web/js/process-reviews.js b/app/code/Magento/Review/view/frontend/web/js/process-reviews.js index 8ba22caf292..f28631986e1 100644 --- a/app/code/Magento/Review/view/frontend/web/js/process-reviews.js +++ b/app/code/Magento/Review/view/frontend/web/js/process-reviews.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Review/view/frontend/web/js/view/review.js b/app/code/Magento/Review/view/frontend/web/js/view/review.js index 63689df7bec..ffbae73fe62 100644 --- a/app/code/Magento/Review/view/frontend/web/js/view/review.js +++ b/app/code/Magento/Review/view/frontend/web/js/view/review.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Rss/App/Action/Plugin/BackendAuthentication.php b/app/code/Magento/Rss/App/Action/Plugin/BackendAuthentication.php index 723b341597a..56c8b0e4282 100644 --- a/app/code/Magento/Rss/App/Action/Plugin/BackendAuthentication.php +++ b/app/code/Magento/Rss/App/Action/Plugin/BackendAuthentication.php @@ -2,7 +2,7 @@ /** * RSS Backend Authentication plugin * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\App\Action\Plugin; diff --git a/app/code/Magento/Rss/Block/Feeds.php b/app/code/Magento/Rss/Block/Feeds.php index 5b902ffb14e..1abdb1500f1 100644 --- a/app/code/Magento/Rss/Block/Feeds.php +++ b/app/code/Magento/Rss/Block/Feeds.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Block; diff --git a/app/code/Magento/Rss/Controller/Adminhtml/Feed.php b/app/code/Magento/Rss/Controller/Adminhtml/Feed.php index 6473f81fdc3..21aeefd6895 100644 --- a/app/code/Magento/Rss/Controller/Adminhtml/Feed.php +++ b/app/code/Magento/Rss/Controller/Adminhtml/Feed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Controller\Adminhtml; diff --git a/app/code/Magento/Rss/Controller/Adminhtml/Feed/Index.php b/app/code/Magento/Rss/Controller/Adminhtml/Feed/Index.php index d477e5266c7..024b7690dee 100644 --- a/app/code/Magento/Rss/Controller/Adminhtml/Feed/Index.php +++ b/app/code/Magento/Rss/Controller/Adminhtml/Feed/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Controller\Adminhtml\Feed; diff --git a/app/code/Magento/Rss/Controller/Feed.php b/app/code/Magento/Rss/Controller/Feed.php index f4f5fe85639..f06f531faf6 100644 --- a/app/code/Magento/Rss/Controller/Feed.php +++ b/app/code/Magento/Rss/Controller/Feed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Controller; diff --git a/app/code/Magento/Rss/Controller/Feed/Index.php b/app/code/Magento/Rss/Controller/Feed/Index.php index 29956d3cecb..5d0b9201780 100644 --- a/app/code/Magento/Rss/Controller/Feed/Index.php +++ b/app/code/Magento/Rss/Controller/Feed/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Controller\Feed; diff --git a/app/code/Magento/Rss/Controller/Index.php b/app/code/Magento/Rss/Controller/Index.php index b25a7fb4f7b..030844ecfaf 100644 --- a/app/code/Magento/Rss/Controller/Index.php +++ b/app/code/Magento/Rss/Controller/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Controller; diff --git a/app/code/Magento/Rss/Controller/Index/Index.php b/app/code/Magento/Rss/Controller/Index/Index.php index 449fe17d7a2..046744c28ae 100644 --- a/app/code/Magento/Rss/Controller/Index/Index.php +++ b/app/code/Magento/Rss/Controller/Index/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Controller\Index; diff --git a/app/code/Magento/Rss/Model/Rss.php b/app/code/Magento/Rss/Model/Rss.php index af716613bd2..1ea4c33a790 100644 --- a/app/code/Magento/Rss/Model/Rss.php +++ b/app/code/Magento/Rss/Model/Rss.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Model; diff --git a/app/code/Magento/Rss/Model/RssManager.php b/app/code/Magento/Rss/Model/RssManager.php index cfb4daa36e3..187349001c0 100644 --- a/app/code/Magento/Rss/Model/RssManager.php +++ b/app/code/Magento/Rss/Model/RssManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Model; diff --git a/app/code/Magento/Rss/Model/System/Config/Backend/Links.php b/app/code/Magento/Rss/Model/System/Config/Backend/Links.php index 62d7e733e2a..93eb965e770 100644 --- a/app/code/Magento/Rss/Model/System/Config/Backend/Links.php +++ b/app/code/Magento/Rss/Model/System/Config/Backend/Links.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Model\System\Config\Backend; diff --git a/app/code/Magento/Rss/Model/UrlBuilder.php b/app/code/Magento/Rss/Model/UrlBuilder.php index 1dbd5b2af1c..e1221173320 100644 --- a/app/code/Magento/Rss/Model/UrlBuilder.php +++ b/app/code/Magento/Rss/Model/UrlBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Model; diff --git a/app/code/Magento/Rss/Test/Unit/App/Action/Plugin/BackendAuthenticationTest.php b/app/code/Magento/Rss/Test/Unit/App/Action/Plugin/BackendAuthenticationTest.php index a551a7b814c..619a349596b 100644 --- a/app/code/Magento/Rss/Test/Unit/App/Action/Plugin/BackendAuthenticationTest.php +++ b/app/code/Magento/Rss/Test/Unit/App/Action/Plugin/BackendAuthenticationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Test\Unit\App\Action\Plugin; diff --git a/app/code/Magento/Rss/Test/Unit/Block/FeedsTest.php b/app/code/Magento/Rss/Test/Unit/Block/FeedsTest.php index 02f7d986dfc..b46bf183149 100644 --- a/app/code/Magento/Rss/Test/Unit/Block/FeedsTest.php +++ b/app/code/Magento/Rss/Test/Unit/Block/FeedsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Test\Unit\Block; diff --git a/app/code/Magento/Rss/Test/Unit/Controller/Adminhtml/Feed/IndexTest.php b/app/code/Magento/Rss/Test/Unit/Controller/Adminhtml/Feed/IndexTest.php index 41b6450a200..e9a65b1fedc 100644 --- a/app/code/Magento/Rss/Test/Unit/Controller/Adminhtml/Feed/IndexTest.php +++ b/app/code/Magento/Rss/Test/Unit/Controller/Adminhtml/Feed/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Test\Unit\Controller\Adminhtml\Feed; diff --git a/app/code/Magento/Rss/Test/Unit/Controller/Feed/IndexTest.php b/app/code/Magento/Rss/Test/Unit/Controller/Feed/IndexTest.php index 9ffd161e8db..91c27618810 100644 --- a/app/code/Magento/Rss/Test/Unit/Controller/Feed/IndexTest.php +++ b/app/code/Magento/Rss/Test/Unit/Controller/Feed/IndexTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rss\Test\Unit\Controller\Feed; diff --git a/app/code/Magento/Rss/Test/Unit/Model/RssManagerTest.php b/app/code/Magento/Rss/Test/Unit/Model/RssManagerTest.php index 45c3a417467..4f76a02df00 100644 --- a/app/code/Magento/Rss/Test/Unit/Model/RssManagerTest.php +++ b/app/code/Magento/Rss/Test/Unit/Model/RssManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rss/Test/Unit/Model/RssTest.php b/app/code/Magento/Rss/Test/Unit/Model/RssTest.php index 0c5eb303935..1a66760d035 100644 --- a/app/code/Magento/Rss/Test/Unit/Model/RssTest.php +++ b/app/code/Magento/Rss/Test/Unit/Model/RssTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rss/Test/Unit/Model/UrlBuilderTest.php b/app/code/Magento/Rss/Test/Unit/Model/UrlBuilderTest.php index 9bc950832f9..6ab5e344b47 100644 --- a/app/code/Magento/Rss/Test/Unit/Model/UrlBuilderTest.php +++ b/app/code/Magento/Rss/Test/Unit/Model/UrlBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rss/etc/acl.xml b/app/code/Magento/Rss/etc/acl.xml index 8e8d6b410bf..f3ad0fc8bf5 100644 --- a/app/code/Magento/Rss/etc/acl.xml +++ b/app/code/Magento/Rss/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Rss/etc/adminhtml/di.xml b/app/code/Magento/Rss/etc/adminhtml/di.xml index d411833ae77..8a43668affe 100644 --- a/app/code/Magento/Rss/etc/adminhtml/di.xml +++ b/app/code/Magento/Rss/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Rss/etc/adminhtml/routes.xml b/app/code/Magento/Rss/etc/adminhtml/routes.xml index 6219782d0b7..b76fd722111 100644 --- a/app/code/Magento/Rss/etc/adminhtml/routes.xml +++ b/app/code/Magento/Rss/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Rss/etc/adminhtml/system.xml b/app/code/Magento/Rss/etc/adminhtml/system.xml index 0071d0fa19a..d916bcd3e57 100644 --- a/app/code/Magento/Rss/etc/adminhtml/system.xml +++ b/app/code/Magento/Rss/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Rss/etc/di.xml b/app/code/Magento/Rss/etc/di.xml index a2ab9f95f83..fbe92c28fdc 100644 --- a/app/code/Magento/Rss/etc/di.xml +++ b/app/code/Magento/Rss/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Rss/etc/frontend/page_types.xml b/app/code/Magento/Rss/etc/frontend/page_types.xml index 627f0ee0a9c..d4d755a3d55 100644 --- a/app/code/Magento/Rss/etc/frontend/page_types.xml +++ b/app/code/Magento/Rss/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Rss/etc/frontend/routes.xml b/app/code/Magento/Rss/etc/frontend/routes.xml index ed1d7907ece..8dd282271be 100644 --- a/app/code/Magento/Rss/etc/frontend/routes.xml +++ b/app/code/Magento/Rss/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Rss/etc/module.xml b/app/code/Magento/Rss/etc/module.xml index 8cc38f6ca6e..9aeb61e491a 100644 --- a/app/code/Magento/Rss/etc/module.xml +++ b/app/code/Magento/Rss/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Rss/registration.php b/app/code/Magento/Rss/registration.php index adce0c06f7d..5d557825c24 100644 --- a/app/code/Magento/Rss/registration.php +++ b/app/code/Magento/Rss/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rss/view/frontend/layout/default.xml b/app/code/Magento/Rss/view/frontend/layout/default.xml index f5cd5cb4f15..bc65454ecd6 100644 --- a/app/code/Magento/Rss/view/frontend/layout/default.xml +++ b/app/code/Magento/Rss/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Rss/view/frontend/layout/rss_index_index.xml b/app/code/Magento/Rss/view/frontend/layout/rss_index_index.xml index e95e250c956..eddf4a0581b 100644 --- a/app/code/Magento/Rss/view/frontend/layout/rss_index_index.xml +++ b/app/code/Magento/Rss/view/frontend/layout/rss_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Rss/view/frontend/templates/feeds.phtml b/app/code/Magento/Rss/view/frontend/templates/feeds.phtml index f1074799dac..a491e00183f 100644 --- a/app/code/Magento/Rss/view/frontend/templates/feeds.phtml +++ b/app/code/Magento/Rss/view/frontend/templates/feeds.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Block/Actions.php b/app/code/Magento/Rule/Block/Actions.php index aea4ffbf034..348cb9f2d00 100644 --- a/app/code/Magento/Rule/Block/Actions.php +++ b/app/code/Magento/Rule/Block/Actions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Block; diff --git a/app/code/Magento/Rule/Block/Conditions.php b/app/code/Magento/Rule/Block/Conditions.php index 2fb23138cc0..507c3c2ee4e 100644 --- a/app/code/Magento/Rule/Block/Conditions.php +++ b/app/code/Magento/Rule/Block/Conditions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Block; diff --git a/app/code/Magento/Rule/Block/Editable.php b/app/code/Magento/Rule/Block/Editable.php index 20294d1ebe4..273014619c1 100644 --- a/app/code/Magento/Rule/Block/Editable.php +++ b/app/code/Magento/Rule/Block/Editable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Block; diff --git a/app/code/Magento/Rule/Block/Newchild.php b/app/code/Magento/Rule/Block/Newchild.php index 02e8f2a9a2e..c2e897e6891 100644 --- a/app/code/Magento/Rule/Block/Newchild.php +++ b/app/code/Magento/Rule/Block/Newchild.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Block; diff --git a/app/code/Magento/Rule/Block/Rule.php b/app/code/Magento/Rule/Block/Rule.php index a88121f80ef..2099c4399dd 100644 --- a/app/code/Magento/Rule/Block/Rule.php +++ b/app/code/Magento/Rule/Block/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Block; diff --git a/app/code/Magento/Rule/Model/AbstractModel.php b/app/code/Magento/Rule/Model/AbstractModel.php index 73e3db2c8a3..a324868376b 100644 --- a/app/code/Magento/Rule/Model/AbstractModel.php +++ b/app/code/Magento/Rule/Model/AbstractModel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Model; diff --git a/app/code/Magento/Rule/Model/Action/AbstractAction.php b/app/code/Magento/Rule/Model/Action/AbstractAction.php index 3be6ba0ee26..4c9ff71c636 100644 --- a/app/code/Magento/Rule/Model/Action/AbstractAction.php +++ b/app/code/Magento/Rule/Model/Action/AbstractAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Model\Action; diff --git a/app/code/Magento/Rule/Model/Action/ActionInterface.php b/app/code/Magento/Rule/Model/Action/ActionInterface.php index 3f111bb5692..84233495f5b 100644 --- a/app/code/Magento/Rule/Model/Action/ActionInterface.php +++ b/app/code/Magento/Rule/Model/Action/ActionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Model\Action; diff --git a/app/code/Magento/Rule/Model/Action/Collection.php b/app/code/Magento/Rule/Model/Action/Collection.php index 7424456ab46..c9819b7c75f 100644 --- a/app/code/Magento/Rule/Model/Action/Collection.php +++ b/app/code/Magento/Rule/Model/Action/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Model\Action; diff --git a/app/code/Magento/Rule/Model/ActionFactory.php b/app/code/Magento/Rule/Model/ActionFactory.php index 79d1f52939f..17204de053b 100644 --- a/app/code/Magento/Rule/Model/ActionFactory.php +++ b/app/code/Magento/Rule/Model/ActionFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Model; diff --git a/app/code/Magento/Rule/Model/Condition/AbstractCondition.php b/app/code/Magento/Rule/Model/Condition/AbstractCondition.php index cbab59a95a3..c6d5ee5e264 100644 --- a/app/code/Magento/Rule/Model/Condition/AbstractCondition.php +++ b/app/code/Magento/Rule/Model/Condition/AbstractCondition.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Model/Condition/Combine.php b/app/code/Magento/Rule/Model/Condition/Combine.php index 120c53cc663..38336cc3699 100644 --- a/app/code/Magento/Rule/Model/Condition/Combine.php +++ b/app/code/Magento/Rule/Model/Condition/Combine.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Model\Condition; diff --git a/app/code/Magento/Rule/Model/Condition/ConditionInterface.php b/app/code/Magento/Rule/Model/Condition/ConditionInterface.php index ed88f1a5051..3b363772d04 100644 --- a/app/code/Magento/Rule/Model/Condition/ConditionInterface.php +++ b/app/code/Magento/Rule/Model/Condition/ConditionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Model\Condition; diff --git a/app/code/Magento/Rule/Model/Condition/Context.php b/app/code/Magento/Rule/Model/Condition/Context.php index 0b18950728d..d19ae6ad50a 100644 --- a/app/code/Magento/Rule/Model/Condition/Context.php +++ b/app/code/Magento/Rule/Model/Condition/Context.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Model/Condition/Product/AbstractProduct.php b/app/code/Magento/Rule/Model/Condition/Product/AbstractProduct.php index 4b656ee299d..3879b3cabcc 100644 --- a/app/code/Magento/Rule/Model/Condition/Product/AbstractProduct.php +++ b/app/code/Magento/Rule/Model/Condition/Product/AbstractProduct.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Model/Condition/Sql/Builder.php b/app/code/Magento/Rule/Model/Condition/Sql/Builder.php index f427dfc3950..2e500cd7770 100644 --- a/app/code/Magento/Rule/Model/Condition/Sql/Builder.php +++ b/app/code/Magento/Rule/Model/Condition/Sql/Builder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Model/Condition/Sql/Expression.php b/app/code/Magento/Rule/Model/Condition/Sql/Expression.php index c1a61cedbad..3c4027d2065 100644 --- a/app/code/Magento/Rule/Model/Condition/Sql/Expression.php +++ b/app/code/Magento/Rule/Model/Condition/Sql/Expression.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Model/ConditionFactory.php b/app/code/Magento/Rule/Model/ConditionFactory.php index 90aae3509a2..5216a06d116 100644 --- a/app/code/Magento/Rule/Model/ConditionFactory.php +++ b/app/code/Magento/Rule/Model/ConditionFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Model; diff --git a/app/code/Magento/Rule/Model/Renderer/Actions.php b/app/code/Magento/Rule/Model/Renderer/Actions.php index 224e1653746..ff12fdc4768 100644 --- a/app/code/Magento/Rule/Model/Renderer/Actions.php +++ b/app/code/Magento/Rule/Model/Renderer/Actions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Model\Renderer; diff --git a/app/code/Magento/Rule/Model/Renderer/Conditions.php b/app/code/Magento/Rule/Model/Renderer/Conditions.php index b559d98a395..e0ba1020010 100644 --- a/app/code/Magento/Rule/Model/Renderer/Conditions.php +++ b/app/code/Magento/Rule/Model/Renderer/Conditions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Rule\Model\Renderer; diff --git a/app/code/Magento/Rule/Model/ResourceModel/AbstractResource.php b/app/code/Magento/Rule/Model/ResourceModel/AbstractResource.php index 26aa2b38e68..4eb2cf0b4a1 100644 --- a/app/code/Magento/Rule/Model/ResourceModel/AbstractResource.php +++ b/app/code/Magento/Rule/Model/ResourceModel/AbstractResource.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Model/ResourceModel/Rule/Collection/AbstractCollection.php b/app/code/Magento/Rule/Model/ResourceModel/Rule/Collection/AbstractCollection.php index 905bd68e308..dc354cbae94 100644 --- a/app/code/Magento/Rule/Model/ResourceModel/Rule/Collection/AbstractCollection.php +++ b/app/code/Magento/Rule/Model/ResourceModel/Rule/Collection/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Test/Unit/Model/ActionFactoryTest.php b/app/code/Magento/Rule/Test/Unit/Model/ActionFactoryTest.php index 0a9fe3f7d59..a2a34f084c1 100644 --- a/app/code/Magento/Rule/Test/Unit/Model/ActionFactoryTest.php +++ b/app/code/Magento/Rule/Test/Unit/Model/ActionFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Test/Unit/Model/Condition/AbstractConditionTest.php b/app/code/Magento/Rule/Test/Unit/Model/Condition/AbstractConditionTest.php index d38e00495af..9ff28b20b61 100644 --- a/app/code/Magento/Rule/Test/Unit/Model/Condition/AbstractConditionTest.php +++ b/app/code/Magento/Rule/Test/Unit/Model/Condition/AbstractConditionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Test/Unit/Model/Condition/CombineTest.php b/app/code/Magento/Rule/Test/Unit/Model/Condition/CombineTest.php index 74cb0bee652..d47c8f17db0 100644 --- a/app/code/Magento/Rule/Test/Unit/Model/Condition/CombineTest.php +++ b/app/code/Magento/Rule/Test/Unit/Model/Condition/CombineTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Test/Unit/Model/Condition/Product/AbstractProductTest.php b/app/code/Magento/Rule/Test/Unit/Model/Condition/Product/AbstractProductTest.php index ae46c7f0a38..53388c5e42e 100644 --- a/app/code/Magento/Rule/Test/Unit/Model/Condition/Product/AbstractProductTest.php +++ b/app/code/Magento/Rule/Test/Unit/Model/Condition/Product/AbstractProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/BuilderTest.php b/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/BuilderTest.php index 3f5050415c0..3bb926fe7fd 100644 --- a/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/BuilderTest.php +++ b/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/BuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/ExpressionTest.php b/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/ExpressionTest.php index f86939840a8..bfcb12aacb4 100644 --- a/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/ExpressionTest.php +++ b/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/ExpressionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Test/Unit/Model/ConditionFactoryTest.php b/app/code/Magento/Rule/Test/Unit/Model/ConditionFactoryTest.php index e9949237c77..9b008119106 100644 --- a/app/code/Magento/Rule/Test/Unit/Model/ConditionFactoryTest.php +++ b/app/code/Magento/Rule/Test/Unit/Model/ConditionFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Test/Unit/Model/Renderer/ActionsTest.php b/app/code/Magento/Rule/Test/Unit/Model/Renderer/ActionsTest.php index 2cce78d2f7c..1305b3f597a 100644 --- a/app/code/Magento/Rule/Test/Unit/Model/Renderer/ActionsTest.php +++ b/app/code/Magento/Rule/Test/Unit/Model/Renderer/ActionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Test/Unit/Model/Renderer/ConditionsTest.php b/app/code/Magento/Rule/Test/Unit/Model/Renderer/ConditionsTest.php index 0254d30cdcb..b65df8b3b2d 100644 --- a/app/code/Magento/Rule/Test/Unit/Model/Renderer/ConditionsTest.php +++ b/app/code/Magento/Rule/Test/Unit/Model/Renderer/ConditionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/Test/Unit/Model/ResourceModel/Rule/Collection/AbstractCollectionTest.php b/app/code/Magento/Rule/Test/Unit/Model/ResourceModel/Rule/Collection/AbstractCollectionTest.php index b67eee9fd9e..aa2cd1ffeb1 100644 --- a/app/code/Magento/Rule/Test/Unit/Model/ResourceModel/Rule/Collection/AbstractCollectionTest.php +++ b/app/code/Magento/Rule/Test/Unit/Model/ResourceModel/Rule/Collection/AbstractCollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/etc/module.xml b/app/code/Magento/Rule/etc/module.xml index 852de7d387d..0bcb9be6679 100644 --- a/app/code/Magento/Rule/etc/module.xml +++ b/app/code/Magento/Rule/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Rule/registration.php b/app/code/Magento/Rule/registration.php index 0cfbb2b8660..d72d4fd9b61 100644 --- a/app/code/Magento/Rule/registration.php +++ b/app/code/Magento/Rule/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Rule/view/adminhtml/web/rules.js b/app/code/Magento/Rule/view/adminhtml/web/rules.js index c92f94fee87..0c4f9a8851b 100644 --- a/app/code/Magento/Rule/view/adminhtml/web/rules.js +++ b/app/code/Magento/Rule/view/adminhtml/web/rules.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ @@ -355,4 +355,4 @@ define([ }; return VarienRulesForm; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Sales/Api/CreditmemoCommentRepositoryInterface.php b/app/code/Magento/Sales/Api/CreditmemoCommentRepositoryInterface.php index 6170b5a8280..a293acf2533 100644 --- a/app/code/Magento/Sales/Api/CreditmemoCommentRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/CreditmemoCommentRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Api/CreditmemoItemRepositoryInterface.php b/app/code/Magento/Sales/Api/CreditmemoItemRepositoryInterface.php index c2b3fd5e16e..39ec838edd4 100644 --- a/app/code/Magento/Sales/Api/CreditmemoItemRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/CreditmemoItemRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/CreditmemoManagementInterface.php b/app/code/Magento/Sales/Api/CreditmemoManagementInterface.php index 71e6f0fa451..07e06976272 100644 --- a/app/code/Magento/Sales/Api/CreditmemoManagementInterface.php +++ b/app/code/Magento/Sales/Api/CreditmemoManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Api/CreditmemoRepositoryInterface.php b/app/code/Magento/Sales/Api/CreditmemoRepositoryInterface.php index e922ca104da..10aad987378 100644 --- a/app/code/Magento/Sales/Api/CreditmemoRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/CreditmemoRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/Data/CommentInterface.php b/app/code/Magento/Sales/Api/Data/CommentInterface.php index 6e447e72ab1..eddb2d3a724 100644 --- a/app/code/Magento/Sales/Api/Data/CommentInterface.php +++ b/app/code/Magento/Sales/Api/Data/CommentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoCommentCreationInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoCommentCreationInterface.php index 283e8600738..d8a55b6266f 100644 --- a/app/code/Magento/Sales/Api/Data/CreditmemoCommentCreationInterface.php +++ b/app/code/Magento/Sales/Api/Data/CreditmemoCommentCreationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoCommentInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoCommentInterface.php index 8538bf110de..3df542fe11a 100644 --- a/app/code/Magento/Sales/Api/Data/CreditmemoCommentInterface.php +++ b/app/code/Magento/Sales/Api/Data/CreditmemoCommentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoCommentSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoCommentSearchResultInterface.php index 8439231d230..27037dd13c5 100644 --- a/app/code/Magento/Sales/Api/Data/CreditmemoCommentSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/CreditmemoCommentSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoCreationArgumentsInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoCreationArgumentsInterface.php index 2735a94a777..1193c198a48 100644 --- a/app/code/Magento/Sales/Api/Data/CreditmemoCreationArgumentsInterface.php +++ b/app/code/Magento/Sales/Api/Data/CreditmemoCreationArgumentsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoInterface.php index ecca646c69d..e68e791cd90 100644 --- a/app/code/Magento/Sales/Api/Data/CreditmemoInterface.php +++ b/app/code/Magento/Sales/Api/Data/CreditmemoInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoItemCreationInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoItemCreationInterface.php index 1cd5f3c43be..d75cde7735c 100644 --- a/app/code/Magento/Sales/Api/Data/CreditmemoItemCreationInterface.php +++ b/app/code/Magento/Sales/Api/Data/CreditmemoItemCreationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoItemInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoItemInterface.php index 8481a3426d0..027010d8b43 100644 --- a/app/code/Magento/Sales/Api/Data/CreditmemoItemInterface.php +++ b/app/code/Magento/Sales/Api/Data/CreditmemoItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoItemSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoItemSearchResultInterface.php index 3e51c463333..8c1c403db27 100644 --- a/app/code/Magento/Sales/Api/Data/CreditmemoItemSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/CreditmemoItemSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoSearchResultInterface.php index 3c1a2477e87..f62132bae0c 100644 --- a/app/code/Magento/Sales/Api/Data/CreditmemoSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/CreditmemoSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/EntityInterface.php b/app/code/Magento/Sales/Api/Data/EntityInterface.php index d09b25920f8..2013ee78ea8 100644 --- a/app/code/Magento/Sales/Api/Data/EntityInterface.php +++ b/app/code/Magento/Sales/Api/Data/EntityInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/InvoiceCommentCreationInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceCommentCreationInterface.php index 5e4d85e93cb..4a6d775543d 100644 --- a/app/code/Magento/Sales/Api/Data/InvoiceCommentCreationInterface.php +++ b/app/code/Magento/Sales/Api/Data/InvoiceCommentCreationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Api/Data/InvoiceCommentInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceCommentInterface.php index f661a1ab6a4..d16b1b390c8 100644 --- a/app/code/Magento/Sales/Api/Data/InvoiceCommentInterface.php +++ b/app/code/Magento/Sales/Api/Data/InvoiceCommentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/InvoiceCommentSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceCommentSearchResultInterface.php index 6f8447ea63f..8e4fd8c88c9 100644 --- a/app/code/Magento/Sales/Api/Data/InvoiceCommentSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/InvoiceCommentSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/InvoiceCreationArgumentsInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceCreationArgumentsInterface.php index de77783380c..2fcd5300344 100644 --- a/app/code/Magento/Sales/Api/Data/InvoiceCreationArgumentsInterface.php +++ b/app/code/Magento/Sales/Api/Data/InvoiceCreationArgumentsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/InvoiceInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceInterface.php index 77dfed277a2..a516a755309 100644 --- a/app/code/Magento/Sales/Api/Data/InvoiceInterface.php +++ b/app/code/Magento/Sales/Api/Data/InvoiceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/InvoiceItemCreationInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceItemCreationInterface.php index 2f2ddfbf758..eacb2359142 100644 --- a/app/code/Magento/Sales/Api/Data/InvoiceItemCreationInterface.php +++ b/app/code/Magento/Sales/Api/Data/InvoiceItemCreationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Api/Data/InvoiceItemInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceItemInterface.php index 37a933f97a2..11da364b115 100644 --- a/app/code/Magento/Sales/Api/Data/InvoiceItemInterface.php +++ b/app/code/Magento/Sales/Api/Data/InvoiceItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/InvoiceItemSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceItemSearchResultInterface.php index ff01b05e90f..1b82ca9fd0f 100644 --- a/app/code/Magento/Sales/Api/Data/InvoiceItemSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/InvoiceItemSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/InvoiceSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceSearchResultInterface.php index d2fe14cba33..034a220b6d9 100644 --- a/app/code/Magento/Sales/Api/Data/InvoiceSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/InvoiceSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/LineItemInterface.php b/app/code/Magento/Sales/Api/Data/LineItemInterface.php index 7f2b43cb7db..4573fce19a7 100644 --- a/app/code/Magento/Sales/Api/Data/LineItemInterface.php +++ b/app/code/Magento/Sales/Api/Data/LineItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Api/Data/OrderAddressInterface.php b/app/code/Magento/Sales/Api/Data/OrderAddressInterface.php index 9ab9cea87e2..b8472383947 100644 --- a/app/code/Magento/Sales/Api/Data/OrderAddressInterface.php +++ b/app/code/Magento/Sales/Api/Data/OrderAddressInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/OrderAddressSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/OrderAddressSearchResultInterface.php index ca054cc6f17..50b2247be18 100644 --- a/app/code/Magento/Sales/Api/Data/OrderAddressSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/OrderAddressSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/OrderInterface.php b/app/code/Magento/Sales/Api/Data/OrderInterface.php index 67152d15227..5d14dbe12c5 100644 --- a/app/code/Magento/Sales/Api/Data/OrderInterface.php +++ b/app/code/Magento/Sales/Api/Data/OrderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/OrderItemInterface.php b/app/code/Magento/Sales/Api/Data/OrderItemInterface.php index 298276b7e13..c2c5a45ab6e 100644 --- a/app/code/Magento/Sales/Api/Data/OrderItemInterface.php +++ b/app/code/Magento/Sales/Api/Data/OrderItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/OrderItemSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/OrderItemSearchResultInterface.php index 1c86c441325..83f9988e005 100644 --- a/app/code/Magento/Sales/Api/Data/OrderItemSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/OrderItemSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/OrderPaymentInterface.php b/app/code/Magento/Sales/Api/Data/OrderPaymentInterface.php index 4b98fe9309b..cb28a2e2c46 100644 --- a/app/code/Magento/Sales/Api/Data/OrderPaymentInterface.php +++ b/app/code/Magento/Sales/Api/Data/OrderPaymentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/OrderPaymentSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/OrderPaymentSearchResultInterface.php index 1d2786ec4f2..5e093c48d17 100644 --- a/app/code/Magento/Sales/Api/Data/OrderPaymentSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/OrderPaymentSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/OrderSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/OrderSearchResultInterface.php index 07082a877cd..4fa63181b74 100644 --- a/app/code/Magento/Sales/Api/Data/OrderSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/OrderSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/OrderStatusHistoryInterface.php b/app/code/Magento/Sales/Api/Data/OrderStatusHistoryInterface.php index b15f834297f..cd841395653 100644 --- a/app/code/Magento/Sales/Api/Data/OrderStatusHistoryInterface.php +++ b/app/code/Magento/Sales/Api/Data/OrderStatusHistoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/OrderStatusHistorySearchResultInterface.php b/app/code/Magento/Sales/Api/Data/OrderStatusHistorySearchResultInterface.php index ea36a1b3964..1a874bb4fd9 100644 --- a/app/code/Magento/Sales/Api/Data/OrderStatusHistorySearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/OrderStatusHistorySearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentCommentCreationInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentCommentCreationInterface.php index 40beaa32d02..6f2995fb25e 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentCommentCreationInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentCommentCreationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentCommentInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentCommentInterface.php index 0c00bf80d78..ff4f1d3603e 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentCommentInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentCommentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentCommentSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentCommentSearchResultInterface.php index 6cb18a59e12..50fa3d819b1 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentCommentSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentCommentSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentCreationArgumentsInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentCreationArgumentsInterface.php index f03d05be3c7..b64df92ffa6 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentCreationArgumentsInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentCreationArgumentsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentInterface.php index a2edc3ed010..5a00c870510 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentItemCreationInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentItemCreationInterface.php index 57c908fb88c..6af60bcfd87 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentItemCreationInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentItemCreationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Api/Data/ShipmentItemInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentItemInterface.php index 6d891371d04..e139f69d2fb 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentItemInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentItemSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentItemSearchResultInterface.php index bda16e36d69..f45c1a45058 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentItemSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentItemSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentPackageCreationInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentPackageCreationInterface.php index c83c54b3019..60dcca51a03 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentPackageCreationInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentPackageCreationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentPackageInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentPackageInterface.php index 9b746918902..c01ef67add4 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentPackageInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentPackageInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentSearchResultInterface.php index 8b52cf49bbf..58a41f24e1f 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentTrackCreationInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentTrackCreationInterface.php index 6a45242fcd1..4490c3d62c0 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentTrackCreationInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentTrackCreationInterface.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentTrackInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentTrackInterface.php index beafa1370f1..a447397675d 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentTrackInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentTrackInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShipmentTrackSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentTrackSearchResultInterface.php index 046991fb1a1..d3613d11efa 100644 --- a/app/code/Magento/Sales/Api/Data/ShipmentTrackSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShipmentTrackSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShippingAssignmentInterface.php b/app/code/Magento/Sales/Api/Data/ShippingAssignmentInterface.php index e862ae6f238..95d21d95216 100644 --- a/app/code/Magento/Sales/Api/Data/ShippingAssignmentInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShippingAssignmentInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/ShippingInterface.php b/app/code/Magento/Sales/Api/Data/ShippingInterface.php index fd325ed69c1..4c2c9663257 100644 --- a/app/code/Magento/Sales/Api/Data/ShippingInterface.php +++ b/app/code/Magento/Sales/Api/Data/ShippingInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/TotalInterface.php b/app/code/Magento/Sales/Api/Data/TotalInterface.php index e83720c7bb4..90c7a6a0c5b 100644 --- a/app/code/Magento/Sales/Api/Data/TotalInterface.php +++ b/app/code/Magento/Sales/Api/Data/TotalInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/TrackInterface.php b/app/code/Magento/Sales/Api/Data/TrackInterface.php index 17c08ff9b98..f957d0044f9 100644 --- a/app/code/Magento/Sales/Api/Data/TrackInterface.php +++ b/app/code/Magento/Sales/Api/Data/TrackInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/TransactionInterface.php b/app/code/Magento/Sales/Api/Data/TransactionInterface.php index bf3107452d5..c32ccfac1f3 100644 --- a/app/code/Magento/Sales/Api/Data/TransactionInterface.php +++ b/app/code/Magento/Sales/Api/Data/TransactionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Data/TransactionSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/TransactionSearchResultInterface.php index 61ca1d69663..403af38b386 100644 --- a/app/code/Magento/Sales/Api/Data/TransactionSearchResultInterface.php +++ b/app/code/Magento/Sales/Api/Data/TransactionSearchResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Data; diff --git a/app/code/Magento/Sales/Api/Exception/CouldNotInvoiceExceptionInterface.php b/app/code/Magento/Sales/Api/Exception/CouldNotInvoiceExceptionInterface.php index 2437271d7b2..7ff8089ca1f 100644 --- a/app/code/Magento/Sales/Api/Exception/CouldNotInvoiceExceptionInterface.php +++ b/app/code/Magento/Sales/Api/Exception/CouldNotInvoiceExceptionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Exception; diff --git a/app/code/Magento/Sales/Api/Exception/CouldNotRefundExceptionInterface.php b/app/code/Magento/Sales/Api/Exception/CouldNotRefundExceptionInterface.php index dee24735af6..26fbf92b2fd 100644 --- a/app/code/Magento/Sales/Api/Exception/CouldNotRefundExceptionInterface.php +++ b/app/code/Magento/Sales/Api/Exception/CouldNotRefundExceptionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Exception; diff --git a/app/code/Magento/Sales/Api/Exception/CouldNotShipExceptionInterface.php b/app/code/Magento/Sales/Api/Exception/CouldNotShipExceptionInterface.php index b52e6277912..e0b1aa0beba 100644 --- a/app/code/Magento/Sales/Api/Exception/CouldNotShipExceptionInterface.php +++ b/app/code/Magento/Sales/Api/Exception/CouldNotShipExceptionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Exception; diff --git a/app/code/Magento/Sales/Api/Exception/DocumentValidationExceptionInterface.php b/app/code/Magento/Sales/Api/Exception/DocumentValidationExceptionInterface.php index 544c1d3a4bf..1fc29c632b8 100644 --- a/app/code/Magento/Sales/Api/Exception/DocumentValidationExceptionInterface.php +++ b/app/code/Magento/Sales/Api/Exception/DocumentValidationExceptionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api\Exception; diff --git a/app/code/Magento/Sales/Api/InvoiceCommentRepositoryInterface.php b/app/code/Magento/Sales/Api/InvoiceCommentRepositoryInterface.php index fbeef474aab..a506b1083d4 100644 --- a/app/code/Magento/Sales/Api/InvoiceCommentRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/InvoiceCommentRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/InvoiceItemRepositoryInterface.php b/app/code/Magento/Sales/Api/InvoiceItemRepositoryInterface.php index 11e97505c27..490061dc9b3 100644 --- a/app/code/Magento/Sales/Api/InvoiceItemRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/InvoiceItemRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/InvoiceManagementInterface.php b/app/code/Magento/Sales/Api/InvoiceManagementInterface.php index 553039ae24f..9a68862e0dc 100644 --- a/app/code/Magento/Sales/Api/InvoiceManagementInterface.php +++ b/app/code/Magento/Sales/Api/InvoiceManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/InvoiceOrderInterface.php b/app/code/Magento/Sales/Api/InvoiceOrderInterface.php index 0f0ce459699..7afc6ccbfac 100644 --- a/app/code/Magento/Sales/Api/InvoiceOrderInterface.php +++ b/app/code/Magento/Sales/Api/InvoiceOrderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Api/InvoiceRepositoryInterface.php b/app/code/Magento/Sales/Api/InvoiceRepositoryInterface.php index b2250a1c9b6..6c3d3b74813 100644 --- a/app/code/Magento/Sales/Api/InvoiceRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/InvoiceRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/OrderAddressRepositoryInterface.php b/app/code/Magento/Sales/Api/OrderAddressRepositoryInterface.php index 843acd0cdc5..87d64004af6 100644 --- a/app/code/Magento/Sales/Api/OrderAddressRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/OrderAddressRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/OrderCustomerManagementInterface.php b/app/code/Magento/Sales/Api/OrderCustomerManagementInterface.php index 0d964c170f0..8ceb64134c2 100644 --- a/app/code/Magento/Sales/Api/OrderCustomerManagementInterface.php +++ b/app/code/Magento/Sales/Api/OrderCustomerManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/OrderItemRepositoryInterface.php b/app/code/Magento/Sales/Api/OrderItemRepositoryInterface.php index dde41bda84b..891de901dfd 100644 --- a/app/code/Magento/Sales/Api/OrderItemRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/OrderItemRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/OrderManagementInterface.php b/app/code/Magento/Sales/Api/OrderManagementInterface.php index 0ef5098e215..a01d6eff14a 100644 --- a/app/code/Magento/Sales/Api/OrderManagementInterface.php +++ b/app/code/Magento/Sales/Api/OrderManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Api/OrderPaymentRepositoryInterface.php b/app/code/Magento/Sales/Api/OrderPaymentRepositoryInterface.php index 936f5603953..c5f3af77934 100644 --- a/app/code/Magento/Sales/Api/OrderPaymentRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/OrderPaymentRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/OrderRepositoryInterface.php b/app/code/Magento/Sales/Api/OrderRepositoryInterface.php index 15b616986c6..4570e47e5ae 100644 --- a/app/code/Magento/Sales/Api/OrderRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/OrderRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/OrderStatusHistoryRepositoryInterface.php b/app/code/Magento/Sales/Api/OrderStatusHistoryRepositoryInterface.php index a566afc5f3f..22ee8211869 100644 --- a/app/code/Magento/Sales/Api/OrderStatusHistoryRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/OrderStatusHistoryRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Api/RefundInvoiceInterface.php b/app/code/Magento/Sales/Api/RefundInvoiceInterface.php index dc86ccbb580..b3ea8aa0364 100644 --- a/app/code/Magento/Sales/Api/RefundInvoiceInterface.php +++ b/app/code/Magento/Sales/Api/RefundInvoiceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/RefundOrderInterface.php b/app/code/Magento/Sales/Api/RefundOrderInterface.php index 20a782de421..4f0fa00fa7f 100644 --- a/app/code/Magento/Sales/Api/RefundOrderInterface.php +++ b/app/code/Magento/Sales/Api/RefundOrderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/ShipOrderInterface.php b/app/code/Magento/Sales/Api/ShipOrderInterface.php index d28fedf4e50..7fe72bb5c88 100644 --- a/app/code/Magento/Sales/Api/ShipOrderInterface.php +++ b/app/code/Magento/Sales/Api/ShipOrderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/ShipmentCommentRepositoryInterface.php b/app/code/Magento/Sales/Api/ShipmentCommentRepositoryInterface.php index a017c92284a..ab9b43f8816 100644 --- a/app/code/Magento/Sales/Api/ShipmentCommentRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/ShipmentCommentRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/ShipmentItemRepositoryInterface.php b/app/code/Magento/Sales/Api/ShipmentItemRepositoryInterface.php index 0e2a4107dd8..25a87055b3f 100644 --- a/app/code/Magento/Sales/Api/ShipmentItemRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/ShipmentItemRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/ShipmentManagementInterface.php b/app/code/Magento/Sales/Api/ShipmentManagementInterface.php index 2a3e6e6c98f..5b8012217f9 100644 --- a/app/code/Magento/Sales/Api/ShipmentManagementInterface.php +++ b/app/code/Magento/Sales/Api/ShipmentManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/ShipmentRepositoryInterface.php b/app/code/Magento/Sales/Api/ShipmentRepositoryInterface.php index 8ca32a107df..e1672f130de 100644 --- a/app/code/Magento/Sales/Api/ShipmentRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/ShipmentRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/ShipmentTrackRepositoryInterface.php b/app/code/Magento/Sales/Api/ShipmentTrackRepositoryInterface.php index 5f7685c738d..4c7d801695b 100644 --- a/app/code/Magento/Sales/Api/ShipmentTrackRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/ShipmentTrackRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Api/TransactionRepositoryInterface.php b/app/code/Magento/Sales/Api/TransactionRepositoryInterface.php index 1d100f9f750..5b91ce6fb9a 100644 --- a/app/code/Magento/Sales/Api/TransactionRepositoryInterface.php +++ b/app/code/Magento/Sales/Api/TransactionRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Api; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Creditmemo.php b/app/code/Magento/Sales/Block/Adminhtml/Creditmemo.php index 2b7d9958362..0dee53e7fd9 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Creditmemo.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Creditmemo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml; diff --git a/app/code/Magento/Sales/Block/Adminhtml/CustomerOrdersTab.php b/app/code/Magento/Sales/Block/Adminhtml/CustomerOrdersTab.php index ac19d8a3270..12d6542305d 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/CustomerOrdersTab.php +++ b/app/code/Magento/Sales/Block/Adminhtml/CustomerOrdersTab.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Invoice.php b/app/code/Magento/Sales/Block/Adminhtml/Invoice.php index 88fea7e5814..04e16779b85 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Invoice.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Invoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Items/AbstractItems.php b/app/code/Magento/Sales/Block/Adminhtml/Items/AbstractItems.php index 952a5b24fb4..9eb728d3141 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Items/AbstractItems.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Items/AbstractItems.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Items; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Items/Column/DefaultColumn.php b/app/code/Magento/Sales/Block/Adminhtml/Items/Column/DefaultColumn.php index e075378f544..cf079e7f985 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Items/Column/DefaultColumn.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Items/Column/DefaultColumn.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Items\Column; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Name.php b/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Name.php index 723777f0dd4..676b5b4d590 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Name.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Name.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Items\Column; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Qty.php b/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Qty.php index 1cfbed6c322..64a9ea2ff8d 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Qty.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Qty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Items\Column; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Items/Renderer/DefaultRenderer.php b/app/code/Magento/Sales/Block/Adminhtml/Items/Renderer/DefaultRenderer.php index 480a250b9ab..3bc87b54e88 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Items/Renderer/DefaultRenderer.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Items/Renderer/DefaultRenderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Items\Renderer; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order.php b/app/code/Magento/Sales/Block/Adminhtml/Order.php index ab4d98dd57c..b3f279f6f3d 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/AbstractOrder.php b/app/code/Magento/Sales/Block/Adminhtml/Order/AbstractOrder.php index eaf99ff24e9..315fb36e27c 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/AbstractOrder.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/AbstractOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Address.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Address.php index a4380b8249a..05e042780cf 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Address.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Address/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Address/Form.php index fc569db6293..79c08eb25e0 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Address/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Address/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Address; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Comments/View.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Comments/View.php index 970fdfbaf90..1cd0fd224a4 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Comments/View.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Comments/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Comments; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create.php index 6fbf8751f0f..d3388d4b1c2 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/AbstractCreate.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/AbstractCreate.php index 31540762c95..eb81be9143f 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/AbstractCreate.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/AbstractCreate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Address.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Address.php index f073f042cba..555f13a9a57 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Address.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Billing; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method.php index 2780a28fa2d..aea38310bb8 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Billing; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method/Form.php index 892faf66140..4b39fab40d5 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Billing\Method; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Comment.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Comment.php index c6923555eab..b4cb2ecbe34 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Comment.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Comment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons.php index d6dcf2f748b..aa5a9337c8a 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons/Form.php index f4f235325d0..b89728114fe 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Coupons; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Customer.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Customer.php index 0fb776b3b0b..c8ed2b53dda 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Customer.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Data.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Data.php index 33c821befcc..3ae06f52d55 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Data.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form.php index 52dbfab429b..dafe19b7b73 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractForm.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractForm.php index 45d120db475..bf6d8153406 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractForm.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractForm.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Form; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Account.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Account.php index 59d4fb4708d..6a20d9a2aff 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Account.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Account.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Address.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Address.php index c421f511c16..d6130991b2a 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Address.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Form; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage.php index 96d7d599809..9cbc0e1761f 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage/Form.php index f11c8f86f9e..f4186897611 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Giftmessage; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Header.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Header.php index ce47574c54e..11871a2c48f 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Header.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Header.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items.php index daf2232e5d0..58f8022727e 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items/Grid.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items/Grid.php index 3af13c7b1ea..9405f6c2787 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items/Grid.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Items; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Load.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Load.php index ddc2979ffe8..12dcdef290c 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Load.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Load.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Messages.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Messages.php index 789a49988f1..d107d360e8d 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Messages.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Messages.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter.php index 5ddf14e2424..7f676533044 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter/Form.php index 56c7dacbe06..1d4f3ebdab7 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Newsletter; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search.php index 0780e0a888a..aebbf4b53b6 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid.php index 05b00ed0037..cf09ec9ce60 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Search; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Price.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Price.php index 0c04e4fa962..c9a5c20ce87 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Price.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Search\Grid\Renderer; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Product.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Product.php index 5bfc45cb507..040456aa13e 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Product.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Search\Grid\Renderer; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Qty.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Qty.php index 011c57b7f29..6a610ed1e54 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Qty.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Qty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Search\Grid\Renderer; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Address.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Address.php index 775c9cdb62c..a613b8420f9 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Address.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Shipping; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method.php index 359936dc5a6..87655af8a7b 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Shipping; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method/Form.php index 5a0f4a3ed91..a708d7f6f3f 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Shipping\Method; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar.php index 8330f030c23..9e266e8c4ea 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebar.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebar.php index 1ef4b8fea98..df25a36d14f 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebar.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Sidebar; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Cart.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Cart.php index 6140cd0232c..118f87a08a3 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Cart.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Sidebar; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Compared.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Compared.php index 83616361901..0dabbe8ace3 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Compared.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Compared.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Sidebar; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pcompared.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pcompared.php index 5c85c24fbc9..2cf50f0a76e 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pcompared.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pcompared.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Sidebar; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pviewed.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pviewed.php index f784fdfa36e..dbcc01e0d78 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pviewed.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pviewed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Sidebar; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Reorder.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Reorder.php index e8b4e7e8be7..d4925ebfb13 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Reorder.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Reorder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Sidebar; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Viewed.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Viewed.php index 31c76dbb657..1c7609b7a06 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Viewed.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Viewed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Sidebar; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Wishlist.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Wishlist.php index c193942668c..62e1abeffa6 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Wishlist.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Wishlist.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Sidebar; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store.php index ff29986622d..7ec04437108 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store/Select.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store/Select.php index 65550fcf7ce..b8fca90a966 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store/Select.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store/Select.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Store; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals.php index d5eee549252..bd43fabba84 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/DefaultTotals.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/DefaultTotals.php index c982ddc0f63..529f2d9a70a 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/DefaultTotals.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/DefaultTotals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Totals; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Discount.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Discount.php index 867bb14dbb7..b47d908168e 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Discount.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Discount.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Totals; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Grandtotal.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Grandtotal.php index 2d61500d685..13bb2bcc774 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Grandtotal.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Grandtotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Totals; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Shipping.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Shipping.php index 64af87f9f17..cea96f5f5fb 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Shipping.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Totals; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Subtotal.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Subtotal.php index fde6014e766..a41ed4e0d5b 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Subtotal.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Subtotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Totals; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Table.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Table.php index dd24b52b6d5..856c55a39c2 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Table.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Table.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Totals; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Tax.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Tax.php index a11f518196c..f5bf7b48a22 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Tax.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Create\Totals; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create.php index 345d64ef23f..6a7056b44af 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Adjustments.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Adjustments.php index 7fc3d8e61b3..c652f9a64d5 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Adjustments.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Adjustments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Creditmemo\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Form.php index 7c96e38ba3c..20ed883a223 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Creditmemo\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Items.php index 6bf91af519c..2c6bc2d7375 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Items.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Creditmemo\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Totals.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Totals.php index b20b301c24e..4457e9956bc 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Totals.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View.php index 27d9a8bd7c1..8878db4eae2 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Comments.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Comments.php index 59071101116..e8ea4c48a52 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Comments.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Comments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Creditmemo\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Form.php index 8e9f71d679c..e52f120a76a 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Creditmemo\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Items.php index 10f86c19238..1cf01f890c6 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Items.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Creditmemo\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Details.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Details.php index 2a63b59cc81..2097dd345e2 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Details.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Details.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create.php index 17136d2f7ff..fac2b15c4c5 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Form.php index 34cf9b2501c..b3c4c374770 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Invoice\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Items.php index b07c84cb5ad..9f30bfacc68 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Items.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Invoice\Create; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Totals.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Totals.php index 1cf221556f8..dc687cd58fd 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Totals.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View.php index 2b63f6a1ba5..f63e6ab4392 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Comments.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Comments.php index 19765743002..ef89d6e5764 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Comments.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Comments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Invoice\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Form.php index 4643e79d098..4a7c7722c45 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Invoice\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Items.php index 54f902e5e57..23e2e97afb3 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Items.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Invoice\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Payment.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Payment.php index d10726b72bc..88eeb25397a 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Payment.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Payment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status.php index 4e76425b659..ada9eafef17 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Status.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign.php index b7223fbdf7d..97ba72ebe66 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Status; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign/Form.php index 300d51f5364..388e31823dd 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Status\Assign; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit.php index 1f6f4cc06de..f74eef7cd8a 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Status; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit/Form.php index ea41c54caf0..0bd8a238fd4 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Status\Edit; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus.php index 652a01a8c7d..3b898f764b5 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Status; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus/Form.php index 6affaa2941b..f847e318247 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Status\NewStatus; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Totalbar.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Totalbar.php index f141e7589ce..5a5741f0602 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Totalbar.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Totalbar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Totals.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Totals.php index 237e7cff458..6dae9486b33 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Totals.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Item.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Item.php index 4b6eb944d85..86fad1bd63c 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Item.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Totals; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Tax.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Tax.php index 99ff50ab7cb..147e1d2ca79 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Tax.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\Totals; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View.php index f3ca2372bd2..33f0f4a79bf 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View.php @@ -2,7 +2,7 @@ /** * @category Magento * @package Magento_Sales - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Form.php index 5724a3ef32b..3ac6632ffee 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Giftmessage.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Giftmessage.php index 3f55e3b194a..17da4360cce 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Giftmessage.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Giftmessage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/History.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/History.php index a62dc6fa049..a2fce0969ed 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/History.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/History.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Info.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Info.php index bb9ce68b207..27b1d4145c3 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Info.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items.php index a1db802de3e..64db4998a59 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items/Renderer/DefaultRenderer.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items/Renderer/DefaultRenderer.php index 4fd40524938..cdfcf5b1b26 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items/Renderer/DefaultRenderer.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items/Renderer/DefaultRenderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View\Items\Renderer; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Messages.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Messages.php index 34997f89827..5522e031bf1 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Messages.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Messages.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Creditmemos.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Creditmemos.php index 12900ab339a..1c7aa8b5e54 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Creditmemos.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Creditmemos.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View\Tab; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/History.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/History.php index a68c543acf7..a920c432536 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/History.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/History.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View\Tab; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Info.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Info.php index dba0c8517d0..44ad46cbf8a 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Info.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View\Tab; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Invoices.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Invoices.php index 1d83cea59ed..522a65568c4 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Invoices.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Invoices.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View\Tab; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Shipments.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Shipments.php index 76e27dc89da..9c9196e8af2 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Shipments.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Shipments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View\Tab; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Transactions.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Transactions.php index 5f5cc1ff36f..b6f694c1b4f 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Transactions.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Transactions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View\Tab; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tabs.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tabs.php index 76d2285f9da..e1ae73ebff4 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tabs.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tabs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Order\View; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Reorder/Renderer/Action.php b/app/code/Magento/Sales/Block/Adminhtml/Reorder/Renderer/Action.php index 4bc93a75b5c..991f92021b2 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Reorder/Renderer/Action.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Reorder/Renderer/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Reorder\Renderer; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form.php index 8929ad64899..6b9ad675a2a 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Report\Filter; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php b/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php index 4228e2b6734..bf564e22e17 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Report\Filter\Form; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Order.php b/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Order.php index 129ff96de9e..a3c2d3fbf14 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Order.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Report\Filter\Form; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Rss/Order/Grid/Link.php b/app/code/Magento/Sales/Block/Adminhtml/Rss/Order/Grid/Link.php index 4752dbcb633..02226bba438 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Rss/Order/Grid/Link.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Rss/Order/Grid/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Rss\Order\Grid; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Shipment.php b/app/code/Magento/Sales/Block/Adminhtml/Shipment.php index 6af193a80a3..9650ab9d720 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Shipment.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Shipment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml; diff --git a/app/code/Magento/Sales/Block/Adminhtml/System/Config/Form/Fieldset/Order/Statuses.php b/app/code/Magento/Sales/Block/Adminhtml/System/Config/Form/Fieldset/Order/Statuses.php index f2e189f51e9..3e44cb927b5 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/System/Config/Form/Fieldset/Order/Statuses.php +++ b/app/code/Magento/Sales/Block/Adminhtml/System/Config/Form/Fieldset/Order/Statuses.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\System\Config\Form\Fieldset\Order; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Totals.php b/app/code/Magento/Sales/Block/Adminhtml/Totals.php index 4c4a3aa78f1..cf5ff85d8ae 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Totals.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Transactions.php b/app/code/Magento/Sales/Block/Adminhtml/Transactions.php index 469bf80b587..5bb408b29d6 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Transactions.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Transactions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail.php b/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail.php index e97a1a2f9d6..1c279bbb3bf 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail/Grid.php b/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail/Grid.php index 136376e2546..b7ad6c69efd 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail/Grid.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Adminhtml\Transactions\Detail; diff --git a/app/code/Magento/Sales/Block/Guest/Link.php b/app/code/Magento/Sales/Block/Guest/Link.php index 823313be3c1..e5cca157d6a 100644 --- a/app/code/Magento/Sales/Block/Guest/Link.php +++ b/app/code/Magento/Sales/Block/Guest/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Guest; diff --git a/app/code/Magento/Sales/Block/Items/AbstractItems.php b/app/code/Magento/Sales/Block/Items/AbstractItems.php index 948394b605d..23075aa49f4 100644 --- a/app/code/Magento/Sales/Block/Items/AbstractItems.php +++ b/app/code/Magento/Sales/Block/Items/AbstractItems.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Items; diff --git a/app/code/Magento/Sales/Block/Order/Comments.php b/app/code/Magento/Sales/Block/Order/Comments.php index b0ee0208750..35a84124a30 100644 --- a/app/code/Magento/Sales/Block/Order/Comments.php +++ b/app/code/Magento/Sales/Block/Order/Comments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order; diff --git a/app/code/Magento/Sales/Block/Order/Creditmemo.php b/app/code/Magento/Sales/Block/Order/Creditmemo.php index 0c3c9fa19df..b9d851c2d13 100644 --- a/app/code/Magento/Sales/Block/Order/Creditmemo.php +++ b/app/code/Magento/Sales/Block/Order/Creditmemo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order; diff --git a/app/code/Magento/Sales/Block/Order/Creditmemo/Items.php b/app/code/Magento/Sales/Block/Order/Creditmemo/Items.php index f987db90cd6..5bfee71683e 100644 --- a/app/code/Magento/Sales/Block/Order/Creditmemo/Items.php +++ b/app/code/Magento/Sales/Block/Order/Creditmemo/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Order/Creditmemo/Totals.php b/app/code/Magento/Sales/Block/Order/Creditmemo/Totals.php index a50954effb4..dd5b4a44c02 100644 --- a/app/code/Magento/Sales/Block/Order/Creditmemo/Totals.php +++ b/app/code/Magento/Sales/Block/Order/Creditmemo/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Order/Email/Creditmemo/Items.php b/app/code/Magento/Sales/Block/Order/Email/Creditmemo/Items.php index bd5c4eb410a..ef4610e57a7 100644 --- a/app/code/Magento/Sales/Block/Order/Email/Creditmemo/Items.php +++ b/app/code/Magento/Sales/Block/Order/Email/Creditmemo/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order\Email\Creditmemo; diff --git a/app/code/Magento/Sales/Block/Order/Email/Invoice/Items.php b/app/code/Magento/Sales/Block/Order/Email/Invoice/Items.php index 50b1f4f4e6e..552303deda6 100644 --- a/app/code/Magento/Sales/Block/Order/Email/Invoice/Items.php +++ b/app/code/Magento/Sales/Block/Order/Email/Invoice/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Order/Email/Items.php b/app/code/Magento/Sales/Block/Order/Email/Items.php index 74d3a150485..4989b908949 100644 --- a/app/code/Magento/Sales/Block/Order/Email/Items.php +++ b/app/code/Magento/Sales/Block/Order/Email/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Order/Email/Items/DefaultItems.php b/app/code/Magento/Sales/Block/Order/Email/Items/DefaultItems.php index 00051bc8b94..fd6a3cee9d5 100644 --- a/app/code/Magento/Sales/Block/Order/Email/Items/DefaultItems.php +++ b/app/code/Magento/Sales/Block/Order/Email/Items/DefaultItems.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order\Email\Items; diff --git a/app/code/Magento/Sales/Block/Order/Email/Items/Order/DefaultOrder.php b/app/code/Magento/Sales/Block/Order/Email/Items/Order/DefaultOrder.php index f071488b7e7..3e978012925 100644 --- a/app/code/Magento/Sales/Block/Order/Email/Items/Order/DefaultOrder.php +++ b/app/code/Magento/Sales/Block/Order/Email/Items/Order/DefaultOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order\Email\Items\Order; diff --git a/app/code/Magento/Sales/Block/Order/Email/Shipment/Items.php b/app/code/Magento/Sales/Block/Order/Email/Shipment/Items.php index 4389020a900..6fc41779f6f 100644 --- a/app/code/Magento/Sales/Block/Order/Email/Shipment/Items.php +++ b/app/code/Magento/Sales/Block/Order/Email/Shipment/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Order/History.php b/app/code/Magento/Sales/Block/Order/History.php index ba57d4e896c..885d55eff05 100644 --- a/app/code/Magento/Sales/Block/Order/History.php +++ b/app/code/Magento/Sales/Block/Order/History.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order; diff --git a/app/code/Magento/Sales/Block/Order/History/Container.php b/app/code/Magento/Sales/Block/Order/History/Container.php index cc20f20ea84..025a67b0f6d 100644 --- a/app/code/Magento/Sales/Block/Order/History/Container.php +++ b/app/code/Magento/Sales/Block/Order/History/Container.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order\History; diff --git a/app/code/Magento/Sales/Block/Order/Info.php b/app/code/Magento/Sales/Block/Order/Info.php index 4677a514286..992aa15d6e5 100644 --- a/app/code/Magento/Sales/Block/Order/Info.php +++ b/app/code/Magento/Sales/Block/Order/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order; diff --git a/app/code/Magento/Sales/Block/Order/Info/Buttons.php b/app/code/Magento/Sales/Block/Order/Info/Buttons.php index 466e0b787c7..8926de00418 100644 --- a/app/code/Magento/Sales/Block/Order/Info/Buttons.php +++ b/app/code/Magento/Sales/Block/Order/Info/Buttons.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Order/Info/Buttons/Rss.php b/app/code/Magento/Sales/Block/Order/Info/Buttons/Rss.php index edb82cdafe0..cdb82136f5f 100644 --- a/app/code/Magento/Sales/Block/Order/Info/Buttons/Rss.php +++ b/app/code/Magento/Sales/Block/Order/Info/Buttons/Rss.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order\Info\Buttons; diff --git a/app/code/Magento/Sales/Block/Order/Invoice.php b/app/code/Magento/Sales/Block/Order/Invoice.php index 9ba9cf2e3a5..911ca0a1fe3 100644 --- a/app/code/Magento/Sales/Block/Order/Invoice.php +++ b/app/code/Magento/Sales/Block/Order/Invoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order; diff --git a/app/code/Magento/Sales/Block/Order/Invoice/Items.php b/app/code/Magento/Sales/Block/Order/Invoice/Items.php index 1e7e52bd40c..688bf759616 100644 --- a/app/code/Magento/Sales/Block/Order/Invoice/Items.php +++ b/app/code/Magento/Sales/Block/Order/Invoice/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Order/Invoice/Totals.php b/app/code/Magento/Sales/Block/Order/Invoice/Totals.php index c06ea159be4..e9b4423ecbb 100644 --- a/app/code/Magento/Sales/Block/Order/Invoice/Totals.php +++ b/app/code/Magento/Sales/Block/Order/Invoice/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order\Invoice; diff --git a/app/code/Magento/Sales/Block/Order/Item/Renderer/DefaultRenderer.php b/app/code/Magento/Sales/Block/Order/Item/Renderer/DefaultRenderer.php index db2319ca0b9..e372eb55d4e 100644 --- a/app/code/Magento/Sales/Block/Order/Item/Renderer/DefaultRenderer.php +++ b/app/code/Magento/Sales/Block/Order/Item/Renderer/DefaultRenderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Order/Items.php b/app/code/Magento/Sales/Block/Order/Items.php index 74f5890d8b6..2b908d01b36 100644 --- a/app/code/Magento/Sales/Block/Order/Items.php +++ b/app/code/Magento/Sales/Block/Order/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Block/Order/Link.php b/app/code/Magento/Sales/Block/Order/Link.php index 9c0836f4e50..bc88b272694 100644 --- a/app/code/Magento/Sales/Block/Order/Link.php +++ b/app/code/Magento/Sales/Block/Order/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order; diff --git a/app/code/Magento/Sales/Block/Order/PrintOrder/Creditmemo.php b/app/code/Magento/Sales/Block/Order/PrintOrder/Creditmemo.php index 9e45b8fd98c..d131bb89edb 100644 --- a/app/code/Magento/Sales/Block/Order/PrintOrder/Creditmemo.php +++ b/app/code/Magento/Sales/Block/Order/PrintOrder/Creditmemo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order\PrintOrder; diff --git a/app/code/Magento/Sales/Block/Order/PrintOrder/Invoice.php b/app/code/Magento/Sales/Block/Order/PrintOrder/Invoice.php index e0bdf0abbdb..e00f34243a1 100644 --- a/app/code/Magento/Sales/Block/Order/PrintOrder/Invoice.php +++ b/app/code/Magento/Sales/Block/Order/PrintOrder/Invoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order\PrintOrder; diff --git a/app/code/Magento/Sales/Block/Order/PrintOrder/Shipment.php b/app/code/Magento/Sales/Block/Order/PrintOrder/Shipment.php index 296f4b333a9..f24c63774f4 100644 --- a/app/code/Magento/Sales/Block/Order/PrintOrder/Shipment.php +++ b/app/code/Magento/Sales/Block/Order/PrintOrder/Shipment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order\PrintOrder; diff --git a/app/code/Magento/Sales/Block/Order/PrintShipment.php b/app/code/Magento/Sales/Block/Order/PrintShipment.php index 5bb86a04cc8..6c65a74f553 100644 --- a/app/code/Magento/Sales/Block/Order/PrintShipment.php +++ b/app/code/Magento/Sales/Block/Order/PrintShipment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order; diff --git a/app/code/Magento/Sales/Block/Order/Recent.php b/app/code/Magento/Sales/Block/Order/Recent.php index f928bf2cac4..f61321f5e04 100644 --- a/app/code/Magento/Sales/Block/Order/Recent.php +++ b/app/code/Magento/Sales/Block/Order/Recent.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order; diff --git a/app/code/Magento/Sales/Block/Order/Totals.php b/app/code/Magento/Sales/Block/Order/Totals.php index 6f267f51275..72b5b064b87 100644 --- a/app/code/Magento/Sales/Block/Order/Totals.php +++ b/app/code/Magento/Sales/Block/Order/Totals.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order; diff --git a/app/code/Magento/Sales/Block/Order/View.php b/app/code/Magento/Sales/Block/Order/View.php index 9d6d3f370d3..b19e951a464 100644 --- a/app/code/Magento/Sales/Block/Order/View.php +++ b/app/code/Magento/Sales/Block/Order/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order; diff --git a/app/code/Magento/Sales/Block/Reorder/Sidebar.php b/app/code/Magento/Sales/Block/Reorder/Sidebar.php index 8ebeae76b68..2f144ebaaa2 100644 --- a/app/code/Magento/Sales/Block/Reorder/Sidebar.php +++ b/app/code/Magento/Sales/Block/Reorder/Sidebar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Reorder; diff --git a/app/code/Magento/Sales/Block/Status/Grid/Column/State.php b/app/code/Magento/Sales/Block/Status/Grid/Column/State.php index ae9ea20fd35..43b41ea8f3b 100644 --- a/app/code/Magento/Sales/Block/Status/Grid/Column/State.php +++ b/app/code/Magento/Sales/Block/Status/Grid/Column/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Status\Grid\Column; diff --git a/app/code/Magento/Sales/Block/Status/Grid/Column/Unassign.php b/app/code/Magento/Sales/Block/Status/Grid/Column/Unassign.php index e2e3741964d..1286b45e90b 100644 --- a/app/code/Magento/Sales/Block/Status/Grid/Column/Unassign.php +++ b/app/code/Magento/Sales/Block/Status/Grid/Column/Unassign.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Status\Grid\Column; diff --git a/app/code/Magento/Sales/Block/Widget/Guest/Form.php b/app/code/Magento/Sales/Block/Widget/Guest/Form.php index ce32e669eff..958a1f95e62 100644 --- a/app/code/Magento/Sales/Block/Widget/Guest/Form.php +++ b/app/code/Magento/Sales/Block/Widget/Guest/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Controller/AbstractController/Creditmemo.php b/app/code/Magento/Sales/Controller/AbstractController/Creditmemo.php index 7b142224471..948f506f7e3 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/Creditmemo.php +++ b/app/code/Magento/Sales/Controller/AbstractController/Creditmemo.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/AbstractController/Invoice.php b/app/code/Magento/Sales/Controller/AbstractController/Invoice.php index efd39a8bb4c..39e3005a84d 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/Invoice.php +++ b/app/code/Magento/Sales/Controller/AbstractController/Invoice.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/AbstractController/OrderLoader.php b/app/code/Magento/Sales/Controller/AbstractController/OrderLoader.php index 2534240570f..3e12f2d0ed0 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/OrderLoader.php +++ b/app/code/Magento/Sales/Controller/AbstractController/OrderLoader.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/AbstractController/OrderLoaderInterface.php b/app/code/Magento/Sales/Controller/AbstractController/OrderLoaderInterface.php index ad15e8d864a..be6ae45f5bc 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/OrderLoaderInterface.php +++ b/app/code/Magento/Sales/Controller/AbstractController/OrderLoaderInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorization.php b/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorization.php index 56a05e09e13..da0b677f217 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorization.php +++ b/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorization.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorizationInterface.php b/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorizationInterface.php index 72594d2f77f..c6078365ca6 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorizationInterface.php +++ b/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorizationInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/AbstractController/PrintAction.php b/app/code/Magento/Sales/Controller/AbstractController/PrintAction.php index adf6ca9190c..3f25fc293b7 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/PrintAction.php +++ b/app/code/Magento/Sales/Controller/AbstractController/PrintAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/AbstractController/PrintCreditmemo.php b/app/code/Magento/Sales/Controller/AbstractController/PrintCreditmemo.php index 4b09d376652..349230dfc38 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/PrintCreditmemo.php +++ b/app/code/Magento/Sales/Controller/AbstractController/PrintCreditmemo.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/AbstractController/PrintInvoice.php b/app/code/Magento/Sales/Controller/AbstractController/PrintInvoice.php index 7b48f392df7..27db7e5bbfb 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/PrintInvoice.php +++ b/app/code/Magento/Sales/Controller/AbstractController/PrintInvoice.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/AbstractController/PrintShipment.php b/app/code/Magento/Sales/Controller/AbstractController/PrintShipment.php index 13723815a00..3aed06d6519 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/PrintShipment.php +++ b/app/code/Magento/Sales/Controller/AbstractController/PrintShipment.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/AbstractController/Reorder.php b/app/code/Magento/Sales/Controller/AbstractController/Reorder.php index d00dc5c7aee..e129365ec04 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/Reorder.php +++ b/app/code/Magento/Sales/Controller/AbstractController/Reorder.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/AbstractController/Shipment.php b/app/code/Magento/Sales/Controller/AbstractController/Shipment.php index 64f90df146b..e9f26e95f51 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/Shipment.php +++ b/app/code/Magento/Sales/Controller/AbstractController/Shipment.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/AbstractController/View.php b/app/code/Magento/Sales/Controller/AbstractController/View.php index 9adf7802ec1..869a9281d70 100644 --- a/app/code/Magento/Sales/Controller/AbstractController/View.php +++ b/app/code/Magento/Sales/Controller/AbstractController/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\AbstractController; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Email.php index c5530787b2d..5bc2d01b77c 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Email.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Email.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Grid.php index 7c1e7ac794f..c3066e5cdc5 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Grid.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Index.php index 19b0cafa10b..e76bebdfb07 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Pdfcreditmemos.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Pdfcreditmemos.php index 1565a9ac336..6a97cf574b6 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Pdfcreditmemos.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Pdfcreditmemos.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/PrintAction.php index 390dca8e840..1d089be4bee 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/PrintAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/PrintAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/View.php index 2f2bc499844..eb687bef52e 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/View.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Email.php index 1f5923e1b8c..a85ee7e4e39 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Email.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Email.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Grid.php index 3ca6495e7da..82688f3ad9f 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Grid.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Index.php index e6f94dee85c..f6b98e17677 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Pdfcreditmemos.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Pdfcreditmemos.php index 50349031c02..7be14e56758 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Pdfcreditmemos.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Pdfcreditmemos.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/PrintAction.php index e14108b7822..114e2b087e6 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/PrintAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/PrintAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/View.php index 3f6271aed73..9ed06a4a5ff 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/View.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Email.php index f02962dcffc..9f02a35d82f 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Email.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Email.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Grid.php index 02aca303208..880dd810d4a 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Grid.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Index.php index 7d1ea5dadc9..a417ccfc1f4 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Pdfinvoices.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Pdfinvoices.php index d364ccbca89..f0aa4ffea44 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Pdfinvoices.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Pdfinvoices.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/PrintAction.php index 40166cc2324..ac87d7e7548 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/PrintAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/PrintAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/View.php index 32bb784bc7a..8a145172762 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/View.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Email.php index f1528787791..eaf804cd2bd 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Email.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Email.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Grid.php index 8908a6b5337..b84d5044222 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Grid.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Index.php index 8a036056212..2d6f7faa6d3 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Pdfinvoices.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Pdfinvoices.php index 2c86bba4715..ac405249d15 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Pdfinvoices.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Pdfinvoices.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/PrintAction.php index 77b4e99b7f6..99de476abf2 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/PrintAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/PrintAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/View.php index 4be0164ffe1..d2c0fef6861 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/View.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order.php b/app/code/Magento/Sales/Controller/Adminhtml/Order.php index b5f1bfe0339..1309925d94a 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/AbstractMassAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/AbstractMassAction.php index 079b955c75b..47bd80e5c06 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/AbstractMassAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/AbstractMassAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/AddComment.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/AddComment.php index c9acb6fe3c0..f04787ecd93 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/AddComment.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/AddComment.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Address.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Address.php index ca4e0f66d6c..7824866e37d 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Address.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Address.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/AddressSave.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/AddressSave.php index 9beb5fa8bc6..aaa557f577a 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/AddressSave.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/AddressSave.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Cancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Cancel.php index d3cd1b9ac75..5ed03cbd5c2 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Cancel.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Cancel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/CommentsHistory.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/CommentsHistory.php index 7069a9da1b4..575a15f3ca8 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/CommentsHistory.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/CommentsHistory.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create.php index 0ce1b37f96c..424b9c4e1d5 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/AddConfigured.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/AddConfigured.php index bd526a8e626..6aa6fbe7c33 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/AddConfigured.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/AddConfigured.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Cancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Cancel.php index 8148a9fbea9..1273e7c0206 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Cancel.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Cancel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureProductToAdd.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureProductToAdd.php index 607b34d8bea..9f3ab60abd9 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureProductToAdd.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureProductToAdd.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureQuoteItems.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureQuoteItems.php index b687d4ffc7e..a782dd807c9 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureQuoteItems.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureQuoteItems.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Index.php index a7098adb5bb..ba56a11f2b0 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/LoadBlock.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/LoadBlock.php index 7a9cf105d24..c9660a0f02e 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/LoadBlock.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/LoadBlock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ProcessData.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ProcessData.php index e3eae631c6f..73670766b56 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ProcessData.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ProcessData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Reorder.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Reorder.php index fca730c899f..6d4aad6cfb8 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Reorder.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Reorder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Save.php index bfa0ba289b0..eca9f99d9d6 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Save.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ShowUpdateResult.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ShowUpdateResult.php index 9a8297e2145..1e5784297b7 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ShowUpdateResult.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ShowUpdateResult.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Start.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Start.php index 6fd48d580ad..193ba12ef09 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Start.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Start.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/AddComment.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/AddComment.php index 49097673041..1fdefcbf605 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/AddComment.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/AddComment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Cancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Cancel.php index 9b37f408d19..f06e6e1b88e 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Cancel.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Cancel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Email.php index ebee517ef2b..1db3d771094 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Email.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Email.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Grid.php index b2d43177683..e9f4da1fd8a 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Grid.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Index.php index 797cce5f4d6..cc438e6c245 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/NewAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/NewAction.php index 54258015cbc..f67d6229d08 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/NewAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/NewAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Pdfcreditmemos.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Pdfcreditmemos.php index 89558faba18..66b7901825f 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Pdfcreditmemos.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Pdfcreditmemos.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/PrintAction.php index d17b813fbf6..63fbcae30e0 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/PrintAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/PrintAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Save.php index e15f469dde0..aea97452128 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Save.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Start.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Start.php index ad658818820..9d2c846657b 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Start.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Start.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/UpdateQty.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/UpdateQty.php index 12768e4494e..ba2c0cd0c20 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/UpdateQty.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/UpdateQty.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/View.php index 6f02a8fac94..aa2628cd093 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/View.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Void.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Void.php index 31b92f7a182..3f743f596fe 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Void.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Void.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/CreditmemoLoader.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/CreditmemoLoader.php index ac3ffdc3d62..a2017bc83e5 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/CreditmemoLoader.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/CreditmemoLoader.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemos.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemos.php index bdd21d7891c..d67a8f8e913 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemos.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemos.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/AddConfigured.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/AddConfigured.php index 5cb3c41aeea..100bb22221a 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/AddConfigured.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/AddConfigured.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Edit; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Cancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Cancel.php index 25ba8bff04f..a80039c15cf 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Cancel.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Cancel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Edit; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureProductToAdd.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureProductToAdd.php index 3f18d1a2750..77e1918a5a8 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureProductToAdd.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureProductToAdd.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Edit; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureQuoteItems.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureQuoteItems.php index 44849956922..75356b688a7 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureQuoteItems.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureQuoteItems.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Edit; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Index.php index 8745f14e378..059f76da128 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Edit; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/LoadBlock.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/LoadBlock.php index a00b69d7694..d3f2e4a7ca1 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/LoadBlock.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/LoadBlock.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Edit; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ProcessData.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ProcessData.php index 5390beef5f8..db198e54fab 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ProcessData.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ProcessData.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Edit; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Reorder.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Reorder.php index be64d10d508..2b809f195b3 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Reorder.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Reorder.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Edit; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Save.php index b44a4fafccc..44a2dd1d567 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Save.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Edit; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ShowUpdateResult.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ShowUpdateResult.php index 3bc65ecaf08..51f6e46eadf 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ShowUpdateResult.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ShowUpdateResult.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Edit; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Start.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Start.php index f730d3604f9..d63ef0b1c96 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Start.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Start.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Edit; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Email.php index 04ffe72e18c..4841dd5da24 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Email.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Email.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Grid.php index 676dea1b19c..8926ef5e03f 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Grid.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Hold.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Hold.php index 0e839e3b844..b6c329c146a 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Hold.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Hold.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Index.php index 4c02fb6f298..c077fb0391a 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/AddComment.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/AddComment.php index a483b9e810d..699e9a08a09 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/AddComment.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/AddComment.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Cancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Cancel.php index 85a06125e99..a5acd5caba4 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Cancel.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Cancel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Capture.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Capture.php index 5ad2788da08..158700af8d2 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Capture.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Capture.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Email.php index bf0c8b8dc8d..807cf985d4d 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Email.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Email.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Grid.php index a6cf58237b8..4f66e9baa49 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Grid.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Index.php index 5a4813718c4..d095ce5d93b 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/NewAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/NewAction.php index 30d9a7a0448..182d5955c6a 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/NewAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Pdfinvoices.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Pdfinvoices.php index 09aa15ab27b..c9b17b489e8 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Pdfinvoices.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Pdfinvoices.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/PrintAction.php index 77de7141fd8..a04e64425dc 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/PrintAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/PrintAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Save.php index 90c755cc99f..57690938285 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Save.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Start.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Start.php index e85c839e25d..077f7a76ed3 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Start.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Start.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/UpdateQty.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/UpdateQty.php index f1bb78a07a4..ffd9a256b81 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/UpdateQty.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/UpdateQty.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/View.php index 34960e31ab0..0d2ff70586d 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/View.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Void.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Void.php index d65012c4eee..1b790d8b71d 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Void.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Void.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoices.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoices.php index bf051fe3a40..2cc69046760 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoices.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoices.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/MassCancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/MassCancel.php index b05e6b1c69a..a80f8c2e56c 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/MassCancel.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/MassCancel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/MassHold.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/MassHold.php index 297dae2e659..e789a393e10 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/MassHold.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/MassHold.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/MassUnhold.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/MassUnhold.php index 2fa3f99cf4a..67959c09685 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/MassUnhold.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/MassUnhold.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/PdfDocumentsMassAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/PdfDocumentsMassAction.php index 5396a1d69bc..e5ba51695b1 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/PdfDocumentsMassAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/PdfDocumentsMassAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfcreditmemos.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfcreditmemos.php index 9b2e62ed96e..15400266a19 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfcreditmemos.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfcreditmemos.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfdocs.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfdocs.php index 6e5cf440b35..000a3ebc771 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfdocs.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfdocs.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfinvoices.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfinvoices.php index 4eb93fb332f..42850f975bf 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfinvoices.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfinvoices.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfshipments.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfshipments.php index e538746997c..3858ab83763 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfshipments.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfshipments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/ReviewPayment.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/ReviewPayment.php index b8455439f52..9f01abc0906 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/ReviewPayment.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/ReviewPayment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Shipments.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Shipments.php index d6f169ec139..91e58708709 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Shipments.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Shipments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status.php index 3b93f0533b9..3a819bcf660 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Assign.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Assign.php index bc552577f0d..384c5581345 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Assign.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Assign.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Status; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/AssignPost.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/AssignPost.php index 304a9cf5d3a..76a9f3adb33 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/AssignPost.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/AssignPost.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Status; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Edit.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Edit.php index 574dad8c966..bb85028bb69 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Edit.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Status; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Index.php index 396def10488..82f36fd5fb8 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Status; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/NewAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/NewAction.php index 46b898fe93c..abe225b9e95 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/NewAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Status; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Save.php index 56271282d19..89a7b1b8576 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Save.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Status; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Unassign.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Unassign.php index 987086f62f9..df824781afa 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Unassign.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Unassign.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\Status; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Transactions.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Transactions.php index 28fc66d3296..5318adde829 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Transactions.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Transactions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Unhold.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Unhold.php index 628747b3129..f15e1484ec3 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/Unhold.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/Unhold.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/View.php index 25a3d8cda8f..458c3f08dd2 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/View.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage.php index abbdbf004cd..dc55e21ebee 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\View; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage/Save.php index c99d46df471..e04ffff8715 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage/Save.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order\View\Giftmessage; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/VoidPayment.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/VoidPayment.php index 6eb576c45c1..6717b892a4c 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Order/VoidPayment.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Order/VoidPayment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Index.php index 45026954f62..8e1e16d6812 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Shipment\AbstractShipment; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Pdfshipments.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Pdfshipments.php index 17d620a5078..d14cff30510 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Pdfshipments.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Pdfshipments.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Shipment\AbstractShipment; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/PrintAction.php index 1ecfea11f38..c579fd35ce4 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/PrintAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/PrintAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Shipment\AbstractShipment; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/View.php index 40d5f7707a3..1593d371c06 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/View.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Shipment\AbstractShipment; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Index.php index e4f8f5c9a88..e173a4aad47 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Shipment; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Pdfshipments.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Pdfshipments.php index 3e3ff9b6ad8..dfbd893f771 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Pdfshipments.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Pdfshipments.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Shipment; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/PrintAction.php index cf947bf8a7b..0ed0f3ed8a1 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/PrintAction.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/PrintAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Shipment; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/View.php index c911a193e18..f18a67486d9 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/View.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Shipment; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Transactions.php b/app/code/Magento/Sales/Controller/Adminhtml/Transactions.php index 21587ed780e..7277b0e83e1 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Transactions.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Transactions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Fetch.php b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Fetch.php index 0f41761d0a5..ac783c1cf5a 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Fetch.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Fetch.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Transactions; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Grid.php index 214a8ab9a79..17605bb65d8 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Grid.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Grid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Transactions; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Index.php index 214fae1eec7..0071a6b1025 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Index.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Transactions; diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/View.php index c64857eb336..773657bd82a 100644 --- a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/View.php +++ b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Adminhtml\Transactions; diff --git a/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php b/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php index a2dcebe8440..40d4211a7d4 100644 --- a/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php +++ b/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Download; diff --git a/app/code/Magento/Sales/Controller/Guest/Creditmemo.php b/app/code/Magento/Sales/Controller/Guest/Creditmemo.php index 8015b5bc764..76c6e979f70 100644 --- a/app/code/Magento/Sales/Controller/Guest/Creditmemo.php +++ b/app/code/Magento/Sales/Controller/Guest/Creditmemo.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Guest/Form.php b/app/code/Magento/Sales/Controller/Guest/Form.php index 20e512c0aa1..7f9a6bd861d 100644 --- a/app/code/Magento/Sales/Controller/Guest/Form.php +++ b/app/code/Magento/Sales/Controller/Guest/Form.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Guest/Invoice.php b/app/code/Magento/Sales/Controller/Guest/Invoice.php index f1ade9e3a79..c65445c63cb 100644 --- a/app/code/Magento/Sales/Controller/Guest/Invoice.php +++ b/app/code/Magento/Sales/Controller/Guest/Invoice.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Guest/OrderLoader.php b/app/code/Magento/Sales/Controller/Guest/OrderLoader.php index c27bf515470..c5d54da0a15 100644 --- a/app/code/Magento/Sales/Controller/Guest/OrderLoader.php +++ b/app/code/Magento/Sales/Controller/Guest/OrderLoader.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Guest/OrderViewAuthorization.php b/app/code/Magento/Sales/Controller/Guest/OrderViewAuthorization.php index 27b9c7b2e53..7a81d1d54eb 100644 --- a/app/code/Magento/Sales/Controller/Guest/OrderViewAuthorization.php +++ b/app/code/Magento/Sales/Controller/Guest/OrderViewAuthorization.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Guest/PrintAction.php b/app/code/Magento/Sales/Controller/Guest/PrintAction.php index a063a849695..d14c3ed4009 100644 --- a/app/code/Magento/Sales/Controller/Guest/PrintAction.php +++ b/app/code/Magento/Sales/Controller/Guest/PrintAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Guest/PrintCreditmemo.php b/app/code/Magento/Sales/Controller/Guest/PrintCreditmemo.php index b04ec2cb6ee..c15ee29daef 100644 --- a/app/code/Magento/Sales/Controller/Guest/PrintCreditmemo.php +++ b/app/code/Magento/Sales/Controller/Guest/PrintCreditmemo.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Guest/PrintInvoice.php b/app/code/Magento/Sales/Controller/Guest/PrintInvoice.php index 21e84d5577e..9cc846a95f6 100644 --- a/app/code/Magento/Sales/Controller/Guest/PrintInvoice.php +++ b/app/code/Magento/Sales/Controller/Guest/PrintInvoice.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Guest/PrintShipment.php b/app/code/Magento/Sales/Controller/Guest/PrintShipment.php index c87b6c11007..8007d14e65f 100644 --- a/app/code/Magento/Sales/Controller/Guest/PrintShipment.php +++ b/app/code/Magento/Sales/Controller/Guest/PrintShipment.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Guest/Reorder.php b/app/code/Magento/Sales/Controller/Guest/Reorder.php index 499ec05f782..80adc487c11 100644 --- a/app/code/Magento/Sales/Controller/Guest/Reorder.php +++ b/app/code/Magento/Sales/Controller/Guest/Reorder.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Guest/Shipment.php b/app/code/Magento/Sales/Controller/Guest/Shipment.php index 4f78babb271..7cf8af8fbdc 100644 --- a/app/code/Magento/Sales/Controller/Guest/Shipment.php +++ b/app/code/Magento/Sales/Controller/Guest/Shipment.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Guest/View.php b/app/code/Magento/Sales/Controller/Guest/View.php index a02935b9ec9..34c5959e240 100644 --- a/app/code/Magento/Sales/Controller/Guest/View.php +++ b/app/code/Magento/Sales/Controller/Guest/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Guest; diff --git a/app/code/Magento/Sales/Controller/Order/Creditmemo.php b/app/code/Magento/Sales/Controller/Order/Creditmemo.php index bd3bab8579f..b30d0a3f85a 100644 --- a/app/code/Magento/Sales/Controller/Order/Creditmemo.php +++ b/app/code/Magento/Sales/Controller/Order/Creditmemo.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Order; diff --git a/app/code/Magento/Sales/Controller/Order/History.php b/app/code/Magento/Sales/Controller/Order/History.php index deebff0a4c4..a7aa27e28e4 100644 --- a/app/code/Magento/Sales/Controller/Order/History.php +++ b/app/code/Magento/Sales/Controller/Order/History.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Order; diff --git a/app/code/Magento/Sales/Controller/Order/Invoice.php b/app/code/Magento/Sales/Controller/Order/Invoice.php index af861648c7a..e6b69dd785f 100644 --- a/app/code/Magento/Sales/Controller/Order/Invoice.php +++ b/app/code/Magento/Sales/Controller/Order/Invoice.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Order; diff --git a/app/code/Magento/Sales/Controller/Order/Plugin/Authentication.php b/app/code/Magento/Sales/Controller/Order/Plugin/Authentication.php index 97a24ccabb6..ec5c61d0c64 100644 --- a/app/code/Magento/Sales/Controller/Order/Plugin/Authentication.php +++ b/app/code/Magento/Sales/Controller/Order/Plugin/Authentication.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Order\Plugin; diff --git a/app/code/Magento/Sales/Controller/Order/PrintAction.php b/app/code/Magento/Sales/Controller/Order/PrintAction.php index 75e865179f3..69837033ec8 100644 --- a/app/code/Magento/Sales/Controller/Order/PrintAction.php +++ b/app/code/Magento/Sales/Controller/Order/PrintAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Order; diff --git a/app/code/Magento/Sales/Controller/Order/PrintCreditmemo.php b/app/code/Magento/Sales/Controller/Order/PrintCreditmemo.php index 45357f4b511..bd4a9dd0537 100644 --- a/app/code/Magento/Sales/Controller/Order/PrintCreditmemo.php +++ b/app/code/Magento/Sales/Controller/Order/PrintCreditmemo.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Order; diff --git a/app/code/Magento/Sales/Controller/Order/PrintInvoice.php b/app/code/Magento/Sales/Controller/Order/PrintInvoice.php index 95d07e35d26..0f048d3a1cb 100644 --- a/app/code/Magento/Sales/Controller/Order/PrintInvoice.php +++ b/app/code/Magento/Sales/Controller/Order/PrintInvoice.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Order; diff --git a/app/code/Magento/Sales/Controller/Order/PrintShipment.php b/app/code/Magento/Sales/Controller/Order/PrintShipment.php index ecbc5ba3094..fe109b04ba4 100644 --- a/app/code/Magento/Sales/Controller/Order/PrintShipment.php +++ b/app/code/Magento/Sales/Controller/Order/PrintShipment.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Order; diff --git a/app/code/Magento/Sales/Controller/Order/Reorder.php b/app/code/Magento/Sales/Controller/Order/Reorder.php index 5f874d51aff..d08ac910cf4 100644 --- a/app/code/Magento/Sales/Controller/Order/Reorder.php +++ b/app/code/Magento/Sales/Controller/Order/Reorder.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Order; diff --git a/app/code/Magento/Sales/Controller/Order/Shipment.php b/app/code/Magento/Sales/Controller/Order/Shipment.php index e45fada45b7..b0219ee9c62 100644 --- a/app/code/Magento/Sales/Controller/Order/Shipment.php +++ b/app/code/Magento/Sales/Controller/Order/Shipment.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Order; diff --git a/app/code/Magento/Sales/Controller/Order/View.php b/app/code/Magento/Sales/Controller/Order/View.php index 86c2e40c1a9..751890a01fc 100644 --- a/app/code/Magento/Sales/Controller/Order/View.php +++ b/app/code/Magento/Sales/Controller/Order/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller\Order; diff --git a/app/code/Magento/Sales/Controller/OrderInterface.php b/app/code/Magento/Sales/Controller/OrderInterface.php index 35aff5f2cfe..437fe73cbf5 100644 --- a/app/code/Magento/Sales/Controller/OrderInterface.php +++ b/app/code/Magento/Sales/Controller/OrderInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Controller; diff --git a/app/code/Magento/Sales/Cron/CleanExpiredQuotes.php b/app/code/Magento/Sales/Cron/CleanExpiredQuotes.php index e2d6e89c420..5d655996ee9 100644 --- a/app/code/Magento/Sales/Cron/CleanExpiredQuotes.php +++ b/app/code/Magento/Sales/Cron/CleanExpiredQuotes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Cron; diff --git a/app/code/Magento/Sales/Cron/GridAsyncInsert.php b/app/code/Magento/Sales/Cron/GridAsyncInsert.php index 290a863a5c2..b967c534a56 100644 --- a/app/code/Magento/Sales/Cron/GridAsyncInsert.php +++ b/app/code/Magento/Sales/Cron/GridAsyncInsert.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Cron; diff --git a/app/code/Magento/Sales/Cron/SendEmails.php b/app/code/Magento/Sales/Cron/SendEmails.php index da164fe1529..b86740263fe 100644 --- a/app/code/Magento/Sales/Cron/SendEmails.php +++ b/app/code/Magento/Sales/Cron/SendEmails.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Cron; diff --git a/app/code/Magento/Sales/CustomerData/LastOrderedItems.php b/app/code/Magento/Sales/CustomerData/LastOrderedItems.php index 61a0f58e7cc..df510552010 100644 --- a/app/code/Magento/Sales/CustomerData/LastOrderedItems.php +++ b/app/code/Magento/Sales/CustomerData/LastOrderedItems.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\CustomerData; diff --git a/app/code/Magento/Sales/Exception/CouldNotInvoiceException.php b/app/code/Magento/Sales/Exception/CouldNotInvoiceException.php index 6b977c5a4fa..ec83c2984de 100644 --- a/app/code/Magento/Sales/Exception/CouldNotInvoiceException.php +++ b/app/code/Magento/Sales/Exception/CouldNotInvoiceException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Exception; diff --git a/app/code/Magento/Sales/Exception/CouldNotRefundException.php b/app/code/Magento/Sales/Exception/CouldNotRefundException.php index 59ef4d18b44..891b9bef345 100644 --- a/app/code/Magento/Sales/Exception/CouldNotRefundException.php +++ b/app/code/Magento/Sales/Exception/CouldNotRefundException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Exception; diff --git a/app/code/Magento/Sales/Exception/CouldNotShipException.php b/app/code/Magento/Sales/Exception/CouldNotShipException.php index 4881bbd79a3..e373804bec9 100644 --- a/app/code/Magento/Sales/Exception/CouldNotShipException.php +++ b/app/code/Magento/Sales/Exception/CouldNotShipException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Exception; diff --git a/app/code/Magento/Sales/Exception/DocumentValidationException.php b/app/code/Magento/Sales/Exception/DocumentValidationException.php index aeacc32095d..0f55ab8ebb9 100644 --- a/app/code/Magento/Sales/Exception/DocumentValidationException.php +++ b/app/code/Magento/Sales/Exception/DocumentValidationException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Exception; diff --git a/app/code/Magento/Sales/Helper/Admin.php b/app/code/Magento/Sales/Helper/Admin.php index 87c151022b2..80f2ef944b2 100644 --- a/app/code/Magento/Sales/Helper/Admin.php +++ b/app/code/Magento/Sales/Helper/Admin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Helper; diff --git a/app/code/Magento/Sales/Helper/Data.php b/app/code/Magento/Sales/Helper/Data.php index 7fda4588459..44dfbf44b2c 100644 --- a/app/code/Magento/Sales/Helper/Data.php +++ b/app/code/Magento/Sales/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Helper; diff --git a/app/code/Magento/Sales/Helper/Guest.php b/app/code/Magento/Sales/Helper/Guest.php index c29679e0ae2..9a05a66a5f3 100644 --- a/app/code/Magento/Sales/Helper/Guest.php +++ b/app/code/Magento/Sales/Helper/Guest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Helper/Reorder.php b/app/code/Magento/Sales/Helper/Reorder.php index ff6dbe08979..a4fe4a3bf2a 100644 --- a/app/code/Magento/Sales/Helper/Reorder.php +++ b/app/code/Magento/Sales/Helper/Reorder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/AbstractModel.php b/app/code/Magento/Sales/Model/AbstractModel.php index 046927e31cb..153dec4dd0e 100644 --- a/app/code/Magento/Sales/Model/AbstractModel.php +++ b/app/code/Magento/Sales/Model/AbstractModel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/AbstractNotifier.php b/app/code/Magento/Sales/Model/AbstractNotifier.php index bbb92c35dd2..a1e5e4b4527 100644 --- a/app/code/Magento/Sales/Model/AbstractNotifier.php +++ b/app/code/Magento/Sales/Model/AbstractNotifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/AdminOrder/Create.php b/app/code/Magento/Sales/Model/AdminOrder/Create.php index 3715c02357a..0a680df5416 100644 --- a/app/code/Magento/Sales/Model/AdminOrder/Create.php +++ b/app/code/Magento/Sales/Model/AdminOrder/Create.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/AdminOrder/EmailSender.php b/app/code/Magento/Sales/Model/AdminOrder/EmailSender.php index efc6595bb2d..bcb3dce3282 100644 --- a/app/code/Magento/Sales/Model/AdminOrder/EmailSender.php +++ b/app/code/Magento/Sales/Model/AdminOrder/EmailSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\AdminOrder; diff --git a/app/code/Magento/Sales/Model/AdminOrder/Product/Quote/Initializer.php b/app/code/Magento/Sales/Model/AdminOrder/Product/Quote/Initializer.php index 1f1d1558524..03831075bc9 100644 --- a/app/code/Magento/Sales/Model/AdminOrder/Product/Quote/Initializer.php +++ b/app/code/Magento/Sales/Model/AdminOrder/Product/Quote/Initializer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Config.php b/app/code/Magento/Sales/Model/Config.php index 9a33327e080..dbffa6c5eec 100644 --- a/app/code/Magento/Sales/Model/Config.php +++ b/app/code/Magento/Sales/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Config/Backend/Email/AsyncSending.php b/app/code/Magento/Sales/Model/Config/Backend/Email/AsyncSending.php index 716da8751a6..c1739ca6e3a 100644 --- a/app/code/Magento/Sales/Model/Config/Backend/Email/AsyncSending.php +++ b/app/code/Magento/Sales/Model/Config/Backend/Email/AsyncSending.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Config\Backend\Email; diff --git a/app/code/Magento/Sales/Model/Config/Backend/Grid/AsyncIndexing.php b/app/code/Magento/Sales/Model/Config/Backend/Grid/AsyncIndexing.php index 7cdd001ada8..7182977763e 100644 --- a/app/code/Magento/Sales/Model/Config/Backend/Grid/AsyncIndexing.php +++ b/app/code/Magento/Sales/Model/Config/Backend/Grid/AsyncIndexing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Config\Backend\Grid; diff --git a/app/code/Magento/Sales/Model/Config/Converter.php b/app/code/Magento/Sales/Model/Config/Converter.php index eb75e49ea99..6b2124f3d99 100644 --- a/app/code/Magento/Sales/Model/Config/Converter.php +++ b/app/code/Magento/Sales/Model/Config/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Config/Data.php b/app/code/Magento/Sales/Model/Config/Data.php index b6a1b43012f..4559e4e011f 100644 --- a/app/code/Magento/Sales/Model/Config/Data.php +++ b/app/code/Magento/Sales/Model/Config/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Config; diff --git a/app/code/Magento/Sales/Model/Config/Ordered.php b/app/code/Magento/Sales/Model/Config/Ordered.php index 806a7b522c1..ba078b87312 100644 --- a/app/code/Magento/Sales/Model/Config/Ordered.php +++ b/app/code/Magento/Sales/Model/Config/Ordered.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Config; diff --git a/app/code/Magento/Sales/Model/Config/Reader.php b/app/code/Magento/Sales/Model/Config/Reader.php index 8843efd5140..c9ec4b653f6 100644 --- a/app/code/Magento/Sales/Model/Config/Reader.php +++ b/app/code/Magento/Sales/Model/Config/Reader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Config/SchemaLocator.php b/app/code/Magento/Sales/Model/Config/SchemaLocator.php index 63399e685ae..23bac0dc7ac 100644 --- a/app/code/Magento/Sales/Model/Config/SchemaLocator.php +++ b/app/code/Magento/Sales/Model/Config/SchemaLocator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Config/Source/Order/Status.php b/app/code/Magento/Sales/Model/Config/Source/Order/Status.php index dcae979164e..843f8c307bb 100644 --- a/app/code/Magento/Sales/Model/Config/Source/Order/Status.php +++ b/app/code/Magento/Sales/Model/Config/Source/Order/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Config/Source/Order/Status/NewStatus.php b/app/code/Magento/Sales/Model/Config/Source/Order/Status/NewStatus.php index 3a61c754d81..9115a9873ed 100644 --- a/app/code/Magento/Sales/Model/Config/Source/Order/Status/NewStatus.php +++ b/app/code/Magento/Sales/Model/Config/Source/Order/Status/NewStatus.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Config\Source\Order\Status; diff --git a/app/code/Magento/Sales/Model/Config/Source/Order/Status/Newprocessing.php b/app/code/Magento/Sales/Model/Config/Source/Order/Status/Newprocessing.php index c792624a926..843bf01c0b6 100644 --- a/app/code/Magento/Sales/Model/Config/Source/Order/Status/Newprocessing.php +++ b/app/code/Magento/Sales/Model/Config/Source/Order/Status/Newprocessing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Config\Source\Order\Status; diff --git a/app/code/Magento/Sales/Model/Config/Source/Order/Status/Processing.php b/app/code/Magento/Sales/Model/Config/Source/Order/Status/Processing.php index 34acc4a4853..4b336435342 100644 --- a/app/code/Magento/Sales/Model/Config/Source/Order/Status/Processing.php +++ b/app/code/Magento/Sales/Model/Config/Source/Order/Status/Processing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Config\Source\Order\Status; diff --git a/app/code/Magento/Sales/Model/ConfigInterface.php b/app/code/Magento/Sales/Model/ConfigInterface.php index 396d00e2cba..cde3c399107 100644 --- a/app/code/Magento/Sales/Model/ConfigInterface.php +++ b/app/code/Magento/Sales/Model/ConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/Convert/Order.php b/app/code/Magento/Sales/Model/Convert/Order.php index 359e73ad5e2..490b11ea966 100644 --- a/app/code/Magento/Sales/Model/Convert/Order.php +++ b/app/code/Magento/Sales/Model/Convert/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportBestsellersData.php b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportBestsellersData.php index 607e6b99c71..9013fe13d6e 100644 --- a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportBestsellersData.php +++ b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportBestsellersData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\CronJob; diff --git a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportInvoicedData.php b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportInvoicedData.php index 83472d8eee3..f3d6ff4f0ec 100644 --- a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportInvoicedData.php +++ b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportInvoicedData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\CronJob; diff --git a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportOrderData.php b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportOrderData.php index 3d7b7d3f201..0d66d8a3912 100644 --- a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportOrderData.php +++ b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportOrderData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\CronJob; diff --git a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportRefundedData.php b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportRefundedData.php index 035a3ade46a..89234af22e4 100644 --- a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportRefundedData.php +++ b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportRefundedData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\CronJob; diff --git a/app/code/Magento/Sales/Model/CronJob/CleanExpiredOrders.php b/app/code/Magento/Sales/Model/CronJob/CleanExpiredOrders.php index 43be14d66f4..1fa05a92cfc 100644 --- a/app/code/Magento/Sales/Model/CronJob/CleanExpiredOrders.php +++ b/app/code/Magento/Sales/Model/CronJob/CleanExpiredOrders.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\CronJob; diff --git a/app/code/Magento/Sales/Model/Download.php b/app/code/Magento/Sales/Model/Download.php index 58c626947eb..e3fd81105a9 100644 --- a/app/code/Magento/Sales/Model/Download.php +++ b/app/code/Magento/Sales/Model/Download.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/EmailSenderHandler.php b/app/code/Magento/Sales/Model/EmailSenderHandler.php index 17a587311e9..3f53d12c0a4 100644 --- a/app/code/Magento/Sales/Model/EmailSenderHandler.php +++ b/app/code/Magento/Sales/Model/EmailSenderHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/EntityInterface.php b/app/code/Magento/Sales/Model/EntityInterface.php index b1280338d63..cb97e807211 100644 --- a/app/code/Magento/Sales/Model/EntityInterface.php +++ b/app/code/Magento/Sales/Model/EntityInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/EntityStorage.php b/app/code/Magento/Sales/Model/EntityStorage.php index 29bab0a6311..01f3c73e448 100644 --- a/app/code/Magento/Sales/Model/EntityStorage.php +++ b/app/code/Magento/Sales/Model/EntityStorage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Grid/Child/CollectionUpdater.php b/app/code/Magento/Sales/Model/Grid/Child/CollectionUpdater.php index 736be3fde79..c994e4bf27c 100644 --- a/app/code/Magento/Sales/Model/Grid/Child/CollectionUpdater.php +++ b/app/code/Magento/Sales/Model/Grid/Child/CollectionUpdater.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Grid/CollectionUpdater.php b/app/code/Magento/Sales/Model/Grid/CollectionUpdater.php index 0acee979c6d..caf516ffb5d 100644 --- a/app/code/Magento/Sales/Model/Grid/CollectionUpdater.php +++ b/app/code/Magento/Sales/Model/Grid/CollectionUpdater.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/GridAsyncInsert.php b/app/code/Magento/Sales/Model/GridAsyncInsert.php index 401d6a03d53..2547c270b11 100644 --- a/app/code/Magento/Sales/Model/GridAsyncInsert.php +++ b/app/code/Magento/Sales/Model/GridAsyncInsert.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/Increment.php b/app/code/Magento/Sales/Model/Increment.php index 02ed4e72729..1f0a4f525c3 100644 --- a/app/code/Magento/Sales/Model/Increment.php +++ b/app/code/Magento/Sales/Model/Increment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/InvoiceOrder.php b/app/code/Magento/Sales/Model/InvoiceOrder.php index c503b01a5ab..d344a4fc277 100644 --- a/app/code/Magento/Sales/Model/InvoiceOrder.php +++ b/app/code/Magento/Sales/Model/InvoiceOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order.php b/app/code/Magento/Sales/Model/Order.php index b42c573d943..1d9849064f2 100644 --- a/app/code/Magento/Sales/Model/Order.php +++ b/app/code/Magento/Sales/Model/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/Order/Address.php b/app/code/Magento/Sales/Model/Order/Address.php index 45a14e1ee69..2a065fd142d 100644 --- a/app/code/Magento/Sales/Model/Order/Address.php +++ b/app/code/Magento/Sales/Model/Order/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Address/Renderer.php b/app/code/Magento/Sales/Model/Order/Address/Renderer.php index 9bef4ba60b4..515461c1c4b 100644 --- a/app/code/Magento/Sales/Model/Order/Address/Renderer.php +++ b/app/code/Magento/Sales/Model/Order/Address/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Address/Validator.php b/app/code/Magento/Sales/Model/Order/Address/Validator.php index 80721883378..f46d8c4979a 100644 --- a/app/code/Magento/Sales/Model/Order/Address/Validator.php +++ b/app/code/Magento/Sales/Model/Order/Address/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Address; diff --git a/app/code/Magento/Sales/Model/Order/AddressRepository.php b/app/code/Magento/Sales/Model/Order/AddressRepository.php index c38d7bed1e7..ebecfee7ca9 100644 --- a/app/code/Magento/Sales/Model/Order/AddressRepository.php +++ b/app/code/Magento/Sales/Model/Order/AddressRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Admin/Item.php b/app/code/Magento/Sales/Model/Order/Admin/Item.php index 6bc614c2b12..752ed6e95c9 100644 --- a/app/code/Magento/Sales/Model/Order/Admin/Item.php +++ b/app/code/Magento/Sales/Model/Order/Admin/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Admin; diff --git a/app/code/Magento/Sales/Model/Order/Config.php b/app/code/Magento/Sales/Model/Order/Config.php index 535e2975ee1..f0600f46849 100644 --- a/app/code/Magento/Sales/Model/Order/Config.php +++ b/app/code/Magento/Sales/Model/Order/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo.php b/app/code/Magento/Sales/Model/Order/Creditmemo.php index fa7dd86dbef..743cf53b5b5 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Comment.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Comment.php index 31532d5881d..a3b6d0fbd5e 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Comment.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Comment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Comment/Validator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Comment/Validator.php index cfd1bda5cfc..66623cd1805 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Comment/Validator.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Comment/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Comment; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/CommentCreation.php b/app/code/Magento/Sales/Model/Order/Creditmemo/CommentCreation.php index b110b2dbd39..e107f5ddfc4 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/CommentCreation.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/CommentCreation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Config.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Config.php index f2d93b262d8..a1830519134 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Config.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Config.php @@ -2,7 +2,7 @@ /** * Order creditmemo configuration model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/CreationArguments.php b/app/code/Magento/Sales/Model/Order/Creditmemo/CreationArguments.php index fd082bb1dd4..5964afeef45 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/CreationArguments.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/CreationArguments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidator.php index e49a08e32d8..b27afb510d1 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidator.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidatorInterface.php b/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidatorInterface.php index 030a9a7d128..ad086260717 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidatorInterface.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Item.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Item.php index 02ea09c269a..7d455ae60f3 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Item.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Item/Validation/CreationQuantityValidator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Item/Validation/CreationQuantityValidator.php index edad1a25206..0a50b759e5a 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Item/Validation/CreationQuantityValidator.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Item/Validation/CreationQuantityValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Item\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreation.php b/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreation.php index 10e70402be6..16699ecc52c 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreation.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidator.php index f1b8e6d9cab..283cc4bbff6 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidator.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidatorInterface.php b/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidatorInterface.php index 7a758122b8a..1e822d7557d 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidatorInterface.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Notifier.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Notifier.php index 47dbecca6b5..e8326c1ee8b 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Notifier.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Notifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/NotifierInterface.php b/app/code/Magento/Sales/Model/Order/Creditmemo/NotifierInterface.php index ef42bd18633..8b4e07e1902 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/NotifierInterface.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/NotifierInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/RefundOperation.php b/app/code/Magento/Sales/Model/Order/Creditmemo/RefundOperation.php index f01dd0dc373..46819dcf455 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/RefundOperation.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/RefundOperation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Sender/EmailSender.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Sender/EmailSender.php index 76210505fd4..c51000695fe 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Sender/EmailSender.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Sender/EmailSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Sender; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/SenderInterface.php b/app/code/Magento/Sales/Model/Order/Creditmemo/SenderInterface.php index 00d316a8ec9..9d3661f90ca 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/SenderInterface.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/SenderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/AbstractTotal.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/AbstractTotal.php index 43041788f0d..9f3a1717b25 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/AbstractTotal.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/AbstractTotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Total; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Cost.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Cost.php index 9503d34f2e5..eb318037228 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Cost.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Cost.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Total; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Discount.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Discount.php index b93322ba151..32767fed5cb 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Discount.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Discount.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Total; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Grand.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Grand.php index bdea2b556b1..044e1b9a91c 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Grand.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Grand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Total; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Shipping.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Shipping.php index 96527443d70..b5878085257 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Shipping.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Total; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Subtotal.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Subtotal.php index f97a1897225..f1057175be6 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Subtotal.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Subtotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Total; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Tax.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Tax.php index 880515cc6d3..d1c4b03d44a 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Tax.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Total; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/QuantityValidator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/QuantityValidator.php index 82fd0479166..bf43803b66f 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/QuantityValidator.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/QuantityValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/TotalsValidator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/TotalsValidator.php index 2cefc377b06..0fcdcc4d61c 100644 --- a/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/TotalsValidator.php +++ b/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/TotalsValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Creditmemo\Validation; diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoDocumentFactory.php b/app/code/Magento/Sales/Model/Order/CreditmemoDocumentFactory.php index 816c3df3fc1..4d32dd653d0 100644 --- a/app/code/Magento/Sales/Model/Order/CreditmemoDocumentFactory.php +++ b/app/code/Magento/Sales/Model/Order/CreditmemoDocumentFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php index ff687074e4a..74c3a6cf4ca 100644 --- a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php +++ b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoNotifier.php b/app/code/Magento/Sales/Model/Order/CreditmemoNotifier.php index 32ca016728a..4b3ffd9d3e3 100644 --- a/app/code/Magento/Sales/Model/Order/CreditmemoNotifier.php +++ b/app/code/Magento/Sales/Model/Order/CreditmemoNotifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoRepository.php b/app/code/Magento/Sales/Model/Order/CreditmemoRepository.php index 3fc0a2a4da4..a544a7b1a92 100644 --- a/app/code/Magento/Sales/Model/Order/CreditmemoRepository.php +++ b/app/code/Magento/Sales/Model/Order/CreditmemoRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/CustomerManagement.php b/app/code/Magento/Sales/Model/Order/CustomerManagement.php index ad87d5ddb55..0be3f83af3b 100644 --- a/app/code/Magento/Sales/Model/Order/CustomerManagement.php +++ b/app/code/Magento/Sales/Model/Order/CustomerManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/Container.php b/app/code/Magento/Sales/Model/Order/Email/Container/Container.php index a50aa58e726..51be933d6a8 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Container/Container.php +++ b/app/code/Magento/Sales/Model/Order/Email/Container/Container.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoCommentIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoCommentIdentity.php index 9c7f7bf3cb2..70aadc9ecb7 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoCommentIdentity.php +++ b/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoCommentIdentity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoIdentity.php index afacd0766d9..07011d17aa6 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoIdentity.php +++ b/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoIdentity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/IdentityInterface.php b/app/code/Magento/Sales/Model/Order/Email/Container/IdentityInterface.php index 0c112244132..e4f3ed2e2dc 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Container/IdentityInterface.php +++ b/app/code/Magento/Sales/Model/Order/Email/Container/IdentityInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceCommentIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceCommentIdentity.php index ea2e43047c3..0687bb0b986 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceCommentIdentity.php +++ b/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceCommentIdentity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceIdentity.php index 408a0075160..539ad3e4da5 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceIdentity.php +++ b/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceIdentity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/OrderCommentIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/OrderCommentIdentity.php index b5caa37b24d..dc814ef3f41 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Container/OrderCommentIdentity.php +++ b/app/code/Magento/Sales/Model/Order/Email/Container/OrderCommentIdentity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/OrderIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/OrderIdentity.php index b92fa4fe432..aa94bc27ebd 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Container/OrderIdentity.php +++ b/app/code/Magento/Sales/Model/Order/Email/Container/OrderIdentity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentCommentIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentCommentIdentity.php index 097a2fb58ff..14b9d461511 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentCommentIdentity.php +++ b/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentCommentIdentity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentIdentity.php index e46d11ecee8..9ec581924e3 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentIdentity.php +++ b/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentIdentity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/Template.php b/app/code/Magento/Sales/Model/Order/Email/Container/Template.php index 7f78f325ecc..898165e9ff0 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Container/Template.php +++ b/app/code/Magento/Sales/Model/Order/Email/Container/Template.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Model/Order/Email/NotifySender.php b/app/code/Magento/Sales/Model/Order/Email/NotifySender.php index 1eb078edb80..f6dc2d0caf2 100644 --- a/app/code/Magento/Sales/Model/Order/Email/NotifySender.php +++ b/app/code/Magento/Sales/Model/Order/Email/NotifySender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender.php b/app/code/Magento/Sales/Model/Order/Email/Sender.php index 4373414ad71..ee90ba9f349 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Sender.php +++ b/app/code/Magento/Sales/Model/Order/Email/Sender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email; diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoCommentSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoCommentSender.php index e50fb580163..35f702c5402 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoCommentSender.php +++ b/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoCommentSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoSender.php index c71cca9afb0..d3fa861eb18 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoSender.php +++ b/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceCommentSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceCommentSender.php index dfef6787eca..03a6ad522ac 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceCommentSender.php +++ b/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceCommentSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceSender.php index 4f1cc0181df..033ca7639c9 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceSender.php +++ b/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/OrderCommentSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/OrderCommentSender.php index 4610f00591b..bbccb34c896 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Sender/OrderCommentSender.php +++ b/app/code/Magento/Sales/Model/Order/Email/Sender/OrderCommentSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/OrderSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/OrderSender.php index dfbafec380f..990f4777bdc 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Sender/OrderSender.php +++ b/app/code/Magento/Sales/Model/Order/Email/Sender/OrderSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentCommentSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentCommentSender.php index a2bcfcbcac0..bbe7d6130a4 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentCommentSender.php +++ b/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentCommentSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentSender.php index 6b279e9fba4..32822203374 100644 --- a/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentSender.php +++ b/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Model/Order/Email/SenderBuilder.php b/app/code/Magento/Sales/Model/Order/Email/SenderBuilder.php index ed58a69c91c..b6703fbee87 100644 --- a/app/code/Magento/Sales/Model/Order/Email/SenderBuilder.php +++ b/app/code/Magento/Sales/Model/Order/Email/SenderBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Email; diff --git a/app/code/Magento/Sales/Model/Order/Grid/Massaction/ItemsUpdater.php b/app/code/Magento/Sales/Model/Order/Grid/Massaction/ItemsUpdater.php index 5cc2c22e4b2..9785a02162e 100644 --- a/app/code/Magento/Sales/Model/Order/Grid/Massaction/ItemsUpdater.php +++ b/app/code/Magento/Sales/Model/Order/Grid/Massaction/ItemsUpdater.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Grid\Massaction; diff --git a/app/code/Magento/Sales/Model/Order/Grid/Row/UrlGenerator.php b/app/code/Magento/Sales/Model/Order/Grid/Row/UrlGenerator.php index 4a8b8d11a5b..e9b09060782 100644 --- a/app/code/Magento/Sales/Model/Order/Grid/Row/UrlGenerator.php +++ b/app/code/Magento/Sales/Model/Order/Grid/Row/UrlGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Grid\Row; diff --git a/app/code/Magento/Sales/Model/Order/Invoice.php b/app/code/Magento/Sales/Model/Order/Invoice.php index 10638194ea4..a48addd7afe 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice.php +++ b/app/code/Magento/Sales/Model/Order/Invoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Comment.php b/app/code/Magento/Sales/Model/Order/Invoice/Comment.php index da4cc757600..e749b766835 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Comment.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Comment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Comment/Validator.php b/app/code/Magento/Sales/Model/Order/Invoice/Comment/Validator.php index c69e8c0f78c..a2b12d8cdce 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Comment/Validator.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Comment/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice\Comment; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/CommentCreation.php b/app/code/Magento/Sales/Model/Order/Invoice/CommentCreation.php index fa53f72ebca..9a0ce03b998 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/CommentCreation.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/CommentCreation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Config.php b/app/code/Magento/Sales/Model/Order/Invoice/Config.php index c38e7e5677b..b48a7e2e343 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Config.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/CreationArguments.php b/app/code/Magento/Sales/Model/Order/Invoice/CreationArguments.php index b2c65fcbe4f..d030a5773f8 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/CreationArguments.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/CreationArguments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Grid/Row/UrlGenerator.php b/app/code/Magento/Sales/Model/Order/Invoice/Grid/Row/UrlGenerator.php index aa229ed4d82..63bdee50bb0 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Grid/Row/UrlGenerator.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Grid/Row/UrlGenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice\Grid\Row; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidator.php b/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidator.php index cbb68edaa8a..df10ac165b8 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidator.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidatorInterface.php b/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidatorInterface.php index 44d701b1426..42de5ab260b 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidatorInterface.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Item.php b/app/code/Magento/Sales/Model/Order/Invoice/Item.php index 939c93e7431..3b2d2130265 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Item.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/ItemCreation.php b/app/code/Magento/Sales/Model/Order/Invoice/ItemCreation.php index 26d8d7ae6ca..f0ff4fba4f3 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/ItemCreation.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/ItemCreation.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Notifier.php b/app/code/Magento/Sales/Model/Order/Invoice/Notifier.php index 93755b2df17..1e125d5ecd4 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Notifier.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Notifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/NotifierInterface.php b/app/code/Magento/Sales/Model/Order/Invoice/NotifierInterface.php index 76f9add8c2d..dbc0a44b09b 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/NotifierInterface.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/NotifierInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Invoice/PayOperation.php b/app/code/Magento/Sales/Model/Order/Invoice/PayOperation.php index fe6be0c981c..d86232ad9d2 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/PayOperation.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/PayOperation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Plugin/AddressUpdate.php b/app/code/Magento/Sales/Model/Order/Invoice/Plugin/AddressUpdate.php index 9fe280f5521..5b2270d3ad4 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Plugin/AddressUpdate.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Plugin/AddressUpdate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Sender/EmailSender.php b/app/code/Magento/Sales/Model/Order/Invoice/Sender/EmailSender.php index 2677ee400f5..2da96b5a392 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Sender/EmailSender.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Sender/EmailSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice\Sender; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/SenderInterface.php b/app/code/Magento/Sales/Model/Order/Invoice/SenderInterface.php index 30f677018eb..cc86ee8168f 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/SenderInterface.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/SenderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/AbstractTotal.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/AbstractTotal.php index f6834c2b013..7f38ecdeb32 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Total/AbstractTotal.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Total/AbstractTotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice\Total; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Cost.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Cost.php index 111ed376923..b4e2ff08fc3 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Total/Cost.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Total/Cost.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice\Total; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Discount.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Discount.php index 4c0b6b1c99e..6f7eb935ad8 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Total/Discount.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Total/Discount.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice\Total; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Grand.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Grand.php index b4197f691fa..8cce4dc4715 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Total/Grand.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Total/Grand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice\Total; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Shipping.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Shipping.php index d92dfce70af..3a20117322d 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Total/Shipping.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Total/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice\Total; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Subtotal.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Subtotal.php index 547774cc4d5..e4d4d85b4ad 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Total/Subtotal.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Total/Subtotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice\Total; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Tax.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Tax.php index 32aef9cf92d..4f60af15bee 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Total/Tax.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Total/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice\Total; diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Validation/CanRefund.php b/app/code/Magento/Sales/Model/Order/Invoice/Validation/CanRefund.php index 8e68cade3ca..3b5e420b009 100644 --- a/app/code/Magento/Sales/Model/Order/Invoice/Validation/CanRefund.php +++ b/app/code/Magento/Sales/Model/Order/Invoice/Validation/CanRefund.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Invoice\Validation; diff --git a/app/code/Magento/Sales/Model/Order/InvoiceDocumentFactory.php b/app/code/Magento/Sales/Model/Order/InvoiceDocumentFactory.php index be5995ec61e..bac17856efd 100644 --- a/app/code/Magento/Sales/Model/Order/InvoiceDocumentFactory.php +++ b/app/code/Magento/Sales/Model/Order/InvoiceDocumentFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/InvoiceNotifier.php b/app/code/Magento/Sales/Model/Order/InvoiceNotifier.php index 2e776547621..3738c3216fe 100644 --- a/app/code/Magento/Sales/Model/Order/InvoiceNotifier.php +++ b/app/code/Magento/Sales/Model/Order/InvoiceNotifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/InvoiceNotifierInterface.php b/app/code/Magento/Sales/Model/Order/InvoiceNotifierInterface.php index fe596859aaa..1feb87e6e68 100644 --- a/app/code/Magento/Sales/Model/Order/InvoiceNotifierInterface.php +++ b/app/code/Magento/Sales/Model/Order/InvoiceNotifierInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/InvoiceQuantityValidator.php b/app/code/Magento/Sales/Model/Order/InvoiceQuantityValidator.php index 9ae81dacb0a..f59e3735ca4 100644 --- a/app/code/Magento/Sales/Model/Order/InvoiceQuantityValidator.php +++ b/app/code/Magento/Sales/Model/Order/InvoiceQuantityValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/InvoiceRepository.php b/app/code/Magento/Sales/Model/Order/InvoiceRepository.php index 0a22f7d6a05..b0fefef9aa4 100644 --- a/app/code/Magento/Sales/Model/Order/InvoiceRepository.php +++ b/app/code/Magento/Sales/Model/Order/InvoiceRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/InvoiceStatisticInterface.php b/app/code/Magento/Sales/Model/Order/InvoiceStatisticInterface.php index ac33e473ec5..312f2ef518a 100644 --- a/app/code/Magento/Sales/Model/Order/InvoiceStatisticInterface.php +++ b/app/code/Magento/Sales/Model/Order/InvoiceStatisticInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Item.php b/app/code/Magento/Sales/Model/Order/Item.php index 10ba1e16621..6c95992c928 100644 --- a/app/code/Magento/Sales/Model/Order/Item.php +++ b/app/code/Magento/Sales/Model/Order/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/ItemRepository.php b/app/code/Magento/Sales/Model/Order/ItemRepository.php index 8fdeca7eb7d..1ec91db1703 100644 --- a/app/code/Magento/Sales/Model/Order/ItemRepository.php +++ b/app/code/Magento/Sales/Model/Order/ItemRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/OrderStateResolverInterface.php b/app/code/Magento/Sales/Model/Order/OrderStateResolverInterface.php index 33a17bbfcdd..67644cc0f8c 100644 --- a/app/code/Magento/Sales/Model/Order/OrderStateResolverInterface.php +++ b/app/code/Magento/Sales/Model/Order/OrderStateResolverInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/OrderValidator.php b/app/code/Magento/Sales/Model/Order/OrderValidator.php index 8208af96c93..2d0dd204725 100644 --- a/app/code/Magento/Sales/Model/Order/OrderValidator.php +++ b/app/code/Magento/Sales/Model/Order/OrderValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/OrderValidatorInterface.php b/app/code/Magento/Sales/Model/Order/OrderValidatorInterface.php index dfc95043cbd..01ddcaf1952 100644 --- a/app/code/Magento/Sales/Model/Order/OrderValidatorInterface.php +++ b/app/code/Magento/Sales/Model/Order/OrderValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Payment.php b/app/code/Magento/Sales/Model/Order/Payment.php index 3cd5ecde213..759ecbbdd2a 100644 --- a/app/code/Magento/Sales/Model/Order/Payment.php +++ b/app/code/Magento/Sales/Model/Order/Payment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Payment/Info.php b/app/code/Magento/Sales/Model/Order/Payment/Info.php index 4e5dfee783a..89f02cb8748 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Info.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Payment/Operations/AbstractOperation.php b/app/code/Magento/Sales/Model/Order/Payment/Operations/AbstractOperation.php index 617eca9b20a..5a3425697b6 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Operations/AbstractOperation.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Operations/AbstractOperation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Payment\Operations; diff --git a/app/code/Magento/Sales/Model/Order/Payment/Operations/AuthorizeOperation.php b/app/code/Magento/Sales/Model/Order/Payment/Operations/AuthorizeOperation.php index 698be7a329b..8435e21b4dc 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Operations/AuthorizeOperation.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Operations/AuthorizeOperation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Payment\Operations; diff --git a/app/code/Magento/Sales/Model/Order/Payment/Operations/CaptureOperation.php b/app/code/Magento/Sales/Model/Order/Payment/Operations/CaptureOperation.php index a974c1a274d..f6dbf4b4431 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Operations/CaptureOperation.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Operations/CaptureOperation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Payment\Operations; diff --git a/app/code/Magento/Sales/Model/Order/Payment/Operations/OrderOperation.php b/app/code/Magento/Sales/Model/Order/Payment/Operations/OrderOperation.php index 2ed9a384a4f..b09fe1deef1 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Operations/OrderOperation.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Operations/OrderOperation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Payment\Operations; diff --git a/app/code/Magento/Sales/Model/Order/Payment/Operations/RegisterCaptureNotificationOperation.php b/app/code/Magento/Sales/Model/Order/Payment/Operations/RegisterCaptureNotificationOperation.php index 61f045a4b79..f0b31bccd30 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Operations/RegisterCaptureNotificationOperation.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Operations/RegisterCaptureNotificationOperation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Payment\Operations; diff --git a/app/code/Magento/Sales/Model/Order/Payment/Processor.php b/app/code/Magento/Sales/Model/Order/Payment/Processor.php index 7477ecb7707..1b665ecdb5c 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Processor.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Processor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Payment; diff --git a/app/code/Magento/Sales/Model/Order/Payment/Repository.php b/app/code/Magento/Sales/Model/Order/Payment/Repository.php index 04125628237..665d082f79f 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Repository.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Repository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Payment/State/AuthorizeCommand.php b/app/code/Magento/Sales/Model/Order/Payment/State/AuthorizeCommand.php index 5bef05e6f28..28258628d79 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/State/AuthorizeCommand.php +++ b/app/code/Magento/Sales/Model/Order/Payment/State/AuthorizeCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Payment\State; diff --git a/app/code/Magento/Sales/Model/Order/Payment/State/CaptureCommand.php b/app/code/Magento/Sales/Model/Order/Payment/State/CaptureCommand.php index d2c7e2a7e71..1e53a1ceabd 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/State/CaptureCommand.php +++ b/app/code/Magento/Sales/Model/Order/Payment/State/CaptureCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Payment\State; diff --git a/app/code/Magento/Sales/Model/Order/Payment/State/CommandInterface.php b/app/code/Magento/Sales/Model/Order/Payment/State/CommandInterface.php index 88ee9713a00..f8fea214144 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/State/CommandInterface.php +++ b/app/code/Magento/Sales/Model/Order/Payment/State/CommandInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Payment\State; diff --git a/app/code/Magento/Sales/Model/Order/Payment/State/OrderCommand.php b/app/code/Magento/Sales/Model/Order/Payment/State/OrderCommand.php index 2d7c49187f7..30127a198b2 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/State/OrderCommand.php +++ b/app/code/Magento/Sales/Model/Order/Payment/State/OrderCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Payment\State; diff --git a/app/code/Magento/Sales/Model/Order/Payment/State/RegisterCaptureNotificationCommand.php b/app/code/Magento/Sales/Model/Order/Payment/State/RegisterCaptureNotificationCommand.php index 274862b82de..a38494295c0 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/State/RegisterCaptureNotificationCommand.php +++ b/app/code/Magento/Sales/Model/Order/Payment/State/RegisterCaptureNotificationCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Payment\State; diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction.php index 4b6c071a7c2..9f51e32d57a 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Transaction.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Transaction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction/Builder.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction/Builder.php index 7db509ab165..92989782c58 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Transaction/Builder.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Transaction/Builder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction/BuilderInterface.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction/BuilderInterface.php index c9930dd3e4f..b3b9ec05ec9 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Transaction/BuilderInterface.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Transaction/BuilderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction/Manager.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction/Manager.php index 0ce9a21b7ee..d312edd581b 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Transaction/Manager.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Transaction/Manager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction/ManagerInterface.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction/ManagerInterface.php index d32af8336be..edd0847886c 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Transaction/ManagerInterface.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Transaction/ManagerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction/Repository.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction/Repository.php index c6dc2ceb9e8..e196441475f 100644 --- a/app/code/Magento/Sales/Model/Order/Payment/Transaction/Repository.php +++ b/app/code/Magento/Sales/Model/Order/Payment/Transaction/Repository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/PaymentAdapter.php b/app/code/Magento/Sales/Model/Order/PaymentAdapter.php index d176ce0566b..0d977483582 100644 --- a/app/code/Magento/Sales/Model/Order/PaymentAdapter.php +++ b/app/code/Magento/Sales/Model/Order/PaymentAdapter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/PaymentAdapterInterface.php b/app/code/Magento/Sales/Model/Order/PaymentAdapterInterface.php index 3636bc2592f..b518baae37a 100644 --- a/app/code/Magento/Sales/Model/Order/PaymentAdapterInterface.php +++ b/app/code/Magento/Sales/Model/Order/PaymentAdapterInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Pdf/AbstractPdf.php b/app/code/Magento/Sales/Model/Order/Pdf/AbstractPdf.php index edd2da3c399..6f63d94fd00 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/AbstractPdf.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/AbstractPdf.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Config.php b/app/code/Magento/Sales/Model/Order/Pdf/Config.php index e44a180bf85..603577aad61 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Config.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Config.php @@ -2,7 +2,7 @@ /** * Pdf config * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Config/Converter.php b/app/code/Magento/Sales/Model/Order/Pdf/Config/Converter.php index 8ced98a54a5..fd26d15ba69 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Config/Converter.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Config/Converter.php @@ -2,7 +2,7 @@ /** * Converter of pdf configuration from \DOMDocument to array * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf\Config; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Config/Reader.php b/app/code/Magento/Sales/Model/Order/Pdf/Config/Reader.php index 954a91ed642..3ffe8d45535 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Config/Reader.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Config/Reader.php @@ -2,7 +2,7 @@ /** * Loads catalog attributes configuration from multiple XML files by merging them together * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf\Config; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Config/SchemaLocator.php b/app/code/Magento/Sales/Model/Order/Pdf/Config/SchemaLocator.php index 74a329c0882..0f138a07146 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Config/SchemaLocator.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Config/SchemaLocator.php @@ -2,7 +2,7 @@ /** * Attributes config schema locator * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf\Config; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Creditmemo.php b/app/code/Magento/Sales/Model/Order/Pdf/Creditmemo.php index 0df90deed84..71d64ed575d 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Creditmemo.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Creditmemo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Invoice.php b/app/code/Magento/Sales/Model/Order/Pdf/Invoice.php index a55ad35c34f..480fd4d4ade 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Invoice.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Invoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Sales/Model/Order/Pdf/Items/AbstractItems.php index 39c6c23ea29..5d39e682a5a 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Items/AbstractItems.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Items/AbstractItems.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf\Items; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Items/Creditmemo/DefaultCreditmemo.php b/app/code/Magento/Sales/Model/Order/Pdf/Items/Creditmemo/DefaultCreditmemo.php index 1435d942053..a80f0206964 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Items/Creditmemo/DefaultCreditmemo.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Items/Creditmemo/DefaultCreditmemo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf\Items\Creditmemo; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php b/app/code/Magento/Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php index 88965d2ca78..a58ce72ddda 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf\Items\Invoice; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Items/Shipment/DefaultShipment.php b/app/code/Magento/Sales/Model/Order/Pdf/Items/Shipment/DefaultShipment.php index 5024258cec2..7e566f96a61 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Items/Shipment/DefaultShipment.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Items/Shipment/DefaultShipment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf\Items\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/ItemsFactory.php b/app/code/Magento/Sales/Model/Order/Pdf/ItemsFactory.php index b48841acc16..32484be9471 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/ItemsFactory.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/ItemsFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Shipment.php b/app/code/Magento/Sales/Model/Order/Pdf/Shipment.php index f759388699a..85d1be972b1 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Shipment.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Shipment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf; diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Total/DefaultTotal.php b/app/code/Magento/Sales/Model/Order/Pdf/Total/DefaultTotal.php index 187e7ee49e1..ad1712677fe 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Total/DefaultTotal.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Total/DefaultTotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Total/Factory.php b/app/code/Magento/Sales/Model/Order/Pdf/Total/Factory.php index e1a44cedc86..9765d80db99 100644 --- a/app/code/Magento/Sales/Model/Order/Pdf/Total/Factory.php +++ b/app/code/Magento/Sales/Model/Order/Pdf/Total/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Pdf\Total; diff --git a/app/code/Magento/Sales/Model/Order/Shipment.php b/app/code/Magento/Sales/Model/Order/Shipment.php index 2277f92d6e0..1940edebf83 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment.php +++ b/app/code/Magento/Sales/Model/Order/Shipment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Comment.php b/app/code/Magento/Sales/Model/Order/Shipment/Comment.php index 6f34b04448b..031cc1bc426 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/Comment.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/Comment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Comment/Validator.php b/app/code/Magento/Sales/Model/Order/Shipment/Comment/Validator.php index 08249a0437f..e195256345c 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/Comment/Validator.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/Comment/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment\Comment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/CommentCreation.php b/app/code/Magento/Sales/Model/Order/Shipment/CommentCreation.php index 19d06fb0eff..cee17016aec 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/CommentCreation.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/CommentCreation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/CreationArguments.php b/app/code/Magento/Sales/Model/Order/Shipment/CreationArguments.php index 8a43a73553e..0d1c2ebb924 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/CreationArguments.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/CreationArguments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Item.php b/app/code/Magento/Sales/Model/Order/Shipment/Item.php index 8627f76031b..8c079a3d4c3 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/Item.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php b/app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php index e3cb2f23d7c..24315e5c79e 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Notifier.php b/app/code/Magento/Sales/Model/Order/Shipment/Notifier.php index 21dd5ad4a58..0150b7b0eba 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/Notifier.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/Notifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/NotifierInterface.php b/app/code/Magento/Sales/Model/Order/Shipment/NotifierInterface.php index f34eb6178d0..531fcd12711 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/NotifierInterface.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/NotifierInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrar.php b/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrar.php index 040ab12949b..7a25f66cd89 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrar.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrar.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrarInterface.php b/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrarInterface.php index 7d54acece35..96ad2baa162 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrarInterface.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrarInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Package.php b/app/code/Magento/Sales/Model/Order/Shipment/Package.php index 6f8f54336a2..8b809ec1a0c 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/Package.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/Package.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/PackageCreation.php b/app/code/Magento/Sales/Model/Order/Shipment/PackageCreation.php index 50ad944b825..15bb6a480e5 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/PackageCreation.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/PackageCreation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Sender/EmailSender.php b/app/code/Magento/Sales/Model/Order/Shipment/Sender/EmailSender.php index 228a45ff16a..eb6766ab86d 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/Sender/EmailSender.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/Sender/EmailSender.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment\Sender; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/SenderInterface.php b/app/code/Magento/Sales/Model/Order/Shipment/SenderInterface.php index a030038b7b1..2ae8c7c72bb 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/SenderInterface.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/SenderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidator.php b/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidator.php index 816551b8b32..7a0a2c45392 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidator.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidatorInterface.php b/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidatorInterface.php index 43501a5b133..b7e2812ec5e 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidatorInterface.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Track.php b/app/code/Magento/Sales/Model/Order/Shipment/Track.php index e6bbdb39da1..a3cf8e90320 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/Track.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/Track.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Track/Validator.php b/app/code/Magento/Sales/Model/Order/Shipment/Track/Validator.php index 81c4b67c09b..6993292ecfd 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/Track/Validator.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/Track/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment\Track; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/TrackCreation.php b/app/code/Magento/Sales/Model/Order/Shipment/TrackCreation.php index 6e8ce097f41..b2a0fd92f31 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/TrackCreation.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/TrackCreation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Validation/QuantityValidator.php b/app/code/Magento/Sales/Model/Order/Shipment/Validation/QuantityValidator.php index 20e3712d889..c796096bc85 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/Validation/QuantityValidator.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/Validation/QuantityValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Validation/TrackValidator.php b/app/code/Magento/Sales/Model/Order/Shipment/Validation/TrackValidator.php index 55970d37c59..c4dd7d8062e 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/Validation/TrackValidator.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/Validation/TrackValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Shipment\Validation; diff --git a/app/code/Magento/Sales/Model/Order/ShipmentDocumentFactory.php b/app/code/Magento/Sales/Model/Order/ShipmentDocumentFactory.php index d10f84d8155..1d220071d91 100644 --- a/app/code/Magento/Sales/Model/Order/ShipmentDocumentFactory.php +++ b/app/code/Magento/Sales/Model/Order/ShipmentDocumentFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/ShipmentFactory.php b/app/code/Magento/Sales/Model/Order/ShipmentFactory.php index a8839c75375..e1d2d616c49 100644 --- a/app/code/Magento/Sales/Model/Order/ShipmentFactory.php +++ b/app/code/Magento/Sales/Model/Order/ShipmentFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/ShipmentRepository.php b/app/code/Magento/Sales/Model/Order/ShipmentRepository.php index 2ddff08d900..9ccd9df1c25 100644 --- a/app/code/Magento/Sales/Model/Order/ShipmentRepository.php +++ b/app/code/Magento/Sales/Model/Order/ShipmentRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Shipping.php b/app/code/Magento/Sales/Model/Order/Shipping.php index d4d3f555097..14934756c3f 100644 --- a/app/code/Magento/Sales/Model/Order/Shipping.php +++ b/app/code/Magento/Sales/Model/Order/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/ShippingAssignment.php b/app/code/Magento/Sales/Model/Order/ShippingAssignment.php index d643b968a87..8fff2dcda0b 100644 --- a/app/code/Magento/Sales/Model/Order/ShippingAssignment.php +++ b/app/code/Magento/Sales/Model/Order/ShippingAssignment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/ShippingAssignmentBuilder.php b/app/code/Magento/Sales/Model/Order/ShippingAssignmentBuilder.php index d034e9a56d7..8a17e223444 100644 --- a/app/code/Magento/Sales/Model/Order/ShippingAssignmentBuilder.php +++ b/app/code/Magento/Sales/Model/Order/ShippingAssignmentBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/ShippingBuilder.php b/app/code/Magento/Sales/Model/Order/ShippingBuilder.php index 94792428cf9..a89e57564a8 100644 --- a/app/code/Magento/Sales/Model/Order/ShippingBuilder.php +++ b/app/code/Magento/Sales/Model/Order/ShippingBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/ShippingTotal.php b/app/code/Magento/Sales/Model/Order/ShippingTotal.php index cbe446db79a..ab80da4a94d 100644 --- a/app/code/Magento/Sales/Model/Order/ShippingTotal.php +++ b/app/code/Magento/Sales/Model/Order/ShippingTotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/StateResolver.php b/app/code/Magento/Sales/Model/Order/StateResolver.php index 700e72fe5f4..3589476c7b7 100644 --- a/app/code/Magento/Sales/Model/Order/StateResolver.php +++ b/app/code/Magento/Sales/Model/Order/StateResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Status.php b/app/code/Magento/Sales/Model/Order/Status.php index 2a112592704..9cb03e39b00 100644 --- a/app/code/Magento/Sales/Model/Order/Status.php +++ b/app/code/Magento/Sales/Model/Order/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Status/History.php b/app/code/Magento/Sales/Model/Order/Status/History.php index e0d364ed172..b8b9371823a 100644 --- a/app/code/Magento/Sales/Model/Order/Status/History.php +++ b/app/code/Magento/Sales/Model/Order/Status/History.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Status; diff --git a/app/code/Magento/Sales/Model/Order/Status/History/Validator.php b/app/code/Magento/Sales/Model/Order/Status/History/Validator.php index 415ce9ef620..53ad6cfc3a4 100644 --- a/app/code/Magento/Sales/Model/Order/Status/History/Validator.php +++ b/app/code/Magento/Sales/Model/Order/Status/History/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Status\History; diff --git a/app/code/Magento/Sales/Model/Order/Tax.php b/app/code/Magento/Sales/Model/Order/Tax.php index 77fe7aaf221..5a4af94fb6b 100644 --- a/app/code/Magento/Sales/Model/Order/Tax.php +++ b/app/code/Magento/Sales/Model/Order/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Tax/Item.php b/app/code/Magento/Sales/Model/Order/Tax/Item.php index cd16a38c427..89cecf20c8d 100644 --- a/app/code/Magento/Sales/Model/Order/Tax/Item.php +++ b/app/code/Magento/Sales/Model/Order/Tax/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Tax; diff --git a/app/code/Magento/Sales/Model/Order/Total.php b/app/code/Magento/Sales/Model/Order/Total.php index 7d4270c33b4..328838360b3 100644 --- a/app/code/Magento/Sales/Model/Order/Total.php +++ b/app/code/Magento/Sales/Model/Order/Total.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Total/AbstractTotal.php b/app/code/Magento/Sales/Model/Order/Total/AbstractTotal.php index 8d77c95aba1..4f274ee86ca 100644 --- a/app/code/Magento/Sales/Model/Order/Total/AbstractTotal.php +++ b/app/code/Magento/Sales/Model/Order/Total/AbstractTotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Total; diff --git a/app/code/Magento/Sales/Model/Order/Total/Config/Base.php b/app/code/Magento/Sales/Model/Order/Total/Config/Base.php index d96591118b8..50e179b46f2 100644 --- a/app/code/Magento/Sales/Model/Order/Total/Config/Base.php +++ b/app/code/Magento/Sales/Model/Order/Total/Config/Base.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Total\Config; diff --git a/app/code/Magento/Sales/Model/Order/TotalFactory.php b/app/code/Magento/Sales/Model/Order/TotalFactory.php index 635113b48c7..7cdc948dcea 100644 --- a/app/code/Magento/Sales/Model/Order/TotalFactory.php +++ b/app/code/Magento/Sales/Model/Order/TotalFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order; diff --git a/app/code/Magento/Sales/Model/Order/Validation/CanInvoice.php b/app/code/Magento/Sales/Model/Order/Validation/CanInvoice.php index bb14dc1bb51..bc2bfbde9ae 100644 --- a/app/code/Magento/Sales/Model/Order/Validation/CanInvoice.php +++ b/app/code/Magento/Sales/Model/Order/Validation/CanInvoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Validation/CanRefund.php b/app/code/Magento/Sales/Model/Order/Validation/CanRefund.php index c6fc1a0d705..7f5390e696f 100644 --- a/app/code/Magento/Sales/Model/Order/Validation/CanRefund.php +++ b/app/code/Magento/Sales/Model/Order/Validation/CanRefund.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Validation/CanShip.php b/app/code/Magento/Sales/Model/Order/Validation/CanShip.php index 46638a62483..0f5f17e0ab2 100644 --- a/app/code/Magento/Sales/Model/Order/Validation/CanShip.php +++ b/app/code/Magento/Sales/Model/Order/Validation/CanShip.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrder.php b/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrder.php index d912793afa1..caf7336c677 100644 --- a/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrder.php +++ b/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrderInterface.php b/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrderInterface.php index 5c27741a198..d04cc26bce3 100644 --- a/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrderInterface.php +++ b/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Validation/RefundInvoice.php b/app/code/Magento/Sales/Model/Order/Validation/RefundInvoice.php index d6bc86005cf..1c094179ba5 100644 --- a/app/code/Magento/Sales/Model/Order/Validation/RefundInvoice.php +++ b/app/code/Magento/Sales/Model/Order/Validation/RefundInvoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Validation/RefundInvoiceInterface.php b/app/code/Magento/Sales/Model/Order/Validation/RefundInvoiceInterface.php index 83acc9811bb..28ae43f46b8 100644 --- a/app/code/Magento/Sales/Model/Order/Validation/RefundInvoiceInterface.php +++ b/app/code/Magento/Sales/Model/Order/Validation/RefundInvoiceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Validation/RefundOrder.php b/app/code/Magento/Sales/Model/Order/Validation/RefundOrder.php index c2664fda6b9..5eeb8a3e267 100644 --- a/app/code/Magento/Sales/Model/Order/Validation/RefundOrder.php +++ b/app/code/Magento/Sales/Model/Order/Validation/RefundOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Validation/RefundOrderInterface.php b/app/code/Magento/Sales/Model/Order/Validation/RefundOrderInterface.php index 2f770d20b51..678d199489f 100644 --- a/app/code/Magento/Sales/Model/Order/Validation/RefundOrderInterface.php +++ b/app/code/Magento/Sales/Model/Order/Validation/RefundOrderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Validation/ShipOrder.php b/app/code/Magento/Sales/Model/Order/Validation/ShipOrder.php index 984c5f26fa7..9de2daf2cc0 100644 --- a/app/code/Magento/Sales/Model/Order/Validation/ShipOrder.php +++ b/app/code/Magento/Sales/Model/Order/Validation/ShipOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Model/Order/Validation/ShipOrderInterface.php b/app/code/Magento/Sales/Model/Order/Validation/ShipOrderInterface.php index 43f12df445b..b471f4f5eda 100644 --- a/app/code/Magento/Sales/Model/Order/Validation/ShipOrderInterface.php +++ b/app/code/Magento/Sales/Model/Order/Validation/ShipOrderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Model/OrderNotifier.php b/app/code/Magento/Sales/Model/OrderNotifier.php index 15e7cdf7618..10920f5cd76 100644 --- a/app/code/Magento/Sales/Model/OrderNotifier.php +++ b/app/code/Magento/Sales/Model/OrderNotifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/OrderRepository.php b/app/code/Magento/Sales/Model/OrderRepository.php index f0477fd7601..7fdebf7a0d7 100644 --- a/app/code/Magento/Sales/Model/OrderRepository.php +++ b/app/code/Magento/Sales/Model/OrderRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/RefundInvoice.php b/app/code/Magento/Sales/Model/RefundInvoice.php index 60c3a2ac121..e2b09eb4ce6 100644 --- a/app/code/Magento/Sales/Model/RefundInvoice.php +++ b/app/code/Magento/Sales/Model/RefundInvoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/RefundOrder.php b/app/code/Magento/Sales/Model/RefundOrder.php index abd6e254167..2392fe92343 100644 --- a/app/code/Magento/Sales/Model/RefundOrder.php +++ b/app/code/Magento/Sales/Model/RefundOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/ResourceModel/AbstractGrid.php b/app/code/Magento/Sales/Model/ResourceModel/AbstractGrid.php index 3799e681757..10cbb175c70 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/AbstractGrid.php +++ b/app/code/Magento/Sales/Model/ResourceModel/AbstractGrid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Attribute.php b/app/code/Magento/Sales/Model/ResourceModel/Attribute.php index 58e6ad4e38a..1264bd721d0 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Attribute.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Attribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Collection/AbstractCollection.php b/app/code/Magento/Sales/Model/ResourceModel/Collection/AbstractCollection.php index 470e9785dab..40630501e79 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Collection/AbstractCollection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Collection/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Collection; diff --git a/app/code/Magento/Sales/Model/ResourceModel/EntityAbstract.php b/app/code/Magento/Sales/Model/ResourceModel/EntityAbstract.php index 27c1cd934d6..3845d849b45 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/EntityAbstract.php +++ b/app/code/Magento/Sales/Model/ResourceModel/EntityAbstract.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Grid.php b/app/code/Magento/Sales/Model/ResourceModel/Grid.php index 6a2f8bdcdf2..ba3419d0cd9 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Grid.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Grid/Collection.php index 42a01a63c75..df0ade9da4e 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Grid/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Grid; diff --git a/app/code/Magento/Sales/Model/ResourceModel/GridInterface.php b/app/code/Magento/Sales/Model/ResourceModel/GridInterface.php index 48375e55fdc..ef555cfc25a 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/GridInterface.php +++ b/app/code/Magento/Sales/Model/ResourceModel/GridInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/GridPool.php b/app/code/Magento/Sales/Model/ResourceModel/GridPool.php index 0a1a9ab8478..ef92c36746b 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/GridPool.php +++ b/app/code/Magento/Sales/Model/ResourceModel/GridPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Helper.php b/app/code/Magento/Sales/Model/ResourceModel/Helper.php index a2eecdb664e..599ba641b3f 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Helper.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Helper.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel; diff --git a/app/code/Magento/Sales/Model/ResourceModel/HelperInterface.php b/app/code/Magento/Sales/Model/ResourceModel/HelperInterface.php index 2e7629b190d..20c1558f6b3 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/HelperInterface.php +++ b/app/code/Magento/Sales/Model/ResourceModel/HelperInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Metadata.php b/app/code/Magento/Sales/Model/ResourceModel/Metadata.php index eabeb7a5e06..d69541e488e 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Metadata.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Metadata.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Order.php index 9a800517e4f..2cd225b2b04 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Address.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Address.php index 1fe7cdee21a..298cacc264e 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Address.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Address/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Address/Collection.php index 59f17925a0b..c703e91e0c0 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Address/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Address/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Address; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Billing.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Billing.php index b5fec33d929..84b51465c28 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Billing.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Billing.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Attribute\Backend; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Child.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Child.php index fffcd7c808b..dd7dddebc74 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Child.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Child.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Attribute\Backend; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Shipping.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Shipping.php index 9f9eec7d749..ae7380d8946 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Shipping.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Attribute\Backend; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Collection.php index bae0054de28..ebc1627abca 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/AbstractCollection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/AbstractCollection.php index 815b2706e56..38f4dd82191 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/AbstractCollection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Collection; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/Factory.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/Factory.php index 00b6597a51a..9db92468082 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/Factory.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Collection; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactory.php b/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactory.php index c2b9886e3fa..be8878197b7 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactory.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactoryInterface.php b/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactoryInterface.php index 27a9a640906..3504e124ab8 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactoryInterface.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Comment/Collection/AbstractCollection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Comment/Collection/AbstractCollection.php index 7c1cf296a13..7332ea43909 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Comment/Collection/AbstractCollection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Comment/Collection/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Comment\Collection; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo.php index c5af8637336..7ff90be36fb 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Attribute/Backend/Child.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Attribute/Backend/Child.php index e45f8006a3d..13d923e945d 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Attribute/Backend/Child.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Attribute/Backend/Child.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Creditmemo\Attribute\Backend; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Collection.php index f8f15a67f8c..67c0763fede 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment.php index 8e5e8f7895e..2ed987ca5c5 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment/Collection.php index 533117d0b0a..282213232e6 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Creditmemo\Comment; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/Collection.php index 9c68b483197..3115a12a4c3 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/StatusList.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/StatusList.php index 13b0ecac4c7..02875596411 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/StatusList.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/StatusList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Creditmemo\Grid; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item.php index 261520f6fc3..48507df6939 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item/Collection.php index d50b53d273f..aa13a68db7c 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Creditmemo\Item; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Order/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Order/Grid/Collection.php index 96ee1a67c3d..a5f5b0e03fc 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Order/Grid/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Order/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation.php index 96cd9c064eb..e2100f4d99b 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation/Refund.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation/Refund.php index 82df0aa0beb..4b1cc930c8f 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation/Refund.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation/Refund.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Customer/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Customer/Collection.php index 2009b62bb49..8ce39540b2a 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Customer/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Customer/Collection.php @@ -2,7 +2,7 @@ /** * Customer Grid Collection * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Customer; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Grid/Collection.php index bf7647e81f5..899e70d1dcc 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Grid/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Grid; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/Address.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/Address.php index 4ebedf6d616..4d4f0b24248 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/Address.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/State.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/State.php index d8c456ca159..6e8945f36b2 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/State.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice.php index a148699185a..03ef5728c96 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Child.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Child.php index 0785021eaed..718f716692a 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Child.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Child.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Invoice\Attribute\Backend; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Item.php index 3accadf0047..99992338816 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Item.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Invoice\Attribute\Backend; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Order.php index e032af78517..44d0e8751cb 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Order.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Invoice\Attribute\Backend; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Collection.php index 5a70e32c2f1..ee89c84ab0f 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment.php index 153c51ed1fc..bc07edb18f5 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment/Collection.php index 1c278fc8771..a17fc702b9b 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Invoice\Comment; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/Collection.php index 1c15716368d..5863157dee8 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/StatusList.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/StatusList.php index 5ac2a4caf7c..be177a1ef2d 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/StatusList.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/StatusList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Invoice\Grid; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item.php index 08002c2b19a..bafcd77ac4c 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Invoice; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item/Collection.php index 41c74c27c37..4e994f1a320 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Invoice\Item; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Orders/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Orders/Grid/Collection.php index f8c1197440f..e1159f2a855 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Orders/Grid/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Orders/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Relation.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Relation.php index 0693a0909e3..d953088ae0e 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Relation.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Relation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Item.php index 4a0393b745a..0bc4510aa2e 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Item.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Item/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Item/Collection.php index d38c0dbc58b..4f9edd21c47 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Item/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Item/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Item; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment.php index bb3d4688ed2..34459aefe7b 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Collection.php index caa7f2e27b6..5b903f1d1d1 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Payment; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction.php index 3e5de210886..65ac31966bc 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Payment; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction/Collection.php index f813ca23fc1..db7e8eb6e9a 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Payment\Transaction; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Plugin/Authorization.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Plugin/Authorization.php index f6b459ba463..fe43e692fc1 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Plugin/Authorization.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Plugin/Authorization.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Relation.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Relation.php index 94364a4706b..1cf21456bbc 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Relation.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Relation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Rss/OrderStatus.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Rss/OrderStatus.php index 02fd1549bb4..85f0287dbe3 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Rss/OrderStatus.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Rss/OrderStatus.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Rss; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment.php index 8d855d85511..19e105ac33c 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Attribute/Backend/Child.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Attribute/Backend/Child.php index 6e6a24bbceb..a4df6157016 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Attribute/Backend/Child.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Attribute/Backend/Child.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Shipment\Attribute\Backend; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Collection.php index 2f15e20ee17..3ea472f594d 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment.php index c4f977901f5..0b527959ffb 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment/Collection.php index bee8d677b17..8a77934e89e 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Shipment\Comment; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Grid/Collection.php index 066f617f28b..c8dd08d8447 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Grid/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item.php index 640559c9249..6b8a0b3ad3a 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item/Collection.php index a5624fe8cf0..9658778942d 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Shipment\Item; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Order/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Order/Grid/Collection.php index 799173e1af1..1195c0cf45c 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Order/Grid/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Order/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Relation.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Relation.php index 6a47b80c15f..e3292fa9a24 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Relation.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Relation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track.php index 1a9ecaf8c18..55065713ae2 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Shipment; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track/Collection.php index ce6ee0a8777..a8246a0c871 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Shipment\Track; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Status.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Status.php index d1af9e324d1..2dcc5cd5d76 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Status.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Status/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Status/Collection.php index 788dad899c6..b55cceb0a65 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Status/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Status/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Status; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History.php index 7fd651f37ed..94faaa6b893 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Status; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History/Collection.php index 6ac9b8fa32d..711251b09ef 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Status\History; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Tax.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Tax.php index 0f065dd61e6..4539ef50913 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Tax.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Collection.php index 1dbf1f1e124..e447c11ce88 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Tax; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Item.php index 6677ecf40bd..b1c00c0a903 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Item.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Order\Tax; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report.php b/app/code/Magento/Sales/Model/ResourceModel/Report.php index 0abd22c5a82..aaa4be235cb 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/AbstractReport.php b/app/code/Magento/Sales/Model/ResourceModel/Report/AbstractReport.php index 6340eb15a49..8b219f2def1 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/AbstractReport.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/AbstractReport.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers.php index 1d5b4d0d137..a7a2fa4105f 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers/Collection.php index cd679119df7..e17c9eca674 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Collection/AbstractCollection.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Collection/AbstractCollection.php index 1273ba5a8c3..f887edc1433 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Collection/AbstractCollection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Collection/AbstractCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report\Collection; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced.php index c667af0a2c6..b96c52f1645 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Invoiced.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Invoiced.php index 33921150143..b8717a336f6 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Invoiced.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Invoiced.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report\Invoiced\Collection; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Order.php index 7e41f8a845c..0c5ff451755 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Order.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report\Invoiced\Collection; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Order.php index 5eded61f0dd..a7fffbfaffd 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Order.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Collection.php index 3895b908c04..a318c771cf7 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Createdat.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Createdat.php index a9da14b8041..39cc8b200db 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Createdat.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Createdat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat.php index a91186d3fd2..93fe6bb174e 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report\Order; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat/Collection.php index 8aa8c3950e0..df81ce62bb5 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report\Order\Updatedat; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded.php index 2a721cc87ef..1331dec7b99 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Order.php index bd6a7e35b9e..3ca2a2dc838 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Order.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report\Refunded\Collection; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Refunded.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Refunded.php index 3c50173a344..b0363091e8d 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Refunded.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Refunded.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report\Refunded\Collection; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping.php index 48d9612fb46..27f3c298795 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Order.php index ab27c61072b..da65292b068 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Order.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Order.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report\Shipping\Collection; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Shipment.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Shipment.php index 06e493e5145..651a58e51ee 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Shipment.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Shipment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Report\Shipping\Collection; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Sale/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Sale/Collection.php index e5b12e2a043..14e60ee81fc 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Sale/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Sale/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Sale; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Status/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Status/Collection.php index a45c238b54c..5837972c791 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Status/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Status/Collection.php @@ -2,7 +2,7 @@ /** * Oder statuses grid collection * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Status; diff --git a/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/Collection.php index cb258970193..a0489311257 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/Collection.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/TypeList.php b/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/TypeList.php index d157c562d12..b204cfa9288 100644 --- a/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/TypeList.php +++ b/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/TypeList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\ResourceModel\Transaction\Grid; diff --git a/app/code/Magento/Sales/Model/Rss/NewOrder.php b/app/code/Magento/Sales/Model/Rss/NewOrder.php index 284b3153ed5..9c654e42d9c 100644 --- a/app/code/Magento/Sales/Model/Rss/NewOrder.php +++ b/app/code/Magento/Sales/Model/Rss/NewOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Rss; diff --git a/app/code/Magento/Sales/Model/Rss/OrderStatus.php b/app/code/Magento/Sales/Model/Rss/OrderStatus.php index ae885920ab6..a40d81d2a3c 100644 --- a/app/code/Magento/Sales/Model/Rss/OrderStatus.php +++ b/app/code/Magento/Sales/Model/Rss/OrderStatus.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Rss; diff --git a/app/code/Magento/Sales/Model/Service/CreditmemoService.php b/app/code/Magento/Sales/Model/Service/CreditmemoService.php index 16c30211170..1d102ea0336 100644 --- a/app/code/Magento/Sales/Model/Service/CreditmemoService.php +++ b/app/code/Magento/Sales/Model/Service/CreditmemoService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Model/Service/InvoiceService.php b/app/code/Magento/Sales/Model/Service/InvoiceService.php index ac66d4dc32f..2af5acb3f7d 100644 --- a/app/code/Magento/Sales/Model/Service/InvoiceService.php +++ b/app/code/Magento/Sales/Model/Service/InvoiceService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Service; diff --git a/app/code/Magento/Sales/Model/Service/OrderService.php b/app/code/Magento/Sales/Model/Service/OrderService.php index 180e0e31a0d..d054fb4b87f 100644 --- a/app/code/Magento/Sales/Model/Service/OrderService.php +++ b/app/code/Magento/Sales/Model/Service/OrderService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Service; diff --git a/app/code/Magento/Sales/Model/Service/ShipmentService.php b/app/code/Magento/Sales/Model/Service/ShipmentService.php index 6acac930a35..b787f845f74 100644 --- a/app/code/Magento/Sales/Model/Service/ShipmentService.php +++ b/app/code/Magento/Sales/Model/Service/ShipmentService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Service; diff --git a/app/code/Magento/Sales/Model/ShipOrder.php b/app/code/Magento/Sales/Model/ShipOrder.php index 034442a19c1..7b68c5e603b 100644 --- a/app/code/Magento/Sales/Model/ShipOrder.php +++ b/app/code/Magento/Sales/Model/ShipOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/Spi/CreditmemoCommentResourceInterface.php b/app/code/Magento/Sales/Model/Spi/CreditmemoCommentResourceInterface.php index 414c406f564..f592a03c353 100644 --- a/app/code/Magento/Sales/Model/Spi/CreditmemoCommentResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/CreditmemoCommentResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/CreditmemoItemResourceInterface.php b/app/code/Magento/Sales/Model/Spi/CreditmemoItemResourceInterface.php index f8173c52fc6..5ff8472edf2 100644 --- a/app/code/Magento/Sales/Model/Spi/CreditmemoItemResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/CreditmemoItemResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/CreditmemoResourceInterface.php b/app/code/Magento/Sales/Model/Spi/CreditmemoResourceInterface.php index e6d115432cc..47833325093 100644 --- a/app/code/Magento/Sales/Model/Spi/CreditmemoResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/CreditmemoResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/InvoiceCommentResourceInterface.php b/app/code/Magento/Sales/Model/Spi/InvoiceCommentResourceInterface.php index 6b452343336..adfb2d5bff1 100644 --- a/app/code/Magento/Sales/Model/Spi/InvoiceCommentResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/InvoiceCommentResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/InvoiceItemResourceInterface.php b/app/code/Magento/Sales/Model/Spi/InvoiceItemResourceInterface.php index 905a227a69a..2c8fc3168de 100644 --- a/app/code/Magento/Sales/Model/Spi/InvoiceItemResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/InvoiceItemResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/InvoiceResourceInterface.php b/app/code/Magento/Sales/Model/Spi/InvoiceResourceInterface.php index d4af467d4c1..5fde1cf8ba4 100644 --- a/app/code/Magento/Sales/Model/Spi/InvoiceResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/InvoiceResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/OrderAddressResourceInterface.php b/app/code/Magento/Sales/Model/Spi/OrderAddressResourceInterface.php index b97d201f2cd..5b0aeca7157 100644 --- a/app/code/Magento/Sales/Model/Spi/OrderAddressResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/OrderAddressResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/OrderItemResourceInterface.php b/app/code/Magento/Sales/Model/Spi/OrderItemResourceInterface.php index 3b9781b597e..282d2568dc5 100644 --- a/app/code/Magento/Sales/Model/Spi/OrderItemResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/OrderItemResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/OrderPaymentResourceInterface.php b/app/code/Magento/Sales/Model/Spi/OrderPaymentResourceInterface.php index e8a36ab6d1c..6cd548fc166 100644 --- a/app/code/Magento/Sales/Model/Spi/OrderPaymentResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/OrderPaymentResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/OrderResourceInterface.php b/app/code/Magento/Sales/Model/Spi/OrderResourceInterface.php index 1e1b416c0af..9ec3b668cce 100644 --- a/app/code/Magento/Sales/Model/Spi/OrderResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/OrderResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/OrderStatusHistoryResourceInterface.php b/app/code/Magento/Sales/Model/Spi/OrderStatusHistoryResourceInterface.php index f2d3c3fb09c..beb3295a3a3 100644 --- a/app/code/Magento/Sales/Model/Spi/OrderStatusHistoryResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/OrderStatusHistoryResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/ShipmentCommentResourceInterface.php b/app/code/Magento/Sales/Model/Spi/ShipmentCommentResourceInterface.php index 76707ea654b..e48ac1423a0 100644 --- a/app/code/Magento/Sales/Model/Spi/ShipmentCommentResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/ShipmentCommentResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/ShipmentItemResourceInterface.php b/app/code/Magento/Sales/Model/Spi/ShipmentItemResourceInterface.php index ef46fa9035c..3cb15c02702 100644 --- a/app/code/Magento/Sales/Model/Spi/ShipmentItemResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/ShipmentItemResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/ShipmentResourceInterface.php b/app/code/Magento/Sales/Model/Spi/ShipmentResourceInterface.php index 0436719c1da..d2e0a8e73a2 100644 --- a/app/code/Magento/Sales/Model/Spi/ShipmentResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/ShipmentResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/ShipmentTrackResourceInterface.php b/app/code/Magento/Sales/Model/Spi/ShipmentTrackResourceInterface.php index 278e0029818..d2651bd2029 100644 --- a/app/code/Magento/Sales/Model/Spi/ShipmentTrackResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/ShipmentTrackResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Spi/TransactionResourceInterface.php b/app/code/Magento/Sales/Model/Spi/TransactionResourceInterface.php index 13b3c124ea9..962ab50d031 100644 --- a/app/code/Magento/Sales/Model/Spi/TransactionResourceInterface.php +++ b/app/code/Magento/Sales/Model/Spi/TransactionResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Spi; diff --git a/app/code/Magento/Sales/Model/Status/ListFactory.php b/app/code/Magento/Sales/Model/Status/ListFactory.php index de8ce407496..c1c898a81c3 100644 --- a/app/code/Magento/Sales/Model/Status/ListFactory.php +++ b/app/code/Magento/Sales/Model/Status/ListFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Status; diff --git a/app/code/Magento/Sales/Model/Status/ListStatus.php b/app/code/Magento/Sales/Model/Status/ListStatus.php index 1a68b8794ec..5497158e2db 100644 --- a/app/code/Magento/Sales/Model/Status/ListStatus.php +++ b/app/code/Magento/Sales/Model/Status/ListStatus.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model\Status; diff --git a/app/code/Magento/Sales/Model/Validator.php b/app/code/Magento/Sales/Model/Validator.php index 9239223fe3b..c3317b01eb4 100644 --- a/app/code/Magento/Sales/Model/Validator.php +++ b/app/code/Magento/Sales/Model/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/ValidatorInterface.php b/app/code/Magento/Sales/Model/ValidatorInterface.php index 4489af44f40..b0d3420caec 100644 --- a/app/code/Magento/Sales/Model/ValidatorInterface.php +++ b/app/code/Magento/Sales/Model/ValidatorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/ValidatorResult.php b/app/code/Magento/Sales/Model/ValidatorResult.php index 6dc2933ac42..a8c6c18503f 100644 --- a/app/code/Magento/Sales/Model/ValidatorResult.php +++ b/app/code/Magento/Sales/Model/ValidatorResult.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/ValidatorResultInterface.php b/app/code/Magento/Sales/Model/ValidatorResultInterface.php index c4e284657bd..990861417b7 100644 --- a/app/code/Magento/Sales/Model/ValidatorResultInterface.php +++ b/app/code/Magento/Sales/Model/ValidatorResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Model/ValidatorResultMerger.php b/app/code/Magento/Sales/Model/ValidatorResultMerger.php index 41f38e8eef0..83ab053b162 100644 --- a/app/code/Magento/Sales/Model/ValidatorResultMerger.php +++ b/app/code/Magento/Sales/Model/ValidatorResultMerger.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; diff --git a/app/code/Magento/Sales/Observer/Backend/CatalogPriceRule.php b/app/code/Magento/Sales/Observer/Backend/CatalogPriceRule.php index 9f1bf17fa11..64fffc382a6 100644 --- a/app/code/Magento/Sales/Observer/Backend/CatalogPriceRule.php +++ b/app/code/Magento/Sales/Observer/Backend/CatalogPriceRule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Observer\Backend; diff --git a/app/code/Magento/Sales/Observer/Backend/CatalogProductSaveAfterObserver.php b/app/code/Magento/Sales/Observer/Backend/CatalogProductSaveAfterObserver.php index cf47dc58e87..fc48b832d02 100644 --- a/app/code/Magento/Sales/Observer/Backend/CatalogProductSaveAfterObserver.php +++ b/app/code/Magento/Sales/Observer/Backend/CatalogProductSaveAfterObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Observer\Backend; diff --git a/app/code/Magento/Sales/Observer/Backend/SubtractQtyFromQuotesObserver.php b/app/code/Magento/Sales/Observer/Backend/SubtractQtyFromQuotesObserver.php index 655f0577eee..b1f30eeb0dd 100644 --- a/app/code/Magento/Sales/Observer/Backend/SubtractQtyFromQuotesObserver.php +++ b/app/code/Magento/Sales/Observer/Backend/SubtractQtyFromQuotesObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Observer\Backend; diff --git a/app/code/Magento/Sales/Observer/Frontend/AddVatRequestParamsOrderComment.php b/app/code/Magento/Sales/Observer/Frontend/AddVatRequestParamsOrderComment.php index c9a341825fa..ceb45289d2e 100644 --- a/app/code/Magento/Sales/Observer/Frontend/AddVatRequestParamsOrderComment.php +++ b/app/code/Magento/Sales/Observer/Frontend/AddVatRequestParamsOrderComment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Observer\Frontend; diff --git a/app/code/Magento/Sales/Observer/Frontend/RestoreCustomerGroupId.php b/app/code/Magento/Sales/Observer/Frontend/RestoreCustomerGroupId.php index ee41efe6fb3..cd5eac52fc0 100644 --- a/app/code/Magento/Sales/Observer/Frontend/RestoreCustomerGroupId.php +++ b/app/code/Magento/Sales/Observer/Frontend/RestoreCustomerGroupId.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Observer\Frontend; diff --git a/app/code/Magento/Sales/Observer/GridAsyncInsertObserver.php b/app/code/Magento/Sales/Observer/GridAsyncInsertObserver.php index 0acafa9ab06..7f1b6fc46f7 100644 --- a/app/code/Magento/Sales/Observer/GridAsyncInsertObserver.php +++ b/app/code/Magento/Sales/Observer/GridAsyncInsertObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Observer; diff --git a/app/code/Magento/Sales/Observer/GridProcessAddressChange.php b/app/code/Magento/Sales/Observer/GridProcessAddressChange.php index 324df51f7c8..84196475923 100644 --- a/app/code/Magento/Sales/Observer/GridProcessAddressChange.php +++ b/app/code/Magento/Sales/Observer/GridProcessAddressChange.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Observer/GridSyncInsertObserver.php b/app/code/Magento/Sales/Observer/GridSyncInsertObserver.php index a33fe1bb3a7..3e6acba501d 100644 --- a/app/code/Magento/Sales/Observer/GridSyncInsertObserver.php +++ b/app/code/Magento/Sales/Observer/GridSyncInsertObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Observer; diff --git a/app/code/Magento/Sales/Observer/GridSyncRemoveObserver.php b/app/code/Magento/Sales/Observer/GridSyncRemoveObserver.php index bd72686ebd6..06d5a2217ef 100644 --- a/app/code/Magento/Sales/Observer/GridSyncRemoveObserver.php +++ b/app/code/Magento/Sales/Observer/GridSyncRemoveObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Observer; diff --git a/app/code/Magento/Sales/Observer/Virtual/SendEmails.php b/app/code/Magento/Sales/Observer/Virtual/SendEmails.php index 7984a044285..92104245a0e 100644 --- a/app/code/Magento/Sales/Observer/Virtual/SendEmails.php +++ b/app/code/Magento/Sales/Observer/Virtual/SendEmails.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Observer\Virtual; diff --git a/app/code/Magento/Sales/Setup/InstallData.php b/app/code/Magento/Sales/Setup/InstallData.php index a1bc265cec6..38e5446a12a 100644 --- a/app/code/Magento/Sales/Setup/InstallData.php +++ b/app/code/Magento/Sales/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Setup/InstallSchema.php b/app/code/Magento/Sales/Setup/InstallSchema.php index 6daa1b42b3a..64240feef0f 100644 --- a/app/code/Magento/Sales/Setup/InstallSchema.php +++ b/app/code/Magento/Sales/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Setup/SalesSetup.php b/app/code/Magento/Sales/Setup/SalesSetup.php index 3a2c999678a..53557aaa4c7 100644 --- a/app/code/Magento/Sales/Setup/SalesSetup.php +++ b/app/code/Magento/Sales/Setup/SalesSetup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Setup; diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php index 9580dd8a667..37bd439e2e6 100644 --- a/app/code/Magento/Sales/Setup/UpgradeData.php +++ b/app/code/Magento/Sales/Setup/UpgradeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Setup/UpgradeSchema.php b/app/code/Magento/Sales/Setup/UpgradeSchema.php index 288e8085a0d..60f93fc7650 100644 --- a/app/code/Magento/Sales/Setup/UpgradeSchema.php +++ b/app/code/Magento/Sales/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Setup; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractItemsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractItemsTest.php index 24c1f8fd29f..b17cc56a5c3 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractItemsTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractItemsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Items; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractTest.php index c05b1d3c198..dfe3e012c37 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Items; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/Column/DefaultColumnTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/Column/DefaultColumnTest.php index 69db3a9b9ea..b667b46bea7 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/Column/DefaultColumnTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/Column/DefaultColumnTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Items\Column; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Comments/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Comments/ViewTest.php index e2a8cdf024d..79f303fe4b9 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Comments/ViewTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Comments/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\Comments; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/AbstractCreateTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/AbstractCreateTest.php index cd3187d2092..70cf2053c01 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/AbstractCreateTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/AbstractCreateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/CustomerTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/CustomerTest.php index 0274c83e15a..8bca83a1b4e 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/CustomerTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/CustomerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\Create; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Items/GridTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Items/GridTest.php index 00dcdf0ec5e..65271b09fbd 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Items/GridTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Items/GridTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Search/Grid/Renderer/QtyTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Search/Grid/Renderer/QtyTest.php index 7a4dd5b35b5..e1212834fad 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Search/Grid/Renderer/QtyTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Search/Grid/Renderer/QtyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\Create\Search\Grid\Renderer; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebarTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebarTest.php index 8cd10764396..a07b15b161f 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebarTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebarTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\Create\Sidebar; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/TotalsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/TotalsTest.php index 56c8a4798f9..a4e4661c87c 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/TotalsTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/TotalsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Creditmemo/Create/ItemsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Creditmemo/Create/ItemsTest.php index b673c2a888b..ea385c2bc11 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Creditmemo/Create/ItemsTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Creditmemo/Create/ItemsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\Creditmemo\Create; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Invoice/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Invoice/ViewTest.php index 775c504c687..e0365d66b7a 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Invoice/ViewTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Invoice/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Status/Assign/FormTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Status/Assign/FormTest.php index faba0ec3577..accfa984a0c 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Status/Assign/FormTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Status/Assign/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\Status\Assign; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Totals/TaxTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Totals/TaxTest.php index ca583856c23..ea456a2f678 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Totals/TaxTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Totals/TaxTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/GiftmessageTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/GiftmessageTest.php index 2a09e0ebea2..36e4fe6db25 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/GiftmessageTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/GiftmessageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\View; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/HistoryTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/HistoryTest.php index aea134fee82..8eed2d602ce 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/HistoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/HistoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\View; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/InfoTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/InfoTest.php index 25ec3ef8b23..505c2996ac4 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/InfoTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/InfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\View; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/HistoryTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/HistoryTest.php index 0edeac71709..463f2959b0b 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/HistoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/HistoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\View\Tab; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/Stub/OnlineMethod.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/Stub/OnlineMethod.php index b9b6df1f8a4..523339f38e7 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/Stub/OnlineMethod.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/Stub/OnlineMethod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\View\Tab\Stub; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/TransactionsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/TransactionsTest.php index a2748bc2727..63ed224a1da 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/TransactionsTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/TransactionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\View\Tab; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Rss/Order/Grid/LinkTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Rss/Order/Grid/LinkTest.php index 1c856b20d4b..31fb212b3ce 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Rss/Order/Grid/LinkTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Rss/Order/Grid/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Adminhtml\Rss\Order\Grid; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Guest/LinkTest.php b/app/code/Magento/Sales/Test/Unit/Block/Guest/LinkTest.php index 4b432f55c57..1bf10d5e491 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Guest/LinkTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Guest/LinkTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Guest; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Items/AbstractTest.php b/app/code/Magento/Sales/Test/Unit/Block/Items/AbstractTest.php index 84c75cb316f..f478aafd4a4 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Items/AbstractTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Items/AbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Items; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/Create/TotalsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/Create/TotalsTest.php index 6e14d80eb43..fd7b24c1b52 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Order/Create/TotalsTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Order/Create/TotalsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/DefaultItemsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/DefaultItemsTest.php index 5cc03a7f655..71ad58663f5 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/DefaultItemsTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/DefaultItemsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/Order/DefaultOrderTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/Order/DefaultOrderTest.php index bc5b4e4a8df..6818dd20145 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/Order/DefaultOrderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/Order/DefaultOrderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/HistoryTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/HistoryTest.php index a9bca73eca3..64d9705d313 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Order/HistoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Order/HistoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/Info/Buttons/RssTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/Info/Buttons/RssTest.php index f143d0346e8..73c591c93d7 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Order/Info/Buttons/RssTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Order/Info/Buttons/RssTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Order\Info\Buttons; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/Item/Renderer/DefaultRendererTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/Item/Renderer/DefaultRendererTest.php index f80ba5e8741..1c15d4a0c46 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Order/Item/Renderer/DefaultRendererTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Order/Item/Renderer/DefaultRendererTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/RecentTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/RecentTest.php index 817322c3f83..cb59bbab9c1 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Order/RecentTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Order/RecentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Reorder/SidebarTest.php b/app/code/Magento/Sales/Test/Unit/Block/Reorder/SidebarTest.php index cda74d76c0b..76601e05095 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Reorder/SidebarTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Reorder/SidebarTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Block\Reorder; diff --git a/app/code/Magento/Sales/Test/Unit/Block/Status/Grid/Column/StateTest.php b/app/code/Magento/Sales/Test/Unit/Block/Status/Grid/Column/StateTest.php index 59e7accb583..700250e26ea 100644 --- a/app/code/Magento/Sales/Test/Unit/Block/Status/Grid/Column/StateTest.php +++ b/app/code/Magento/Sales/Test/Unit/Block/Status/Grid/Column/StateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/EmailTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/EmailTest.php index f8c1b8d35a7..dcff47f54ca 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/EmailTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/EmailTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Invoice/AbstractInvoice/EmailTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Invoice/AbstractInvoice/EmailTest.php index 4761fc79211..6dfd437df7a 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Invoice/AbstractInvoice/EmailTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Invoice/AbstractInvoice/EmailTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CancelTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CancelTest.php index 3e6faf63608..1fb89e77078 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CancelTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CancelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Create/ProcessDataTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Create/ProcessDataTest.php index 46f92dc142b..8b76e13750c 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Create/ProcessDataTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Create/ProcessDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/AddCommentTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/AddCommentTest.php index 90645efa538..84b9046e151 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/AddCommentTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/AddCommentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/CancelTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/CancelTest.php index f0781784349..06d8155937d 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/CancelTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/CancelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/NewActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/NewActionTest.php index 4b23d24334b..ff7bcb4c796 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/NewActionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/NewActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/PrintActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/PrintActionTest.php index ece03f0c7b5..7541e73bd5c 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/PrintActionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/PrintActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/SaveTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/SaveTest.php index b77804b1284..18a96cf4462 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/SaveTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/UpdateQtyTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/UpdateQtyTest.php index a407fe46ac4..735c527b5b7 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/UpdateQtyTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/UpdateQtyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/ViewTest.php index 4028fcf03c4..55aecbfcc3f 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/ViewTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/VoidTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/VoidTest.php index af21affe74a..5fb4f3e62f4 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/VoidTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/VoidTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CreditmemoLoaderTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CreditmemoLoaderTest.php index 5ced1cf1cc7..f8fd5fd42d7 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CreditmemoLoaderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CreditmemoLoaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/EmailTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/EmailTest.php index c316d8da9c5..18e4e103e14 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/EmailTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/EmailTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/HoldTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/HoldTest.php index 45066feb18a..1372fc16079 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/HoldTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/HoldTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/AddCommentTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/AddCommentTest.php index 7360a533fb5..fa516d3138f 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/AddCommentTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/AddCommentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CancelTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CancelTest.php index d5d276a7537..ec6b1a313b7 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CancelTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CancelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CaptureTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CaptureTest.php index 9111b70a8f4..e8390eb94d8 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CaptureTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CaptureTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/NewActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/NewActionTest.php index 233c91946b8..cd3e70854a2 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/NewActionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/NewActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/PrintActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/PrintActionTest.php index 8969460c5bf..824b18a9baa 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/PrintActionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/PrintActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/SaveTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/SaveTest.php index d3275d681bc..efe007b0f61 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/SaveTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/UpdateQtyTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/UpdateQtyTest.php index 491f541a4fe..321d0068485 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/UpdateQtyTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/UpdateQtyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/ViewTest.php index 0a697a61b66..c8345676b94 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/ViewTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/VoidTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/VoidTest.php index 6f3db3fc233..96f80c303c0 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/VoidTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/VoidTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order\Invoice; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassCancelTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassCancelTest.php index 2073580b5cc..660f3c3ee19 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassCancelTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassCancelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassHoldTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassHoldTest.php index 4d2e309be18..faeec2b0128 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassHoldTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassHoldTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassUnholdTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassUnholdTest.php index a8c122e9326..0dd8e474f90 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassUnholdTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassUnholdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ReviewPaymentTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ReviewPaymentTest.php index e937143b9d0..3967040b2fc 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ReviewPaymentTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ReviewPaymentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/UnholdTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/UnholdTest.php index 53e2041616d..64b957e8c6d 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/UnholdTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/UnholdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ViewTest.php index ea0f08b31d2..44e8830a76c 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ViewTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/PdfDocumentsMassActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/PdfDocumentsMassActionTest.php index e93c22fb837..fed0cd83345 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/PdfDocumentsMassActionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/PdfDocumentsMassActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php index 387fc3b782b..6bbd7760acb 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Guest/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Guest/ViewTest.php index b119d253033..ad5f8dcbc23 100644 --- a/app/code/Magento/Sales/Test/Unit/Controller/Guest/ViewTest.php +++ b/app/code/Magento/Sales/Test/Unit/Controller/Guest/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Controller\Guest; diff --git a/app/code/Magento/Sales/Test/Unit/Cron/CleanExpiredQuotesTest.php b/app/code/Magento/Sales/Test/Unit/Cron/CleanExpiredQuotesTest.php index 90cebe51540..cdf149120fa 100644 --- a/app/code/Magento/Sales/Test/Unit/Cron/CleanExpiredQuotesTest.php +++ b/app/code/Magento/Sales/Test/Unit/Cron/CleanExpiredQuotesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Cron; diff --git a/app/code/Magento/Sales/Test/Unit/Helper/AdminTest.php b/app/code/Magento/Sales/Test/Unit/Helper/AdminTest.php index ed4852b083c..761042373b8 100644 --- a/app/code/Magento/Sales/Test/Unit/Helper/AdminTest.php +++ b/app/code/Magento/Sales/Test/Unit/Helper/AdminTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Helper; diff --git a/app/code/Magento/Sales/Test/Unit/Helper/DataTest.php b/app/code/Magento/Sales/Test/Unit/Helper/DataTest.php index 7ce726a4b47..ddf5c0081bc 100644 --- a/app/code/Magento/Sales/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Sales/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Helper/GuestTest.php b/app/code/Magento/Sales/Test/Unit/Helper/GuestTest.php index beedf30c883..ab169dcd433 100644 --- a/app/code/Magento/Sales/Test/Unit/Helper/GuestTest.php +++ b/app/code/Magento/Sales/Test/Unit/Helper/GuestTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Helper; diff --git a/app/code/Magento/Sales/Test/Unit/Helper/ReorderTest.php b/app/code/Magento/Sales/Test/Unit/Helper/ReorderTest.php index 2394be9acb0..392ef7d7c87 100644 --- a/app/code/Magento/Sales/Test/Unit/Helper/ReorderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Helper/ReorderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/AbstractModelTest.php b/app/code/Magento/Sales/Test/Unit/Model/AbstractModelTest.php index a96524fb79b..24653e0f35d 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/AbstractModelTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/AbstractModelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model; diff --git a/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/CreateTest.php b/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/CreateTest.php index a922136e1d4..08cfcc93a93 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/CreateTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/CreateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/EmailSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/EmailSenderTest.php index 81cf63a466a..a8a9722cb99 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/EmailSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/EmailSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\AdminOrder; diff --git a/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/Product/Quote/InitializerTest.php b/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/Product/Quote/InitializerTest.php index d94288919f3..f4e9e8627c4 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/Product/Quote/InitializerTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/Product/Quote/InitializerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Email/AsyncSendingTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Email/AsyncSendingTest.php index 7ae2802281b..ae1e1e8a574 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Email/AsyncSendingTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Email/AsyncSendingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Config\Backend\Email; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Grid/AsyncIndexingTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Grid/AsyncIndexingTest.php index d3e95ff6d04..0221d758308 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Grid/AsyncIndexingTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Grid/AsyncIndexingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Config\Backend\Grid; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/ConverterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/ConverterTest.php index 4daf8d6b1d9..e81d5b8b7cc 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/ConverterTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Config; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/DataTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/DataTest.php index 0c342ff115e..ffa7ab812b8 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/DataTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Config; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/ReaderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/ReaderTest.php index 5a7bd82faa7..15c437cf0b3 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/ReaderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/ReaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Config; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/SchemaLocatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/SchemaLocatorTest.php index 7b2c1de9205..670f4e5ab37 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Config; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/Source/Order/StatusTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/Source/Order/StatusTest.php index b9b27eb5326..d4db52d223e 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/Source/Order/StatusTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/Source/Order/StatusTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Config\Source\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/XsdTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/XsdTest.php index cd65f0f1ce6..ac8bb020535 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/XsdTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/XsdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Config; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/core_totals_config.php b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/core_totals_config.php index b30002bfbee..dca3cfba430 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/core_totals_config.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/core_totals_config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/custom_totals_config.php b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/custom_totals_config.php index df40fa503b8..0816d8a7ac4 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/custom_totals_config.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/custom_totals_config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid.xml index d6c992257eb..4e3833f627b 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid.xml +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_duplicates.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_duplicates.xml index 4373ddfd59b..5deb1ee72bf 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_duplicates.xml +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_duplicates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_root_node.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_root_node.xml index bf1a7b1b17a..8c35a2705bd 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_root_node.xml +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_root_node.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_scope.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_scope.xml index c8c646169f0..0f1071b627f 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_scope.xml +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_scope.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_without_attributes.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_without_attributes.xml index a69b2bf55ed..c8eae54ebdd 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_without_attributes.xml +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_without_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_valid.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_valid.xml index c8c646169f0..0f1071b627f 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_valid.xml +++ b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_valid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Sales/Test/Unit/Model/ConfigTest.php index 42419d62a8c..30276afb47c 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ConfigTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model; diff --git a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportBestsellersDataTest.php b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportBestsellersDataTest.php index d14f41b2d9c..d4026149eee 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportBestsellersDataTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportBestsellersDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\CronJob; diff --git a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportInvoicedDataTest.php b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportInvoicedDataTest.php index 5cfc7955906..857d5ba7822 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportInvoicedDataTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportInvoicedDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\CronJob; diff --git a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportOrderDataTest.php b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportOrderDataTest.php index c0058dbcb23..e0402ddddcf 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportOrderDataTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportOrderDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\CronJob; diff --git a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportRefundedDataTest.php b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportRefundedDataTest.php index a9bf5e49c50..85d5c1e967a 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportRefundedDataTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportRefundedDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\CronJob; diff --git a/app/code/Magento/Sales/Test/Unit/Model/CronJob/CleanExpiredOrdersTest.php b/app/code/Magento/Sales/Test/Unit/Model/CronJob/CleanExpiredOrdersTest.php index e5dc2e0ed65..63ce9cdfd0b 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/CronJob/CleanExpiredOrdersTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/CronJob/CleanExpiredOrdersTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/DownloadTest.php b/app/code/Magento/Sales/Test/Unit/Model/DownloadTest.php index f5ac9462a0d..33d57fae04d 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/DownloadTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/DownloadTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model; diff --git a/app/code/Magento/Sales/Test/Unit/Model/EmailSenderHandlerTest.php b/app/code/Magento/Sales/Test/Unit/Model/EmailSenderHandlerTest.php index 3d78c60946a..98fdf25c6a3 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/EmailSenderHandlerTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/EmailSenderHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Grid/Child/CollectionUpdaterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Grid/Child/CollectionUpdaterTest.php index d079c5b42b6..f316680e558 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Grid/Child/CollectionUpdaterTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Grid/Child/CollectionUpdaterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Grid/CollectionUpdaterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Grid/CollectionUpdaterTest.php index 09a2fe0f8cb..f7578b8f085 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Grid/CollectionUpdaterTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Grid/CollectionUpdaterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/GridAsyncInsertTest.php b/app/code/Magento/Sales/Test/Unit/Model/GridAsyncInsertTest.php index f41d27da81c..a759edb0b51 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/GridAsyncInsertTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/GridAsyncInsertTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/IncrementTest.php b/app/code/Magento/Sales/Test/Unit/Model/IncrementTest.php index 4bff3b56f69..d98bcb08b3e 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/IncrementTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/IncrementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model; diff --git a/app/code/Magento/Sales/Test/Unit/Model/InvoiceOrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/InvoiceOrderTest.php index 1169e230e75..f40919928b8 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/InvoiceOrderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/InvoiceOrderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model; diff --git a/app/code/Magento/Sales/Test/Unit/Model/InvoiceRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/InvoiceRepositoryTest.php index 5c3d970d42f..845c6c44fc0 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/InvoiceRepositoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/InvoiceRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Address/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Address/ValidatorTest.php index d7e341a70d7..c95b0cdfea7 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Address/ValidatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Address/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Address; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/AddressRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/AddressRepositoryTest.php index d1aa65afd50..2c5c47253f3 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/AddressRepositoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/AddressRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/AddressTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/AddressTest.php index 394588a20be..74f5eaf724b 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/AddressTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/AddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Admin/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Admin/ItemTest.php index c2169b359ae..3580afae445 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Admin/ItemTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Admin/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Admin; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php index 7ee4f745cde..48005a9c2e6 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Comment/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Comment/ValidatorTest.php index e9b02d5c5de..78bcc90dcab 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Comment/ValidatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Comment/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Creditmemo\Comment; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Item/Validation/CreateQuantityValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Item/Validation/CreateQuantityValidatorTest.php index 1466a0f4fc9..5a06212deec 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Item/Validation/CreateQuantityValidatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Item/Validation/CreateQuantityValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Creditmemo\Item\Validation; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/ItemTest.php index ce579763767..1f239f42de3 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/ItemTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/RefundOperationTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/RefundOperationTest.php index 2c5173507d9..047b356404b 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/RefundOperationTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/RefundOperationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Sender/EmailSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Sender/EmailSenderTest.php index d1fe28b21b5..294d44d5039 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Sender/EmailSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Sender/EmailSenderTest.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Creditmemo\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/CostTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/CostTest.php index 83a3764dbf7..50d1fb6dfd4 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/CostTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/CostTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/DiscountTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/DiscountTest.php index 70177dd65af..b8e93168506 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/DiscountTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/DiscountTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/ShippingTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/ShippingTest.php index 44464facf19..dc5c17bca06 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/ShippingTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/ShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/SubtotalTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/SubtotalTest.php index 961204616c7..bc456d919c2 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/SubtotalTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/SubtotalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/TaxTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/TaxTest.php index 37244480a1b..7b0f9cb65bd 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/TaxTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/TaxTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Validation/QuantityValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Validation/QuantityValidatorTest.php index 838c062956c..80d61eb7ba6 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Validation/QuantityValidatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Validation/QuantityValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Creditmemo\Validation; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoDocumentFactoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoDocumentFactoryTest.php index 521167f10ae..2e1360cd943 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoDocumentFactoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoDocumentFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoNotifierTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoNotifierTest.php index 360c47fa956..368baa289de 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoNotifierTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoNotifierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoRepositoryTest.php index 52dc60dc70d..f8a0be08583 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoRepositoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoTest.php index 4dfb4224d94..72f1f07d4bf 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/CustomerManagementTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/CustomerManagementTest.php index d11db6da485..b9e09aa9bfa 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/CustomerManagementTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/CustomerManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoCommentIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoCommentIdentityTest.php index d73981211e1..450a03ce22d 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoCommentIdentityTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoCommentIdentityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoIdentityTest.php index 2e3d3e502e7..59174e45279 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoIdentityTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoIdentityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceCommentIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceCommentIdentityTest.php index 3bd0b3d632b..eb0d5d7debd 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceCommentIdentityTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceCommentIdentityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceIdentityTest.php index 9d44cb9c340..09f639e9adf 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceIdentityTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceIdentityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderCommentIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderCommentIdentityTest.php index 57bfe7ffa45..f18e1f6c0e2 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderCommentIdentityTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderCommentIdentityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderIdentityTest.php index 8761bc7d799..f01d0d9a422 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderIdentityTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderIdentityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentCommentIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentCommentIdentityTest.php index 1322b5cc302..803906bb530 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentCommentIdentityTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentCommentIdentityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentIdentityTest.php index ae3080f10bb..f897afa6348 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentIdentityTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentIdentityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/TemplateTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/TemplateTest.php index 4de87e49625..232aa719974 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/TemplateTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/TemplateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Container; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/AbstractSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/AbstractSenderTest.php index fe8f04e68d2..803d88538b4 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/AbstractSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/AbstractSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoCommentSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoCommentSenderTest.php index ca40d0f8683..a721731fd11 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoCommentSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoCommentSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoSenderTest.php index ede12b73223..cbd47bd90fd 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceCommentSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceCommentSenderTest.php index 07f2f6eb10b..ab80ad9da57 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceCommentSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceCommentSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceSenderTest.php index a5814915491..98058412ceb 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderCommentSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderCommentSenderTest.php index 52f82ed7b57..7aeab79ff0f 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderCommentSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderCommentSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderSenderTest.php index 2ad826262f9..b6b4c505897 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentCommentSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentCommentSenderTest.php index 137e9041065..7de45691ceb 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentCommentSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentCommentSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentSenderTest.php index 88711d289c2..5a4a91c441d 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/SenderBuilderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/SenderBuilderTest.php index bb44b4c877b..0c5b09bb9a9 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/SenderBuilderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/SenderBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Stub/TransportInterfaceMock.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Stub/TransportInterfaceMock.php index 5d3252798c3..41119950b06 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Stub/TransportInterfaceMock.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Stub/TransportInterfaceMock.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Email\Stub; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Massaction/ItemsUpdaterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Massaction/ItemsUpdaterTest.php index 9cebd7a1461..a1205af660e 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Massaction/ItemsUpdaterTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Massaction/ItemsUpdaterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Row/UrlGeneratorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Row/UrlGeneratorTest.php index 3bdf0bca7cd..e89ee927e70 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Row/UrlGeneratorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Row/UrlGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Comment/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Comment/ValidatorTest.php index 801d0bf0d56..96dffd331b3 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Comment/ValidatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Comment/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Invoice\Comment; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Grid/Row/UrlGeneratorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Grid/Row/UrlGeneratorTest.php index 90a997fc873..022783d9347 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Grid/Row/UrlGeneratorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Grid/Row/UrlGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/ItemTest.php index fcfd688a16c..35ef61d1ce6 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/ItemTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/PayOperationTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/PayOperationTest.php index 46246503ac9..9429e23b259 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/PayOperationTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/PayOperationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Invoice; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Plugin/AddressUpdateTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Plugin/AddressUpdateTest.php index 949ec38076d..0e8dc1645cc 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Plugin/AddressUpdateTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Plugin/AddressUpdateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Sender/EmailSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Sender/EmailSenderTest.php index 3a93c591725..c4b1edf449f 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Sender/EmailSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Sender/EmailSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Invoice\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/ShippingTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/ShippingTest.php index 243d9d9467c..67e89d89429 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/ShippingTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/ShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/TaxTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/TaxTest.php index 8f468a8eee4..9407a91b4dc 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/TaxTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/TaxTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Invoice\Total; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Validation/CanRefundTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Validation/CanRefundTest.php index 773f3b75c91..497cf4ccd8f 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Validation/CanRefundTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Validation/CanRefundTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Invoice\Validation; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceDocumentFactoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceDocumentFactoryTest.php index d054e0803a7..aafafb42585 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceDocumentFactoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceDocumentFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceNotifierTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceNotifierTest.php index a3149ef4da9..3f3aef30f56 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceNotifierTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceNotifierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceQuantityValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceQuantityValidatorTest.php index 8d800e12a6f..7cd379a520e 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceQuantityValidatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceQuantityValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceTest.php index a9870833654..2e753ace7d5 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemRepositoryTest.php index 48b99d5c55d..558db9dafc3 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemRepositoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php index 3d6ba772618..6552eb65704 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/InfoTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/InfoTest.php index 9bb5e47db94..c303e510c5b 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/InfoTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/InfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Operations/CaptureOperationTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Operations/CaptureOperationTest.php index 6a2c3912f24..304b2f2c107 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Operations/CaptureOperationTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Operations/CaptureOperationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/RepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/RepositoryTest.php index d5c893cbde9..b18d09cc7f0 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/RepositoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/RepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/AuthorizeCommandTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/AuthorizeCommandTest.php index ae75fcb8ee2..5ac52309c35 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/AuthorizeCommandTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/AuthorizeCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Payment\State; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/CaptureCommandTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/CaptureCommandTest.php index 50ddfe71325..40c105a75cf 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/CaptureCommandTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/CaptureCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Payment\State; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/BuilderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/BuilderTest.php index 34af81e0cf5..6f78ded4208 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/BuilderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/BuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/ManagerTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/ManagerTest.php index ebc9bab78d3..e4aa14a3cf1 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/ManagerTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/ManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/RepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/RepositoryTest.php index 4445317f31d..e860a626207 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/RepositoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/RepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/TransactionTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/TransactionTest.php index 296b627956a..c100a518bda 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/TransactionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/TransactionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentAdapterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentAdapterTest.php index c4ae85ceb68..5fde8efa984 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentAdapterTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentAdapterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentTest.php index 7f058b7c050..75df88a4c4e 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/AbstractTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/AbstractTest.php index 4041fd922f3..3e489db90cc 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/AbstractTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/AbstractTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Pdf; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ConverterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ConverterTest.php index 3adbb42d0f2..4134ffb1774 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ConverterTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Pdf\Config; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ReaderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ReaderTest.php index 6774d4ee0d9..3de5849c381 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ReaderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ReaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Pdf\Config; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/SchemaLocatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/SchemaLocatorTest.php index 5e852f35aeb..164932c5edb 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/SchemaLocatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/SchemaLocatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Pdf\Config; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/XsdTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/XsdTest.php index 6a091f2e45e..4f00c691cd9 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/XsdTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/XsdTest.php @@ -2,7 +2,7 @@ /** * Test for validation rules implemented by XSD schema for sales PDF rendering configuration * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Pdf\Config; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.php index 775d4a047e9..470ba409d0e 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ return [ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.xml b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.xml index f9ade4fa6b7..9fc56f3c236 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.xml +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_one.xml b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_one.xml index 47770047afe..a997e39a092 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_one.xml +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_one.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_two.xml b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_two.xml index ca7c178febe..8d132d09f8d 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_two.xml +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_two.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/ConfigTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/ConfigTest.php index 44148e20d5f..c00d7017e63 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/ConfigTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Pdf; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/InvoiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/InvoiceTest.php index c50e832989c..cc1cf6e532c 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/InvoiceTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/InvoiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Pdf; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Total/FactoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Total/FactoryTest.php index 14f3cc9b315..4dba87dcbab 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Total/FactoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Total/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Pdf\Total; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Comment/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Comment/ValidatorTest.php index e6826eeb6c6..9fe30b7115a 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Comment/ValidatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Comment/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Shipment\Comment; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/OrderRegistrarTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/OrderRegistrarTest.php index e5bff791edc..4d043550632 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/OrderRegistrarTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/OrderRegistrarTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Sender/EmailSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Sender/EmailSenderTest.php index 8373c7e57d0..914385950bb 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Sender/EmailSenderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Sender/EmailSenderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Shipment\Sender; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Track/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Track/ValidatorTest.php index 530d40945b4..f743568f383 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Track/ValidatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Track/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Shipment\Track; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/TrackTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/TrackTest.php index a9f5b1cd828..60f9f207011 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/TrackTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/TrackTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Shipment; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/QuantityValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/QuantityValidatorTest.php index 01cccd24586..0684ab0fa6c 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/QuantityValidatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/QuantityValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Shipment\Validation; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/TrackValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/TrackValidatorTest.php index 0d8d951ccf1..4d64af78654 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/TrackValidatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/TrackValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Shipment\Validation; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentDocumentFactoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentDocumentFactoryTest.php index b0677b050f6..bf334d8c4e7 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentDocumentFactoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentDocumentFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentFactoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentFactoryTest.php index 46d6ac62fc2..a2dcfbb99bc 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentFactoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentRepositoryTest.php index 4b87dcbd69a..fbe00fe65ca 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentRepositoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentTest.php index 132a06121a6..5d91d053dc7 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/StateResolverTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/StateResolverTest.php index a8624ce4812..f4d329cd393 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/StateResolverTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/StateResolverTest.php @@ -1,7 +1,7 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Status/History/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Status/History/ValidatorTest.php index d9eca493b26..d02ac77b580 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Status/History/ValidatorTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Status/History/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Status\History; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Status/HistoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Status/HistoryTest.php index 49b66eee2d9..8d947b68d91 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Status/HistoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Status/HistoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/StatusTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/StatusTest.php index 9ab886dab3e..b392fa80d28 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/StatusTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/StatusTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Total/Config/BaseTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Total/Config/BaseTest.php index bd519e76585..4a1d977f039 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Total/Config/BaseTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Total/Config/BaseTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Total\Config; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanInvoiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanInvoiceTest.php index dd76bc1e525..158b743392d 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanInvoiceTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanInvoiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanRefundTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanRefundTest.php index 0b4246d4694..7539786a71f 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanRefundTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanRefundTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Order\Validation; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanShipTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanShipTest.php index 11d99fbb9cc..107a67e1a2b 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanShipTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanShipTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/OrderNotifierTest.php b/app/code/Magento/Sales/Test/Unit/Model/OrderNotifierTest.php index 2a211043361..8cba7926114 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/OrderNotifierTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/OrderNotifierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/OrderRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/OrderRepositoryTest.php index f6bc3459c0c..fe82efe8895 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/OrderRepositoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/OrderRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model; diff --git a/app/code/Magento/Sales/Test/Unit/Model/OrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/OrderTest.php index 9ed76a9bce6..fccaa6e0a78 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/OrderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/OrderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model; diff --git a/app/code/Magento/Sales/Test/Unit/Model/RefundInvoiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/RefundInvoiceTest.php index d249f039a14..bcc6836b452 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/RefundInvoiceTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/RefundInvoiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model; diff --git a/app/code/Magento/Sales/Test/Unit/Model/RefundOrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/RefundOrderTest.php index 4b61453e3c6..21c96f5a68a 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/RefundOrderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/RefundOrderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/AttributeTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/AttributeTest.php index ff2e492df8d..e5fde8fdae4 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/AttributeTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/AttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/GridPoolTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/GridPoolTest.php index 75f5e0319bd..f9b09260c45 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/GridPoolTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/GridPoolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/HelperTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/HelperTest.php index a27a6f727f5..f760711d7de 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/HelperTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/HelperTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/AddressTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/AddressTest.php index f2a2184f731..1d62cc1ca3d 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/AddressTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/AddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel\Order; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/CommentTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/CommentTest.php index 05a940be5fa..374715511e2 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/CommentTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/CommentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel\Order\Creditmemo; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/Relation/RefundTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/Relation/RefundTest.php index a83053d3433..9c367de8b78 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/Relation/RefundTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/Relation/RefundTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel\Order\Creditmemo\Relation; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/RelationTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/RelationTest.php index 324a8a3c108..29309b70577 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/RelationTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/RelationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/AddressTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/AddressTest.php index c257ad3b889..d67dcfd5312 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/AddressTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/AddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel\Order\Handler; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/StateTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/StateTest.php index bde73d06c67..f49e1685235 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/StateTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/StateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel\Order\Handler; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/CommentTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/CommentTest.php index e94ba626bd5..afaa800964a 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/CommentTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/CommentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel\Order\Invoice; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/RelationTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/RelationTest.php index e2e8a017636..587b908487f 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/RelationTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/RelationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Plugin/AuthorizationTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Plugin/AuthorizationTest.php index eeee0b2b910..2ca82215f6b 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Plugin/AuthorizationTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Plugin/AuthorizationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel\Order\Plugin; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/RelationTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/RelationTest.php index 5592beaee55..de74d821380 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/RelationTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/RelationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/CommentTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/CommentTest.php index d7dc8dc8b81..c4d0d56c25c 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/CommentTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/CommentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel\Order\Shipment; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/RelationTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/RelationTest.php index a8193181f3d..0b1672ebf09 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/RelationTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/RelationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/TrackTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/TrackTest.php index 1dece779b52..20c5feef0e1 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/TrackTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/TrackTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel\Order\Shipment; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/History/CollectionTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/History/CollectionTest.php index a5d02ffeb57..ae0ba3d2eba 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/History/CollectionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/History/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/HistoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/HistoryTest.php index ef231c823a4..c73dbd65ceb 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/HistoryTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/HistoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel\Order\Status; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/StatusTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/StatusTest.php index af19010b19f..27e2f30b088 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/StatusTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/StatusTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Tax/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Tax/ItemTest.php index e88e4cbbe62..7f315826ca9 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Tax/ItemTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Tax/ItemTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel\Order\Tax; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/OrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/OrderTest.php index 17423c4c239..5c54ce6153a 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/OrderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/OrderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Rss/NewOrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Rss/NewOrderTest.php index 42fe9a1402e..8fd26bf219c 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Rss/NewOrderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Rss/NewOrderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Rss; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Rss/OrderStatusTest.php b/app/code/Magento/Sales/Test/Unit/Model/Rss/OrderStatusTest.php index 2272f97777b..fb12319495f 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Rss/OrderStatusTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Rss/OrderStatusTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Rss; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Service/CreditmemoServiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Service/CreditmemoServiceTest.php index 04b4c7b8b24..91eb64d3825 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Service/CreditmemoServiceTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Service/CreditmemoServiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Service; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Service/InvoiceServiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Service/InvoiceServiceTest.php index c28f0b562cb..f320d7b1631 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Service/InvoiceServiceTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Service/InvoiceServiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Service; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Service/OrderServiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Service/OrderServiceTest.php index 442f01d4214..3f7c0cb0e6b 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Service/OrderServiceTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Service/OrderServiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Service; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Service/ShipmentServiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Service/ShipmentServiceTest.php index e8e56fe9677..8fed331adcd 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Service/ShipmentServiceTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Service/ShipmentServiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Service; diff --git a/app/code/Magento/Sales/Test/Unit/Model/ShipOrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/ShipOrderTest.php index 1daf7a64263..38101820005 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/ShipOrderTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/ShipOrderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model; diff --git a/app/code/Magento/Sales/Test/Unit/Model/Status/ListStatusTest.php b/app/code/Magento/Sales/Test/Unit/Model/Status/ListStatusTest.php index bd0d2848c38..2b834980197 100644 --- a/app/code/Magento/Sales/Test/Unit/Model/Status/ListStatusTest.php +++ b/app/code/Magento/Sales/Test/Unit/Model/Status/ListStatusTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Model\Status; diff --git a/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogPriceRuleTest.php b/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogPriceRuleTest.php index fa600279910..e44b331360b 100644 --- a/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogPriceRuleTest.php +++ b/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogPriceRuleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Observer\Backend; diff --git a/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogProductSaveAfterObserverTest.php b/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogProductSaveAfterObserverTest.php index 15e99dac268..18fec9a3574 100644 --- a/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogProductSaveAfterObserverTest.php +++ b/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogProductSaveAfterObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Observer\Backend; diff --git a/app/code/Magento/Sales/Test/Unit/Observer/Backend/SubtractQtyFromQuotesObserverTest.php b/app/code/Magento/Sales/Test/Unit/Observer/Backend/SubtractQtyFromQuotesObserverTest.php index 7acbe15c216..a6ed4401c89 100644 --- a/app/code/Magento/Sales/Test/Unit/Observer/Backend/SubtractQtyFromQuotesObserverTest.php +++ b/app/code/Magento/Sales/Test/Unit/Observer/Backend/SubtractQtyFromQuotesObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Observer\Backend; diff --git a/app/code/Magento/Sales/Test/Unit/Observer/Frontend/AddVatRequestParamsOrderCommentTest.php b/app/code/Magento/Sales/Test/Unit/Observer/Frontend/AddVatRequestParamsOrderCommentTest.php index e65d28d9128..652e6318104 100644 --- a/app/code/Magento/Sales/Test/Unit/Observer/Frontend/AddVatRequestParamsOrderCommentTest.php +++ b/app/code/Magento/Sales/Test/Unit/Observer/Frontend/AddVatRequestParamsOrderCommentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Observer\Frontend; diff --git a/app/code/Magento/Sales/Test/Unit/Observer/Frontend/RestoreCustomerGroupIdTest.php b/app/code/Magento/Sales/Test/Unit/Observer/Frontend/RestoreCustomerGroupIdTest.php index 62596621c51..7c41769279c 100644 --- a/app/code/Magento/Sales/Test/Unit/Observer/Frontend/RestoreCustomerGroupIdTest.php +++ b/app/code/Magento/Sales/Test/Unit/Observer/Frontend/RestoreCustomerGroupIdTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Observer\Frontend; diff --git a/app/code/Magento/Sales/Test/Unit/Observer/GridProcessAddressChangeTest.php b/app/code/Magento/Sales/Test/Unit/Observer/GridProcessAddressChangeTest.php index 9c3350ac8b4..cda6f0ae10b 100644 --- a/app/code/Magento/Sales/Test/Unit/Observer/GridProcessAddressChangeTest.php +++ b/app/code/Magento/Sales/Test/Unit/Observer/GridProcessAddressChangeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Observer/GridSyncInsertObserverTest.php b/app/code/Magento/Sales/Test/Unit/Observer/GridSyncInsertObserverTest.php index 25bed6adda6..6c8cf85b340 100644 --- a/app/code/Magento/Sales/Test/Unit/Observer/GridSyncInsertObserverTest.php +++ b/app/code/Magento/Sales/Test/Unit/Observer/GridSyncInsertObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Observer/GridSyncRemoveObserverTest.php b/app/code/Magento/Sales/Test/Unit/Observer/GridSyncRemoveObserverTest.php index e3fd9285ae3..3206388358c 100644 --- a/app/code/Magento/Sales/Test/Unit/Observer/GridSyncRemoveObserverTest.php +++ b/app/code/Magento/Sales/Test/Unit/Observer/GridSyncRemoveObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/DataProvider/DocumentTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/DataProvider/DocumentTest.php index 5528999d1ad..e6b4856f89c 100644 --- a/app/code/Magento/Sales/Test/Unit/Ui/Component/DataProvider/DocumentTest.php +++ b/app/code/Magento/Sales/Test/Unit/Ui/Component/DataProvider/DocumentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/AddressTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/AddressTest.php index bfd7c1520dd..c527c24a326 100644 --- a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/AddressTest.php +++ b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/AddressTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/CustomerGroupTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/CustomerGroupTest.php index 0f58d5f44de..54cc3492b4e 100644 --- a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/CustomerGroupTest.php +++ b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/CustomerGroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PaymentMethodTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PaymentMethodTest.php index 5db1227f0b5..83382920b70 100644 --- a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PaymentMethodTest.php +++ b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PaymentMethodTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PriceTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PriceTest.php index 22387aee3f9..38e22167568 100644 --- a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PriceTest.php +++ b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PurchasedPriceTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PurchasedPriceTest.php index 1077392b387..4c64f442f47 100644 --- a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PurchasedPriceTest.php +++ b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PurchasedPriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/Status/OptionsTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/Status/OptionsTest.php index fb7f22149f5..d534f7cc3e0 100644 --- a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/Status/OptionsTest.php +++ b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/Status/OptionsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Ui\Component\Listing\Column\Status; diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/StatusTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/StatusTest.php index 268704008c5..6702cb77985 100644 --- a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/StatusTest.php +++ b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/StatusTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/ViewActionTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/ViewActionTest.php index 14e823637e9..03c3b452185 100644 --- a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/ViewActionTest.php +++ b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/ViewActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Test\Unit\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Ui/Component/Control/PdfAction.php b/app/code/Magento/Sales/Ui/Component/Control/PdfAction.php index 4839f387b88..75b233f49a8 100644 --- a/app/code/Magento/Sales/Ui/Component/Control/PdfAction.php +++ b/app/code/Magento/Sales/Ui/Component/Control/PdfAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Control; diff --git a/app/code/Magento/Sales/Ui/Component/DataProvider/Document.php b/app/code/Magento/Sales/Ui/Component/DataProvider/Document.php index ce74beac76f..f67ea5eed3b 100644 --- a/app/code/Magento/Sales/Ui/Component/DataProvider/Document.php +++ b/app/code/Magento/Sales/Ui/Component/DataProvider/Document.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\DataProvider; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Address.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Address.php index 1a10eec1ffc..3aefe274934 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/Address.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State.php index 0be8f564cb7..3767190c89f 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column\Creditmemo; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State/Options.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State/Options.php index 1daa25f6a35..081c4e8e831 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State/Options.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column\Creditmemo\State; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/CustomerGroup.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/CustomerGroup.php index 9d7e69b2645..7589dc09a32 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/CustomerGroup.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/CustomerGroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State.php index 02cb90b633f..dd04fd61137 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column\Invoice; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State/Options.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State/Options.php index 7d275755d59..c48bfcab207 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State/Options.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column\Invoice\State; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/PaymentMethod.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/PaymentMethod.php index 7d3dd2d3b32..749ef4f946d 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/PaymentMethod.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/PaymentMethod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Price.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Price.php index a1aec704527..8f518df4353 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/Price.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/PurchasedPrice.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/PurchasedPrice.php index c26d75c4ca7..053a975e2fd 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/PurchasedPrice.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/PurchasedPrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Status.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Status.php index 2bc80c1cfae..a4577bd8ef3 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/Status.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Status/Options.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Status/Options.php index be5a4cea2a7..b638fd60f9c 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/Status/Options.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/Status/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column\Status; diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/ViewAction.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/ViewAction.php index d0f2728a18e..0d041f3b35a 100644 --- a/app/code/Magento/Sales/Ui/Component/Listing/Column/ViewAction.php +++ b/app/code/Magento/Sales/Ui/Component/Listing/Column/ViewAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Sales/etc/acl.xml b/app/code/Magento/Sales/etc/acl.xml index b12c7e5a169..276cef443b0 100644 --- a/app/code/Magento/Sales/etc/acl.xml +++ b/app/code/Magento/Sales/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/adminhtml/di.xml b/app/code/Magento/Sales/etc/adminhtml/di.xml index d15c01b5f9a..5beb8de6d04 100644 --- a/app/code/Magento/Sales/etc/adminhtml/di.xml +++ b/app/code/Magento/Sales/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/adminhtml/events.xml b/app/code/Magento/Sales/etc/adminhtml/events.xml index 1cb9401671d..0249dce1e4d 100644 --- a/app/code/Magento/Sales/etc/adminhtml/events.xml +++ b/app/code/Magento/Sales/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/adminhtml/menu.xml b/app/code/Magento/Sales/etc/adminhtml/menu.xml index cca6e1d0730..5ad5e0887fb 100644 --- a/app/code/Magento/Sales/etc/adminhtml/menu.xml +++ b/app/code/Magento/Sales/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/adminhtml/routes.xml b/app/code/Magento/Sales/etc/adminhtml/routes.xml index 2f63f7c4c37..df9b84e6160 100644 --- a/app/code/Magento/Sales/etc/adminhtml/routes.xml +++ b/app/code/Magento/Sales/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/adminhtml/system.xml b/app/code/Magento/Sales/etc/adminhtml/system.xml index 114349ed776..7056c41ecb8 100644 --- a/app/code/Magento/Sales/etc/adminhtml/system.xml +++ b/app/code/Magento/Sales/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/catalog_attributes.xml b/app/code/Magento/Sales/etc/catalog_attributes.xml index 50bf8636cfd..3fef995ae1b 100644 --- a/app/code/Magento/Sales/etc/catalog_attributes.xml +++ b/app/code/Magento/Sales/etc/catalog_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/config.xml b/app/code/Magento/Sales/etc/config.xml index 4d94cec460e..3961f19f2cf 100644 --- a/app/code/Magento/Sales/etc/config.xml +++ b/app/code/Magento/Sales/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/crontab.xml b/app/code/Magento/Sales/etc/crontab.xml index dfc5c955e37..ec87dbc21f3 100644 --- a/app/code/Magento/Sales/etc/crontab.xml +++ b/app/code/Magento/Sales/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/di.xml b/app/code/Magento/Sales/etc/di.xml index eb392fc83d8..88e72e2b8a3 100644 --- a/app/code/Magento/Sales/etc/di.xml +++ b/app/code/Magento/Sales/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/email_templates.xml b/app/code/Magento/Sales/etc/email_templates.xml index 28ef57751b2..52127bf90f5 100644 --- a/app/code/Magento/Sales/etc/email_templates.xml +++ b/app/code/Magento/Sales/etc/email_templates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/events.xml b/app/code/Magento/Sales/etc/events.xml index be9fcb6656a..464f5a615b8 100644 --- a/app/code/Magento/Sales/etc/events.xml +++ b/app/code/Magento/Sales/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/extension_attributes.xml b/app/code/Magento/Sales/etc/extension_attributes.xml index 1c8f75ca28b..8c43f2665eb 100644 --- a/app/code/Magento/Sales/etc/extension_attributes.xml +++ b/app/code/Magento/Sales/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/fieldset.xml b/app/code/Magento/Sales/etc/fieldset.xml index d02b099208a..563ab2ab603 100644 --- a/app/code/Magento/Sales/etc/fieldset.xml +++ b/app/code/Magento/Sales/etc/fieldset.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/frontend/di.xml b/app/code/Magento/Sales/etc/frontend/di.xml index 08c466c5ad9..a01b6f759eb 100644 --- a/app/code/Magento/Sales/etc/frontend/di.xml +++ b/app/code/Magento/Sales/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/frontend/events.xml b/app/code/Magento/Sales/etc/frontend/events.xml index 33be4fdd722..e790d069bed 100644 --- a/app/code/Magento/Sales/etc/frontend/events.xml +++ b/app/code/Magento/Sales/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/frontend/page_types.xml b/app/code/Magento/Sales/etc/frontend/page_types.xml index d8069d7714f..ceecbd9a86c 100644 --- a/app/code/Magento/Sales/etc/frontend/page_types.xml +++ b/app/code/Magento/Sales/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/frontend/routes.xml b/app/code/Magento/Sales/etc/frontend/routes.xml index 0024f739615..5e626205b4a 100644 --- a/app/code/Magento/Sales/etc/frontend/routes.xml +++ b/app/code/Magento/Sales/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/frontend/sections.xml b/app/code/Magento/Sales/etc/frontend/sections.xml index 950655ce896..acb884723b4 100644 --- a/app/code/Magento/Sales/etc/frontend/sections.xml +++ b/app/code/Magento/Sales/etc/frontend/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/module.xml b/app/code/Magento/Sales/etc/module.xml index 980395e965e..ead636db9e3 100644 --- a/app/code/Magento/Sales/etc/module.xml +++ b/app/code/Magento/Sales/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/pdf.xml b/app/code/Magento/Sales/etc/pdf.xml index 566afd7db68..47042e6ebd4 100644 --- a/app/code/Magento/Sales/etc/pdf.xml +++ b/app/code/Magento/Sales/etc/pdf.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/pdf.xsd b/app/code/Magento/Sales/etc/pdf.xsd index 67828e47564..57b532ad3a2 100644 --- a/app/code/Magento/Sales/etc/pdf.xsd +++ b/app/code/Magento/Sales/etc/pdf.xsd @@ -3,7 +3,7 @@ /** * XSD for an XML, composed as result of merging all config files with PDF settings * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/pdf_file.xsd b/app/code/Magento/Sales/etc/pdf_file.xsd index 2acddbb8fa5..29df3f46d2c 100644 --- a/app/code/Magento/Sales/etc/pdf_file.xsd +++ b/app/code/Magento/Sales/etc/pdf_file.xsd @@ -3,7 +3,7 @@ /** * XSD for an individual file with PDF settings * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/resources.xml b/app/code/Magento/Sales/etc/resources.xml index f967588fbee..9c7afa995c3 100644 --- a/app/code/Magento/Sales/etc/resources.xml +++ b/app/code/Magento/Sales/etc/resources.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/sales.xml b/app/code/Magento/Sales/etc/sales.xml index 070a6069f0b..589e5d64861 100644 --- a/app/code/Magento/Sales/etc/sales.xml +++ b/app/code/Magento/Sales/etc/sales.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/sales.xsd b/app/code/Magento/Sales/etc/sales.xsd index 678bd9cc698..6d62b3fb1ef 100644 --- a/app/code/Magento/Sales/etc/sales.xsd +++ b/app/code/Magento/Sales/etc/sales.xsd @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/webapi.xml b/app/code/Magento/Sales/etc/webapi.xml index b2a88b8cad7..85c2182c1f5 100644 --- a/app/code/Magento/Sales/etc/webapi.xml +++ b/app/code/Magento/Sales/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/webapi_rest/di.xml b/app/code/Magento/Sales/etc/webapi_rest/di.xml index 259d71e1380..9d6766fadcc 100644 --- a/app/code/Magento/Sales/etc/webapi_rest/di.xml +++ b/app/code/Magento/Sales/etc/webapi_rest/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/webapi_rest/events.xml b/app/code/Magento/Sales/etc/webapi_rest/events.xml index 33be4fdd722..e790d069bed 100644 --- a/app/code/Magento/Sales/etc/webapi_rest/events.xml +++ b/app/code/Magento/Sales/etc/webapi_rest/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/webapi_soap/di.xml b/app/code/Magento/Sales/etc/webapi_soap/di.xml index 259d71e1380..9d6766fadcc 100644 --- a/app/code/Magento/Sales/etc/webapi_soap/di.xml +++ b/app/code/Magento/Sales/etc/webapi_soap/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/webapi_soap/events.xml b/app/code/Magento/Sales/etc/webapi_soap/events.xml index 33be4fdd722..e790d069bed 100644 --- a/app/code/Magento/Sales/etc/webapi_soap/events.xml +++ b/app/code/Magento/Sales/etc/webapi_soap/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/etc/widget.xml b/app/code/Magento/Sales/etc/widget.xml index 5a0c9da1a6b..73a651a1c45 100644 --- a/app/code/Magento/Sales/etc/widget.xml +++ b/app/code/Magento/Sales/etc/widget.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/registration.php b/app/code/Magento/Sales/registration.php index 18521d9d29c..3dab7bf893e 100644 --- a/app/code/Magento/Sales/registration.php +++ b/app/code/Magento/Sales/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/layout/customer_index_edit.xml b/app/code/Magento/Sales/view/adminhtml/layout/customer_index_edit.xml index 1286d85988b..e2d53901f6c 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/customer_index_edit.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/customer_index_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportcsv.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportcsv.xml index 0198d171706..f8004598ad9 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportcsv.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportcsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportexcel.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportexcel.xml index 0198d171706..f8004598ad9 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportexcel.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_grid.xml index eca54fd6621..051bfadf72f 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_index.xml index 82764c908d0..dabfb299f3b 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_index.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_item_price.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_item_price.xml index cecddf978e3..ca4ffb0e720 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_item_price.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_item_price.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportcsv.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportcsv.xml index 08e368f49a8..187ed6b7071 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportcsv.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportcsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportexcel.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportexcel.xml index 08e368f49a8..187ed6b7071 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportexcel.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_grid.xml index 9104253b9ff..7a1b43178d4 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_index.xml index 38e690b74b6..0598a9f9be6 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_index.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_item_price.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_item_price.xml index 6b242baa1fc..9f3e89df13f 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_item_price.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_item_price.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_addcomment.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_addcomment.xml index f61cafa6c5b..3ea719f1d21 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_addcomment.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_addcomment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_address.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_address.xml index 6f3ebefc38b..b499db59189 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_address.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_address.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_customer_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_customer_block.xml index 73add56e7e6..7a28dc1e2b8 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_customer_block.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_customer_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_index.xml index 6acb23ab091..f6a1e61c2b8 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_index.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_item_price.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_item_price.xml index 7eb0e126ba7..6c662939e1a 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_item_price.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_item_price.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_address.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_address.xml index 855d6d1dd99..28ace525260 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_address.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_address.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml index 580f93a3468..2da51a9c68c 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_comment.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_comment.xml index 7f719f923b8..118fc08e664 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_comment.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_comment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_customer_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_customer_grid.xml index ff7c957bbde..6672710be8d 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_customer_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_customer_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_data.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_data.xml index e0922b7fffb..79bff3ecfb5 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_data.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_data.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_form_account.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_form_account.xml index 847e707a819..2a0c005ef6e 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_form_account.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_form_account.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_giftmessage.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_giftmessage.xml index dd79b30c100..135c315c636 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_giftmessage.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_giftmessage.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_header.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_header.xml index 48073267bd3..9e4568cb1e7 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_header.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_header.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_items.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_items.xml index 36404770b08..5250aa47dca 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_items.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_items.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_json.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_json.xml index cdef2f8a40e..09ba1234e77 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_json.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_json.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_message.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_message.xml index f2b5fa8abaf..604bc8531e5 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_message.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_message.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_newsletter.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_newsletter.xml index 6d8fd669797..c2afe642cf7 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_newsletter.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_newsletter.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_plain.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_plain.xml index f8a716806e1..6c6a785f896 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_plain.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_plain.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search.xml index 0c055ee6db8..d175c7b5978 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search_grid.xml index e6cf5833df0..d004d626a87 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_address.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_address.xml index 9c5a69c52f8..3afc09e1af0 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_address.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_address.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_method.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_method.xml index 17e1db8d977..eef5cdbaf74 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_method.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_method.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar.xml index 306e329c5a6..bce15a03ee4 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_cart.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_cart.xml index 4ad67913529..65ca72856c0 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_cart.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_cart.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_compared.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_compared.xml index 2922829e249..b6a9abc2df8 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_compared.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_compared.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pcompared.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pcompared.xml index 54c0125e72d..7c53428ba9e 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pcompared.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pcompared.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pviewed.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pviewed.xml index f1a4f4ff64a..d930927729b 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pviewed.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pviewed.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_reorder.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_reorder.xml index f05223234ab..a0cd430b0b5 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_reorder.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_reorder.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_viewed.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_viewed.xml index cc75faf5611..7a113b23839 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_viewed.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_viewed.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_wishlist.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_wishlist.xml index 4c5f859d622..7c1050d4be4 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_wishlist.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_wishlist.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_totals.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_totals.xml index 93944b08f50..f1ff1815664 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_totals.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_totals.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_addcomment.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_addcomment.xml index 1e72bedebbd..b98446dae06 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_addcomment.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_addcomment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_grid_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_grid_block.xml index 13ec4226551..9400b29f7ff 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_grid_block.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_new.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_new.xml index 2ca1a3aa5be..d108cacfd39 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_new.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml index 291e8c06036..23bc6a4124e 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_view.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_view.xml index a6ee27119d0..c4c16653b82 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_view.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemos.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemos.xml index 57d4a2a3390..9a46191f052 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemos.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemos.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_edit_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_edit_index.xml index 07994fedd2c..e1d61e0c614 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_edit_index.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_edit_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportcsv.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportcsv.xml index 6354cc30659..fd80e3995d8 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportcsv.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportcsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportexcel.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportexcel.xml index 6354cc30659..fd80e3995d8 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportexcel.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_grid.xml index f7a86f08cf6..1c67e0692bf 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_index.xml index c3eec0aaa91..2ff2fe88f8d 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_index.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_addcomment.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_addcomment.xml index a375ea42bc2..d4b08f2ea7f 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_addcomment.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_addcomment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_grid_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_grid_block.xml index de8d290b576..efba38d3ccb 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_grid_block.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_new.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_new.xml index 895d5b4abf0..783b3e674ba 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_new.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_updateqty.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_updateqty.xml index 11ef1a132f1..5fcd72d1c4c 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_updateqty.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_updateqty.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_view.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_view.xml index be427caed41..f9b115c8d3b 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_view.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoices.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoices.xml index dd1615f344c..da479bafef7 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoices.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoices.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_item_price.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_item_price.xml index 67a4b0af311..68bc52fe220 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_item_price.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_item_price.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipment_grid_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipment_grid_block.xml index efddae89697..de4ef7c222e 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipment_grid_block.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipment_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipments.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipments.xml index 4c2c4793c81..b58bd597047 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipments.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipments.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_assign.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_assign.xml index 5bef1d6ae04..7038803db29 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_assign.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_assign.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_edit.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_edit.xml index a83805367ce..7ca0c87b41a 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_edit.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_index.xml index 6929c7ad996..f1744a3bcee 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_index.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_new.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_new.xml index 1d7441c1994..40d8d19e1c1 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_new.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions.xml index 10686926f9e..4857eb26f6b 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions_grid_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions_grid_block.xml index 0e47a4e165b..42cd58e6b95 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions_grid_block.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_view.xml index 28d8fee45cd..f4b2ce3fabe 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_view.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportcsv.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportcsv.xml index 376d64327f0..b3c090f2eaf 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportcsv.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportcsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportexcel.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportexcel.xml index 376d64327f0..b3c090f2eaf 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportexcel.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_index.xml index 1f486804391..8183382c1b6 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_index.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -12,4 +12,4 @@ <uiComponent name="sales_order_shipment_grid"/> </referenceContainer> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_transaction_child_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_transaction_child_block.xml index 5c4254b66eb..98aa355da79 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_transaction_child_block.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_transaction_child_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid.xml index eda1fe96f8b..3e66985f7d6 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid_block.xml index 269651ef3b2..dfa2566ae02 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid_block.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_index.xml index 1bc6165f61a..7de682f5a70 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_index.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_view.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_view.xml index ec1719d8ece..868f1260f7d 100644 --- a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_view.xml +++ b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/requirejs-config.js b/app/code/Magento/Sales/view/adminhtml/requirejs-config.js index 56b989f47f8..6ecf955f48c 100644 --- a/app/code/Magento/Sales/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/Sales/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { orderEditDialog: 'Magento_Sales/order/edit/message' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/column/name.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/column/name.phtml index 2cb1b307678..c3235d31318 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/items/column/name.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/items/column/name.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/column/qty.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/column/qty.phtml index 63f6896ce94..97bc19faa20 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/items/column/qty.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/items/column/qty.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/price/row.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/price/row.phtml index 62d9a467294..63dd4a72c19 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/items/price/row.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/items/price/row.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/price/total.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/price/total.phtml index 362ac0acbab..5cf914862b6 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/items/price/total.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/items/price/total.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/price/unit.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/price/unit.phtml index c70b1562256..7f036ecdeea 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/items/price/unit.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/items/price/unit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/renderer/default.phtml index 1d7d51a4a9c..f7221476e2f 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/items/renderer/default.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/address/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/address/form.phtml index b2b7abf77ac..9bd8df7eed0 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/address/form.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/address/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/comments/view.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/comments/view.phtml index fcf1e4695b5..1437148f187 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/comments/view.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/comments/view.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/abstract.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/abstract.phtml index 75532c9df5c..9e0e74b2871 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/abstract.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/abstract.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/billing/method/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/billing/method/form.phtml index 4a9af33449b..e57b6bedb77 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/billing/method/form.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/billing/method/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/comment.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/comment.phtml index 4e71b1f7fd8..f4908a64d8b 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/comment.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/comment.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/coupons/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/coupons/form.phtml index f2c265b4e4c..7675c4e95c3 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/coupons/form.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/coupons/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/data.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/data.phtml index 4d2352e742e..a74ca8810c7 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/data.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/data.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/form.phtml index fe212490a2f..4b8ea840dd2 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/form.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/account.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/account.phtml index eb5dd897e7e..56d1a3ed243 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/account.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/account.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/address.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/address.phtml index 66b229a27f6..ddf739a2246 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/address.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/address.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/giftmessage.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/giftmessage.phtml index 1600431e340..55ba64936ff 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/giftmessage.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/giftmessage.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items.phtml index e4ee2f09ddd..66707eb6c04 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/grid.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/grid.phtml index 0c9c2dd2271..eaf67a80709 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/grid.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/grid.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/row.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/row.phtml index d27450ba20a..ca1d6fcfc66 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/row.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/row.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/total.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/total.phtml index dd66ed12deb..91f357a947f 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/total.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/total.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/unit.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/unit.phtml index 54e42bc4aeb..5b7a1885ddc 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/unit.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/unit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/js.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/js.phtml index 3ae582d8f01..3b86b176aec 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/js.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/newsletter/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/newsletter/form.phtml index 1cbfe9d2998..8ff62cf3ddf 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/newsletter/form.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/newsletter/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/shipping/method/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/shipping/method/form.phtml index dd7433cc4f0..38a178140e5 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/shipping/method/form.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/shipping/method/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar.phtml index 490181d36ff..b3c8ab20af0 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar/items.phtml index a8ccf82c5fe..44af40cd56e 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar/items.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/store/select.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/store/select.phtml index 25878fb5aa2..636013c1fb0 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/store/select.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/store/select.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals.phtml index 608e1c31aa8..57f1c1b23bc 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/default.phtml index 6630cebd327..c51f76528b4 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/default.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/grandtotal.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/grandtotal.phtml index ec5964b3378..cc4f2583361 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/grandtotal.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/grandtotal.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/shipping.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/shipping.phtml index a51b7aeaea6..f4fbc574a42 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/shipping.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/shipping.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/subtotal.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/subtotal.phtml index a3065f0065f..0f2fc4abb08 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/subtotal.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/subtotal.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/tax.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/tax.phtml index acf10ccbaa0..85971433d1c 100755 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/tax.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/tax.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/form.phtml index de12a7eb479..b88a2dd4367 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/form.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items.phtml index 9e057de3c77..38c6a24de16 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items/renderer/default.phtml index ed01fd2bc1a..d1a6f809e4c 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items/renderer/default.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/totals/adjustments.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/totals/adjustments.phtml index adbb6215131..71d7b5657f0 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/totals/adjustments.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/totals/adjustments.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/form.phtml index 8f3eb6cfd4e..660dff9f3fb 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/form.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items.phtml index 574a4f2f866..3209aaf8913 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items/renderer/default.phtml index ec2a6d777bc..d74c20411c7 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items/renderer/default.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/details.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/details.phtml index 0ab30606f7c..a481dad5cc2 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/details.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/details.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/giftoptions.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/giftoptions.phtml index 13637ff020c..64eb0455a95 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/giftoptions.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/giftoptions.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/form.phtml index ed5eacd4d03..1379a1bc480 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/form.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items.phtml index bfa18650244..722aac2d75a 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items/renderer/default.phtml index ef79b1df9c1..3e89e56cb19 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items/renderer/default.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/form.phtml index 3a82e85db6d..f662a1a610c 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/form.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items.phtml index 70d502bf1e1..7b10b636c44 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items/renderer/default.phtml index 6edee6e2017..8ff83f2f44c 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items/renderer/default.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totalbar.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totalbar.phtml index d1142e2ff25..de06a83deb7 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totalbar.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totalbar.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals.phtml index 7d83b0d9fd6..f64842cc616 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totals.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totals.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/discount.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/discount.phtml index 8b7d7cb9bd5..5e5c717798a 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/discount.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/discount.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/due.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/due.phtml index 5d83ed14b98..39a9b757f1b 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/due.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/due.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/footer.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/footer.phtml index 3681f4c80c8..f13bf2ea117 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/footer.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/footer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/grand.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/grand.phtml index 944d2ed4a28..5823490671f 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/grand.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/grand.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/item.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/item.phtml index 1866fd88866..2416cadd5bc 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/item.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/item.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/main.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/main.phtml index 86e43554f3b..a0115518d9e 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/main.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/main.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/paid.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/paid.phtml index c94cd301742..0940773b7f0 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/paid.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/paid.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/refunded.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/refunded.phtml index 560c6c84935..53b98a093bd 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/refunded.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/refunded.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/shipping.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/shipping.phtml index 3f2458894d3..14511bb339c 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/shipping.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/shipping.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/tax.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/tax.phtml index 6cb917980a2..e0c2fdd12f0 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/tax.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/tax.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/form.phtml index fbaa2bb3e2d..de0db9ebb93 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/view/form.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/view/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/giftmessage.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/giftmessage.phtml index bb7c20de14f..c4802c66977 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/view/giftmessage.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/view/giftmessage.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/history.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/history.phtml index b08f55a6129..fbe843cb24b 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/view/history.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/view/history.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/info.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/info.phtml index 20cfcdeadf2..bfe1bb729be 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/view/info.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/view/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/items.phtml index df8a21240a1..71b27dd966b 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/view/items.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/view/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/items/renderer/default.phtml index da951dc3b08..41db8da32d7 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/view/items/renderer/default.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/view/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/history.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/history.phtml index fb3b2871f43..ce03602c94d 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/history.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/history.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/info.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/info.phtml index 10fdd078bc1..255b63caef6 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/info.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/page/js/components.phtml b/app/code/Magento/Sales/view/adminhtml/templates/page/js/components.phtml index 971c78e1771..77a68ef6987 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/page/js/components.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/page/js/components.phtml @@ -2,7 +2,7 @@ /** * @category design * @package default_default - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/rss/order/grid/link.phtml b/app/code/Magento/Sales/view/adminhtml/templates/rss/order/grid/link.phtml index 5dba7136feb..b7bd68cbe26 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/rss/order/grid/link.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/rss/order/grid/link.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/templates/transactions/detail.phtml b/app/code/Magento/Sales/view/adminhtml/templates/transactions/detail.phtml index 179855ec33b..50066fdf686 100644 --- a/app/code/Magento/Sales/view/adminhtml/templates/transactions/detail.phtml +++ b/app/code/Magento/Sales/view/adminhtml/templates/transactions/detail.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_creditmemo_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_creditmemo_grid.xml index 02c40d62d59..0eef73b611e 100644 --- a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_creditmemo_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_creditmemo_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_grid.xml index 0dc555c93d9..4bc0e9611a0 100644 --- a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_invoice_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_invoice_grid.xml index 51671ff53d6..f8c8acc4133 100644 --- a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_invoice_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_invoice_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_shipment_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_shipment_grid.xml index 7eac69bf68c..9957f0b60b7 100644 --- a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_shipment_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_shipment_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_creditmemo_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_creditmemo_grid.xml index cb1a60eb081..b682f2679c6 100644 --- a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_creditmemo_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_creditmemo_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_invoice_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_invoice_grid.xml index a5452405342..031aef11d8b 100644 --- a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_invoice_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_invoice_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_shipment_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_shipment_grid.xml index 973986b77fb..b75b0ea3fde 100644 --- a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_shipment_grid.xml +++ b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_shipment_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-create-index.js b/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-create-index.js index f46cd2dcf9b..aae4d599a89 100644 --- a/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-create-index.js +++ b/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-create-index.js @@ -1,8 +1,8 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ require([ "Magento_Sales/order/create/giftmessage" -]); \ No newline at end of file +]); diff --git a/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-post-action.js b/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-post-action.js index f2f2229c428..6dc709bb4ee 100644 --- a/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-post-action.js +++ b/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-post-action.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/create/form.js b/app/code/Magento/Sales/view/adminhtml/web/order/create/form.js index f6987cde300..c4f66cc06cd 100644 --- a/app/code/Magento/Sales/view/adminhtml/web/order/create/form.js +++ b/app/code/Magento/Sales/view/adminhtml/web/order/create/form.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -31,4 +31,4 @@ define([ window.order = order; window.payment = payment; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/create/giftmessage.js b/app/code/Magento/Sales/view/adminhtml/web/order/create/giftmessage.js index 5bdd711fd65..c2963f811dd 100644 --- a/app/code/Magento/Sales/view/adminhtml/web/order/create/giftmessage.js +++ b/app/code/Magento/Sales/view/adminhtml/web/order/create/giftmessage.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /********************* GIFT OPTIONS POPUP ***********************/ @@ -302,4 +302,4 @@ GiftMessageSet.prototype = { } }; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/create/scripts.js b/app/code/Magento/Sales/view/adminhtml/web/order/create/scripts.js index aed235ba4e3..673fba9792d 100644 --- a/app/code/Magento/Sales/view/adminhtml/web/order/create/scripts.js +++ b/app/code/Magento/Sales/view/adminhtml/web/order/create/scripts.js @@ -1,6 +1,6 @@ // jscs:disable /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/edit/address/form.js b/app/code/Magento/Sales/view/adminhtml/web/order/edit/address/form.js index bdcb2cc8a57..6a43db51676 100644 --- a/app/code/Magento/Sales/view/adminhtml/web/order/edit/address/form.js +++ b/app/code/Magento/Sales/view/adminhtml/web/order/edit/address/form.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/edit/message.js b/app/code/Magento/Sales/view/adminhtml/web/order/edit/message.js index 41daf16b772..b82f7f22a2d 100644 --- a/app/code/Magento/Sales/view/adminhtml/web/order/edit/message.js +++ b/app/code/Magento/Sales/view/adminhtml/web/order/edit/message.js @@ -1,7 +1,7 @@ /** * @category Mage * @package Magento_Sales - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/giftoptions_tooltip.js b/app/code/Magento/Sales/view/adminhtml/web/order/giftoptions_tooltip.js index 111435e5e1d..f009b9d1fb5 100644 --- a/app/code/Magento/Sales/view/adminhtml/web/order/giftoptions_tooltip.js +++ b/app/code/Magento/Sales/view/adminhtml/web/order/giftoptions_tooltip.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** @@ -191,4 +191,4 @@ GiftOptionsTooltip.prototype = { window.giftOptionsTooltip = new GiftOptionsTooltip(); -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/view/post-wrapper.js b/app/code/Magento/Sales/view/adminhtml/web/order/view/post-wrapper.js index f688b0f8623..132b76adfde 100644 --- a/app/code/Magento/Sales/view/adminhtml/web/order/view/post-wrapper.js +++ b/app/code/Magento/Sales/view/adminhtml/web/order/view/post-wrapper.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/email/creditmemo_new.html b/app/code/Magento/Sales/view/frontend/email/creditmemo_new.html index 5f9fb3d0574..77a96a538aa 100644 --- a/app/code/Magento/Sales/view/frontend/email/creditmemo_new.html +++ b/app/code/Magento/Sales/view/frontend/email/creditmemo_new.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/creditmemo_new_guest.html b/app/code/Magento/Sales/view/frontend/email/creditmemo_new_guest.html index 44e09b34f1c..c94d58b5323 100644 --- a/app/code/Magento/Sales/view/frontend/email/creditmemo_new_guest.html +++ b/app/code/Magento/Sales/view/frontend/email/creditmemo_new_guest.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/creditmemo_update.html b/app/code/Magento/Sales/view/frontend/email/creditmemo_update.html index 52b64529126..ab147750d12 100644 --- a/app/code/Magento/Sales/view/frontend/email/creditmemo_update.html +++ b/app/code/Magento/Sales/view/frontend/email/creditmemo_update.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/creditmemo_update_guest.html b/app/code/Magento/Sales/view/frontend/email/creditmemo_update_guest.html index d5ff2750efd..ce6ebd761ce 100644 --- a/app/code/Magento/Sales/view/frontend/email/creditmemo_update_guest.html +++ b/app/code/Magento/Sales/view/frontend/email/creditmemo_update_guest.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/invoice_new.html b/app/code/Magento/Sales/view/frontend/email/invoice_new.html index 4878597b55b..7dad8fbda1f 100644 --- a/app/code/Magento/Sales/view/frontend/email/invoice_new.html +++ b/app/code/Magento/Sales/view/frontend/email/invoice_new.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/invoice_new_guest.html b/app/code/Magento/Sales/view/frontend/email/invoice_new_guest.html index 4a4176bfc8e..c35249c1aff 100644 --- a/app/code/Magento/Sales/view/frontend/email/invoice_new_guest.html +++ b/app/code/Magento/Sales/view/frontend/email/invoice_new_guest.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/invoice_update.html b/app/code/Magento/Sales/view/frontend/email/invoice_update.html index 32bb4eefd89..6f3c897b0f1 100644 --- a/app/code/Magento/Sales/view/frontend/email/invoice_update.html +++ b/app/code/Magento/Sales/view/frontend/email/invoice_update.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/invoice_update_guest.html b/app/code/Magento/Sales/view/frontend/email/invoice_update_guest.html index d64688476c0..093988329fb 100644 --- a/app/code/Magento/Sales/view/frontend/email/invoice_update_guest.html +++ b/app/code/Magento/Sales/view/frontend/email/invoice_update_guest.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/order_new.html b/app/code/Magento/Sales/view/frontend/email/order_new.html index 44a381979a8..f6766086862 100644 --- a/app/code/Magento/Sales/view/frontend/email/order_new.html +++ b/app/code/Magento/Sales/view/frontend/email/order_new.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/order_new_guest.html b/app/code/Magento/Sales/view/frontend/email/order_new_guest.html index 2a74434488a..9768f6af373 100644 --- a/app/code/Magento/Sales/view/frontend/email/order_new_guest.html +++ b/app/code/Magento/Sales/view/frontend/email/order_new_guest.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/order_update.html b/app/code/Magento/Sales/view/frontend/email/order_update.html index d90070e51db..dac3af4b437 100644 --- a/app/code/Magento/Sales/view/frontend/email/order_update.html +++ b/app/code/Magento/Sales/view/frontend/email/order_update.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/order_update_guest.html b/app/code/Magento/Sales/view/frontend/email/order_update_guest.html index 4167c93a708..4a038a87e12 100644 --- a/app/code/Magento/Sales/view/frontend/email/order_update_guest.html +++ b/app/code/Magento/Sales/view/frontend/email/order_update_guest.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/shipment_new.html b/app/code/Magento/Sales/view/frontend/email/shipment_new.html index 64bd22ce9cc..d326e4d9a88 100644 --- a/app/code/Magento/Sales/view/frontend/email/shipment_new.html +++ b/app/code/Magento/Sales/view/frontend/email/shipment_new.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/shipment_new_guest.html b/app/code/Magento/Sales/view/frontend/email/shipment_new_guest.html index bda4d0628ca..ddb6b1065a8 100644 --- a/app/code/Magento/Sales/view/frontend/email/shipment_new_guest.html +++ b/app/code/Magento/Sales/view/frontend/email/shipment_new_guest.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/shipment_update.html b/app/code/Magento/Sales/view/frontend/email/shipment_update.html index b126b56c7af..8ec993e3234 100644 --- a/app/code/Magento/Sales/view/frontend/email/shipment_update.html +++ b/app/code/Magento/Sales/view/frontend/email/shipment_update.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/email/shipment_update_guest.html b/app/code/Magento/Sales/view/frontend/email/shipment_update_guest.html index afbb4a1b622..912fcf20771 100644 --- a/app/code/Magento/Sales/view/frontend/email/shipment_update_guest.html +++ b/app/code/Magento/Sales/view/frontend/email/shipment_update_guest.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Sales/view/frontend/layout/checkout_index_index.xml index 61a9ad253bc..a0daa9e2daf 100644 --- a/app/code/Magento/Sales/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/Sales/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/customer_account.xml b/app/code/Magento/Sales/view/frontend/layout/customer_account.xml index 239a38c09f5..514d2d4eb1b 100644 --- a/app/code/Magento/Sales/view/frontend/layout/customer_account.xml +++ b/app/code/Magento/Sales/view/frontend/layout/customer_account.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/customer_account_index.xml b/app/code/Magento/Sales/view/frontend/layout/customer_account_index.xml index cd3b8159373..7a4404004e0 100644 --- a/app/code/Magento/Sales/view/frontend/layout/customer_account_index.xml +++ b/app/code/Magento/Sales/view/frontend/layout/customer_account_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/default.xml b/app/code/Magento/Sales/view/frontend/layout/default.xml index ab67c031b07..3ef8e58fe58 100644 --- a/app/code/Magento/Sales/view/frontend/layout/default.xml +++ b/app/code/Magento/Sales/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_item_price.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_item_price.xml index d913c9dd175..5197ce06947 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_email_item_price.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_email_item_price.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_items.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_items.xml index e014663ac09..55c7cd7ad15 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_items.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_items.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_renderers.xml index 481bbcf5ac2..1db0975f216 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_items.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_items.xml index bde780281db..ea741a01a6e 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_items.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_items.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_renderers.xml index 01903eb92a5..975c8acaa84 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_items.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_items.xml index 9638593f2a2..75adeaaca84 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_items.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_items.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_renderers.xml index 0c0e6e57a8b..66b17a5eb63 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_items.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_items.xml index fce02ca848b..10e4de08baa 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_items.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_items.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_renderers.xml index 76d5bd25c7e..8859a6d9789 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_creditmemo.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_creditmemo.xml index a339a7565db..22d776c1f61 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_guest_creditmemo.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_guest_creditmemo.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_form.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_form.xml index 3332895226e..edfb0a18333 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_guest_form.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_guest_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_invoice.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_invoice.xml index b064f550489..5728e03a121 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_guest_invoice.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_guest_invoice.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_print.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_print.xml index 8530fb4ec6f..df4ef415cfe 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_guest_print.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_guest_print.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_printcreditmemo.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_printcreditmemo.xml index fbdc78e414f..c481c81ded0 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_guest_printcreditmemo.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_guest_printcreditmemo.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_printinvoice.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_printinvoice.xml index 72b32b35e47..4f6cac3bf2f 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_guest_printinvoice.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_guest_printinvoice.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_printshipment.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_printshipment.xml index 50044820a7c..64c137cf0d6 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_guest_printshipment.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_guest_printshipment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_reorder.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_reorder.xml index 7bfe897f1d1..d03d109fd61 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_guest_reorder.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_guest_reorder.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_shipment.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_shipment.xml index 5b679c20ce6..1bcb0d235a7 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_guest_shipment.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_guest_shipment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_view.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_view.xml index 40a7586b479..0c7be2e80a2 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_guest_view.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_guest_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo.xml index 8bb29507d80..0d86d6f9c77 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo_renderers.xml index 6fd4a1359b1..b3cac3a8087 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_guest_info_links.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_guest_info_links.xml index 12f3adec226..52a5410a788 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_guest_info_links.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_guest_info_links.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_history.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_history.xml index c4c93b9655a..d572268ce32 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_history.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_history.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_info_links.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_info_links.xml index a7fb903d595..b903c41a213 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_info_links.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_info_links.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice.xml index 87952cb8b5a..f4f5f4b9bbb 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice_renderers.xml index 6750c89c6d2..c7729cc1705 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_item_price.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_item_price.xml index f95f7665871..f27fc60b1a4 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_item_price.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_item_price.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_item_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_item_renderers.xml index a42d21a21bb..9fb01a4e63c 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_item_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_item_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_print.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_print.xml index aed3af49824..2d1eee43173 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_print.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_print.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_creditmemo_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_creditmemo_renderers.xml index fc2ffd95e27..5ce4d24ee5e 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_creditmemo_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_creditmemo_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_invoice_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_invoice_renderers.xml index 48432c3eb27..6e902d6ce85 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_invoice_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_invoice_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_renderers.xml index 2d1d3fae8f9..4ecb2e99768 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_shipment_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_shipment_renderers.xml index da733092618..1658c8028b1 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_shipment_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_shipment_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_printcreditmemo.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_printcreditmemo.xml index ccbf723653b..21cf3c8c29a 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_printcreditmemo.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_printcreditmemo.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_printinvoice.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_printinvoice.xml index bad93a25d61..2a4ec652537 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_printinvoice.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_printinvoice.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_printshipment.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_printshipment.xml index d8e8ca5954f..ead04c783eb 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_printshipment.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_printshipment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_reorder.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_reorder.xml index 6c2fca6fc6d..1e4dcaf2bf6 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_reorder.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_reorder.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment.xml index 2f6c1e77a55..b292de7e3b0 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment_renderers.xml index 3ebd1433752..27bcff9ba8a 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment_renderers.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment_renderers.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_view.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_view.xml index 9b417f5dd94..4bf37ca5918 100644 --- a/app/code/Magento/Sales/view/frontend/layout/sales_order_view.xml +++ b/app/code/Magento/Sales/view/frontend/layout/sales_order_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sales/view/frontend/requirejs-config.js b/app/code/Magento/Sales/view/frontend/requirejs-config.js index 6eac516dda4..cad9609518d 100644 --- a/app/code/Magento/Sales/view/frontend/requirejs-config.js +++ b/app/code/Magento/Sales/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -10,4 +10,4 @@ var config = { ordersReturns: 'Magento_Sales/orders-returns' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Sales/view/frontend/templates/email/creditmemo/items.phtml b/app/code/Magento/Sales/view/frontend/templates/email/creditmemo/items.phtml index 4deb9442075..753a16e1071 100644 --- a/app/code/Magento/Sales/view/frontend/templates/email/creditmemo/items.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/email/creditmemo/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/email/invoice/items.phtml b/app/code/Magento/Sales/view/frontend/templates/email/invoice/items.phtml index d34da4ba27e..3d1bedf66fd 100644 --- a/app/code/Magento/Sales/view/frontend/templates/email/invoice/items.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/email/invoice/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items.phtml index e2f98e7322c..bca85a9394e 100644 --- a/app/code/Magento/Sales/view/frontend/templates/email/items.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/email/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items/creditmemo/default.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items/creditmemo/default.phtml index db93133c865..6ad2765d18a 100644 --- a/app/code/Magento/Sales/view/frontend/templates/email/items/creditmemo/default.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/email/items/creditmemo/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items/invoice/default.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items/invoice/default.phtml index db93133c865..6ad2765d18a 100644 --- a/app/code/Magento/Sales/view/frontend/templates/email/items/invoice/default.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/email/items/invoice/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items/order/default.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items/order/default.phtml index 36ca566b8c8..58f32b1a2b5 100644 --- a/app/code/Magento/Sales/view/frontend/templates/email/items/order/default.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/email/items/order/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items/price/row.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items/price/row.phtml index ad9bb91e251..835d7aca035 100644 --- a/app/code/Magento/Sales/view/frontend/templates/email/items/price/row.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/email/items/price/row.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items/shipment/default.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items/shipment/default.phtml index a14d765629f..d0b19362415 100644 --- a/app/code/Magento/Sales/view/frontend/templates/email/items/shipment/default.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/email/items/shipment/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/email/shipment/items.phtml b/app/code/Magento/Sales/view/frontend/templates/email/shipment/items.phtml index 058a39820de..e5041cf0110 100644 --- a/app/code/Magento/Sales/view/frontend/templates/email/shipment/items.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/email/shipment/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/email/shipment/track.phtml b/app/code/Magento/Sales/view/frontend/templates/email/shipment/track.phtml index 0dd4c526d76..67819d0be1f 100644 --- a/app/code/Magento/Sales/view/frontend/templates/email/shipment/track.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/email/shipment/track.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/guest/form.phtml b/app/code/Magento/Sales/view/frontend/templates/guest/form.phtml index 8f7ac47583b..7d0f0470bc6 100644 --- a/app/code/Magento/Sales/view/frontend/templates/guest/form.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/guest/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/items/price/row.phtml b/app/code/Magento/Sales/view/frontend/templates/items/price/row.phtml index 6f356c0d8a6..f6f538a8ba6 100644 --- a/app/code/Magento/Sales/view/frontend/templates/items/price/row.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/items/price/row.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/items/price/total_after_discount.phtml b/app/code/Magento/Sales/view/frontend/templates/items/price/total_after_discount.phtml index 818986b50eb..216d0f05f58 100644 --- a/app/code/Magento/Sales/view/frontend/templates/items/price/total_after_discount.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/items/price/total_after_discount.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/items/price/unit.phtml b/app/code/Magento/Sales/view/frontend/templates/items/price/unit.phtml index bfab4baaf0f..6a844764332 100644 --- a/app/code/Magento/Sales/view/frontend/templates/items/price/unit.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/items/price/unit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/js/components.phtml b/app/code/Magento/Sales/view/frontend/templates/js/components.phtml index e490a6aa049..bdcb2e9bf77 100644 --- a/app/code/Magento/Sales/view/frontend/templates/js/components.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/js/components.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/comments.phtml b/app/code/Magento/Sales/view/frontend/templates/order/comments.phtml index 44dd7d6ff99..9cd8050a4b0 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/comments.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/comments.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/creditmemo.phtml b/app/code/Magento/Sales/view/frontend/templates/order/creditmemo.phtml index 2f664e04085..98d98e44127 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/creditmemo.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/creditmemo.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items.phtml b/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items.phtml index b5247dffc9d..3e19f6025ac 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items/renderer/default.phtml b/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items/renderer/default.phtml index b7f42f37949..cd474f89edb 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items/renderer/default.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/history.phtml b/app/code/Magento/Sales/view/frontend/templates/order/history.phtml index c900b72af55..52fc5b65879 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/history.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/history.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/info.phtml b/app/code/Magento/Sales/view/frontend/templates/order/info.phtml index d17f9ee0e27..b187654c41b 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/info.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/info/buttons.phtml b/app/code/Magento/Sales/view/frontend/templates/order/info/buttons.phtml index 9643bd22676..cd2d73c0a77 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/info/buttons.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/info/buttons.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/info/buttons/rss.phtml b/app/code/Magento/Sales/view/frontend/templates/order/info/buttons/rss.phtml index 6c4190ea05d..206738a521c 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/info/buttons/rss.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/info/buttons/rss.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/invoice.phtml b/app/code/Magento/Sales/view/frontend/templates/order/invoice.phtml index 0d6bda84b72..5bcb30e206a 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/invoice.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/invoice.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Sales/view/frontend/templates/order/invoice/items.phtml b/app/code/Magento/Sales/view/frontend/templates/order/invoice/items.phtml index 74a2bbef645..a47c2f67f10 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/invoice/items.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/invoice/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/invoice/items/renderer/default.phtml b/app/code/Magento/Sales/view/frontend/templates/order/invoice/items/renderer/default.phtml index d79872efec5..6ba984f8a2c 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/invoice/items/renderer/default.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/invoice/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/items.phtml b/app/code/Magento/Sales/view/frontend/templates/order/items.phtml index d25da3ed4cc..a100910e82a 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/items.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/items/renderer/default.phtml b/app/code/Magento/Sales/view/frontend/templates/order/items/renderer/default.phtml index ac7c6a42cf9..73c48ac6fc8 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/items/renderer/default.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/order_comments.phtml b/app/code/Magento/Sales/view/frontend/templates/order/order_comments.phtml index aa9218d588b..f44ce4b238d 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/order_comments.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/order_comments.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/order_date.phtml b/app/code/Magento/Sales/view/frontend/templates/order/order_date.phtml index a8c8b681e1f..ae388d5d9fc 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/order_date.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/order_date.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/order_status.phtml b/app/code/Magento/Sales/view/frontend/templates/order/order_status.phtml index f4fecf12369..f87efe712f9 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/order_status.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/order_status.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Sales/view/frontend/templates/order/print/creditmemo.phtml b/app/code/Magento/Sales/view/frontend/templates/order/print/creditmemo.phtml index 51241f164b8..0a178545133 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/print/creditmemo.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/print/creditmemo.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/print/invoice.phtml b/app/code/Magento/Sales/view/frontend/templates/order/print/invoice.phtml index ab14acb9cfe..c4c3b3811e3 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/print/invoice.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/print/invoice.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/print/shipment.phtml b/app/code/Magento/Sales/view/frontend/templates/order/print/shipment.phtml index 865d8053d93..0345a665fbe 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/print/shipment.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/print/shipment.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/recent.phtml b/app/code/Magento/Sales/view/frontend/templates/order/recent.phtml index caf8a4abd2c..52961aadb36 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/recent.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/recent.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/shipment/items/renderer/default.phtml b/app/code/Magento/Sales/view/frontend/templates/order/shipment/items/renderer/default.phtml index 018234040ee..af043152005 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/shipment/items/renderer/default.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/shipment/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/totals.phtml b/app/code/Magento/Sales/view/frontend/templates/order/totals.phtml index ba00861c83b..6ae1ca7dc0a 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/totals.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/totals.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/order/view.phtml b/app/code/Magento/Sales/view/frontend/templates/order/view.phtml index 0e34737cec2..5d8f5559174 100644 --- a/app/code/Magento/Sales/view/frontend/templates/order/view.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/order/view.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/reorder/sidebar.phtml b/app/code/Magento/Sales/view/frontend/templates/reorder/sidebar.phtml index 58c67b86cfa..1a1d7c11755 100644 --- a/app/code/Magento/Sales/view/frontend/templates/reorder/sidebar.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/reorder/sidebar.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/templates/widget/guest/form.phtml b/app/code/Magento/Sales/view/frontend/templates/widget/guest/form.phtml index 425d2f7c78a..bb2e1aa0441 100644 --- a/app/code/Magento/Sales/view/frontend/templates/widget/guest/form.phtml +++ b/app/code/Magento/Sales/view/frontend/templates/widget/guest/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sales/view/frontend/web/gift-message.js b/app/code/Magento/Sales/view/frontend/web/gift-message.js index 4b1284527ca..14b6c0ecb63 100644 --- a/app/code/Magento/Sales/view/frontend/web/gift-message.js +++ b/app/code/Magento/Sales/view/frontend/web/gift-message.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint jquery:true*/ @@ -58,4 +58,4 @@ define([ }); return $.mage.giftMessage; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Sales/view/frontend/web/js/view/last-ordered-items.js b/app/code/Magento/Sales/view/frontend/web/js/view/last-ordered-items.js index 8deb0e7c67b..aab24147ea9 100644 --- a/app/code/Magento/Sales/view/frontend/web/js/view/last-ordered-items.js +++ b/app/code/Magento/Sales/view/frontend/web/js/view/last-ordered-items.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Sales/view/frontend/web/orders-returns.js b/app/code/Magento/Sales/view/frontend/web/orders-returns.js index 4484362a750..3c3ccd7a2ed 100644 --- a/app/code/Magento/Sales/view/frontend/web/orders-returns.js +++ b/app/code/Magento/Sales/view/frontend/web/orders-returns.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true, jquery:true*/ @@ -33,4 +33,4 @@ define([ }); return $.mage.ordersReturns; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/SalesInventory/Model/Order/ReturnProcessor.php b/app/code/Magento/SalesInventory/Model/Order/ReturnProcessor.php index 3680bbb3a1e..39c14a0dd13 100644 --- a/app/code/Magento/SalesInventory/Model/Order/ReturnProcessor.php +++ b/app/code/Magento/SalesInventory/Model/Order/ReturnProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Model\Order; diff --git a/app/code/Magento/SalesInventory/Model/Order/ReturnValidator.php b/app/code/Magento/SalesInventory/Model/Order/ReturnValidator.php index 2195883334f..65db325509f 100644 --- a/app/code/Magento/SalesInventory/Model/Order/ReturnValidator.php +++ b/app/code/Magento/SalesInventory/Model/Order/ReturnValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Model\Order; diff --git a/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockInvoice.php b/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockInvoice.php index 53a393d8335..2548cf04f19 100644 --- a/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockInvoice.php +++ b/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockInvoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Model\Plugin\Order; diff --git a/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockOrder.php b/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockOrder.php index b21f9f6b105..282bddee9ab 100644 --- a/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockOrder.php +++ b/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockOrder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Model\Plugin\Order; diff --git a/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/InvoiceRefundCreationArguments.php b/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/InvoiceRefundCreationArguments.php index 7dfa2893c58..1cbfa9c0290 100644 --- a/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/InvoiceRefundCreationArguments.php +++ b/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/InvoiceRefundCreationArguments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Model\Plugin\Order\Validation; diff --git a/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/OrderRefundCreationArguments.php b/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/OrderRefundCreationArguments.php index 29411c7c5e8..94a0fdcf877 100644 --- a/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/OrderRefundCreationArguments.php +++ b/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/OrderRefundCreationArguments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Model\Plugin\Order\Validation; diff --git a/app/code/Magento/SalesInventory/Observer/RefundOrderInventoryObserver.php b/app/code/Magento/SalesInventory/Observer/RefundOrderInventoryObserver.php index acdebcf976a..b9d7aaa4cd7 100644 --- a/app/code/Magento/SalesInventory/Observer/RefundOrderInventoryObserver.php +++ b/app/code/Magento/SalesInventory/Observer/RefundOrderInventoryObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnProcessorTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnProcessorTest.php index efa3bff32c0..b0fea1bdff5 100644 --- a/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnProcessorTest.php +++ b/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Test\Unit\Model\Order; diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnValidatorTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnValidatorTest.php index da9d3fd8aef..52a00241054 100644 --- a/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnValidatorTest.php +++ b/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Test\Unit\Model\Order; diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockInvoiceTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockInvoiceTest.php index 35718a96bd5..b01b0298b98 100644 --- a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockInvoiceTest.php +++ b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockInvoiceTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Test\Unit\Model\Plugin\Order; diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockOrderTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockOrderTest.php index b4883dd1a77..b41e71b9140 100644 --- a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockOrderTest.php +++ b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockOrderTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Test\Unit\Model\Plugin\Order; diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/InvoiceRefundCreationArgumentsTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/InvoiceRefundCreationArgumentsTest.php index d59da679d15..ef29f2cd709 100644 --- a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/InvoiceRefundCreationArgumentsTest.php +++ b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/InvoiceRefundCreationArgumentsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Test\Unit\Model\Plugin\Order\Validation; diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/OrderRefundCreationArgumentsTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/OrderRefundCreationArgumentsTest.php index 6a6b88f3d45..3ce962a993c 100644 --- a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/OrderRefundCreationArgumentsTest.php +++ b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/OrderRefundCreationArgumentsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Test\Unit\Model\Plugin\Order\Validation; diff --git a/app/code/Magento/SalesInventory/Test/Unit/Observer/RefundOrderInventoryObserverTest.php b/app/code/Magento/SalesInventory/Test/Unit/Observer/RefundOrderInventoryObserverTest.php index 4e553493d07..cbf77a5bfc1 100644 --- a/app/code/Magento/SalesInventory/Test/Unit/Observer/RefundOrderInventoryObserverTest.php +++ b/app/code/Magento/SalesInventory/Test/Unit/Observer/RefundOrderInventoryObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesInventory\Test\Unit\Observer; diff --git a/app/code/Magento/SalesInventory/etc/di.xml b/app/code/Magento/SalesInventory/etc/di.xml index aec39d3c51c..bf91a0dc50b 100644 --- a/app/code/Magento/SalesInventory/etc/di.xml +++ b/app/code/Magento/SalesInventory/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesInventory/etc/events.xml b/app/code/Magento/SalesInventory/etc/events.xml index a71ed7f8a28..3a25fdd15f7 100644 --- a/app/code/Magento/SalesInventory/etc/events.xml +++ b/app/code/Magento/SalesInventory/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesInventory/etc/extension_attributes.xml b/app/code/Magento/SalesInventory/etc/extension_attributes.xml index de5b6d41c52..481f13cfeae 100644 --- a/app/code/Magento/SalesInventory/etc/extension_attributes.xml +++ b/app/code/Magento/SalesInventory/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -9,4 +9,4 @@ <extension_attributes for="Magento\Sales\Api\Data\CreditmemoCreationArgumentsInterface"> <attribute code="return_to_stock_items" type="int[]"/> </extension_attributes> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/SalesInventory/etc/module.xml b/app/code/Magento/SalesInventory/etc/module.xml index 06c9d0d7855..4aa89e151a3 100644 --- a/app/code/Magento/SalesInventory/etc/module.xml +++ b/app/code/Magento/SalesInventory/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesInventory/registration.php b/app/code/Magento/SalesInventory/registration.php index edb96135508..92743627b5b 100644 --- a/app/code/Magento/SalesInventory/registration.php +++ b/app/code/Magento/SalesInventory/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Api/CouponManagementInterface.php b/app/code/Magento/SalesRule/Api/CouponManagementInterface.php index 9f3d2994cb6..e84683272e3 100644 --- a/app/code/Magento/SalesRule/Api/CouponManagementInterface.php +++ b/app/code/Magento/SalesRule/Api/CouponManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Api; diff --git a/app/code/Magento/SalesRule/Api/CouponRepositoryInterface.php b/app/code/Magento/SalesRule/Api/CouponRepositoryInterface.php index b1f7108e1dc..0b4e8ec66bf 100644 --- a/app/code/Magento/SalesRule/Api/CouponRepositoryInterface.php +++ b/app/code/Magento/SalesRule/Api/CouponRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Api; diff --git a/app/code/Magento/SalesRule/Api/Data/ConditionInterface.php b/app/code/Magento/SalesRule/Api/Data/ConditionInterface.php index b3134ddb08e..329f7863716 100644 --- a/app/code/Magento/SalesRule/Api/Data/ConditionInterface.php +++ b/app/code/Magento/SalesRule/Api/Data/ConditionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Api\Data; diff --git a/app/code/Magento/SalesRule/Api/Data/CouponGenerationSpecInterface.php b/app/code/Magento/SalesRule/Api/Data/CouponGenerationSpecInterface.php index 5b6838c28ae..6bbad5aed31 100644 --- a/app/code/Magento/SalesRule/Api/Data/CouponGenerationSpecInterface.php +++ b/app/code/Magento/SalesRule/Api/Data/CouponGenerationSpecInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Api\Data; diff --git a/app/code/Magento/SalesRule/Api/Data/CouponInterface.php b/app/code/Magento/SalesRule/Api/Data/CouponInterface.php index 01aea2dfef9..4e65e8f6194 100644 --- a/app/code/Magento/SalesRule/Api/Data/CouponInterface.php +++ b/app/code/Magento/SalesRule/Api/Data/CouponInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Api\Data; diff --git a/app/code/Magento/SalesRule/Api/Data/CouponMassDeleteResultInterface.php b/app/code/Magento/SalesRule/Api/Data/CouponMassDeleteResultInterface.php index 15b5455f9f4..bc132d7cd23 100644 --- a/app/code/Magento/SalesRule/Api/Data/CouponMassDeleteResultInterface.php +++ b/app/code/Magento/SalesRule/Api/Data/CouponMassDeleteResultInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Api\Data; diff --git a/app/code/Magento/SalesRule/Api/Data/CouponSearchResultInterface.php b/app/code/Magento/SalesRule/Api/Data/CouponSearchResultInterface.php index 18977d416d1..10106b99f05 100644 --- a/app/code/Magento/SalesRule/Api/Data/CouponSearchResultInterface.php +++ b/app/code/Magento/SalesRule/Api/Data/CouponSearchResultInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Api\Data; diff --git a/app/code/Magento/SalesRule/Api/Data/RuleInterface.php b/app/code/Magento/SalesRule/Api/Data/RuleInterface.php index d8a98aee503..d28b58eab57 100644 --- a/app/code/Magento/SalesRule/Api/Data/RuleInterface.php +++ b/app/code/Magento/SalesRule/Api/Data/RuleInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Api\Data; diff --git a/app/code/Magento/SalesRule/Api/Data/RuleLabelInterface.php b/app/code/Magento/SalesRule/Api/Data/RuleLabelInterface.php index 96610444403..8d2f09ca297 100644 --- a/app/code/Magento/SalesRule/Api/Data/RuleLabelInterface.php +++ b/app/code/Magento/SalesRule/Api/Data/RuleLabelInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Api\Data; diff --git a/app/code/Magento/SalesRule/Api/Data/RuleSearchResultInterface.php b/app/code/Magento/SalesRule/Api/Data/RuleSearchResultInterface.php index 24caa96d16c..93749dfee6a 100644 --- a/app/code/Magento/SalesRule/Api/Data/RuleSearchResultInterface.php +++ b/app/code/Magento/SalesRule/Api/Data/RuleSearchResultInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Api\Data; diff --git a/app/code/Magento/SalesRule/Api/RuleRepositoryInterface.php b/app/code/Magento/SalesRule/Api/RuleRepositoryInterface.php index d45b163d5d8..4c110972ea5 100644 --- a/app/code/Magento/SalesRule/Api/RuleRepositoryInterface.php +++ b/app/code/Magento/SalesRule/Api/RuleRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Api; diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote.php index 5bfe013f1c9..1c96c1e9eb2 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Block\Adminhtml\Promo; diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/DeleteButton.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/DeleteButton.php index f8054efe917..940bce4391c 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/DeleteButton.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/DeleteButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/GenericButton.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/GenericButton.php index e3f4f7493ee..6ec596246a0 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/GenericButton.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/GenericButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/ResetButton.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/ResetButton.php index 019f41aacef..399117092e6 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/ResetButton.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/ResetButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButton.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButton.php index c737bedc0f0..784de62b76c 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButton.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveButton.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveButton.php index 06d539f73e3..732fcd52b4e 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveButton.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Actions.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Actions.php index 396eee2ddd9..1bc1c5bdf64 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Actions.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Actions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab; diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Conditions.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Conditions.php index b9a65e98608..d517d20c83a 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Conditions.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Conditions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab; diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons.php index d374c759b49..847bfa082af 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab; diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Form.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Form.php index 60dc05793db..fc247a3a715 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Form.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab\Coupons; diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid.php index c8cefbbfdca..a68c1920ef6 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php index db51962a25d..b73a5c249d7 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab\Coupons\Grid\Column\Renderer; diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Labels.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Labels.php index 960958cba07..a4eac767f86 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Labels.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Labels.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab; diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Widget/Chooser.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Widget/Chooser.php index 655fff705b2..d6ca8595283 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Widget/Chooser.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Widget/Chooser.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Block\Adminhtml\Promo\Widget; diff --git a/app/code/Magento/SalesRule/Block/Rss/Discounts.php b/app/code/Magento/SalesRule/Block/Rss/Discounts.php index 54f793cb3ba..9653473f93e 100644 --- a/app/code/Magento/SalesRule/Block/Rss/Discounts.php +++ b/app/code/Magento/SalesRule/Block/Rss/Discounts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Block\Rss; diff --git a/app/code/Magento/SalesRule/Block/Widget/Form/Element/Dependence.php b/app/code/Magento/SalesRule/Block/Widget/Form/Element/Dependence.php index 0822120015e..71261b6c412 100644 --- a/app/code/Magento/SalesRule/Block/Widget/Form/Element/Dependence.php +++ b/app/code/Magento/SalesRule/Block/Widget/Form/Element/Dependence.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Block\Widget\Form\Element; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote.php index 79b79da8c52..d2bd2c27f8c 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ApplyRules.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ApplyRules.php index 2963903eb72..d65b9881e45 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ApplyRules.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ApplyRules.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Chooser.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Chooser.php index 545ef3f93fc..cda52936773 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Chooser.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Chooser.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsGrid.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsGrid.php index 57137267ec2..5919f01473b 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsGrid.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsMassDelete.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsMassDelete.php index 32eb4d5f420..7536661a880 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsMassDelete.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsMassDelete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Delete.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Delete.php index a0287c536c7..9d5bd1e0e9a 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Delete.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Edit.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Edit.php index dd71453c5ed..4f0dc33400d 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Edit.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsCsv.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsCsv.php index 6833fb01125..8eeeee616d5 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsCsv.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsCsv.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsXml.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsXml.php index 5cadcaa63c4..35060089193 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsXml.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsXml.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Generate.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Generate.php index fb9e02657eb..e22fa448f4d 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Generate.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Generate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Index.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Index.php index 5258a067fad..c2f9ed2f48a 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Index.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewAction.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewAction.php index a8509105d83..24db5cc97dd 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewAction.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewActionHtml.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewActionHtml.php index b56dae4737f..3365c355e99 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewActionHtml.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewActionHtml.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewConditionHtml.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewConditionHtml.php index 98bc7d6b8d2..79ff507eaa4 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewConditionHtml.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewConditionHtml.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Save.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Save.php index efa45512acc..fc3d0427660 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Save.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote; diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Widget/Chooser.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Widget/Chooser.php index b13ace25f02..3d3f7aadb69 100644 --- a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Widget/Chooser.php +++ b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Widget/Chooser.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Controller\Adminhtml\Promo\Widget; diff --git a/app/code/Magento/SalesRule/Cron/AggregateSalesReportCouponsData.php b/app/code/Magento/SalesRule/Cron/AggregateSalesReportCouponsData.php index f5389808bbb..04ad4ab409f 100644 --- a/app/code/Magento/SalesRule/Cron/AggregateSalesReportCouponsData.php +++ b/app/code/Magento/SalesRule/Cron/AggregateSalesReportCouponsData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Cron; diff --git a/app/code/Magento/SalesRule/Helper/Coupon.php b/app/code/Magento/SalesRule/Helper/Coupon.php index b9115bd9866..ec4ddd5c711 100644 --- a/app/code/Magento/SalesRule/Helper/Coupon.php +++ b/app/code/Magento/SalesRule/Helper/Coupon.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Model/Converter/ToDataModel.php b/app/code/Magento/SalesRule/Model/Converter/ToDataModel.php index ac111bf00f4..2305feaa467 100644 --- a/app/code/Magento/SalesRule/Model/Converter/ToDataModel.php +++ b/app/code/Magento/SalesRule/Model/Converter/ToDataModel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Converter; diff --git a/app/code/Magento/SalesRule/Model/Converter/ToModel.php b/app/code/Magento/SalesRule/Model/Converter/ToModel.php index 1218bfe56e5..7598c56545e 100644 --- a/app/code/Magento/SalesRule/Model/Converter/ToModel.php +++ b/app/code/Magento/SalesRule/Model/Converter/ToModel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Converter; diff --git a/app/code/Magento/SalesRule/Model/Coupon.php b/app/code/Magento/SalesRule/Model/Coupon.php index cff21666abf..ae5467a3697 100644 --- a/app/code/Magento/SalesRule/Model/Coupon.php +++ b/app/code/Magento/SalesRule/Model/Coupon.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model; diff --git a/app/code/Magento/SalesRule/Model/Coupon/Codegenerator.php b/app/code/Magento/SalesRule/Model/Coupon/Codegenerator.php index 86932a3142e..6ac7377c3c3 100644 --- a/app/code/Magento/SalesRule/Model/Coupon/Codegenerator.php +++ b/app/code/Magento/SalesRule/Model/Coupon/Codegenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Coupon; diff --git a/app/code/Magento/SalesRule/Model/Coupon/CodegeneratorInterface.php b/app/code/Magento/SalesRule/Model/Coupon/CodegeneratorInterface.php index 3d0530edbc3..e8519fbbe55 100644 --- a/app/code/Magento/SalesRule/Model/Coupon/CodegeneratorInterface.php +++ b/app/code/Magento/SalesRule/Model/Coupon/CodegeneratorInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Coupon; diff --git a/app/code/Magento/SalesRule/Model/Coupon/Massgenerator.php b/app/code/Magento/SalesRule/Model/Coupon/Massgenerator.php index ba2ca30c604..ca6f262bf02 100644 --- a/app/code/Magento/SalesRule/Model/Coupon/Massgenerator.php +++ b/app/code/Magento/SalesRule/Model/Coupon/Massgenerator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Coupon; diff --git a/app/code/Magento/SalesRule/Model/CouponRepository.php b/app/code/Magento/SalesRule/Model/CouponRepository.php index ddc8e9eb506..586770063a9 100644 --- a/app/code/Magento/SalesRule/Model/CouponRepository.php +++ b/app/code/Magento/SalesRule/Model/CouponRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Model/Data/Condition.php b/app/code/Magento/SalesRule/Model/Data/Condition.php index 2bd97ddcafc..f3150ee6921 100644 --- a/app/code/Magento/SalesRule/Model/Data/Condition.php +++ b/app/code/Magento/SalesRule/Model/Data/Condition.php @@ -2,7 +2,7 @@ /** * Data Model implementing the Address interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Data; diff --git a/app/code/Magento/SalesRule/Model/Data/CouponGenerationSpec.php b/app/code/Magento/SalesRule/Model/Data/CouponGenerationSpec.php index 1db67aaecf6..81c8f5cc504 100644 --- a/app/code/Magento/SalesRule/Model/Data/CouponGenerationSpec.php +++ b/app/code/Magento/SalesRule/Model/Data/CouponGenerationSpec.php @@ -2,7 +2,7 @@ /** * Data Model implementing the Address interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Data; diff --git a/app/code/Magento/SalesRule/Model/Data/CouponMassDeleteResult.php b/app/code/Magento/SalesRule/Model/Data/CouponMassDeleteResult.php index 50e6dde793d..46ca8d2ab25 100644 --- a/app/code/Magento/SalesRule/Model/Data/CouponMassDeleteResult.php +++ b/app/code/Magento/SalesRule/Model/Data/CouponMassDeleteResult.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Data; diff --git a/app/code/Magento/SalesRule/Model/Data/Rule.php b/app/code/Magento/SalesRule/Model/Data/Rule.php index 78bc1ba16ef..3bd5e87835e 100644 --- a/app/code/Magento/SalesRule/Model/Data/Rule.php +++ b/app/code/Magento/SalesRule/Model/Data/Rule.php @@ -2,7 +2,7 @@ /** * Data Model implementing the Address interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Data; diff --git a/app/code/Magento/SalesRule/Model/Data/RuleLabel.php b/app/code/Magento/SalesRule/Model/Data/RuleLabel.php index 633e793149e..d6346930eee 100644 --- a/app/code/Magento/SalesRule/Model/Data/RuleLabel.php +++ b/app/code/Magento/SalesRule/Model/Data/RuleLabel.php @@ -2,7 +2,7 @@ /** * Data Model implementing the Address interface * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Data; diff --git a/app/code/Magento/SalesRule/Model/Plugin/QuoteConfigProductAttributes.php b/app/code/Magento/SalesRule/Model/Plugin/QuoteConfigProductAttributes.php index e0998762670..4fecf1a71b1 100644 --- a/app/code/Magento/SalesRule/Model/Plugin/QuoteConfigProductAttributes.php +++ b/app/code/Magento/SalesRule/Model/Plugin/QuoteConfigProductAttributes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Plugin; diff --git a/app/code/Magento/SalesRule/Model/Plugin/ResourceModel/Rule.php b/app/code/Magento/SalesRule/Model/Plugin/ResourceModel/Rule.php index 18500438d08..08d7630e0b5 100644 --- a/app/code/Magento/SalesRule/Model/Plugin/ResourceModel/Rule.php +++ b/app/code/Magento/SalesRule/Model/Plugin/ResourceModel/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Plugin\ResourceModel; diff --git a/app/code/Magento/SalesRule/Model/Plugin/Rule.php b/app/code/Magento/SalesRule/Model/Plugin/Rule.php index e746f44d7c2..f2004c53c24 100644 --- a/app/code/Magento/SalesRule/Model/Plugin/Rule.php +++ b/app/code/Magento/SalesRule/Model/Plugin/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Plugin; diff --git a/app/code/Magento/SalesRule/Model/Quote/Discount.php b/app/code/Magento/SalesRule/Model/Quote/Discount.php index f8a751fd44b..7f4e77a653f 100644 --- a/app/code/Magento/SalesRule/Model/Quote/Discount.php +++ b/app/code/Magento/SalesRule/Model/Quote/Discount.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Quote; diff --git a/app/code/Magento/SalesRule/Model/RegistryConstants.php b/app/code/Magento/SalesRule/Model/RegistryConstants.php index 01ae137530a..e1f9a000e4d 100644 --- a/app/code/Magento/SalesRule/Model/RegistryConstants.php +++ b/app/code/Magento/SalesRule/Model/RegistryConstants.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Coupon.php b/app/code/Magento/SalesRule/Model/ResourceModel/Coupon.php index 128967781e0..2aa4d9d4b85 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Coupon.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Coupon.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Collection.php index 8f803462c08..d42913c661b 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Collection.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel\Coupon; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Usage.php b/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Usage.php index 456bbf9d3e7..dbc68311fd8 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Usage.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Usage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel\Coupon; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/ReadHandler.php b/app/code/Magento/SalesRule/Model/ResourceModel/ReadHandler.php index 70d05c2fb3c..9083156fa2e 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/ReadHandler.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/ReadHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Collection.php index e194a0e52d0..7e34a8a5481 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Collection.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel\Report; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule.php b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule.php index 646547146ca..5fff0e3b8b7 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel\Report; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Createdat.php b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Createdat.php index 3873651fdd4..21415e58cf4 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Createdat.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Createdat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Updatedat.php b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Updatedat.php index fbb26501c4a..6564e87eecd 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Updatedat.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Updatedat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel\Report\Rule; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Updatedat/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Updatedat/Collection.php index c023e2d1f8c..0d5eed04adf 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Updatedat/Collection.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Updatedat/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel\Report\Updatedat; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule.php index 0398508eccf..530a0412364 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Rule.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Collection.php index 626e1e0aa93..b884a39a8bd 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Collection.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer.php index 9798d90c98b..ac54ea35741 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel\Rule; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer/Collection.php index dc01a06b47d..4f5e0083cfc 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer/Collection.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel\Rule\Customer; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/DateApplier.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/DateApplier.php index fb7d6f3850a..0093acd7402 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/DateApplier.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/DateApplier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel\Rule; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Quote/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Quote/Collection.php index 791f97692dd..db385a3d1dc 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Quote/Collection.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Quote/Collection.php @@ -2,7 +2,7 @@ /** * Sales Rules resource collection model * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel\Rule\Quote; diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/SaveHandler.php b/app/code/Magento/SalesRule/Model/ResourceModel/SaveHandler.php index b278b9c24cb..1979368efe3 100644 --- a/app/code/Magento/SalesRule/Model/ResourceModel/SaveHandler.php +++ b/app/code/Magento/SalesRule/Model/ResourceModel/SaveHandler.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\ResourceModel; diff --git a/app/code/Magento/SalesRule/Model/Rss/Discounts.php b/app/code/Magento/SalesRule/Model/Rss/Discounts.php index e797ad96f24..d2abf82f9df 100644 --- a/app/code/Magento/SalesRule/Model/Rss/Discounts.php +++ b/app/code/Magento/SalesRule/Model/Rss/Discounts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rss; diff --git a/app/code/Magento/SalesRule/Model/Rule.php b/app/code/Magento/SalesRule/Model/Rule.php index 033c0ebd5be..75039377d2b 100644 --- a/app/code/Magento/SalesRule/Model/Rule.php +++ b/app/code/Magento/SalesRule/Model/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Collection.php b/app/code/Magento/SalesRule/Model/Rule/Action/Collection.php index ee547f3112c..95ccf7eb67a 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Collection.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/AbstractDiscount.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/AbstractDiscount.php index 47b8ff5e87d..f98daba9849 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/AbstractDiscount.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/AbstractDiscount.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/BuyXGetY.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/BuyXGetY.php index 960b821737c..85b00457d98 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/BuyXGetY.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/BuyXGetY.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByFixed.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByFixed.php index 8bf95308614..4423484749d 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByFixed.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByFixed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByPercent.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByPercent.php index 6f11288b549..81618f1cfe1 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByPercent.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByPercent.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CalculatorFactory.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CalculatorFactory.php index 3f44db58858..5792bce4402 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CalculatorFactory.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CalculatorFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CartFixed.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CartFixed.php index 021f293c24a..e07d034c3db 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CartFixed.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CartFixed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/Data.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/Data.php index c9bac126ab5..84cb1263939 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/Data.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/DiscountInterface.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/DiscountInterface.php index 4a3d54f2068..8273b3a1c60 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/DiscountInterface.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/DiscountInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToFixed.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToFixed.php index e9a2e2cb25f..812ce5ce284 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToFixed.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToFixed.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToPercent.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToPercent.php index 0e78767f6db..fdf98eb746f 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToPercent.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToPercent.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Product.php b/app/code/Magento/SalesRule/Model/Rule/Action/Product.php index 900b7d4ae1a..20b4df13464 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Action/Product.php +++ b/app/code/Magento/SalesRule/Model/Rule/Action/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Action; diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Address.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Address.php index 3366ba4cd1f..eddc689b286 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Condition/Address.php +++ b/app/code/Magento/SalesRule/Model/Rule/Condition/Address.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Condition; diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Combine.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Combine.php index a0597101675..3ddeb179d73 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Condition/Combine.php +++ b/app/code/Magento/SalesRule/Model/Rule/Condition/Combine.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Condition; diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Product.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Product.php index 1670819588e..5f835e867a9 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Condition/Product.php +++ b/app/code/Magento/SalesRule/Model/Rule/Condition/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Condition; diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Combine.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Combine.php index 620c4bd70d4..ada5f1ddf02 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Combine.php +++ b/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Combine.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Condition\Product; diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Found.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Found.php index 593aebc1dfa..3f7ac7ba02c 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Found.php +++ b/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Found.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Condition\Product; diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Subselect.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Subselect.php index 60f83df9840..ac191eefcbe 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Subselect.php +++ b/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Subselect.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Condition\Product; diff --git a/app/code/Magento/SalesRule/Model/Rule/Customer.php b/app/code/Magento/SalesRule/Model/Rule/Customer.php index 20168228c74..e9b4719c116 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Customer.php +++ b/app/code/Magento/SalesRule/Model/Rule/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule; diff --git a/app/code/Magento/SalesRule/Model/Rule/DataProvider.php b/app/code/Magento/SalesRule/Model/Rule/DataProvider.php index 91354209079..e4495b5fdd5 100644 --- a/app/code/Magento/SalesRule/Model/Rule/DataProvider.php +++ b/app/code/Magento/SalesRule/Model/Rule/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule; diff --git a/app/code/Magento/SalesRule/Model/Rule/Metadata/ValueProvider.php b/app/code/Magento/SalesRule/Model/Rule/Metadata/ValueProvider.php index 09f925f4f6e..e88c6cf133b 100644 --- a/app/code/Magento/SalesRule/Model/Rule/Metadata/ValueProvider.php +++ b/app/code/Magento/SalesRule/Model/Rule/Metadata/ValueProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Rule\Metadata; diff --git a/app/code/Magento/SalesRule/Model/RuleRepository.php b/app/code/Magento/SalesRule/Model/RuleRepository.php index 2d875e9ede0..324f015805b 100644 --- a/app/code/Magento/SalesRule/Model/RuleRepository.php +++ b/app/code/Magento/SalesRule/Model/RuleRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model; diff --git a/app/code/Magento/SalesRule/Model/RulesApplier.php b/app/code/Magento/SalesRule/Model/RulesApplier.php index fa31ef80991..702f5cb2080 100644 --- a/app/code/Magento/SalesRule/Model/RulesApplier.php +++ b/app/code/Magento/SalesRule/Model/RulesApplier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model; diff --git a/app/code/Magento/SalesRule/Model/Service/CouponManagementService.php b/app/code/Magento/SalesRule/Model/Service/CouponManagementService.php index 0ac12b7af23..153b26fbad4 100644 --- a/app/code/Magento/SalesRule/Model/Service/CouponManagementService.php +++ b/app/code/Magento/SalesRule/Model/Service/CouponManagementService.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Service; diff --git a/app/code/Magento/SalesRule/Model/Spi/CouponResourceInterface.php b/app/code/Magento/SalesRule/Model/Spi/CouponResourceInterface.php index 428767199c7..5613f185b6f 100644 --- a/app/code/Magento/SalesRule/Model/Spi/CouponResourceInterface.php +++ b/app/code/Magento/SalesRule/Model/Spi/CouponResourceInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\Spi; diff --git a/app/code/Magento/SalesRule/Model/System/Config/Source/Coupon/Format.php b/app/code/Magento/SalesRule/Model/System/Config/Source/Coupon/Format.php index 0ceefc66a6e..2463f014d56 100644 --- a/app/code/Magento/SalesRule/Model/System/Config/Source/Coupon/Format.php +++ b/app/code/Magento/SalesRule/Model/System/Config/Source/Coupon/Format.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Model\System\Config\Source\Coupon; diff --git a/app/code/Magento/SalesRule/Model/Utility.php b/app/code/Magento/SalesRule/Model/Utility.php index c85a1de05fe..9b8ddf9a196 100644 --- a/app/code/Magento/SalesRule/Model/Utility.php +++ b/app/code/Magento/SalesRule/Model/Utility.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Model/Validator.php b/app/code/Magento/SalesRule/Model/Validator.php index 20cbd5ab808..af807126b0f 100644 --- a/app/code/Magento/SalesRule/Model/Validator.php +++ b/app/code/Magento/SalesRule/Model/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Model/Validator/Pool.php b/app/code/Magento/SalesRule/Model/Validator/Pool.php index 6929dde77f5..6c9ad28f2cf 100644 --- a/app/code/Magento/SalesRule/Model/Validator/Pool.php +++ b/app/code/Magento/SalesRule/Model/Validator/Pool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Observer/AddSalesRuleNameToOrderObserver.php b/app/code/Magento/SalesRule/Observer/AddSalesRuleNameToOrderObserver.php index 6a0147242e7..19bed9dca5a 100644 --- a/app/code/Magento/SalesRule/Observer/AddSalesRuleNameToOrderObserver.php +++ b/app/code/Magento/SalesRule/Observer/AddSalesRuleNameToOrderObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Observer; diff --git a/app/code/Magento/SalesRule/Observer/CatalogAttributeDeleteAfterObserver.php b/app/code/Magento/SalesRule/Observer/CatalogAttributeDeleteAfterObserver.php index 65230d9fc76..5d91c8c680a 100644 --- a/app/code/Magento/SalesRule/Observer/CatalogAttributeDeleteAfterObserver.php +++ b/app/code/Magento/SalesRule/Observer/CatalogAttributeDeleteAfterObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Observer; diff --git a/app/code/Magento/SalesRule/Observer/CatalogAttributeSaveAfterObserver.php b/app/code/Magento/SalesRule/Observer/CatalogAttributeSaveAfterObserver.php index ee1f03c0e19..2993a93bdd6 100644 --- a/app/code/Magento/SalesRule/Observer/CatalogAttributeSaveAfterObserver.php +++ b/app/code/Magento/SalesRule/Observer/CatalogAttributeSaveAfterObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Observer; diff --git a/app/code/Magento/SalesRule/Observer/CheckSalesRulesAvailability.php b/app/code/Magento/SalesRule/Observer/CheckSalesRulesAvailability.php index cd94ea565f7..9b690148800 100644 --- a/app/code/Magento/SalesRule/Observer/CheckSalesRulesAvailability.php +++ b/app/code/Magento/SalesRule/Observer/CheckSalesRulesAvailability.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Observer; diff --git a/app/code/Magento/SalesRule/Observer/SalesOrderAfterPlaceObserver.php b/app/code/Magento/SalesRule/Observer/SalesOrderAfterPlaceObserver.php index a75947629db..e24746cc72a 100644 --- a/app/code/Magento/SalesRule/Observer/SalesOrderAfterPlaceObserver.php +++ b/app/code/Magento/SalesRule/Observer/SalesOrderAfterPlaceObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Observer; diff --git a/app/code/Magento/SalesRule/Setup/InstallData.php b/app/code/Magento/SalesRule/Setup/InstallData.php index 1bd45cc425d..8008f1abd11 100644 --- a/app/code/Magento/SalesRule/Setup/InstallData.php +++ b/app/code/Magento/SalesRule/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Setup/InstallSchema.php b/app/code/Magento/SalesRule/Setup/InstallSchema.php index 9adf43fc19c..bf1e180b0de 100644 --- a/app/code/Magento/SalesRule/Setup/InstallSchema.php +++ b/app/code/Magento/SalesRule/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Setup/UpgradeSchema.php b/app/code/Magento/SalesRule/Setup/UpgradeSchema.php index 01af0842ef4..7e64d1ac004 100644 --- a/app/code/Magento/SalesRule/Setup/UpgradeSchema.php +++ b/app/code/Magento/SalesRule/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/DeleteButtonTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/DeleteButtonTest.php index 602d33ae74d..79f51f64182 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/DeleteButtonTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/DeleteButtonTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Block\Adminhtml\Promo\Quote\Edit; diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/GenericButtonTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/GenericButtonTest.php index 29d8a5ba83c..dc5ac6caf2d 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/GenericButtonTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/GenericButtonTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Block\Adminhtml\Promo\Quote\Edit; diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/ResetButtonTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/ResetButtonTest.php index 92ff0bc015a..78b683b1a0d 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/ResetButtonTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/ResetButtonTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Block\Adminhtml\Promo\Quote\Edit; diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButtonTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButtonTest.php index 4c93bd58615..498aed8740d 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButtonTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButtonTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Block\Adminhtml\Promo\Quote\Edit; diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveButtonTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveButtonTest.php index 58c0584db43..2f66bf4c690 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveButtonTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveButtonTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Block\Adminhtml\Promo\Quote\Edit; diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Rss/DiscountsTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Rss/DiscountsTest.php index 116d6a5f409..644140fbaa5 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Block/Rss/DiscountsTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Block/Rss/DiscountsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Block\Rss; diff --git a/app/code/Magento/SalesRule/Test/Unit/Cron/AggregateSalesReportCouponsDataTest.php b/app/code/Magento/SalesRule/Test/Unit/Cron/AggregateSalesReportCouponsDataTest.php index 945387e6f66..418c86f26cc 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Cron/AggregateSalesReportCouponsDataTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Cron/AggregateSalesReportCouponsDataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Cron; diff --git a/app/code/Magento/SalesRule/Test/Unit/Helper/CouponTest.php b/app/code/Magento/SalesRule/Test/Unit/Helper/CouponTest.php index 6ad16a2ce38..02bf9a39e1d 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Helper/CouponTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Helper/CouponTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToDataModelTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToDataModelTest.php index 5f0be457aa9..2de1075cc1a 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToDataModelTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToDataModelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Converter; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToModelTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToModelTest.php index d047d90f16c..1cac7e6d31d 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToModelTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToModelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Converter; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/CodegeneratorTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/CodegeneratorTest.php index fbeff6c13a2..261a935398f 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/CodegeneratorTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/CodegeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Coupon; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/MassgeneratorTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/MassgeneratorTest.php index 64ac98396e2..ca4a8e6808c 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/MassgeneratorTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/MassgeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Coupon; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/CouponRepositoryTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/CouponRepositoryTest.php index 39957d9d63f..f5157d568dd 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/CouponRepositoryTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/CouponRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/CouponTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/CouponTest.php index ea2b290184a..d7cff98969e 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/CouponTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/CouponTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/QuoteConfigProductAttributesTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/QuoteConfigProductAttributesTest.php index 21bf7dac310..94cfdaf7212 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/QuoteConfigProductAttributesTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/QuoteConfigProductAttributesTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/ResourceModel/RuleTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/ResourceModel/RuleTest.php index 37f10e72ed4..59b9aef8885 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/ResourceModel/RuleTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/ResourceModel/RuleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/RuleTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/RuleTest.php index d70decc839f..786ec08a1c3 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/RuleTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/RuleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Quote/DiscountTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Quote/DiscountTest.php index 7b7665a7866..17ed7100fac 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Quote/DiscountTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Quote/DiscountTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Quote; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php index d069071f249..fb27dd44c80 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/CollectionTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/CollectionTest.php index 681ec432fa9..f3782269afc 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/CollectionTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/RuleTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/RuleTest.php index b22e7f77d31..782b1791c29 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/RuleTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/RuleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\ResourceModel\Report; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Rule/DateApplierTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Rule/DateApplierTest.php index a330a7d9fa5..c5a8dccd65e 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Rule/DateApplierTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Rule/DateApplierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\ResourceModel\Rule; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/RuleTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/RuleTest.php index 763e77f94f7..a594ffe006c 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/RuleTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/RuleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php index eda7969cae5..015ed464c5e 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rss/DiscountsTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rss/DiscountsTest.php index 89a0e2d7410..06c46822a53 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Rss/DiscountsTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Rss/DiscountsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Rss; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ByPercentTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ByPercentTest.php index 4761d4bcb3a..42a6caed6fa 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ByPercentTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ByPercentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/CartFixedTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/CartFixedTest.php index 3eec9cb384d..e0eba27253c 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/CartFixedTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/CartFixedTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ToPercentTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ToPercentTest.php index 00d326ac103..c30fad0875f 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ToPercentTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ToPercentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Rule\Action\Discount; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Condition/ProductTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Condition/ProductTest.php index a28ea216eda..b9c61560cea 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Condition/ProductTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Condition/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Rule\Condition; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/DataProviderTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/DataProviderTest.php index 7ced41bf62a..56781c14623 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/DataProviderTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/DataProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Rule; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/ValueProviderTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/ValueProviderTest.php index cea8fdbace0..79bc4f3e60e 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/ValueProviderTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/ValueProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Rule\Metadata; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/_files/MetaData.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/_files/MetaData.php index ec3d3c86d72..78896fc1e72 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/_files/MetaData.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/_files/MetaData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/RuleRepositoryTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/RuleRepositoryTest.php index 4b309442c55..a557de3be02 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/RuleRepositoryTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/RuleRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/RuleTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/RuleTest.php index 48cd2ab7c48..1d871ef766c 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/RuleTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/RuleTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/RulesApplierTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/RulesApplierTest.php index 1f915f10259..ddcf1f02c6b 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/RulesApplierTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/RulesApplierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Service/CouponManagementServiceTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Service/CouponManagementServiceTest.php index 8791b94dc68..2dcbb3fe801 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Service/CouponManagementServiceTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Service/CouponManagementServiceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Service; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/System/Config/Source/Coupon/FormatTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/System/Config/Source/Coupon/FormatTest.php index 4cbe30990c7..43d54e2d005 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/System/Config/Source/Coupon/FormatTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/System/Config/Source/Coupon/FormatTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/UtilityTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/UtilityTest.php index cc336f17117..53d16612e7f 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/UtilityTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/UtilityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Validator/PoolTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Validator/PoolTest.php index 779120c63ed..4cbca943390 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/Validator/PoolTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/Validator/PoolTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model\Validator; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ValidatorTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ValidatorTest.php index 03bc95d7fb9..5c98921d4b7 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/ValidatorTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/ValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Model; diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_downloadable.php b/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_downloadable.php index 0f488dcd356..6af0815744b 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_downloadable.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_downloadable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_simple.php b/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_simple.php index 5de978f5a50..890ff13ec35 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_simple.php +++ b/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_simple.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/Test/Unit/Observer/AddSalesRuleNameToOrderObserverTest.php b/app/code/Magento/SalesRule/Test/Unit/Observer/AddSalesRuleNameToOrderObserverTest.php index eaf37cdc3c3..4ae01bc4b1d 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Observer/AddSalesRuleNameToOrderObserverTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Observer/AddSalesRuleNameToOrderObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Observer; diff --git a/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeDeleteAfterObserverTest.php b/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeDeleteAfterObserverTest.php index 41a59f2ee6e..8142b1f4a2b 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeDeleteAfterObserverTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeDeleteAfterObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Observer; diff --git a/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeSaveAfterObserverTest.php b/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeSaveAfterObserverTest.php index e8aa61dac72..83bdd3a9570 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeSaveAfterObserverTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeSaveAfterObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Observer; diff --git a/app/code/Magento/SalesRule/Test/Unit/Observer/SalesOrderAfterPlaceObserverTest.php b/app/code/Magento/SalesRule/Test/Unit/Observer/SalesOrderAfterPlaceObserverTest.php index c3d7e41acdf..089d927803b 100644 --- a/app/code/Magento/SalesRule/Test/Unit/Observer/SalesOrderAfterPlaceObserverTest.php +++ b/app/code/Magento/SalesRule/Test/Unit/Observer/SalesOrderAfterPlaceObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesRule\Test\Unit\Observer; diff --git a/app/code/Magento/SalesRule/etc/acl.xml b/app/code/Magento/SalesRule/etc/acl.xml index 5581a819a13..0875ae04a1e 100644 --- a/app/code/Magento/SalesRule/etc/acl.xml +++ b/app/code/Magento/SalesRule/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/adminhtml/di.xml b/app/code/Magento/SalesRule/etc/adminhtml/di.xml index 725c276a01e..2ff711c3c66 100644 --- a/app/code/Magento/SalesRule/etc/adminhtml/di.xml +++ b/app/code/Magento/SalesRule/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/adminhtml/events.xml b/app/code/Magento/SalesRule/etc/adminhtml/events.xml index 7be70531a9b..6e60ea28a90 100644 --- a/app/code/Magento/SalesRule/etc/adminhtml/events.xml +++ b/app/code/Magento/SalesRule/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/adminhtml/menu.xml b/app/code/Magento/SalesRule/etc/adminhtml/menu.xml index b80e1880616..f212fbf97ba 100644 --- a/app/code/Magento/SalesRule/etc/adminhtml/menu.xml +++ b/app/code/Magento/SalesRule/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/adminhtml/routes.xml b/app/code/Magento/SalesRule/etc/adminhtml/routes.xml index a48544d4176..a0fdf183fb7 100644 --- a/app/code/Magento/SalesRule/etc/adminhtml/routes.xml +++ b/app/code/Magento/SalesRule/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/adminhtml/system.xml b/app/code/Magento/SalesRule/etc/adminhtml/system.xml index 03cb3d1efff..b3f0c4d82d3 100644 --- a/app/code/Magento/SalesRule/etc/adminhtml/system.xml +++ b/app/code/Magento/SalesRule/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/config.xml b/app/code/Magento/SalesRule/etc/config.xml index 8eae13783b9..d80a9033569 100644 --- a/app/code/Magento/SalesRule/etc/config.xml +++ b/app/code/Magento/SalesRule/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/crontab.xml b/app/code/Magento/SalesRule/etc/crontab.xml index 9f8d7a76015..b3914c6a714 100644 --- a/app/code/Magento/SalesRule/etc/crontab.xml +++ b/app/code/Magento/SalesRule/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/di.xml b/app/code/Magento/SalesRule/etc/di.xml index 83364f92439..5a47ea5de8e 100644 --- a/app/code/Magento/SalesRule/etc/di.xml +++ b/app/code/Magento/SalesRule/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/events.xml b/app/code/Magento/SalesRule/etc/events.xml index 0100d042756..2c34a9f8238 100644 --- a/app/code/Magento/SalesRule/etc/events.xml +++ b/app/code/Magento/SalesRule/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/fieldset.xml b/app/code/Magento/SalesRule/etc/fieldset.xml index 758bc0cc491..ce0478928a6 100644 --- a/app/code/Magento/SalesRule/etc/fieldset.xml +++ b/app/code/Magento/SalesRule/etc/fieldset.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/frontend/di.xml b/app/code/Magento/SalesRule/etc/frontend/di.xml index 725c276a01e..2ff711c3c66 100644 --- a/app/code/Magento/SalesRule/etc/frontend/di.xml +++ b/app/code/Magento/SalesRule/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/module.xml b/app/code/Magento/SalesRule/etc/module.xml index d47493733e9..464cb138234 100644 --- a/app/code/Magento/SalesRule/etc/module.xml +++ b/app/code/Magento/SalesRule/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/sales.xml b/app/code/Magento/SalesRule/etc/sales.xml index 008a81acf3e..ad85d834156 100644 --- a/app/code/Magento/SalesRule/etc/sales.xml +++ b/app/code/Magento/SalesRule/etc/sales.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/etc/webapi.xml b/app/code/Magento/SalesRule/etc/webapi.xml index b4cb239c244..d2ddda8473c 100644 --- a/app/code/Magento/SalesRule/etc/webapi.xml +++ b/app/code/Magento/SalesRule/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/registration.php b/app/code/Magento/SalesRule/registration.php index 841c8b742e8..9b6025463b7 100644 --- a/app/code/Magento/SalesRule/registration.php +++ b/app/code/Magento/SalesRule/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_couponsgrid.xml b/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_couponsgrid.xml index 88ba6d36118..53b97fd6991 100644 --- a/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_couponsgrid.xml +++ b/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_couponsgrid.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_edit.xml b/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_edit.xml index cb284b708c7..182b535ec9b 100644 --- a/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_edit.xml +++ b/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_index.xml b/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_index.xml index fbbf9657f42..ee518d69466 100644 --- a/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_index.xml +++ b/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/view/adminhtml/templates/promo/salesrulejs.phtml b/app/code/Magento/SalesRule/view/adminhtml/templates/promo/salesrulejs.phtml index d99e5107f17..bd8f611f770 100644 --- a/app/code/Magento/SalesRule/view/adminhtml/templates/promo/salesrulejs.phtml +++ b/app/code/Magento/SalesRule/view/adminhtml/templates/promo/salesrulejs.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/SalesRule/view/adminhtml/templates/tab/coupons.phtml b/app/code/Magento/SalesRule/view/adminhtml/templates/tab/coupons.phtml index ec86e7366ca..cfd4299fc22 100644 --- a/app/code/Magento/SalesRule/view/adminhtml/templates/tab/coupons.phtml +++ b/app/code/Magento/SalesRule/view/adminhtml/templates/tab/coupons.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/SalesRule/view/adminhtml/ui_component/sales_rule_form.xml b/app/code/Magento/SalesRule/view/adminhtml/ui_component/sales_rule_form.xml index dea387e4656..8c70092230f 100644 --- a/app/code/Magento/SalesRule/view/adminhtml/ui_component/sales_rule_form.xml +++ b/app/code/Magento/SalesRule/view/adminhtml/ui_component/sales_rule_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/view/base/web/js/form/element/coupon-type.js b/app/code/Magento/SalesRule/view/base/web/js/form/element/coupon-type.js index ea97b910076..798e7a94ac9 100644 --- a/app/code/Magento/SalesRule/view/base/web/js/form/element/coupon-type.js +++ b/app/code/Magento/SalesRule/view/base/web/js/form/element/coupon-type.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/view/base/web/js/form/element/manage-coupon-codes.js b/app/code/Magento/SalesRule/view/base/web/js/form/element/manage-coupon-codes.js index 2e4f2defec9..e2c70c75adf 100644 --- a/app/code/Magento/SalesRule/view/base/web/js/form/element/manage-coupon-codes.js +++ b/app/code/Magento/SalesRule/view/base/web/js/form/element/manage-coupon-codes.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/SalesRule/view/frontend/layout/checkout_cart_index.xml index 79906fc5746..5911249a227 100644 --- a/app/code/Magento/SalesRule/view/frontend/layout/checkout_cart_index.xml +++ b/app/code/Magento/SalesRule/view/frontend/layout/checkout_cart_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/SalesRule/view/frontend/layout/checkout_index_index.xml index 1f89df6ac84..27f0669b4f0 100644 --- a/app/code/Magento/SalesRule/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/SalesRule/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -65,4 +65,4 @@ </arguments> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/action/cancel-coupon.js b/app/code/Magento/SalesRule/view/frontend/web/js/action/cancel-coupon.js index d1e294c9a8f..a6bef77fdca 100644 --- a/app/code/Magento/SalesRule/view/frontend/web/js/action/cancel-coupon.js +++ b/app/code/Magento/SalesRule/view/frontend/web/js/action/cancel-coupon.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/action/set-coupon-code.js b/app/code/Magento/SalesRule/view/frontend/web/js/action/set-coupon-code.js index a2b7ff19f21..2193dd7abbb 100644 --- a/app/code/Magento/SalesRule/view/frontend/web/js/action/set-coupon-code.js +++ b/app/code/Magento/SalesRule/view/frontend/web/js/action/set-coupon-code.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/model/payment/discount-messages.js b/app/code/Magento/SalesRule/view/frontend/web/js/model/payment/discount-messages.js index a174626dd45..b3c89892f72 100644 --- a/app/code/Magento/SalesRule/view/frontend/web/js/model/payment/discount-messages.js +++ b/app/code/Magento/SalesRule/view/frontend/web/js/model/payment/discount-messages.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/view/cart/totals/discount.js b/app/code/Magento/SalesRule/view/frontend/web/js/view/cart/totals/discount.js index bf4e88d5ebf..ddab8532178 100644 --- a/app/code/Magento/SalesRule/view/frontend/web/js/view/cart/totals/discount.js +++ b/app/code/Magento/SalesRule/view/frontend/web/js/view/cart/totals/discount.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount-messages.js b/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount-messages.js index 277d80b583c..8fc2a4a17be 100644 --- a/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount-messages.js +++ b/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount-messages.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount.js b/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount.js index 6dc973a7a1e..1071a4aac34 100644 --- a/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount.js +++ b/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define( diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/view/summary/discount.js b/app/code/Magento/SalesRule/view/frontend/web/js/view/summary/discount.js index 1b7fe0bbef3..37b90681e47 100644 --- a/app/code/Magento/SalesRule/view/frontend/web/js/view/summary/discount.js +++ b/app/code/Magento/SalesRule/view/frontend/web/js/view/summary/discount.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*global define*/ diff --git a/app/code/Magento/SalesRule/view/frontend/web/template/cart/totals/discount.html b/app/code/Magento/SalesRule/view/frontend/web/template/cart/totals/discount.html index 6b5d134ea5b..1711ebb7e66 100644 --- a/app/code/Magento/SalesRule/view/frontend/web/template/cart/totals/discount.html +++ b/app/code/Magento/SalesRule/view/frontend/web/template/cart/totals/discount.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/view/frontend/web/template/payment/discount.html b/app/code/Magento/SalesRule/view/frontend/web/template/payment/discount.html index 4ba38906fe9..c4b13d9bf39 100644 --- a/app/code/Magento/SalesRule/view/frontend/web/template/payment/discount.html +++ b/app/code/Magento/SalesRule/view/frontend/web/template/payment/discount.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesRule/view/frontend/web/template/summary/discount.html b/app/code/Magento/SalesRule/view/frontend/web/template/summary/discount.html index b68fb4c740e..55f5ddb6e9a 100644 --- a/app/code/Magento/SalesRule/view/frontend/web/template/summary/discount.html +++ b/app/code/Magento/SalesRule/view/frontend/web/template/summary/discount.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesSequence/Model/Builder.php b/app/code/Magento/SalesSequence/Model/Builder.php index 3982682576c..50218d3f598 100644 --- a/app/code/Magento/SalesSequence/Model/Builder.php +++ b/app/code/Magento/SalesSequence/Model/Builder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Model; diff --git a/app/code/Magento/SalesSequence/Model/Config.php b/app/code/Magento/SalesSequence/Model/Config.php index f549c56fecb..8fe1136d052 100644 --- a/app/code/Magento/SalesSequence/Model/Config.php +++ b/app/code/Magento/SalesSequence/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Model; diff --git a/app/code/Magento/SalesSequence/Model/EntityPool.php b/app/code/Magento/SalesSequence/Model/EntityPool.php index fb5ebca7127..48b01d11d2b 100644 --- a/app/code/Magento/SalesSequence/Model/EntityPool.php +++ b/app/code/Magento/SalesSequence/Model/EntityPool.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Model; diff --git a/app/code/Magento/SalesSequence/Model/Manager.php b/app/code/Magento/SalesSequence/Model/Manager.php index 66100723ef3..8474f025f85 100644 --- a/app/code/Magento/SalesSequence/Model/Manager.php +++ b/app/code/Magento/SalesSequence/Model/Manager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Model; diff --git a/app/code/Magento/SalesSequence/Model/Meta.php b/app/code/Magento/SalesSequence/Model/Meta.php index 211b8d22eb6..697210e5f6e 100644 --- a/app/code/Magento/SalesSequence/Model/Meta.php +++ b/app/code/Magento/SalesSequence/Model/Meta.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Model; diff --git a/app/code/Magento/SalesSequence/Model/Profile.php b/app/code/Magento/SalesSequence/Model/Profile.php index 877ab4dec3c..e602a6abfd6 100644 --- a/app/code/Magento/SalesSequence/Model/Profile.php +++ b/app/code/Magento/SalesSequence/Model/Profile.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Model; diff --git a/app/code/Magento/SalesSequence/Model/ResourceModel/Meta.php b/app/code/Magento/SalesSequence/Model/ResourceModel/Meta.php index 221b1884bf1..f56b39d43d7 100644 --- a/app/code/Magento/SalesSequence/Model/ResourceModel/Meta.php +++ b/app/code/Magento/SalesSequence/Model/ResourceModel/Meta.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Model\ResourceModel; diff --git a/app/code/Magento/SalesSequence/Model/ResourceModel/Profile.php b/app/code/Magento/SalesSequence/Model/ResourceModel/Profile.php index d6f8e5feb10..6d483c7ed86 100644 --- a/app/code/Magento/SalesSequence/Model/ResourceModel/Profile.php +++ b/app/code/Magento/SalesSequence/Model/ResourceModel/Profile.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Model\ResourceModel; diff --git a/app/code/Magento/SalesSequence/Model/Sequence.php b/app/code/Magento/SalesSequence/Model/Sequence.php index 256eb10baed..01bc3ea54e9 100644 --- a/app/code/Magento/SalesSequence/Model/Sequence.php +++ b/app/code/Magento/SalesSequence/Model/Sequence.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Model; diff --git a/app/code/Magento/SalesSequence/Observer/SequenceCreatorObserver.php b/app/code/Magento/SalesSequence/Observer/SequenceCreatorObserver.php index b7cda7bd45c..6f0cbc66ab3 100644 --- a/app/code/Magento/SalesSequence/Observer/SequenceCreatorObserver.php +++ b/app/code/Magento/SalesSequence/Observer/SequenceCreatorObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Observer; diff --git a/app/code/Magento/SalesSequence/Setup/InstallData.php b/app/code/Magento/SalesSequence/Setup/InstallData.php index 52850bf8848..74e8fa9ca56 100644 --- a/app/code/Magento/SalesSequence/Setup/InstallData.php +++ b/app/code/Magento/SalesSequence/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SalesSequence/Setup/InstallSchema.php b/app/code/Magento/SalesSequence/Setup/InstallSchema.php index 5da1dc1e6bf..7b5e82a3e32 100644 --- a/app/code/Magento/SalesSequence/Setup/InstallSchema.php +++ b/app/code/Magento/SalesSequence/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Setup; diff --git a/app/code/Magento/SalesSequence/Test/Unit/Model/BuilderTest.php b/app/code/Magento/SalesSequence/Test/Unit/Model/BuilderTest.php index 2d6d6899a94..142578e1dd3 100644 --- a/app/code/Magento/SalesSequence/Test/Unit/Model/BuilderTest.php +++ b/app/code/Magento/SalesSequence/Test/Unit/Model/BuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Test\Unit\Model; diff --git a/app/code/Magento/SalesSequence/Test/Unit/Model/ManagerTest.php b/app/code/Magento/SalesSequence/Test/Unit/Model/ManagerTest.php index 53dd5c2c8d0..6458cc46e82 100644 --- a/app/code/Magento/SalesSequence/Test/Unit/Model/ManagerTest.php +++ b/app/code/Magento/SalesSequence/Test/Unit/Model/ManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Test\Unit\Model; diff --git a/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/MetaTest.php b/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/MetaTest.php index 7a842b8d1c9..5aa621b24c0 100644 --- a/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/MetaTest.php +++ b/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/MetaTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/ProfileTest.php b/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/ProfileTest.php index b17445e7014..03862f7af71 100644 --- a/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/ProfileTest.php +++ b/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/ProfileTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/SalesSequence/Test/Unit/Model/SequenceTest.php b/app/code/Magento/SalesSequence/Test/Unit/Model/SequenceTest.php index 768c8be5177..fdd01669e0b 100644 --- a/app/code/Magento/SalesSequence/Test/Unit/Model/SequenceTest.php +++ b/app/code/Magento/SalesSequence/Test/Unit/Model/SequenceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SalesSequence\Test\Unit\Model; diff --git a/app/code/Magento/SalesSequence/etc/module.xml b/app/code/Magento/SalesSequence/etc/module.xml index 29107683df6..97461b5ff15 100644 --- a/app/code/Magento/SalesSequence/etc/module.xml +++ b/app/code/Magento/SalesSequence/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SalesSequence/registration.php b/app/code/Magento/SalesSequence/registration.php index f72eb96795e..a8b63478a88 100644 --- a/app/code/Magento/SalesSequence/registration.php +++ b/app/code/Magento/SalesSequence/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SampleData/Console/Command/SampleDataDeployCommand.php b/app/code/Magento/SampleData/Console/Command/SampleDataDeployCommand.php index 7697c24df79..2702eef0c03 100644 --- a/app/code/Magento/SampleData/Console/Command/SampleDataDeployCommand.php +++ b/app/code/Magento/SampleData/Console/Command/SampleDataDeployCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SampleData/Console/Command/SampleDataRemoveCommand.php b/app/code/Magento/SampleData/Console/Command/SampleDataRemoveCommand.php index 510690130c8..15a85b20df4 100644 --- a/app/code/Magento/SampleData/Console/Command/SampleDataRemoveCommand.php +++ b/app/code/Magento/SampleData/Console/Command/SampleDataRemoveCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SampleData/Console/Command/SampleDataResetCommand.php b/app/code/Magento/SampleData/Console/Command/SampleDataResetCommand.php index e68998a3936..3327cb1aeb0 100644 --- a/app/code/Magento/SampleData/Console/Command/SampleDataResetCommand.php +++ b/app/code/Magento/SampleData/Console/Command/SampleDataResetCommand.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SampleData/Console/CommandList.php b/app/code/Magento/SampleData/Console/CommandList.php index 5d4e1578fa1..d2fdab3c29d 100644 --- a/app/code/Magento/SampleData/Console/CommandList.php +++ b/app/code/Magento/SampleData/Console/CommandList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SampleData\Console; diff --git a/app/code/Magento/SampleData/Model/Dependency.php b/app/code/Magento/SampleData/Model/Dependency.php index 2a1849364bd..611f69e0bab 100644 --- a/app/code/Magento/SampleData/Model/Dependency.php +++ b/app/code/Magento/SampleData/Model/Dependency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SampleData\Model; diff --git a/app/code/Magento/SampleData/Setup/InstallData.php b/app/code/Magento/SampleData/Setup/InstallData.php index 2343b3df08a..9d4d84e2955 100644 --- a/app/code/Magento/SampleData/Setup/InstallData.php +++ b/app/code/Magento/SampleData/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SampleData\Setup; diff --git a/app/code/Magento/SampleData/Test/Unit/Console/Command/SampleDataDeployCommandTest.php b/app/code/Magento/SampleData/Test/Unit/Console/Command/SampleDataDeployCommandTest.php index 4f337c61c72..44d04cf482a 100644 --- a/app/code/Magento/SampleData/Test/Unit/Console/Command/SampleDataDeployCommandTest.php +++ b/app/code/Magento/SampleData/Test/Unit/Console/Command/SampleDataDeployCommandTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SampleData\Test\Unit\Console\Command; diff --git a/app/code/Magento/SampleData/cli_commands.php b/app/code/Magento/SampleData/cli_commands.php index ab0f69190fa..001d2e315c8 100644 --- a/app/code/Magento/SampleData/cli_commands.php +++ b/app/code/Magento/SampleData/cli_commands.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SampleData/etc/di.xml b/app/code/Magento/SampleData/etc/di.xml index 2e3d15cf547..cfc9a280bb8 100644 --- a/app/code/Magento/SampleData/etc/di.xml +++ b/app/code/Magento/SampleData/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SampleData/etc/module.xml b/app/code/Magento/SampleData/etc/module.xml index 96788ea02b3..24be4417e68 100644 --- a/app/code/Magento/SampleData/etc/module.xml +++ b/app/code/Magento/SampleData/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SampleData/registration.php b/app/code/Magento/SampleData/registration.php index 3ba5aae679c..a8629d7c238 100644 --- a/app/code/Magento/SampleData/registration.php +++ b/app/code/Magento/SampleData/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Adapter/Query/Preprocessor/Synonyms.php b/app/code/Magento/Search/Adapter/Query/Preprocessor/Synonyms.php index a3235faf35f..92cdbc26cdd 100644 --- a/app/code/Magento/Search/Adapter/Query/Preprocessor/Synonyms.php +++ b/app/code/Magento/Search/Adapter/Query/Preprocessor/Synonyms.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Adapter\Query\Preprocessor; diff --git a/app/code/Magento/Search/Api/Data/SynonymGroupInterface.php b/app/code/Magento/Search/Api/Data/SynonymGroupInterface.php index 1b6480f2393..71309e0dba4 100644 --- a/app/code/Magento/Search/Api/Data/SynonymGroupInterface.php +++ b/app/code/Magento/Search/Api/Data/SynonymGroupInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Api\Data; diff --git a/app/code/Magento/Search/Api/SearchInterface.php b/app/code/Magento/Search/Api/SearchInterface.php index 9a3068568fa..4eb08ed0514 100644 --- a/app/code/Magento/Search/Api/SearchInterface.php +++ b/app/code/Magento/Search/Api/SearchInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Api; diff --git a/app/code/Magento/Search/Api/SynonymAnalyzerInterface.php b/app/code/Magento/Search/Api/SynonymAnalyzerInterface.php index 4bf09a1c7b0..a3efeea3978 100644 --- a/app/code/Magento/Search/Api/SynonymAnalyzerInterface.php +++ b/app/code/Magento/Search/Api/SynonymAnalyzerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Api/SynonymGroupRepositoryInterface.php b/app/code/Magento/Search/Api/SynonymGroupRepositoryInterface.php index 80e9fe7ced8..ade8c37e4b7 100644 --- a/app/code/Magento/Search/Api/SynonymGroupRepositoryInterface.php +++ b/app/code/Magento/Search/Api/SynonymGroupRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Api; diff --git a/app/code/Magento/Search/Block/Adminhtml/Dashboard/Last.php b/app/code/Magento/Search/Block/Adminhtml/Dashboard/Last.php index 5da6a8cba7e..b71ba99560c 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Dashboard/Last.php +++ b/app/code/Magento/Search/Block/Adminhtml/Dashboard/Last.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml\Dashboard; diff --git a/app/code/Magento/Search/Block/Adminhtml/Dashboard/Top.php b/app/code/Magento/Search/Block/Adminhtml/Dashboard/Top.php index cfe35d0c315..f18768c36e8 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Dashboard/Top.php +++ b/app/code/Magento/Search/Block/Adminhtml/Dashboard/Top.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml\Dashboard; diff --git a/app/code/Magento/Search/Block/Adminhtml/Reports/Search.php b/app/code/Magento/Search/Block/Adminhtml/Reports/Search.php index 920ff605066..d0c6355dc4d 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Reports/Search.php +++ b/app/code/Magento/Search/Block/Adminhtml/Reports/Search.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml\Reports; diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms.php index 52b5cd07a05..98bca061515 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Synonyms.php +++ b/app/code/Magento/Search/Block/Adminhtml/Synonyms.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml; diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/BackButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/BackButton.php index 53f6766e77a..da487b6c067 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/BackButton.php +++ b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/BackButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml\Synonyms\Edit; diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/DeleteButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/DeleteButton.php index c3de5d55c34..3fae67a5ebb 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/DeleteButton.php +++ b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/DeleteButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml\Synonyms\Edit; diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/GenericButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/GenericButton.php index f60c3389b69..122a097d600 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/GenericButton.php +++ b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/GenericButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml\Synonyms\Edit; diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/ResetButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/ResetButton.php index 6337809449e..906c99aaaa7 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/ResetButton.php +++ b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/ResetButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml\Synonyms\Edit; diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveAndContinueButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveAndContinueButton.php index 3e86d980f2b..0e54097525e 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveAndContinueButton.php +++ b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveAndContinueButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml\Synonyms\Edit; diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveButton.php index 55b844d0800..6f2424318c4 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveButton.php +++ b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveButton.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml\Synonyms\Edit; diff --git a/app/code/Magento/Search/Block/Adminhtml/Term.php b/app/code/Magento/Search/Block/Adminhtml/Term.php index b18d5582a11..8e3a9b5e00f 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Term.php +++ b/app/code/Magento/Search/Block/Adminhtml/Term.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml; diff --git a/app/code/Magento/Search/Block/Adminhtml/Term/Edit.php b/app/code/Magento/Search/Block/Adminhtml/Term/Edit.php index 43b5572e0b6..4b63adbb07b 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Term/Edit.php +++ b/app/code/Magento/Search/Block/Adminhtml/Term/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Block\Adminhtml\Term; diff --git a/app/code/Magento/Search/Block/Adminhtml/Term/Edit/Form.php b/app/code/Magento/Search/Block/Adminhtml/Term/Edit/Form.php index f0195966432..3b51c3c54b0 100644 --- a/app/code/Magento/Search/Block/Adminhtml/Term/Edit/Form.php +++ b/app/code/Magento/Search/Block/Adminhtml/Term/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Block/Term.php b/app/code/Magento/Search/Block/Term.php index cefd28d67c6..7f4565f8d4d 100644 --- a/app/code/Magento/Search/Block/Term.php +++ b/app/code/Magento/Search/Block/Term.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Delete.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Delete.php index 2d1bfb68e2c..a1e82872006 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Delete.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Delete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Edit.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Edit.php index 2079950278e..8e9218af782 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Edit.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Synonyms; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Index.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Index.php index 47b8571fb78..f1ba8434fd5 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Index.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Synonyms; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/MassDelete.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/MassDelete.php index 702067c72d5..30c0d4a4d8f 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/MassDelete.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/MassDelete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/NewAction.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/NewAction.php index 1110235b669..ab36fb270fc 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/NewAction.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/NewAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Synonyms; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/ResultPageBuilder.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/ResultPageBuilder.php index a1dba24812a..cacf046b62f 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/ResultPageBuilder.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/ResultPageBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Synonyms; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Save.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Save.php index 99109a476ae..02d4f1ad4e9 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Save.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Synonyms; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term.php b/app/code/Magento/Search/Controller/Adminhtml/Term.php index 50f0467c962..5ceb718c75e 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Term.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Term.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/Delete.php b/app/code/Magento/Search/Controller/Adminhtml/Term/Delete.php index 3336e0001ea..b55b3947501 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Term/Delete.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Term/Delete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Term; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/Edit.php b/app/code/Magento/Search/Controller/Adminhtml/Term/Edit.php index c09abc80ac7..287cbfd6d6f 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Term/Edit.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Term/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Term; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchCsv.php b/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchCsv.php index 6b13fbc2495..a8d8cf6d527 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchCsv.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchCsv.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Term; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchExcel.php b/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchExcel.php index 92246b37371..8b4258fed71 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchExcel.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchExcel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Term; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/Index.php b/app/code/Magento/Search/Controller/Adminhtml/Term/Index.php index ea7c434a6f3..4ac91ba59af 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Term/Index.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Term/Index.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Term; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/MassDelete.php b/app/code/Magento/Search/Controller/Adminhtml/Term/MassDelete.php index 31fa7cb3faa..4ff8e04317b 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Term/MassDelete.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Term/MassDelete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Term; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/NewAction.php b/app/code/Magento/Search/Controller/Adminhtml/Term/NewAction.php index fba30e17c66..8ac28490e40 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Term/NewAction.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Term/NewAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Term; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/Report.php b/app/code/Magento/Search/Controller/Adminhtml/Term/Report.php index f2a04bf8bcf..a7db452258c 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Term/Report.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Term/Report.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Term; diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/Save.php b/app/code/Magento/Search/Controller/Adminhtml/Term/Save.php index 59c7ca10df3..b6db7d82a87 100644 --- a/app/code/Magento/Search/Controller/Adminhtml/Term/Save.php +++ b/app/code/Magento/Search/Controller/Adminhtml/Term/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Adminhtml\Term; diff --git a/app/code/Magento/Search/Controller/Ajax/Suggest.php b/app/code/Magento/Search/Controller/Ajax/Suggest.php index 0e5815abbc9..9b0b43f1aba 100644 --- a/app/code/Magento/Search/Controller/Ajax/Suggest.php +++ b/app/code/Magento/Search/Controller/Ajax/Suggest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Ajax; diff --git a/app/code/Magento/Search/Controller/RegistryConstants.php b/app/code/Magento/Search/Controller/RegistryConstants.php index 3c5090971bb..d2f0cdd6f00 100644 --- a/app/code/Magento/Search/Controller/RegistryConstants.php +++ b/app/code/Magento/Search/Controller/RegistryConstants.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller; diff --git a/app/code/Magento/Search/Controller/Term/Popular.php b/app/code/Magento/Search/Controller/Term/Popular.php index 75831e310e5..5d9a6f334ac 100644 --- a/app/code/Magento/Search/Controller/Term/Popular.php +++ b/app/code/Magento/Search/Controller/Term/Popular.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Controller\Term; diff --git a/app/code/Magento/Search/Helper/Data.php b/app/code/Magento/Search/Helper/Data.php index 8e9da363543..83e50411337 100644 --- a/app/code/Magento/Search/Helper/Data.php +++ b/app/code/Magento/Search/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Helper; diff --git a/app/code/Magento/Search/Model/AdapterFactory.php b/app/code/Magento/Search/Model/AdapterFactory.php index 056979a4ba7..296af0bb3f0 100644 --- a/app/code/Magento/Search/Model/AdapterFactory.php +++ b/app/code/Magento/Search/Model/AdapterFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Model/Adminhtml/System/Config/Source/Engine.php b/app/code/Magento/Search/Model/Adminhtml/System/Config/Source/Engine.php index 8c9e9a9edf9..0bf85636f0b 100644 --- a/app/code/Magento/Search/Model/Adminhtml/System/Config/Source/Engine.php +++ b/app/code/Magento/Search/Model/Adminhtml/System/Config/Source/Engine.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model\Adminhtml\System\Config\Source; diff --git a/app/code/Magento/Search/Model/Autocomplete.php b/app/code/Magento/Search/Model/Autocomplete.php index 9cbc14a0a0f..907881c39c1 100644 --- a/app/code/Magento/Search/Model/Autocomplete.php +++ b/app/code/Magento/Search/Model/Autocomplete.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Model/Autocomplete/DataProviderInterface.php b/app/code/Magento/Search/Model/Autocomplete/DataProviderInterface.php index b0cad4afd6d..dceb9465c8f 100644 --- a/app/code/Magento/Search/Model/Autocomplete/DataProviderInterface.php +++ b/app/code/Magento/Search/Model/Autocomplete/DataProviderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Model/Autocomplete/Item.php b/app/code/Magento/Search/Model/Autocomplete/Item.php index 3aeb373f99d..bd8232ccfe3 100644 --- a/app/code/Magento/Search/Model/Autocomplete/Item.php +++ b/app/code/Magento/Search/Model/Autocomplete/Item.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Model/Autocomplete/ItemFactory.php b/app/code/Magento/Search/Model/Autocomplete/ItemFactory.php index fa025480140..1222475dc52 100644 --- a/app/code/Magento/Search/Model/Autocomplete/ItemFactory.php +++ b/app/code/Magento/Search/Model/Autocomplete/ItemFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Model/Autocomplete/ItemInterface.php b/app/code/Magento/Search/Model/Autocomplete/ItemInterface.php index 56345598fcf..0e462895bc2 100644 --- a/app/code/Magento/Search/Model/Autocomplete/ItemInterface.php +++ b/app/code/Magento/Search/Model/Autocomplete/ItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Model/AutocompleteInterface.php b/app/code/Magento/Search/Model/AutocompleteInterface.php index 746af7a3383..f22ff13e0b8 100644 --- a/app/code/Magento/Search/Model/AutocompleteInterface.php +++ b/app/code/Magento/Search/Model/AutocompleteInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Model/EngineResolver.php b/app/code/Magento/Search/Model/EngineResolver.php index e4c34df7aed..4d98c0bdc30 100644 --- a/app/code/Magento/Search/Model/EngineResolver.php +++ b/app/code/Magento/Search/Model/EngineResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Model/Query.php b/app/code/Magento/Search/Model/Query.php index 2c44357ec9a..023a9bcac47 100644 --- a/app/code/Magento/Search/Model/Query.php +++ b/app/code/Magento/Search/Model/Query.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Model/QueryFactory.php b/app/code/Magento/Search/Model/QueryFactory.php index a7a67dcdefe..79f34db42a8 100644 --- a/app/code/Magento/Search/Model/QueryFactory.php +++ b/app/code/Magento/Search/Model/QueryFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Model/QueryFactoryInterface.php b/app/code/Magento/Search/Model/QueryFactoryInterface.php index 85cec75c805..3bec2e777b1 100644 --- a/app/code/Magento/Search/Model/QueryFactoryInterface.php +++ b/app/code/Magento/Search/Model/QueryFactoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Model/QueryInterface.php b/app/code/Magento/Search/Model/QueryInterface.php index 68ced557251..0c5d83fb2f7 100644 --- a/app/code/Magento/Search/Model/QueryInterface.php +++ b/app/code/Magento/Search/Model/QueryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Model/QueryResult.php b/app/code/Magento/Search/Model/QueryResult.php index 3dfc7b8cc41..d878e878e5a 100644 --- a/app/code/Magento/Search/Model/QueryResult.php +++ b/app/code/Magento/Search/Model/QueryResult.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Model/ResourceModel/Query.php b/app/code/Magento/Search/Model/ResourceModel/Query.php index 2aaf76a692c..945b4535a7d 100644 --- a/app/code/Magento/Search/Model/ResourceModel/Query.php +++ b/app/code/Magento/Search/Model/ResourceModel/Query.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Model/ResourceModel/Query/Collection.php b/app/code/Magento/Search/Model/ResourceModel/Query/Collection.php index 3f76fb396c2..2a113ce6b51 100644 --- a/app/code/Magento/Search/Model/ResourceModel/Query/Collection.php +++ b/app/code/Magento/Search/Model/ResourceModel/Query/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model\ResourceModel\Query; diff --git a/app/code/Magento/Search/Model/ResourceModel/SynonymGroup.php b/app/code/Magento/Search/Model/ResourceModel/SynonymGroup.php index 1785707bb33..2b1787d8bbc 100644 --- a/app/code/Magento/Search/Model/ResourceModel/SynonymGroup.php +++ b/app/code/Magento/Search/Model/ResourceModel/SynonymGroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model\ResourceModel; diff --git a/app/code/Magento/Search/Model/ResourceModel/SynonymGroup/Collection.php b/app/code/Magento/Search/Model/ResourceModel/SynonymGroup/Collection.php index b9c0b992061..b7b51599dbe 100644 --- a/app/code/Magento/Search/Model/ResourceModel/SynonymGroup/Collection.php +++ b/app/code/Magento/Search/Model/ResourceModel/SynonymGroup/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model\ResourceModel\SynonymGroup; diff --git a/app/code/Magento/Search/Model/ResourceModel/SynonymReader.php b/app/code/Magento/Search/Model/ResourceModel/SynonymReader.php index ff72c309fa8..e88e0bc4d81 100644 --- a/app/code/Magento/Search/Model/ResourceModel/SynonymReader.php +++ b/app/code/Magento/Search/Model/ResourceModel/SynonymReader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Model/Search.php b/app/code/Magento/Search/Model/Search.php index ea926716046..65518c23975 100644 --- a/app/code/Magento/Search/Model/Search.php +++ b/app/code/Magento/Search/Model/Search.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Model/SearchCollectionFactory.php b/app/code/Magento/Search/Model/SearchCollectionFactory.php index b39061506f8..52d91515088 100644 --- a/app/code/Magento/Search/Model/SearchCollectionFactory.php +++ b/app/code/Magento/Search/Model/SearchCollectionFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Model/SearchCollectionInterface.php b/app/code/Magento/Search/Model/SearchCollectionInterface.php index 570386cd7be..8202f4901ab 100644 --- a/app/code/Magento/Search/Model/SearchCollectionInterface.php +++ b/app/code/Magento/Search/Model/SearchCollectionInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Model/SearchEngine.php b/app/code/Magento/Search/Model/SearchEngine.php index 97e6bc4b683..86401e06812 100644 --- a/app/code/Magento/Search/Model/SearchEngine.php +++ b/app/code/Magento/Search/Model/SearchEngine.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Model/SearchEngine/Config.php b/app/code/Magento/Search/Model/SearchEngine/Config.php index 307376adc00..5c1b0cebed6 100644 --- a/app/code/Magento/Search/Model/SearchEngine/Config.php +++ b/app/code/Magento/Search/Model/SearchEngine/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model\SearchEngine; diff --git a/app/code/Magento/Search/Model/SearchEngine/Config/Data.php b/app/code/Magento/Search/Model/SearchEngine/Config/Data.php index d128a9d5002..6e01ff96959 100644 --- a/app/code/Magento/Search/Model/SearchEngine/Config/Data.php +++ b/app/code/Magento/Search/Model/SearchEngine/Config/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model\SearchEngine\Config; diff --git a/app/code/Magento/Search/Model/SearchEngine/MenuBuilder.php b/app/code/Magento/Search/Model/SearchEngine/MenuBuilder.php index 40f0298ee9c..dd461a2e187 100644 --- a/app/code/Magento/Search/Model/SearchEngine/MenuBuilder.php +++ b/app/code/Magento/Search/Model/SearchEngine/MenuBuilder.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model\SearchEngine; diff --git a/app/code/Magento/Search/Model/Synonym/DataProvider.php b/app/code/Magento/Search/Model/Synonym/DataProvider.php index b20dae4ffb8..6b911eee104 100644 --- a/app/code/Magento/Search/Model/Synonym/DataProvider.php +++ b/app/code/Magento/Search/Model/Synonym/DataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model\Synonym; diff --git a/app/code/Magento/Search/Model/Synonym/MergeConflictException.php b/app/code/Magento/Search/Model/Synonym/MergeConflictException.php index 7a54a6956b9..d02b701805c 100644 --- a/app/code/Magento/Search/Model/Synonym/MergeConflictException.php +++ b/app/code/Magento/Search/Model/Synonym/MergeConflictException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model\Synonym; diff --git a/app/code/Magento/Search/Model/SynonymAnalyzer.php b/app/code/Magento/Search/Model/SynonymAnalyzer.php index 0382a396f72..d9799105bde 100644 --- a/app/code/Magento/Search/Model/SynonymAnalyzer.php +++ b/app/code/Magento/Search/Model/SynonymAnalyzer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Model/SynonymGroup.php b/app/code/Magento/Search/Model/SynonymGroup.php index 3df00881483..5307513dbc0 100644 --- a/app/code/Magento/Search/Model/SynonymGroup.php +++ b/app/code/Magento/Search/Model/SynonymGroup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Model/SynonymGroupRepository.php b/app/code/Magento/Search/Model/SynonymGroupRepository.php index c583debf8d3..8bb0f6669c6 100644 --- a/app/code/Magento/Search/Model/SynonymGroupRepository.php +++ b/app/code/Magento/Search/Model/SynonymGroupRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Model/SynonymReader.php b/app/code/Magento/Search/Model/SynonymReader.php index f5ce4ccb7fb..6aa1d1b7267 100644 --- a/app/code/Magento/Search/Model/SynonymReader.php +++ b/app/code/Magento/Search/Model/SynonymReader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Model; diff --git a/app/code/Magento/Search/Setup/InstallSchema.php b/app/code/Magento/Search/Setup/InstallSchema.php index 1d84cd85245..6c289df3154 100644 --- a/app/code/Magento/Search/Setup/InstallSchema.php +++ b/app/code/Magento/Search/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Setup/UpgradeSchema.php b/app/code/Magento/Search/Setup/UpgradeSchema.php index 1932a9af308..b816c660ca9 100644 --- a/app/code/Magento/Search/Setup/UpgradeSchema.php +++ b/app/code/Magento/Search/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Setup; diff --git a/app/code/Magento/Search/Test/Unit/Adapter/Query/Preprocessor/SynonymsTest.php b/app/code/Magento/Search/Test/Unit/Adapter/Query/Preprocessor/SynonymsTest.php index deea8af929b..e60f3ef54ad 100644 --- a/app/code/Magento/Search/Test/Unit/Adapter/Query/Preprocessor/SynonymsTest.php +++ b/app/code/Magento/Search/Test/Unit/Adapter/Query/Preprocessor/SynonymsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Adapter\Query\Preprocessor; diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Ajax/SuggestTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Ajax/SuggestTest.php index 625b64fba76..970a3b77430 100644 --- a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Ajax/SuggestTest.php +++ b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Ajax/SuggestTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Synonyms/DeleteTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Synonyms/DeleteTest.php index 45868730f46..50ebc955d07 100644 --- a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Synonyms/DeleteTest.php +++ b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Synonyms/DeleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/ExportSearchCsvTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/ExportSearchCsvTest.php index 041d14899d5..2150c854998 100644 --- a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/ExportSearchCsvTest.php +++ b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/ExportSearchCsvTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Controller\Adminhtml\Term; diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/MassDeleteTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/MassDeleteTest.php index 0ce9e8e634e..176404c34a6 100644 --- a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/MassDeleteTest.php +++ b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/MassDeleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/SaveTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/SaveTest.php index 14cc0f9b3ef..ea7257c8ff5 100644 --- a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/SaveTest.php +++ b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Test/Unit/Helper/DataTest.php b/app/code/Magento/Search/Test/Unit/Helper/DataTest.php index a88ea78434a..8c0b02e6a61 100644 --- a/app/code/Magento/Search/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Search/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Helper; diff --git a/app/code/Magento/Search/Test/Unit/Model/AdapterFactoryTest.php b/app/code/Magento/Search/Test/Unit/Model/AdapterFactoryTest.php index 8b393cffa87..e485b9299cd 100644 --- a/app/code/Magento/Search/Test/Unit/Model/AdapterFactoryTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/AdapterFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model; diff --git a/app/code/Magento/Search/Test/Unit/Model/AutocompleteTest.php b/app/code/Magento/Search/Test/Unit/Model/AutocompleteTest.php index c0c46ead506..86d9a8843a5 100644 --- a/app/code/Magento/Search/Test/Unit/Model/AutocompleteTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/AutocompleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model; diff --git a/app/code/Magento/Search/Test/Unit/Model/EngineResolverTest.php b/app/code/Magento/Search/Test/Unit/Model/EngineResolverTest.php index db29d1d93ef..7f8ab522a62 100755 --- a/app/code/Magento/Search/Test/Unit/Model/EngineResolverTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/EngineResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model; diff --git a/app/code/Magento/Search/Test/Unit/Model/QueryFactoryTest.php b/app/code/Magento/Search/Test/Unit/Model/QueryFactoryTest.php index cf6f670e131..1f37cf26886 100644 --- a/app/code/Magento/Search/Test/Unit/Model/QueryFactoryTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/QueryFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model; diff --git a/app/code/Magento/Search/Test/Unit/Model/QueryResultTest.php b/app/code/Magento/Search/Test/Unit/Model/QueryResultTest.php index 64e2c4f4e42..8a04461e546 100644 --- a/app/code/Magento/Search/Test/Unit/Model/QueryResultTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/QueryResultTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Test/Unit/Model/QueryTest.php b/app/code/Magento/Search/Test/Unit/Model/QueryTest.php index 7da208c8ddc..f6227f9df5f 100644 --- a/app/code/Magento/Search/Test/Unit/Model/QueryTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/QueryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model; diff --git a/app/code/Magento/Search/Test/Unit/Model/ResourceModel/QueryTest.php b/app/code/Magento/Search/Test/Unit/Model/ResourceModel/QueryTest.php index 52b44b4ee6b..612736d5326 100644 --- a/app/code/Magento/Search/Test/Unit/Model/ResourceModel/QueryTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/ResourceModel/QueryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Search/Test/Unit/Model/ResourceModel/SynonymGroupTest.php b/app/code/Magento/Search/Test/Unit/Model/ResourceModel/SynonymGroupTest.php index 6b5e6e873ae..8af0bf6cc6c 100644 --- a/app/code/Magento/Search/Test/Unit/Model/ResourceModel/SynonymGroupTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/ResourceModel/SynonymGroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Search/Test/Unit/Model/SearchEngine/ConfigTest.php b/app/code/Magento/Search/Test/Unit/Model/SearchEngine/ConfigTest.php index 1cd9ebc0711..a948573ea11 100644 --- a/app/code/Magento/Search/Test/Unit/Model/SearchEngine/ConfigTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/SearchEngine/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model\SearchEngine; diff --git a/app/code/Magento/Search/Test/Unit/Model/SearchEngine/MenuBuilderTest.php b/app/code/Magento/Search/Test/Unit/Model/SearchEngine/MenuBuilderTest.php index a0003006569..8dbaa694fe2 100644 --- a/app/code/Magento/Search/Test/Unit/Model/SearchEngine/MenuBuilderTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/SearchEngine/MenuBuilderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model\SearchEngine; diff --git a/app/code/Magento/Search/Test/Unit/Model/SearchEngineTest.php b/app/code/Magento/Search/Test/Unit/Model/SearchEngineTest.php index e9392ed279d..b71546a5155 100644 --- a/app/code/Magento/Search/Test/Unit/Model/SearchEngineTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/SearchEngineTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model; diff --git a/app/code/Magento/Search/Test/Unit/Model/SynonymGroupRepositoryTest.php b/app/code/Magento/Search/Test/Unit/Model/SynonymGroupRepositoryTest.php index d12e5e12d62..3543e1fb5af 100644 --- a/app/code/Magento/Search/Test/Unit/Model/SynonymGroupRepositoryTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/SynonymGroupRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model; diff --git a/app/code/Magento/Search/Test/Unit/Model/SynonymGroupTest.php b/app/code/Magento/Search/Test/Unit/Model/SynonymGroupTest.php index 7788b126afd..55e8939e728 100644 --- a/app/code/Magento/Search/Test/Unit/Model/SynonymGroupTest.php +++ b/app/code/Magento/Search/Test/Unit/Model/SynonymGroupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Test\Unit\Model; diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/Scope/Options.php b/app/code/Magento/Search/Ui/Component/Listing/Column/Scope/Options.php index f8fe91db8ff..f1f8ba6c804 100644 --- a/app/code/Magento/Search/Ui/Component/Listing/Column/Scope/Options.php +++ b/app/code/Magento/Search/Ui/Component/Listing/Column/Scope/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Ui\Component\Listing\Column\Scope; diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/Store/Options.php b/app/code/Magento/Search/Ui/Component/Listing/Column/Store/Options.php index 10d55e58051..1543c408bbf 100644 --- a/app/code/Magento/Search/Ui/Component/Listing/Column/Store/Options.php +++ b/app/code/Magento/Search/Ui/Component/Listing/Column/Store/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/StoreView.php b/app/code/Magento/Search/Ui/Component/Listing/Column/StoreView.php index b98d51d9ffe..0229c34c09d 100644 --- a/app/code/Magento/Search/Ui/Component/Listing/Column/StoreView.php +++ b/app/code/Magento/Search/Ui/Component/Listing/Column/StoreView.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/SynonymActions.php b/app/code/Magento/Search/Ui/Component/Listing/Column/SynonymActions.php index 9e0d43b6af2..baedc76bd4f 100644 --- a/app/code/Magento/Search/Ui/Component/Listing/Column/SynonymActions.php +++ b/app/code/Magento/Search/Ui/Component/Listing/Column/SynonymActions.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/Website.php b/app/code/Magento/Search/Ui/Component/Listing/Column/Website.php index eeb3ed9e9e4..b954cbb7267 100644 --- a/app/code/Magento/Search/Ui/Component/Listing/Column/Website.php +++ b/app/code/Magento/Search/Ui/Component/Listing/Column/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Search\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/Website/Options.php b/app/code/Magento/Search/Ui/Component/Listing/Column/Website/Options.php index 87beec0fcde..b8ddfc8b575 100644 --- a/app/code/Magento/Search/Ui/Component/Listing/Column/Website/Options.php +++ b/app/code/Magento/Search/Ui/Component/Listing/Column/Website/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/etc/acl.xml b/app/code/Magento/Search/etc/acl.xml index 2ac5e8b8f42..424c712805b 100644 --- a/app/code/Magento/Search/etc/acl.xml +++ b/app/code/Magento/Search/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/etc/adminhtml/menu.xml b/app/code/Magento/Search/etc/adminhtml/menu.xml index 0d1f741caee..4e496b7685c 100644 --- a/app/code/Magento/Search/etc/adminhtml/menu.xml +++ b/app/code/Magento/Search/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/etc/adminhtml/routes.xml b/app/code/Magento/Search/etc/adminhtml/routes.xml index 2a8d3770a7d..16a4c7dca6b 100644 --- a/app/code/Magento/Search/etc/adminhtml/routes.xml +++ b/app/code/Magento/Search/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Search" before="Magento_Backend" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Search/etc/adminhtml/system.xml b/app/code/Magento/Search/etc/adminhtml/system.xml index a919f02adbf..3f525c0563b 100644 --- a/app/code/Magento/Search/etc/adminhtml/system.xml +++ b/app/code/Magento/Search/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/etc/di.xml b/app/code/Magento/Search/etc/di.xml index dd0e59315f5..3af41b25285 100755 --- a/app/code/Magento/Search/etc/di.xml +++ b/app/code/Magento/Search/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/etc/frontend/page_types.xml b/app/code/Magento/Search/etc/frontend/page_types.xml index c0214b4be07..b0e0e3ececf 100644 --- a/app/code/Magento/Search/etc/frontend/page_types.xml +++ b/app/code/Magento/Search/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/etc/frontend/routes.xml b/app/code/Magento/Search/etc/frontend/routes.xml index 2a6b3ed06c7..ee259563bf4 100644 --- a/app/code/Magento/Search/etc/frontend/routes.xml +++ b/app/code/Magento/Search/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Search" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Search/etc/module.xml b/app/code/Magento/Search/etc/module.xml index 3996931d5d1..2bc085da760 100644 --- a/app/code/Magento/Search/etc/module.xml +++ b/app/code/Magento/Search/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/etc/search_engine.xml b/app/code/Magento/Search/etc/search_engine.xml index d241571e813..45a70279860 100644 --- a/app/code/Magento/Search/etc/search_engine.xml +++ b/app/code/Magento/Search/etc/search_engine.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/etc/webapi.xml b/app/code/Magento/Search/etc/webapi.xml index c01eb078c00..977c0e3ad1f 100644 --- a/app/code/Magento/Search/etc/webapi.xml +++ b/app/code/Magento/Search/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/registration.php b/app/code/Magento/Search/registration.php index efed1d18d52..c206369df6f 100644 --- a/app/code/Magento/Search/registration.php +++ b/app/code/Magento/Search/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/view/adminhtml/layout/adminhtml_dashboard_index.xml b/app/code/Magento/Search/view/adminhtml/layout/adminhtml_dashboard_index.xml index 027d0531ffe..67a8c3fbc8d 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/adminhtml_dashboard_index.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/adminhtml_dashboard_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_edit.xml b/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_edit.xml index e0bbfd00d0e..c1fdba16faa 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_edit.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -12,4 +12,4 @@ <uiComponent name="search_synonyms_form"/> </referenceContainer> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_index.xml b/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_index.xml index d64cedd99ce..a55c6ed8b95 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_index.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_new.xml b/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_new.xml index 42ac6a5bb77..60ee8f9130b 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_new.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_new.xml @@ -1,11 +1,11 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <update handle="search_synonyms_edit"/> <body/> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_block.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_block.xml index 4b4e99d40c7..b9034ca5f76 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/search_term_block.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/search_term_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_edit.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_edit.xml index 043271058e2..c8d968312ec 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/search_term_edit.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/search_term_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchcsv.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchcsv.xml index edc3096f796..14eacc9cf61 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchcsv.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchcsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchexcel.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchexcel.xml index edc3096f796..14eacc9cf61 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchexcel.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchexcel.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_grid_block.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_grid_block.xml index 0d6c5c681e6..9eb23c51cd7 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/search_term_grid_block.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/search_term_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_index.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_index.xml index e21da28ae49..b22a3477e3f 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/search_term_index.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/search_term_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_report.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_report.xml index cb4cafb4dca..2d02d39e30c 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/search_term_report.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/search_term_report.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_report_block.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_report_block.xml index 08900b628cd..6627dc9c312 100644 --- a/app/code/Magento/Search/view/adminhtml/layout/search_term_report_block.xml +++ b/app/code/Magento/Search/view/adminhtml/layout/search_term_report_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_form.xml b/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_form.xml index 01d7deeb3d4..32b860864c5 100644 --- a/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_form.xml +++ b/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_grid.xml b/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_grid.xml index 9b8585e737c..67a0e5a568a 100644 --- a/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_grid.xml +++ b/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_grid.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/frontend/layout/default.xml b/app/code/Magento/Search/view/frontend/layout/default.xml index 412df420e24..53772f8814d 100644 --- a/app/code/Magento/Search/view/frontend/layout/default.xml +++ b/app/code/Magento/Search/view/frontend/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/frontend/layout/search_term_popular.xml b/app/code/Magento/Search/view/frontend/layout/search_term_popular.xml index 93659470a50..1ba7175ef79 100644 --- a/app/code/Magento/Search/view/frontend/layout/search_term_popular.xml +++ b/app/code/Magento/Search/view/frontend/layout/search_term_popular.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Search/view/frontend/requirejs-config.js b/app/code/Magento/Search/view/frontend/requirejs-config.js index 11c46d9edb8..17470f62b88 100644 --- a/app/code/Magento/Search/view/frontend/requirejs-config.js +++ b/app/code/Magento/Search/view/frontend/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -9,4 +9,4 @@ var config = { quickSearch: 'Magento_Search/form-mini' } } -}; \ No newline at end of file +}; diff --git a/app/code/Magento/Search/view/frontend/templates/form.mini.phtml b/app/code/Magento/Search/view/frontend/templates/form.mini.phtml index 53c3a43527c..8819cc3dbef 100644 --- a/app/code/Magento/Search/view/frontend/templates/form.mini.phtml +++ b/app/code/Magento/Search/view/frontend/templates/form.mini.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/view/frontend/templates/term.phtml b/app/code/Magento/Search/view/frontend/templates/term.phtml index 0133322eb44..1e843f03370 100644 --- a/app/code/Magento/Search/view/frontend/templates/term.phtml +++ b/app/code/Magento/Search/view/frontend/templates/term.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Search/view/frontend/web/form-mini.js b/app/code/Magento/Search/view/frontend/web/form-mini.js index 9bb254a7247..81dd09dc6fc 100644 --- a/app/code/Magento/Search/view/frontend/web/form-mini.js +++ b/app/code/Magento/Search/view/frontend/web/form-mini.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Security/Block/Adminhtml/Session/Activity.php b/app/code/Magento/Security/Block/Adminhtml/Session/Activity.php index ef6bd99f2f3..ba9a1be699a 100644 --- a/app/code/Magento/Security/Block/Adminhtml/Session/Activity.php +++ b/app/code/Magento/Security/Block/Adminhtml/Session/Activity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Block\Adminhtml\Session; diff --git a/app/code/Magento/Security/Controller/Adminhtml/Session/Activity.php b/app/code/Magento/Security/Controller/Adminhtml/Session/Activity.php index c4d2238e89a..bb4e7b0a3c0 100644 --- a/app/code/Magento/Security/Controller/Adminhtml/Session/Activity.php +++ b/app/code/Magento/Security/Controller/Adminhtml/Session/Activity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Controller\Adminhtml\Session; diff --git a/app/code/Magento/Security/Controller/Adminhtml/Session/LogoutAll.php b/app/code/Magento/Security/Controller/Adminhtml/Session/LogoutAll.php index 89f5df8cc91..b91632dfa18 100644 --- a/app/code/Magento/Security/Controller/Adminhtml/Session/LogoutAll.php +++ b/app/code/Magento/Security/Controller/Adminhtml/Session/LogoutAll.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Controller\Adminhtml\Session; diff --git a/app/code/Magento/Security/Model/AdminSessionInfo.php b/app/code/Magento/Security/Model/AdminSessionInfo.php index a0870643ac4..2e05ad21e82 100644 --- a/app/code/Magento/Security/Model/AdminSessionInfo.php +++ b/app/code/Magento/Security/Model/AdminSessionInfo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model; diff --git a/app/code/Magento/Security/Model/AdminSessionsManager.php b/app/code/Magento/Security/Model/AdminSessionsManager.php index e65db7e2350..ecf0e6ece41 100644 --- a/app/code/Magento/Security/Model/AdminSessionsManager.php +++ b/app/code/Magento/Security/Model/AdminSessionsManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model; diff --git a/app/code/Magento/Security/Model/Config.php b/app/code/Magento/Security/Model/Config.php index a0834ff9279..d31495c7fad 100644 --- a/app/code/Magento/Security/Model/Config.php +++ b/app/code/Magento/Security/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model; diff --git a/app/code/Magento/Security/Model/Config/Source/ResetMethod.php b/app/code/Magento/Security/Model/Config/Source/ResetMethod.php index 8214d722613..bc7001abf1e 100644 --- a/app/code/Magento/Security/Model/Config/Source/ResetMethod.php +++ b/app/code/Magento/Security/Model/Config/Source/ResetMethod.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Model/ConfigInterface.php b/app/code/Magento/Security/Model/ConfigInterface.php index 2cd7bd6db4e..e4d3cfce829 100644 --- a/app/code/Magento/Security/Model/ConfigInterface.php +++ b/app/code/Magento/Security/Model/ConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model; diff --git a/app/code/Magento/Security/Model/PasswordResetRequestEvent.php b/app/code/Magento/Security/Model/PasswordResetRequestEvent.php index 2b47cba3c9e..8751f78423c 100644 --- a/app/code/Magento/Security/Model/PasswordResetRequestEvent.php +++ b/app/code/Magento/Security/Model/PasswordResetRequestEvent.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model; diff --git a/app/code/Magento/Security/Model/Plugin/AccountManagement.php b/app/code/Magento/Security/Model/Plugin/AccountManagement.php index c65442ec400..14c20f93356 100644 --- a/app/code/Magento/Security/Model/Plugin/AccountManagement.php +++ b/app/code/Magento/Security/Model/Plugin/AccountManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model\Plugin; diff --git a/app/code/Magento/Security/Model/Plugin/Auth.php b/app/code/Magento/Security/Model/Plugin/Auth.php index c5f88d54728..9c7d9452ec3 100644 --- a/app/code/Magento/Security/Model/Plugin/Auth.php +++ b/app/code/Magento/Security/Model/Plugin/Auth.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model\Plugin; diff --git a/app/code/Magento/Security/Model/Plugin/AuthSession.php b/app/code/Magento/Security/Model/Plugin/AuthSession.php index 2bfa3477a8f..6b74801121c 100644 --- a/app/code/Magento/Security/Model/Plugin/AuthSession.php +++ b/app/code/Magento/Security/Model/Plugin/AuthSession.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model\Plugin; diff --git a/app/code/Magento/Security/Model/Plugin/LoginController.php b/app/code/Magento/Security/Model/Plugin/LoginController.php index d3b7e2562d3..5643ea059b2 100644 --- a/app/code/Magento/Security/Model/Plugin/LoginController.php +++ b/app/code/Magento/Security/Model/Plugin/LoginController.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model\Plugin; diff --git a/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo.php b/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo.php index 80bdf7ca26a..08cf8e2ba36 100644 --- a/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo.php +++ b/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo/Collection.php b/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo/Collection.php index bf2d25cee5c..f0d3fa8e484 100644 --- a/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo/Collection.php +++ b/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model\ResourceModel\AdminSessionInfo; diff --git a/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent.php b/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent.php index e5da90da347..751dde116bb 100644 --- a/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent.php +++ b/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/Collection.php b/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/Collection.php index fff95dfc36b..03592bbb80a 100644 --- a/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/Collection.php +++ b/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model\ResourceModel\PasswordResetRequestEvent; diff --git a/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactory.php b/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactory.php index 0822a782e00..cc888c5d8b8 100644 --- a/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactory.php +++ b/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model\ResourceModel\PasswordResetRequestEvent; diff --git a/app/code/Magento/Security/Model/SecurityChecker/Frequency.php b/app/code/Magento/Security/Model/SecurityChecker/Frequency.php index 741f3b951ae..df4135316d8 100644 --- a/app/code/Magento/Security/Model/SecurityChecker/Frequency.php +++ b/app/code/Magento/Security/Model/SecurityChecker/Frequency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model\SecurityChecker; diff --git a/app/code/Magento/Security/Model/SecurityChecker/Quantity.php b/app/code/Magento/Security/Model/SecurityChecker/Quantity.php index 7fd0574902b..1fa0b205ad6 100644 --- a/app/code/Magento/Security/Model/SecurityChecker/Quantity.php +++ b/app/code/Magento/Security/Model/SecurityChecker/Quantity.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model\SecurityChecker; diff --git a/app/code/Magento/Security/Model/SecurityChecker/SecurityCheckerInterface.php b/app/code/Magento/Security/Model/SecurityChecker/SecurityCheckerInterface.php index 3b482dc561f..4cc8fcf235e 100644 --- a/app/code/Magento/Security/Model/SecurityChecker/SecurityCheckerInterface.php +++ b/app/code/Magento/Security/Model/SecurityChecker/SecurityCheckerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model\SecurityChecker; diff --git a/app/code/Magento/Security/Model/SecurityCookie.php b/app/code/Magento/Security/Model/SecurityCookie.php index 73fe146eea2..280a4bf9c08 100644 --- a/app/code/Magento/Security/Model/SecurityCookie.php +++ b/app/code/Magento/Security/Model/SecurityCookie.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model; diff --git a/app/code/Magento/Security/Model/SecurityManager.php b/app/code/Magento/Security/Model/SecurityManager.php index 319b95f1e0f..3aeee7c1d51 100644 --- a/app/code/Magento/Security/Model/SecurityManager.php +++ b/app/code/Magento/Security/Model/SecurityManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Model; diff --git a/app/code/Magento/Security/Setup/InstallSchema.php b/app/code/Magento/Security/Setup/InstallSchema.php index db090066d9c..0cfaf954cc7 100644 --- a/app/code/Magento/Security/Setup/InstallSchema.php +++ b/app/code/Magento/Security/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Setup; diff --git a/app/code/Magento/Security/Setup/UpgradeSchema.php b/app/code/Magento/Security/Setup/UpgradeSchema.php index f17f0f49602..02b6389e2f6 100644 --- a/app/code/Magento/Security/Setup/UpgradeSchema.php +++ b/app/code/Magento/Security/Setup/UpgradeSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Setup; diff --git a/app/code/Magento/Security/Test/Unit/Block/Adminhtml/Session/ActivityTest.php b/app/code/Magento/Security/Test/Unit/Block/Adminhtml/Session/ActivityTest.php index 6717202e253..9b7e857c1e6 100644 --- a/app/code/Magento/Security/Test/Unit/Block/Adminhtml/Session/ActivityTest.php +++ b/app/code/Magento/Security/Test/Unit/Block/Adminhtml/Session/ActivityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/ActivityTest.php b/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/ActivityTest.php index dbcc56478a5..e1fe317745c 100644 --- a/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/ActivityTest.php +++ b/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/ActivityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/LogoutAllTest.php b/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/LogoutAllTest.php index 7bfd30ea37a..576f71ccc7e 100644 --- a/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/LogoutAllTest.php +++ b/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/LogoutAllTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/AdminSessionInfoTest.php b/app/code/Magento/Security/Test/Unit/Model/AdminSessionInfoTest.php index 93a45e487d3..ed6f3b87e57 100644 --- a/app/code/Magento/Security/Test/Unit/Model/AdminSessionInfoTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/AdminSessionInfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Test\Unit\Model; diff --git a/app/code/Magento/Security/Test/Unit/Model/AdminSessionsManagerTest.php b/app/code/Magento/Security/Test/Unit/Model/AdminSessionsManagerTest.php index 60375b037cd..a66dbfd61ca 100644 --- a/app/code/Magento/Security/Test/Unit/Model/AdminSessionsManagerTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/AdminSessionsManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/Config/Source/ResetMethodTest.php b/app/code/Magento/Security/Test/Unit/Model/Config/Source/ResetMethodTest.php index 2be264b5930..3abf7683e67 100644 --- a/app/code/Magento/Security/Test/Unit/Model/Config/Source/ResetMethodTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/Config/Source/ResetMethodTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Test\Unit\Model\Config\Source; diff --git a/app/code/Magento/Security/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Security/Test/Unit/Model/ConfigTest.php index 69028c551d2..27d594e001e 100644 --- a/app/code/Magento/Security/Test/Unit/Model/ConfigTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Test\Unit\Model; diff --git a/app/code/Magento/Security/Test/Unit/Model/Plugin/AccountManagementTest.php b/app/code/Magento/Security/Test/Unit/Model/Plugin/AccountManagementTest.php index 849bbe22bdc..fb6d9fa2913 100644 --- a/app/code/Magento/Security/Test/Unit/Model/Plugin/AccountManagementTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/Plugin/AccountManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthSessionTest.php b/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthSessionTest.php index f6a0fb83efa..a4c9ffce2e4 100644 --- a/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthSessionTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthSessionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthTest.php b/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthTest.php index 783751991b0..c7062abeff0 100644 --- a/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/Plugin/LoginControllerTest.php b/app/code/Magento/Security/Test/Unit/Model/Plugin/LoginControllerTest.php index 5085c97872d..0fe011b78e8 100644 --- a/app/code/Magento/Security/Test/Unit/Model/Plugin/LoginControllerTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/Plugin/LoginControllerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfo/CollectionTest.php b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfo/CollectionTest.php index 00265e7ef7f..569a5a3a22d 100644 --- a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfo/CollectionTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfo/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfoTest.php b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfoTest.php index 7d2d70c1af2..d53009ec9f4 100644 --- a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfoTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactoryTest.php b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactoryTest.php index 0a681e6718a..52febaa043e 100644 --- a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactoryTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionTest.php b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionTest.php index ae59bdce0fa..9e06b9d2bd3 100644 --- a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEventTest.php b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEventTest.php index a593a06ab54..c7c1091c2ac 100644 --- a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEventTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEventTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/FrequencyTest.php b/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/FrequencyTest.php index f5eb2964654..a82e36af7da 100644 --- a/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/FrequencyTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/FrequencyTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/QuantityTest.php b/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/QuantityTest.php index 79083e90e29..c0ca0d1f22a 100644 --- a/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/QuantityTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/QuantityTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/SecurityCookieTest.php b/app/code/Magento/Security/Test/Unit/Model/SecurityCookieTest.php index 067535be7f7..5fdc2261e0d 100644 --- a/app/code/Magento/Security/Test/Unit/Model/SecurityCookieTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/SecurityCookieTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/Test/Unit/Model/SecurityManagerTest.php b/app/code/Magento/Security/Test/Unit/Model/SecurityManagerTest.php index c983e6ca143..0490c24c382 100644 --- a/app/code/Magento/Security/Test/Unit/Model/SecurityManagerTest.php +++ b/app/code/Magento/Security/Test/Unit/Model/SecurityManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Security\Test\Unit\Model; diff --git a/app/code/Magento/Security/etc/adminhtml/di.xml b/app/code/Magento/Security/etc/adminhtml/di.xml index c134638d126..623dab691e0 100644 --- a/app/code/Magento/Security/etc/adminhtml/di.xml +++ b/app/code/Magento/Security/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Security/etc/adminhtml/routes.xml b/app/code/Magento/Security/etc/adminhtml/routes.xml index 3df8748af51..f7eeec3f65b 100644 --- a/app/code/Magento/Security/etc/adminhtml/routes.xml +++ b/app/code/Magento/Security/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Security/etc/adminhtml/system.xml b/app/code/Magento/Security/etc/adminhtml/system.xml index 264d7493ec2..d3ad8439c86 100644 --- a/app/code/Magento/Security/etc/adminhtml/system.xml +++ b/app/code/Magento/Security/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Security/etc/config.xml b/app/code/Magento/Security/etc/config.xml index 2bcbb847e46..1d8e2ec09fc 100644 --- a/app/code/Magento/Security/etc/config.xml +++ b/app/code/Magento/Security/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Security/etc/crontab.xml b/app/code/Magento/Security/etc/crontab.xml index a707bbd2938..ff6e89d4c3e 100644 --- a/app/code/Magento/Security/etc/crontab.xml +++ b/app/code/Magento/Security/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Security/etc/di.xml b/app/code/Magento/Security/etc/di.xml index 2464439ac00..06703cf66af 100644 --- a/app/code/Magento/Security/etc/di.xml +++ b/app/code/Magento/Security/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Security/etc/module.xml b/app/code/Magento/Security/etc/module.xml index 85ad00b5c07..93775df47e5 100644 --- a/app/code/Magento/Security/etc/module.xml +++ b/app/code/Magento/Security/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Security/registration.php b/app/code/Magento/Security/registration.php index 0ba23d04ff6..2ddbb277f8d 100644 --- a/app/code/Magento/Security/registration.php +++ b/app/code/Magento/Security/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/view/adminhtml/layout/default.xml b/app/code/Magento/Security/view/adminhtml/layout/default.xml index 09a773d7b4f..a6ef565b7a8 100644 --- a/app/code/Magento/Security/view/adminhtml/layout/default.xml +++ b/app/code/Magento/Security/view/adminhtml/layout/default.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Security/view/adminhtml/layout/security_session_activity.xml b/app/code/Magento/Security/view/adminhtml/layout/security_session_activity.xml index bd0f26c024c..7f4b521ac3d 100644 --- a/app/code/Magento/Security/view/adminhtml/layout/security_session_activity.xml +++ b/app/code/Magento/Security/view/adminhtml/layout/security_session_activity.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Security/view/adminhtml/page_layout/admin-popup.xml b/app/code/Magento/Security/view/adminhtml/page_layout/admin-popup.xml index d1636361b70..bc0dca30105 100644 --- a/app/code/Magento/Security/view/adminhtml/page_layout/admin-popup.xml +++ b/app/code/Magento/Security/view/adminhtml/page_layout/admin-popup.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Security/view/adminhtml/requirejs-config.js b/app/code/Magento/Security/view/adminhtml/requirejs-config.js index 3d7d73c0461..a44c1fb9466 100644 --- a/app/code/Magento/Security/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/Security/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*eslint no-unused-vars: 0*/ diff --git a/app/code/Magento/Security/view/adminhtml/templates/page/activity_link.phtml b/app/code/Magento/Security/view/adminhtml/templates/page/activity_link.phtml index ee3c962a06e..9344be3e809 100644 --- a/app/code/Magento/Security/view/adminhtml/templates/page/activity_link.phtml +++ b/app/code/Magento/Security/view/adminhtml/templates/page/activity_link.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/view/adminhtml/templates/session/activity.phtml b/app/code/Magento/Security/view/adminhtml/templates/session/activity.phtml index 37d4b0540a0..a3484981f8f 100644 --- a/app/code/Magento/Security/view/adminhtml/templates/session/activity.phtml +++ b/app/code/Magento/Security/view/adminhtml/templates/session/activity.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/view/adminhtml/web/css/activity.css b/app/code/Magento/Security/view/adminhtml/web/css/activity.css index 511a0d1d9c2..1abc40c613a 100644 --- a/app/code/Magento/Security/view/adminhtml/web/css/activity.css +++ b/app/code/Magento/Security/view/adminhtml/web/css/activity.css @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Security/view/adminhtml/web/js/confirm-redirect.js b/app/code/Magento/Security/view/adminhtml/web/js/confirm-redirect.js index 8756e0aecc9..482ea49f5e3 100644 --- a/app/code/Magento/Security/view/adminhtml/web/js/confirm-redirect.js +++ b/app/code/Magento/Security/view/adminhtml/web/js/confirm-redirect.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*eslint-disable no-undef*/ diff --git a/app/code/Magento/SendFriend/Block/Plugin/Catalog/Product/View.php b/app/code/Magento/SendFriend/Block/Plugin/Catalog/Product/View.php index 5014d4351e6..f150004bbbf 100644 --- a/app/code/Magento/SendFriend/Block/Plugin/Catalog/Product/View.php +++ b/app/code/Magento/SendFriend/Block/Plugin/Catalog/Product/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SendFriend/Block/Send.php b/app/code/Magento/SendFriend/Block/Send.php index 0aad1b58764..2fd08dca400 100644 --- a/app/code/Magento/SendFriend/Block/Send.php +++ b/app/code/Magento/SendFriend/Block/Send.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SendFriend\Block; diff --git a/app/code/Magento/SendFriend/Controller/Product.php b/app/code/Magento/SendFriend/Controller/Product.php index 30cec1f2350..d047cad929f 100644 --- a/app/code/Magento/SendFriend/Controller/Product.php +++ b/app/code/Magento/SendFriend/Controller/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SendFriend\Controller; diff --git a/app/code/Magento/SendFriend/Controller/Product/Send.php b/app/code/Magento/SendFriend/Controller/Product/Send.php index 939544e8bc8..981ad7fbec0 100644 --- a/app/code/Magento/SendFriend/Controller/Product/Send.php +++ b/app/code/Magento/SendFriend/Controller/Product/Send.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SendFriend\Controller\Product; diff --git a/app/code/Magento/SendFriend/Controller/Product/Sendmail.php b/app/code/Magento/SendFriend/Controller/Product/Sendmail.php index 7c0d072b0d1..1201e431f65 100644 --- a/app/code/Magento/SendFriend/Controller/Product/Sendmail.php +++ b/app/code/Magento/SendFriend/Controller/Product/Sendmail.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SendFriend/Helper/Data.php b/app/code/Magento/SendFriend/Helper/Data.php index e71d6525f2c..5ec9a6cf213 100644 --- a/app/code/Magento/SendFriend/Helper/Data.php +++ b/app/code/Magento/SendFriend/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend.php b/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend.php index 7d1a82f4402..832e24b18d0 100644 --- a/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend.php +++ b/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SendFriend\Model\ResourceModel; diff --git a/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend/Collection.php b/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend/Collection.php index e7d169e87b4..8de172659c5 100644 --- a/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend/Collection.php +++ b/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SendFriend\Model\ResourceModel\SendFriend; diff --git a/app/code/Magento/SendFriend/Model/SendFriend.php b/app/code/Magento/SendFriend/Model/SendFriend.php index 5a1ae659e17..5986c3ad99a 100644 --- a/app/code/Magento/SendFriend/Model/SendFriend.php +++ b/app/code/Magento/SendFriend/Model/SendFriend.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SendFriend\Model; diff --git a/app/code/Magento/SendFriend/Model/Source/Checktype.php b/app/code/Magento/SendFriend/Model/Source/Checktype.php index 76c07d9ed91..116f66e24a2 100644 --- a/app/code/Magento/SendFriend/Model/Source/Checktype.php +++ b/app/code/Magento/SendFriend/Model/Source/Checktype.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SendFriend/Setup/InstallSchema.php b/app/code/Magento/SendFriend/Setup/InstallSchema.php index b3a2d580b0b..8df7eb5d5b5 100644 --- a/app/code/Magento/SendFriend/Setup/InstallSchema.php +++ b/app/code/Magento/SendFriend/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SendFriend/Test/Unit/Block/Plugin/Catalog/Product/ViewTest.php b/app/code/Magento/SendFriend/Test/Unit/Block/Plugin/Catalog/Product/ViewTest.php index eee213e7ff2..691033f048a 100644 --- a/app/code/Magento/SendFriend/Test/Unit/Block/Plugin/Catalog/Product/ViewTest.php +++ b/app/code/Magento/SendFriend/Test/Unit/Block/Plugin/Catalog/Product/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SendFriend/Test/Unit/Block/SendTest.php b/app/code/Magento/SendFriend/Test/Unit/Block/SendTest.php index b03f0a83d87..24bf1bf36d8 100644 --- a/app/code/Magento/SendFriend/Test/Unit/Block/SendTest.php +++ b/app/code/Magento/SendFriend/Test/Unit/Block/SendTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendTest.php b/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendTest.php index cc68c8edc40..e470b113646 100644 --- a/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendTest.php +++ b/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SendFriend\Test\Unit\Controller\Product; diff --git a/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendmailTest.php b/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendmailTest.php index 3b0507cb5c0..0e0c8c993d3 100644 --- a/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendmailTest.php +++ b/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendmailTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\SendFriend\Test\Unit\Controller\Product; diff --git a/app/code/Magento/SendFriend/Test/Unit/Model/SendFriendTest.php b/app/code/Magento/SendFriend/Test/Unit/Model/SendFriendTest.php index 6252f2da741..4f1b15813a9 100644 --- a/app/code/Magento/SendFriend/Test/Unit/Model/SendFriendTest.php +++ b/app/code/Magento/SendFriend/Test/Unit/Model/SendFriendTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SendFriend/etc/adminhtml/system.xml b/app/code/Magento/SendFriend/etc/adminhtml/system.xml index 241b9b6cedd..e0768e49d8e 100644 --- a/app/code/Magento/SendFriend/etc/adminhtml/system.xml +++ b/app/code/Magento/SendFriend/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SendFriend/etc/config.xml b/app/code/Magento/SendFriend/etc/config.xml index 6698374e9b3..12cf03c6117 100644 --- a/app/code/Magento/SendFriend/etc/config.xml +++ b/app/code/Magento/SendFriend/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SendFriend/etc/email_templates.xml b/app/code/Magento/SendFriend/etc/email_templates.xml index c9231d69a0a..6c92782c569 100644 --- a/app/code/Magento/SendFriend/etc/email_templates.xml +++ b/app/code/Magento/SendFriend/etc/email_templates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SendFriend/etc/frontend/di.xml b/app/code/Magento/SendFriend/etc/frontend/di.xml index 904531c402f..eda115bf7d6 100644 --- a/app/code/Magento/SendFriend/etc/frontend/di.xml +++ b/app/code/Magento/SendFriend/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SendFriend/etc/frontend/page_types.xml b/app/code/Magento/SendFriend/etc/frontend/page_types.xml index 46334fbd2c1..686b4d59d86 100644 --- a/app/code/Magento/SendFriend/etc/frontend/page_types.xml +++ b/app/code/Magento/SendFriend/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SendFriend/etc/frontend/routes.xml b/app/code/Magento/SendFriend/etc/frontend/routes.xml index af9077cd3d9..1f004aca6dc 100644 --- a/app/code/Magento/SendFriend/etc/frontend/routes.xml +++ b/app/code/Magento/SendFriend/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_SendFriend" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/SendFriend/etc/module.xml b/app/code/Magento/SendFriend/etc/module.xml index cad99edfd0d..cae02edc716 100644 --- a/app/code/Magento/SendFriend/etc/module.xml +++ b/app/code/Magento/SendFriend/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SendFriend/registration.php b/app/code/Magento/SendFriend/registration.php index 85e5a5aeb79..3b80b087c7d 100644 --- a/app/code/Magento/SendFriend/registration.php +++ b/app/code/Magento/SendFriend/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SendFriend/view/frontend/email/product_share.html b/app/code/Magento/SendFriend/view/frontend/email/product_share.html index dfacb1caa10..26bd6d5d281 100644 --- a/app/code/Magento/SendFriend/view/frontend/email/product_share.html +++ b/app/code/Magento/SendFriend/view/frontend/email/product_share.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SendFriend/view/frontend/layout/sendfriend_product_send.xml b/app/code/Magento/SendFriend/view/frontend/layout/sendfriend_product_send.xml index 99592a7b7e4..1790fe068ac 100644 --- a/app/code/Magento/SendFriend/view/frontend/layout/sendfriend_product_send.xml +++ b/app/code/Magento/SendFriend/view/frontend/layout/sendfriend_product_send.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SendFriend/view/frontend/templates/send.phtml b/app/code/Magento/SendFriend/view/frontend/templates/send.phtml index 68902718907..e498a5ce789 100644 --- a/app/code/Magento/SendFriend/view/frontend/templates/send.phtml +++ b/app/code/Magento/SendFriend/view/frontend/templates/send.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SendFriend/view/frontend/web/back-event.js b/app/code/Magento/SendFriend/view/frontend/web/back-event.js index a605db644a3..d4d43cc020d 100644 --- a/app/code/Magento/SendFriend/view/frontend/web/back-event.js +++ b/app/code/Magento/SendFriend/view/frontend/web/back-event.js @@ -1,5 +1,5 @@ /** -* Copyright © 2016 Magento. All rights reserved. +* Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Create.php b/app/code/Magento/Shipping/Block/Adminhtml/Create.php index 8f1a2dad994..93737fab203 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/Create.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/Create.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Adminhtml; diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Create/Form.php b/app/code/Magento/Shipping/Block/Adminhtml/Create/Form.php index e624304b671..572c0ed5947 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/Create/Form.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/Create/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Adminhtml\Create; diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Create/Items.php b/app/code/Magento/Shipping/Block/Adminhtml/Create/Items.php index 40f88d794e6..a0504a272f8 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/Create/Items.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/Create/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Adminhtml\Create; diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging.php b/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging.php index 7877a04606f..9d9c3443aae 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Adminhtml\Order; diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging/Grid.php b/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging/Grid.php index 416b9db9b2d..19982450a5c 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging/Grid.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging/Grid.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Adminhtml\Order\Packaging; diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking.php b/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking.php index ef0fa966840..e2058414304 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Adminhtml\Order; diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/Invoice.php b/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/Invoice.php index 31df7f0831b..a5a673a3c5c 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/Invoice.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/Invoice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/View.php b/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/View.php index ed8b61f3df7..55131a7fa44 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/View.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Adminhtml\Order\Tracking; diff --git a/app/code/Magento/Shipping/Block/Adminhtml/View.php b/app/code/Magento/Shipping/Block/Adminhtml/View.php index e3d7cba63f8..943cdbce976 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/View.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/View.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Adminhtml; diff --git a/app/code/Magento/Shipping/Block/Adminhtml/View/Comments.php b/app/code/Magento/Shipping/Block/Adminhtml/View/Comments.php index 15fb1d0a671..fd670c19c7b 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/View/Comments.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/View/Comments.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Block/Adminhtml/View/Form.php b/app/code/Magento/Shipping/Block/Adminhtml/View/Form.php index e7b86fe23e5..e69d6cefbb3 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/View/Form.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/View/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Block/Adminhtml/View/Items.php b/app/code/Magento/Shipping/Block/Adminhtml/View/Items.php index 9e66c371753..8fbaa06f923 100644 --- a/app/code/Magento/Shipping/Block/Adminhtml/View/Items.php +++ b/app/code/Magento/Shipping/Block/Adminhtml/View/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Block/Items.php b/app/code/Magento/Shipping/Block/Items.php index d5980385b34..d6a50dac9ea 100644 --- a/app/code/Magento/Shipping/Block/Items.php +++ b/app/code/Magento/Shipping/Block/Items.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Block/Order/Shipment.php b/app/code/Magento/Shipping/Block/Order/Shipment.php index 1a00c55ef8a..66afb9fd970 100644 --- a/app/code/Magento/Shipping/Block/Order/Shipment.php +++ b/app/code/Magento/Shipping/Block/Order/Shipment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Order; diff --git a/app/code/Magento/Shipping/Block/Tracking/Ajax.php b/app/code/Magento/Shipping/Block/Tracking/Ajax.php index 443c12bb3c2..60d9fc26021 100644 --- a/app/code/Magento/Shipping/Block/Tracking/Ajax.php +++ b/app/code/Magento/Shipping/Block/Tracking/Ajax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Tracking; diff --git a/app/code/Magento/Shipping/Block/Tracking/Link.php b/app/code/Magento/Shipping/Block/Tracking/Link.php index 67531d7ff89..1eb10e47559 100644 --- a/app/code/Magento/Shipping/Block/Tracking/Link.php +++ b/app/code/Magento/Shipping/Block/Tracking/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Tracking; diff --git a/app/code/Magento/Shipping/Block/Tracking/Popup.php b/app/code/Magento/Shipping/Block/Tracking/Popup.php index 00287427199..c5d42b2df8f 100644 --- a/app/code/Magento/Shipping/Block/Tracking/Popup.php +++ b/app/code/Magento/Shipping/Block/Tracking/Popup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddComment.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddComment.php index 4e8ff155abb..6c87541924f 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddComment.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddComment.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddTrack.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddTrack.php index a99fa7da8c3..f35b2fe10cb 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddTrack.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddTrack.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/CreateLabel.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/CreateLabel.php index d042cee05b0..1d5b9ba8c09 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/CreateLabel.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/CreateLabel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Email.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Email.php index 0065fa1f024..d145b9d1856 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Email.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Email.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/GetShippingItemsGrid.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/GetShippingItemsGrid.php index 268c4b68a43..ed7cf25495b 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/GetShippingItemsGrid.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/GetShippingItemsGrid.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Index.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Index.php index 96f9e7b4399..0f563197796 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Index.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/MassPrintShippingLabel.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/MassPrintShippingLabel.php index f9cf6e7d525..f3b52494257 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/MassPrintShippingLabel.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/MassPrintShippingLabel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/NewAction.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/NewAction.php index d3494423cba..f5880950b1a 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/NewAction.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Pdfshipments.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Pdfshipments.php index 60b6ce10064..1ff5114b77e 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Pdfshipments.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Pdfshipments.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintAction.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintAction.php index e03077cd299..bd71b3f5f9d 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintAction.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintLabel.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintLabel.php index 91588fe33fb..a6de44bc3a5 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintLabel.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintLabel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintPackage.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintPackage.php index 1339b3d5867..0e51282bf26 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintPackage.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintPackage.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/RemoveTrack.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/RemoveTrack.php index 16f58fa1933..991bc495226 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/RemoveTrack.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/RemoveTrack.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Save.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Save.php index 1c59c4033d3..6f00ad63c89 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Save.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Start.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Start.php index 4d0eaf394e5..5f4ab1a8ff3 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Start.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Start.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/View.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/View.php index 12c2192a2f5..cdc79afbde4 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/View.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/View.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/ShipmentLoader.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/ShipmentLoader.php index c4efe6f6507..c6d624b93d5 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Order/ShipmentLoader.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Order/ShipmentLoader.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Shipment/MassPrintShippingLabel.php b/app/code/Magento/Shipping/Controller/Adminhtml/Shipment/MassPrintShippingLabel.php index 2b39034fc22..03a5fe7da99 100644 --- a/app/code/Magento/Shipping/Controller/Adminhtml/Shipment/MassPrintShippingLabel.php +++ b/app/code/Magento/Shipping/Controller/Adminhtml/Shipment/MassPrintShippingLabel.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Adminhtml\Shipment; diff --git a/app/code/Magento/Shipping/Controller/Tracking/Popup.php b/app/code/Magento/Shipping/Controller/Tracking/Popup.php index af00e7899b9..4e211db915d 100644 --- a/app/code/Magento/Shipping/Controller/Tracking/Popup.php +++ b/app/code/Magento/Shipping/Controller/Tracking/Popup.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Controller\Tracking; diff --git a/app/code/Magento/Shipping/Helper/Carrier.php b/app/code/Magento/Shipping/Helper/Carrier.php index d1244deae24..cf704f419f1 100644 --- a/app/code/Magento/Shipping/Helper/Carrier.php +++ b/app/code/Magento/Shipping/Helper/Carrier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Helper; diff --git a/app/code/Magento/Shipping/Helper/Data.php b/app/code/Magento/Shipping/Helper/Data.php index 101dc26149c..4a1fa262d0a 100644 --- a/app/code/Magento/Shipping/Helper/Data.php +++ b/app/code/Magento/Shipping/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Model/Carrier/AbstractCarrier.php b/app/code/Magento/Shipping/Model/Carrier/AbstractCarrier.php index 937b59a7695..f78163069af 100644 --- a/app/code/Magento/Shipping/Model/Carrier/AbstractCarrier.php +++ b/app/code/Magento/Shipping/Model/Carrier/AbstractCarrier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierInterface.php b/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierInterface.php index 8ffd631ff8e..3a2e6e8680e 100644 --- a/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierInterface.php +++ b/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Carrier; diff --git a/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierOnline.php b/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierOnline.php index 296a3302de7..0bbafbb64dd 100644 --- a/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierOnline.php +++ b/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierOnline.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Carrier; diff --git a/app/code/Magento/Shipping/Model/Carrier/CarrierInterface.php b/app/code/Magento/Shipping/Model/Carrier/CarrierInterface.php index 49384c7ffe6..645bc17e111 100644 --- a/app/code/Magento/Shipping/Model/Carrier/CarrierInterface.php +++ b/app/code/Magento/Shipping/Model/Carrier/CarrierInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Carrier; diff --git a/app/code/Magento/Shipping/Model/Carrier/Source/GenericDefault.php b/app/code/Magento/Shipping/Model/Carrier/Source/GenericDefault.php index 278eecb5eb8..64e2682c648 100644 --- a/app/code/Magento/Shipping/Model/Carrier/Source/GenericDefault.php +++ b/app/code/Magento/Shipping/Model/Carrier/Source/GenericDefault.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Carrier\Source; diff --git a/app/code/Magento/Shipping/Model/Carrier/Source/GenericInterface.php b/app/code/Magento/Shipping/Model/Carrier/Source/GenericInterface.php index b2f96174064..c9b767cf5de 100644 --- a/app/code/Magento/Shipping/Model/Carrier/Source/GenericInterface.php +++ b/app/code/Magento/Shipping/Model/Carrier/Source/GenericInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Carrier\Source; diff --git a/app/code/Magento/Shipping/Model/CarrierFactory.php b/app/code/Magento/Shipping/Model/CarrierFactory.php index 38119e3dba6..f584921fe54 100644 --- a/app/code/Magento/Shipping/Model/CarrierFactory.php +++ b/app/code/Magento/Shipping/Model/CarrierFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model; diff --git a/app/code/Magento/Shipping/Model/CarrierFactoryInterface.php b/app/code/Magento/Shipping/Model/CarrierFactoryInterface.php index cec41b2704c..0cfedc78f26 100644 --- a/app/code/Magento/Shipping/Model/CarrierFactoryInterface.php +++ b/app/code/Magento/Shipping/Model/CarrierFactoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model; diff --git a/app/code/Magento/Shipping/Model/Config.php b/app/code/Magento/Shipping/Model/Config.php index 2fc6cee5755..87cac19b005 100644 --- a/app/code/Magento/Shipping/Model/Config.php +++ b/app/code/Magento/Shipping/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Model/Config/Source/Allmethods.php b/app/code/Magento/Shipping/Model/Config/Source/Allmethods.php index 076669e2345..1e6a209f0d3 100644 --- a/app/code/Magento/Shipping/Model/Config/Source/Allmethods.php +++ b/app/code/Magento/Shipping/Model/Config/Source/Allmethods.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Config\Source; diff --git a/app/code/Magento/Shipping/Model/Config/Source/Allspecificcountries.php b/app/code/Magento/Shipping/Model/Config/Source/Allspecificcountries.php index d7740c32705..59c33281571 100644 --- a/app/code/Magento/Shipping/Model/Config/Source/Allspecificcountries.php +++ b/app/code/Magento/Shipping/Model/Config/Source/Allspecificcountries.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Config\Source; diff --git a/app/code/Magento/Shipping/Model/Config/Source/Online/Mode.php b/app/code/Magento/Shipping/Model/Config/Source/Online/Mode.php index 2d310b6cea3..fffaab4de55 100644 --- a/app/code/Magento/Shipping/Model/Config/Source/Online/Mode.php +++ b/app/code/Magento/Shipping/Model/Config/Source/Online/Mode.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Config\Source\Online; diff --git a/app/code/Magento/Shipping/Model/Config/Source/Online/Requesttype.php b/app/code/Magento/Shipping/Model/Config/Source/Online/Requesttype.php index 9ced0780971..9f1082c08ce 100644 --- a/app/code/Magento/Shipping/Model/Config/Source/Online/Requesttype.php +++ b/app/code/Magento/Shipping/Model/Config/Source/Online/Requesttype.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Config\Source\Online; diff --git a/app/code/Magento/Shipping/Model/Info.php b/app/code/Magento/Shipping/Model/Info.php index 4893579d0d7..13b2c183d8c 100644 --- a/app/code/Magento/Shipping/Model/Info.php +++ b/app/code/Magento/Shipping/Model/Info.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Model/Observer.php b/app/code/Magento/Shipping/Model/Observer.php index 83f4fe08ad8..4cbfd972ff1 100644 --- a/app/code/Magento/Shipping/Model/Observer.php +++ b/app/code/Magento/Shipping/Model/Observer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model; diff --git a/app/code/Magento/Shipping/Model/Order/Pdf/Packaging.php b/app/code/Magento/Shipping/Model/Order/Pdf/Packaging.php index 5312f66e92d..94dbb564d99 100644 --- a/app/code/Magento/Shipping/Model/Order/Pdf/Packaging.php +++ b/app/code/Magento/Shipping/Model/Order/Pdf/Packaging.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Order\Pdf; diff --git a/app/code/Magento/Shipping/Model/Order/Track.php b/app/code/Magento/Shipping/Model/Order/Track.php index 6653438dbe7..43652978958 100644 --- a/app/code/Magento/Shipping/Model/Order/Track.php +++ b/app/code/Magento/Shipping/Model/Order/Track.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Model/Rate/Result.php b/app/code/Magento/Shipping/Model/Rate/Result.php index 9fdbe415236..3d2466f3146 100644 --- a/app/code/Magento/Shipping/Model/Rate/Result.php +++ b/app/code/Magento/Shipping/Model/Rate/Result.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Rate; diff --git a/app/code/Magento/Shipping/Model/ResourceModel/Order/Track/Collection.php b/app/code/Magento/Shipping/Model/ResourceModel/Order/Track/Collection.php index 4ddb72e03b2..f0b6ae70e6c 100644 --- a/app/code/Magento/Shipping/Model/ResourceModel/Order/Track/Collection.php +++ b/app/code/Magento/Shipping/Model/ResourceModel/Order/Track/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\ResourceModel\Order\Track; diff --git a/app/code/Magento/Shipping/Model/Shipment/Request.php b/app/code/Magento/Shipping/Model/Shipment/Request.php index eae26b7241b..489529dc37a 100644 --- a/app/code/Magento/Shipping/Model/Shipment/Request.php +++ b/app/code/Magento/Shipping/Model/Shipment/Request.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Shipment; diff --git a/app/code/Magento/Shipping/Model/Shipment/ReturnShipment.php b/app/code/Magento/Shipping/Model/Shipment/ReturnShipment.php index dd463273d4e..5b4e33ff1fe 100644 --- a/app/code/Magento/Shipping/Model/Shipment/ReturnShipment.php +++ b/app/code/Magento/Shipping/Model/Shipment/ReturnShipment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Shipment; diff --git a/app/code/Magento/Shipping/Model/ShipmentNotifier.php b/app/code/Magento/Shipping/Model/ShipmentNotifier.php index bfdeffdc1da..d13a04135c0 100644 --- a/app/code/Magento/Shipping/Model/ShipmentNotifier.php +++ b/app/code/Magento/Shipping/Model/ShipmentNotifier.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Model/Shipping.php b/app/code/Magento/Shipping/Model/Shipping.php index eb58d7c9aa8..3df54577107 100644 --- a/app/code/Magento/Shipping/Model/Shipping.php +++ b/app/code/Magento/Shipping/Model/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model; diff --git a/app/code/Magento/Shipping/Model/Shipping/LabelGenerator.php b/app/code/Magento/Shipping/Model/Shipping/LabelGenerator.php index a8b52fc3c2a..1abafc9146f 100644 --- a/app/code/Magento/Shipping/Model/Shipping/LabelGenerator.php +++ b/app/code/Magento/Shipping/Model/Shipping/LabelGenerator.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Shipping; diff --git a/app/code/Magento/Shipping/Model/Shipping/Labels.php b/app/code/Magento/Shipping/Model/Shipping/Labels.php index 20dec4827bf..186ef391efc 100644 --- a/app/code/Magento/Shipping/Model/Shipping/Labels.php +++ b/app/code/Magento/Shipping/Model/Shipping/Labels.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Model/Simplexml/Element.php b/app/code/Magento/Shipping/Model/Simplexml/Element.php index f52add644db..97eb8d9c809 100644 --- a/app/code/Magento/Shipping/Model/Simplexml/Element.php +++ b/app/code/Magento/Shipping/Model/Simplexml/Element.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Simplexml; diff --git a/app/code/Magento/Shipping/Model/Source/HandlingAction.php b/app/code/Magento/Shipping/Model/Source/HandlingAction.php index 0d2d6e20450..6bc5a774eca 100644 --- a/app/code/Magento/Shipping/Model/Source/HandlingAction.php +++ b/app/code/Magento/Shipping/Model/Source/HandlingAction.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Source; diff --git a/app/code/Magento/Shipping/Model/Source/HandlingType.php b/app/code/Magento/Shipping/Model/Source/HandlingType.php index 6b951bd7f46..9763e3c9827 100644 --- a/app/code/Magento/Shipping/Model/Source/HandlingType.php +++ b/app/code/Magento/Shipping/Model/Source/HandlingType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Source; diff --git a/app/code/Magento/Shipping/Model/Tracking/Result.php b/app/code/Magento/Shipping/Model/Tracking/Result.php index 6c3ab716981..6a22646662e 100644 --- a/app/code/Magento/Shipping/Model/Tracking/Result.php +++ b/app/code/Magento/Shipping/Model/Tracking/Result.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Tracking; diff --git a/app/code/Magento/Shipping/Model/Tracking/Result/AbstractResult.php b/app/code/Magento/Shipping/Model/Tracking/Result/AbstractResult.php index ea5c4e9de25..f8eae75d813 100644 --- a/app/code/Magento/Shipping/Model/Tracking/Result/AbstractResult.php +++ b/app/code/Magento/Shipping/Model/Tracking/Result/AbstractResult.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Tracking\Result; diff --git a/app/code/Magento/Shipping/Model/Tracking/Result/Error.php b/app/code/Magento/Shipping/Model/Tracking/Result/Error.php index 72253e927b2..612624fe442 100644 --- a/app/code/Magento/Shipping/Model/Tracking/Result/Error.php +++ b/app/code/Magento/Shipping/Model/Tracking/Result/Error.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Tracking\Result; diff --git a/app/code/Magento/Shipping/Model/Tracking/Result/Status.php b/app/code/Magento/Shipping/Model/Tracking/Result/Status.php index 74defe82ed7..71bc25ef22d 100644 --- a/app/code/Magento/Shipping/Model/Tracking/Result/Status.php +++ b/app/code/Magento/Shipping/Model/Tracking/Result/Status.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Model\Tracking\Result; diff --git a/app/code/Magento/Shipping/Test/Unit/Block/Adminhtml/Order/TrackingTest.php b/app/code/Magento/Shipping/Test/Unit/Block/Adminhtml/Order/TrackingTest.php index 9fe0a6a825e..dab59ece808 100644 --- a/app/code/Magento/Shipping/Test/Unit/Block/Adminhtml/Order/TrackingTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Block/Adminhtml/Order/TrackingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Block\Adminhtml\Order; diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddCommentTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddCommentTest.php index b5a6e6df85c..639b00513de 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddCommentTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddCommentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddTrackTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddTrackTest.php index de548ce36fa..cc53a8c3736 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddTrackTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddTrackTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/CreateLabelTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/CreateLabelTest.php index fa3f94ad42b..c6281ee6213 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/CreateLabelTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/CreateLabelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/EmailTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/EmailTest.php index 7f6a2f8272e..c35e96f2c6c 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/EmailTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/EmailTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/GetShippingItemsGridTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/GetShippingItemsGridTest.php index 01b7af2b5bf..a11ae31d304 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/GetShippingItemsGridTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/GetShippingItemsGridTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/NewActionTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/NewActionTest.php index cbc195f8231..42a3b30e85d 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/NewActionTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/NewActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintLabelTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintLabelTest.php index 5c67346893b..22002c8b2db 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintLabelTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintLabelTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintPackageTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintPackageTest.php index 664ec21284c..90de1ba2289 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintPackageTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintPackageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/RemoveTrackTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/RemoveTrackTest.php index 70e64f2e1db..2b617b23d74 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/RemoveTrackTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/RemoveTrackTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/SaveTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/SaveTest.php index b1d2fc0d1d7..b3cf89e279f 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/SaveTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/ViewTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/ViewTest.php index c534ec1d9c5..714dca02d97 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/ViewTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/ViewTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Controller\Adminhtml\Order\Shipment; diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/ShipmentLoaderTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/ShipmentLoaderTest.php index 3d4649e5c25..897985af946 100644 --- a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/ShipmentLoaderTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/ShipmentLoaderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Controller\Adminhtml\Order; diff --git a/app/code/Magento/Shipping/Test/Unit/Helper/CarrierTest.php b/app/code/Magento/Shipping/Test/Unit/Helper/CarrierTest.php index cee49a07c80..8980e037beb 100644 --- a/app/code/Magento/Shipping/Test/Unit/Helper/CarrierTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Helper/CarrierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Helper; diff --git a/app/code/Magento/Shipping/Test/Unit/Model/Carrier/AbstractCarrierOnlineTest.php b/app/code/Magento/Shipping/Test/Unit/Model/Carrier/AbstractCarrierOnlineTest.php index af10bd585a0..c467a339e7a 100644 --- a/app/code/Magento/Shipping/Test/Unit/Model/Carrier/AbstractCarrierOnlineTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Model/Carrier/AbstractCarrierOnlineTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Model\Carrier; diff --git a/app/code/Magento/Shipping/Test/Unit/Model/Order/TrackTest.php b/app/code/Magento/Shipping/Test/Unit/Model/Order/TrackTest.php index fa60b42a281..338182ed89a 100644 --- a/app/code/Magento/Shipping/Test/Unit/Model/Order/TrackTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Model/Order/TrackTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Model\Order; diff --git a/app/code/Magento/Shipping/Test/Unit/Model/ShipmentNotifierTest.php b/app/code/Magento/Shipping/Test/Unit/Model/ShipmentNotifierTest.php index 7fb6b6dddd7..d96093b3974 100644 --- a/app/code/Magento/Shipping/Test/Unit/Model/ShipmentNotifierTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Model/ShipmentNotifierTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Test/Unit/Model/ShipmentTest.php b/app/code/Magento/Shipping/Test/Unit/Model/ShipmentTest.php index 43a124bfa97..0cefe944f0a 100644 --- a/app/code/Magento/Shipping/Test/Unit/Model/ShipmentTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Model/ShipmentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelGeneratorTest.php b/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelGeneratorTest.php index 548e58f2bdc..a8c000898a1 100644 --- a/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelGeneratorTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelGeneratorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Model\Shipping; diff --git a/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelsTest.php b/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelsTest.php index 24296a2a308..eebc4377e88 100644 --- a/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelsTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Model\Shipping; diff --git a/app/code/Magento/Shipping/Test/Unit/Model/ShippingTest.php b/app/code/Magento/Shipping/Test/Unit/Model/ShippingTest.php index e5ef4f15cad..1600d6e3f6d 100644 --- a/app/code/Magento/Shipping/Test/Unit/Model/ShippingTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Model/ShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Model; diff --git a/app/code/Magento/Shipping/Test/Unit/Model/Simplexml/ElementTest.php b/app/code/Magento/Shipping/Test/Unit/Model/Simplexml/ElementTest.php index f82725a8b17..62f88f83873 100644 --- a/app/code/Magento/Shipping/Test/Unit/Model/Simplexml/ElementTest.php +++ b/app/code/Magento/Shipping/Test/Unit/Model/Simplexml/ElementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Test\Unit\Model\Simplexml; diff --git a/app/code/Magento/Shipping/etc/acl.xml b/app/code/Magento/Shipping/etc/acl.xml index 8549c5b33f6..e0bb6a16781 100644 --- a/app/code/Magento/Shipping/etc/acl.xml +++ b/app/code/Magento/Shipping/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/etc/adminhtml/di.xml b/app/code/Magento/Shipping/etc/adminhtml/di.xml index 555f87757ed..6e38c4b498b 100644 --- a/app/code/Magento/Shipping/etc/adminhtml/di.xml +++ b/app/code/Magento/Shipping/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/etc/adminhtml/routes.xml b/app/code/Magento/Shipping/etc/adminhtml/routes.xml index 1ec0b0c7c31..1c8d5846728 100644 --- a/app/code/Magento/Shipping/etc/adminhtml/routes.xml +++ b/app/code/Magento/Shipping/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/etc/adminhtml/system.xml b/app/code/Magento/Shipping/etc/adminhtml/system.xml index bd81103b197..ebd889d7139 100644 --- a/app/code/Magento/Shipping/etc/adminhtml/system.xml +++ b/app/code/Magento/Shipping/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/etc/config.xml b/app/code/Magento/Shipping/etc/config.xml index 54e926b478f..f519c6155ba 100644 --- a/app/code/Magento/Shipping/etc/config.xml +++ b/app/code/Magento/Shipping/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/etc/crontab.xml b/app/code/Magento/Shipping/etc/crontab.xml index 0a4ec5d144f..3d35951a257 100644 --- a/app/code/Magento/Shipping/etc/crontab.xml +++ b/app/code/Magento/Shipping/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/etc/di.xml b/app/code/Magento/Shipping/etc/di.xml index 44e138d6c9a..2e4cccd9edb 100644 --- a/app/code/Magento/Shipping/etc/di.xml +++ b/app/code/Magento/Shipping/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/etc/frontend/page_types.xml b/app/code/Magento/Shipping/etc/frontend/page_types.xml index 676b09690bf..1e6d8473dbd 100644 --- a/app/code/Magento/Shipping/etc/frontend/page_types.xml +++ b/app/code/Magento/Shipping/etc/frontend/page_types.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/etc/frontend/routes.xml b/app/code/Magento/Shipping/etc/frontend/routes.xml index 80379006d81..e126a455b78 100644 --- a/app/code/Magento/Shipping/etc/frontend/routes.xml +++ b/app/code/Magento/Shipping/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Shipping" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Shipping/etc/module.xml b/app/code/Magento/Shipping/etc/module.xml index fe7507b96ec..127e33d06cb 100644 --- a/app/code/Magento/Shipping/etc/module.xml +++ b/app/code/Magento/Shipping/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/registration.php b/app/code/Magento/Shipping/registration.php index 783c09f7986..2a64b6d9279 100644 --- a/app/code/Magento/Shipping/registration.php +++ b/app/code/Magento/Shipping/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addcomment.xml b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addcomment.xml index cdcf5898d71..d27cdba09c1 100644 --- a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addcomment.xml +++ b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addcomment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addtrack.xml b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addtrack.xml index afe04d3f409..3de8350a6ae 100644 --- a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addtrack.xml +++ b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addtrack.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_new.xml b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_new.xml index d233bf3f618..25e07393396 100644 --- a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_new.xml +++ b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_removetrack.xml b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_removetrack.xml index afe04d3f409..3de8350a6ae 100644 --- a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_removetrack.xml +++ b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_removetrack.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_view.xml b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_view.xml index 3c948acfbd3..e36aa4fd5e7 100644 --- a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_view.xml +++ b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_invoice_new.xml b/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_invoice_new.xml index d51015cead3..a6ba427c06b 100644 --- a/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_invoice_new.xml +++ b/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_invoice_new.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_view.xml index b77c1df6348..3a99eaffbdd 100644 --- a/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_view.xml +++ b/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/create/form.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/create/form.phtml index cdbff4f762b..f66ca158b3d 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/create/form.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/create/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/create/items.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/create/items.phtml index 9d8d0eb948a..3011b5434e3 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/create/items.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/create/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/create/items/renderer/default.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/create/items/renderer/default.phtml index 86ce8112493..c4690f5a1f4 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/create/items/renderer/default.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/create/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/grid.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/grid.phtml index 1d7154d1480..f34f25e18e4 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/grid.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/grid.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/packed.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/packed.phtml index ebf72549883..75419ac82a3 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/packed.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/packed.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup.phtml index aba31e4a732..8063c60171a 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup_content.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup_content.phtml index c308ba130ab..14d597caefe 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup_content.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup_content.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking.phtml index 39e737a7c51..8bc595d8ea9 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking/view.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking/view.phtml index 99f20f1ff8a..18f32eaca4a 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking/view.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking/view.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/view/info.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/view/info.phtml index 8172fff9b4a..fbff6ae645e 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/order/view/info.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/order/view/info.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/view/form.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/view/form.phtml index 0a27a9440e3..cf49ecab9bb 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/view/form.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/view/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/view/items.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/view/items.phtml index 16163c8063d..eda0506273f 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/view/items.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/view/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/view/items/renderer/default.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/view/items/renderer/default.phtml index 5b3a1b92542..de8ff456ac0 100644 --- a/app/code/Magento/Shipping/view/adminhtml/templates/view/items/renderer/default.phtml +++ b/app/code/Magento/Shipping/view/adminhtml/templates/view/items/renderer/default.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/web/js/packages.js b/app/code/Magento/Shipping/view/adminhtml/web/js/packages.js index bf3b6524984..20f6d82b1f2 100644 --- a/app/code/Magento/Shipping/view/adminhtml/web/js/packages.js +++ b/app/code/Magento/Shipping/view/adminhtml/web/js/packages.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/adminhtml/web/order/packaging.js b/app/code/Magento/Shipping/view/adminhtml/web/order/packaging.js index b3a7ea2e249..c3679348162 100644 --- a/app/code/Magento/Shipping/view/adminhtml/web/order/packaging.js +++ b/app/code/Magento/Shipping/view/adminhtml/web/order/packaging.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define(["prototype"], function(){ @@ -809,4 +809,4 @@ Packaging.prototype = { //******************** End Private functions ******************************// }; -}); \ No newline at end of file +}); diff --git a/app/code/Magento/Shipping/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Shipping/view/frontend/layout/checkout_index_index.xml index 3dd59108466..23c51098ea2 100644 --- a/app/code/Magento/Shipping/view/frontend/layout/checkout_index_index.xml +++ b/app/code/Magento/Shipping/view/frontend/layout/checkout_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_guest_reorder.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_guest_reorder.xml index caa7a9e5b75..a8d7758dada 100644 --- a/app/code/Magento/Shipping/view/frontend/layout/sales_guest_reorder.xml +++ b/app/code/Magento/Shipping/view/frontend/layout/sales_guest_reorder.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_guest_shipment.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_guest_shipment.xml index c59f7dcfaea..9afcbe04196 100644 --- a/app/code/Magento/Shipping/view/frontend/layout/sales_guest_shipment.xml +++ b/app/code/Magento/Shipping/view/frontend/layout/sales_guest_shipment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_guest_view.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_guest_view.xml index caa7a9e5b75..a8d7758dada 100644 --- a/app/code/Magento/Shipping/view/frontend/layout/sales_guest_view.xml +++ b/app/code/Magento/Shipping/view/frontend/layout/sales_guest_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_order_reorder.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_order_reorder.xml index caa7a9e5b75..a8d7758dada 100644 --- a/app/code/Magento/Shipping/view/frontend/layout/sales_order_reorder.xml +++ b/app/code/Magento/Shipping/view/frontend/layout/sales_order_reorder.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_order_shipment.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_order_shipment.xml index 990641fdc24..f2f465e0917 100644 --- a/app/code/Magento/Shipping/view/frontend/layout/sales_order_shipment.xml +++ b/app/code/Magento/Shipping/view/frontend/layout/sales_order_shipment.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_order_view.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_order_view.xml index caa7a9e5b75..a8d7758dada 100644 --- a/app/code/Magento/Shipping/view/frontend/layout/sales_order_view.xml +++ b/app/code/Magento/Shipping/view/frontend/layout/sales_order_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/frontend/layout/shipping_tracking_popup.xml b/app/code/Magento/Shipping/view/frontend/layout/shipping_tracking_popup.xml index 48549b73a4e..9e6960a02d3 100644 --- a/app/code/Magento/Shipping/view/frontend/layout/shipping_tracking_popup.xml +++ b/app/code/Magento/Shipping/view/frontend/layout/shipping_tracking_popup.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Shipping/view/frontend/templates/items.phtml b/app/code/Magento/Shipping/view/frontend/templates/items.phtml index b9f7a4711eb..6867739c0be 100644 --- a/app/code/Magento/Shipping/view/frontend/templates/items.phtml +++ b/app/code/Magento/Shipping/view/frontend/templates/items.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/frontend/templates/order/shipment.phtml b/app/code/Magento/Shipping/view/frontend/templates/order/shipment.phtml index 39bc7430d82..7f82a3021d2 100644 --- a/app/code/Magento/Shipping/view/frontend/templates/order/shipment.phtml +++ b/app/code/Magento/Shipping/view/frontend/templates/order/shipment.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Shipping/view/frontend/templates/tracking/details.phtml b/app/code/Magento/Shipping/view/frontend/templates/tracking/details.phtml index d655d96e1dd..533235f6f20 100644 --- a/app/code/Magento/Shipping/view/frontend/templates/tracking/details.phtml +++ b/app/code/Magento/Shipping/view/frontend/templates/tracking/details.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/frontend/templates/tracking/link.phtml b/app/code/Magento/Shipping/view/frontend/templates/tracking/link.phtml index c858b29f6bc..a4c6eac90db 100644 --- a/app/code/Magento/Shipping/view/frontend/templates/tracking/link.phtml +++ b/app/code/Magento/Shipping/view/frontend/templates/tracking/link.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/frontend/templates/tracking/popup.phtml b/app/code/Magento/Shipping/view/frontend/templates/tracking/popup.phtml index 412cb4b411a..b695f024cde 100644 --- a/app/code/Magento/Shipping/view/frontend/templates/tracking/popup.phtml +++ b/app/code/Magento/Shipping/view/frontend/templates/tracking/popup.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Shipping/view/frontend/templates/tracking/progress.phtml b/app/code/Magento/Shipping/view/frontend/templates/tracking/progress.phtml index d5ce13a277f..9022a581582 100644 --- a/app/code/Magento/Shipping/view/frontend/templates/tracking/progress.phtml +++ b/app/code/Magento/Shipping/view/frontend/templates/tracking/progress.phtml @@ -1,6 +1,6 @@ <?php /** -* Copyright © 2016 Magento. All rights reserved. +* Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ @@ -40,4 +40,4 @@ $track = $block->getData('track'); <?php endforeach; ?> </tbody> </table> -</div> \ No newline at end of file +</div> diff --git a/app/code/Magento/Shipping/view/frontend/web/js/model/config.js b/app/code/Magento/Shipping/view/frontend/web/js/model/config.js index 0deb24ed2d0..1250517318e 100644 --- a/app/code/Magento/Shipping/view/frontend/web/js/model/config.js +++ b/app/code/Magento/Shipping/view/frontend/web/js/model/config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true jquery:true*/ diff --git a/app/code/Magento/Shipping/view/frontend/web/js/view/checkout/shipping/shipping-policy.js b/app/code/Magento/Shipping/view/frontend/web/js/view/checkout/shipping/shipping-policy.js index 5626bb085b5..408cdbde976 100644 --- a/app/code/Magento/Shipping/view/frontend/web/js/view/checkout/shipping/shipping-policy.js +++ b/app/code/Magento/Shipping/view/frontend/web/js/view/checkout/shipping/shipping-policy.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Shipping/view/frontend/web/template/checkout/shipping/shipping-policy.html b/app/code/Magento/Shipping/view/frontend/web/template/checkout/shipping/shipping-policy.html index 790fa15e8bf..80ca54bf876 100644 --- a/app/code/Magento/Shipping/view/frontend/web/template/checkout/shipping/shipping-policy.html +++ b/app/code/Magento/Shipping/view/frontend/web/template/checkout/shipping/shipping-policy.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Edit.php b/app/code/Magento/Sitemap/Block/Adminhtml/Edit.php index 66596db9f56..d5ae6bd57d8 100644 --- a/app/code/Magento/Sitemap/Block/Adminhtml/Edit.php +++ b/app/code/Magento/Sitemap/Block/Adminhtml/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Block\Adminhtml; diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Edit/Form.php b/app/code/Magento/Sitemap/Block/Adminhtml/Edit/Form.php index c732cb70ac6..c57d0a0e51a 100644 --- a/app/code/Magento/Sitemap/Block/Adminhtml/Edit/Form.php +++ b/app/code/Magento/Sitemap/Block/Adminhtml/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Block\Adminhtml\Edit; diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Action.php b/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Action.php index c899991850d..01bab534751 100644 --- a/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Action.php +++ b/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Action.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Block\Adminhtml\Grid\Renderer; diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Link.php b/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Link.php index b1d4745dad7..eb4b7e8c354 100644 --- a/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Link.php +++ b/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Link.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Time.php b/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Time.php index 9d61df26108..7b0844c0a18 100644 --- a/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Time.php +++ b/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Time.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Sitemap.php b/app/code/Magento/Sitemap/Block/Adminhtml/Sitemap.php index 7497f02abd3..ffea88f75f5 100644 --- a/app/code/Magento/Sitemap/Block/Adminhtml/Sitemap.php +++ b/app/code/Magento/Sitemap/Block/Adminhtml/Sitemap.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Block\Adminhtml; diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap.php index 5b1ff2d43bb..0e4509190e3 100644 --- a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap.php +++ b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Controller\Adminhtml; diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Delete.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Delete.php index afc12359062..31e402db2b7 100644 --- a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Delete.php +++ b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Controller\Adminhtml\Sitemap; diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Edit.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Edit.php index 0453ecf52c5..3715e94eed9 100644 --- a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Edit.php +++ b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Controller\Adminhtml\Sitemap; diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Generate.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Generate.php index f8243ccbdb4..087fbda42c1 100644 --- a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Generate.php +++ b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Generate.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Controller\Adminhtml\Sitemap; diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Index.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Index.php index f5588d09e14..79a63977411 100644 --- a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Index.php +++ b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Controller\Adminhtml\Sitemap; diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/NewAction.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/NewAction.php index 0f1fbe21e62..77f59314593 100644 --- a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/NewAction.php +++ b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Controller\Adminhtml\Sitemap; diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Save.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Save.php index b7aa30d79bd..a4bbb21c52d 100644 --- a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Save.php +++ b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Controller\Adminhtml\Sitemap; diff --git a/app/code/Magento/Sitemap/Helper/Data.php b/app/code/Magento/Sitemap/Helper/Data.php index 046078209c2..f668c29b570 100644 --- a/app/code/Magento/Sitemap/Helper/Data.php +++ b/app/code/Magento/Sitemap/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sitemap/Model/Config/Backend/Priority.php b/app/code/Magento/Sitemap/Model/Config/Backend/Priority.php index 86d496d92c2..7703f088b9d 100644 --- a/app/code/Magento/Sitemap/Model/Config/Backend/Priority.php +++ b/app/code/Magento/Sitemap/Model/Config/Backend/Priority.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Model\Config\Backend; diff --git a/app/code/Magento/Sitemap/Model/Config/Source/Frequency.php b/app/code/Magento/Sitemap/Model/Config/Source/Frequency.php index 7e26083bdbe..b8077cb458c 100644 --- a/app/code/Magento/Sitemap/Model/Config/Source/Frequency.php +++ b/app/code/Magento/Sitemap/Model/Config/Source/Frequency.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Model\Config\Source; diff --git a/app/code/Magento/Sitemap/Model/Observer.php b/app/code/Magento/Sitemap/Model/Observer.php index d6ee51d8c36..d444980f55e 100644 --- a/app/code/Magento/Sitemap/Model/Observer.php +++ b/app/code/Magento/Sitemap/Model/Observer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Model; diff --git a/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Category.php b/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Category.php index 8ba99d59826..a616f9ce917 100644 --- a/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Category.php +++ b/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Category.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Model\ResourceModel\Catalog; diff --git a/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Product.php b/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Product.php index 45ff485372e..f40da53c998 100644 --- a/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Product.php +++ b/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Model\ResourceModel\Catalog; diff --git a/app/code/Magento/Sitemap/Model/ResourceModel/Cms/Page.php b/app/code/Magento/Sitemap/Model/ResourceModel/Cms/Page.php index 59345b4a091..fdd8c08b449 100644 --- a/app/code/Magento/Sitemap/Model/ResourceModel/Cms/Page.php +++ b/app/code/Magento/Sitemap/Model/ResourceModel/Cms/Page.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Model\ResourceModel\Cms; diff --git a/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap.php b/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap.php index c2b3c7d612a..a8954d9655d 100644 --- a/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap.php +++ b/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Model\ResourceModel; diff --git a/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap/Collection.php b/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap/Collection.php index 119cc26fb64..3db11813ce6 100644 --- a/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap/Collection.php +++ b/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Model\ResourceModel\Sitemap; diff --git a/app/code/Magento/Sitemap/Model/Sitemap.php b/app/code/Magento/Sitemap/Model/Sitemap.php index c999286cff2..6e31c255526 100644 --- a/app/code/Magento/Sitemap/Model/Sitemap.php +++ b/app/code/Magento/Sitemap/Model/Sitemap.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sitemap/Model/Source/Product/Image/IncludeImage.php b/app/code/Magento/Sitemap/Model/Source/Product/Image/IncludeImage.php index 06b16441293..34a9dc9ee94 100644 --- a/app/code/Magento/Sitemap/Model/Source/Product/Image/IncludeImage.php +++ b/app/code/Magento/Sitemap/Model/Source/Product/Image/IncludeImage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sitemap/Setup/InstallSchema.php b/app/code/Magento/Sitemap/Setup/InstallSchema.php index 073a66a855a..b01a3f43515 100644 --- a/app/code/Magento/Sitemap/Setup/InstallSchema.php +++ b/app/code/Magento/Sitemap/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/DeleteTest.php b/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/DeleteTest.php index 8035f057d6b..e154c31fdff 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/DeleteTest.php +++ b/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/DeleteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Test\Unit\Controller\Adminhtml\Sitemap; diff --git a/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/SaveTest.php b/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/SaveTest.php index c1e381cfff3..d0c9f1483af 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/SaveTest.php +++ b/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Test\Unit\Controller\Adminhtml\Sitemap; diff --git a/app/code/Magento/Sitemap/Test/Unit/Helper/DataTest.php b/app/code/Magento/Sitemap/Test/Unit/Helper/DataTest.php index 8d880277cee..c37731d98a1 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Sitemap/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/ObserverTest.php b/app/code/Magento/Sitemap/Test/Unit/Model/ObserverTest.php index 6e11b931607..cb3cb6621d6 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/ObserverTest.php +++ b/app/code/Magento/Sitemap/Test/Unit/Model/ObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Test\Unit\Model; diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php index f94a2051047..8daa4d6e933 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php +++ b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sitemap\Test\Unit\Model; diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-1.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-1.xml index 5731b1284c6..019256414c7 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-1.xml +++ b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-1.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-2.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-2.xml index 09007b2e6d9..e785e457848 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-2.xml +++ b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-2.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-3.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-3.xml index 53046393af4..e3b3d2daf2b 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-3.xml +++ b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-3.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-4.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-4.xml index b8efca330cb..6726a7116f6 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-4.xml +++ b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-4.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-index.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-index.xml index c0166c9e7a8..5d79195f885 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-index.xml +++ b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-index.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-single.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-single.xml index 8291553ae9a..bff7c169f22 100644 --- a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-single.xml +++ b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-single.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/etc/acl.xml b/app/code/Magento/Sitemap/etc/acl.xml index 397f1ba3513..d73e94c20b1 100644 --- a/app/code/Magento/Sitemap/etc/acl.xml +++ b/app/code/Magento/Sitemap/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/etc/adminhtml/menu.xml b/app/code/Magento/Sitemap/etc/adminhtml/menu.xml index 6a20c6c679d..09fc00e072c 100644 --- a/app/code/Magento/Sitemap/etc/adminhtml/menu.xml +++ b/app/code/Magento/Sitemap/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/etc/adminhtml/routes.xml b/app/code/Magento/Sitemap/etc/adminhtml/routes.xml index c26d7369861..69e5b2f4daa 100644 --- a/app/code/Magento/Sitemap/etc/adminhtml/routes.xml +++ b/app/code/Magento/Sitemap/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/etc/adminhtml/system.xml b/app/code/Magento/Sitemap/etc/adminhtml/system.xml index d29550bec28..ad837ed9294 100644 --- a/app/code/Magento/Sitemap/etc/adminhtml/system.xml +++ b/app/code/Magento/Sitemap/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/etc/config.xml b/app/code/Magento/Sitemap/etc/config.xml index 274cd54fb81..bc722938f29 100644 --- a/app/code/Magento/Sitemap/etc/config.xml +++ b/app/code/Magento/Sitemap/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/etc/crontab.xml b/app/code/Magento/Sitemap/etc/crontab.xml index e62402c2b1f..0155d4628b5 100644 --- a/app/code/Magento/Sitemap/etc/crontab.xml +++ b/app/code/Magento/Sitemap/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/etc/di.xml b/app/code/Magento/Sitemap/etc/di.xml index dfe34a25fb7..538d76d925e 100644 --- a/app/code/Magento/Sitemap/etc/di.xml +++ b/app/code/Magento/Sitemap/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/etc/email_templates.xml b/app/code/Magento/Sitemap/etc/email_templates.xml index a8aa9fa8912..ac31a5d1333 100644 --- a/app/code/Magento/Sitemap/etc/email_templates.xml +++ b/app/code/Magento/Sitemap/etc/email_templates.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/etc/module.xml b/app/code/Magento/Sitemap/etc/module.xml index b57c37a27db..13cab4dbd80 100644 --- a/app/code/Magento/Sitemap/etc/module.xml +++ b/app/code/Magento/Sitemap/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/registration.php b/app/code/Magento/Sitemap/registration.php index 273bd908fca..206e520ce74 100644 --- a/app/code/Magento/Sitemap/registration.php +++ b/app/code/Magento/Sitemap/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Sitemap/view/adminhtml/email/generate_warnings.html b/app/code/Magento/Sitemap/view/adminhtml/email/generate_warnings.html index d0a8ec263b8..4781af7a8b7 100644 --- a/app/code/Magento/Sitemap/view/adminhtml/email/generate_warnings.html +++ b/app/code/Magento/Sitemap/view/adminhtml/email/generate_warnings.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index.xml b/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index.xml index c45045e4cf2..93373638ca7 100644 --- a/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index.xml +++ b/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index_grid_block.xml b/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index_grid_block.xml index 1c70a3b8e3a..dc5d1f60706 100644 --- a/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index_grid_block.xml +++ b/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index_grid_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Store/Api/Data/GroupInterface.php b/app/code/Magento/Store/Api/Data/GroupInterface.php index cb051a1a8cd..5bd91c28d43 100644 --- a/app/code/Magento/Store/Api/Data/GroupInterface.php +++ b/app/code/Magento/Store/Api/Data/GroupInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api\Data; diff --git a/app/code/Magento/Store/Api/Data/StoreConfigInterface.php b/app/code/Magento/Store/Api/Data/StoreConfigInterface.php index 3abf2310c2d..43672672e67 100644 --- a/app/code/Magento/Store/Api/Data/StoreConfigInterface.php +++ b/app/code/Magento/Store/Api/Data/StoreConfigInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api\Data; diff --git a/app/code/Magento/Store/Api/Data/StoreInterface.php b/app/code/Magento/Store/Api/Data/StoreInterface.php index e48ed21e0f4..d5b4c56da14 100644 --- a/app/code/Magento/Store/Api/Data/StoreInterface.php +++ b/app/code/Magento/Store/Api/Data/StoreInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api\Data; diff --git a/app/code/Magento/Store/Api/Data/WebsiteInterface.php b/app/code/Magento/Store/Api/Data/WebsiteInterface.php index fd3dc77bc41..11a30124269 100644 --- a/app/code/Magento/Store/Api/Data/WebsiteInterface.php +++ b/app/code/Magento/Store/Api/Data/WebsiteInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api\Data; diff --git a/app/code/Magento/Store/Api/GroupRepositoryInterface.php b/app/code/Magento/Store/Api/GroupRepositoryInterface.php index 485e5c03ad0..be55818e1a6 100644 --- a/app/code/Magento/Store/Api/GroupRepositoryInterface.php +++ b/app/code/Magento/Store/Api/GroupRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api; diff --git a/app/code/Magento/Store/Api/StoreConfigManagerInterface.php b/app/code/Magento/Store/Api/StoreConfigManagerInterface.php index 23594c0acf2..f116f66d2b6 100644 --- a/app/code/Magento/Store/Api/StoreConfigManagerInterface.php +++ b/app/code/Magento/Store/Api/StoreConfigManagerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api; diff --git a/app/code/Magento/Store/Api/StoreCookieManagerInterface.php b/app/code/Magento/Store/Api/StoreCookieManagerInterface.php index 2e32c0f2f17..1ceeac5aa2e 100644 --- a/app/code/Magento/Store/Api/StoreCookieManagerInterface.php +++ b/app/code/Magento/Store/Api/StoreCookieManagerInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api; diff --git a/app/code/Magento/Store/Api/StoreManagementInterface.php b/app/code/Magento/Store/Api/StoreManagementInterface.php index d30fe596aca..79102b13a48 100644 --- a/app/code/Magento/Store/Api/StoreManagementInterface.php +++ b/app/code/Magento/Store/Api/StoreManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api; diff --git a/app/code/Magento/Store/Api/StoreRepositoryInterface.php b/app/code/Magento/Store/Api/StoreRepositoryInterface.php index b760aa8e90f..be2aa5bd999 100644 --- a/app/code/Magento/Store/Api/StoreRepositoryInterface.php +++ b/app/code/Magento/Store/Api/StoreRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api; diff --git a/app/code/Magento/Store/Api/StoreResolverInterface.php b/app/code/Magento/Store/Api/StoreResolverInterface.php index 6352db74437..4b94effcd71 100644 --- a/app/code/Magento/Store/Api/StoreResolverInterface.php +++ b/app/code/Magento/Store/Api/StoreResolverInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api; diff --git a/app/code/Magento/Store/Api/StoreWebsiteRelationInterface.php b/app/code/Magento/Store/Api/StoreWebsiteRelationInterface.php index 2e5b5ee6a2e..af7aba04d3f 100644 --- a/app/code/Magento/Store/Api/StoreWebsiteRelationInterface.php +++ b/app/code/Magento/Store/Api/StoreWebsiteRelationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api; diff --git a/app/code/Magento/Store/Api/WebsiteManagementInterface.php b/app/code/Magento/Store/Api/WebsiteManagementInterface.php index d31cd5c2aae..bded4cefae8 100644 --- a/app/code/Magento/Store/Api/WebsiteManagementInterface.php +++ b/app/code/Magento/Store/Api/WebsiteManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api; diff --git a/app/code/Magento/Store/Api/WebsiteRepositoryInterface.php b/app/code/Magento/Store/Api/WebsiteRepositoryInterface.php index 0f5de14aadc..e9810f4915b 100644 --- a/app/code/Magento/Store/Api/WebsiteRepositoryInterface.php +++ b/app/code/Magento/Store/Api/WebsiteRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Api; diff --git a/app/code/Magento/Store/App/Action/Plugin/Context.php b/app/code/Magento/Store/App/Action/Plugin/Context.php index 1b454538425..e970f822a1c 100644 --- a/app/code/Magento/Store/App/Action/Plugin/Context.php +++ b/app/code/Magento/Store/App/Action/Plugin/Context.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/App/Action/Plugin/StoreCheck.php b/app/code/Magento/Store/App/Action/Plugin/StoreCheck.php index fcb93162207..2dda87a6b2f 100644 --- a/app/code/Magento/Store/App/Action/Plugin/StoreCheck.php +++ b/app/code/Magento/Store/App/Action/Plugin/StoreCheck.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\App\Action\Plugin; diff --git a/app/code/Magento/Store/App/Config/Source/RuntimeConfigSource.php b/app/code/Magento/Store/App/Config/Source/RuntimeConfigSource.php index 015ba1d6ef6..7dd6577d797 100644 --- a/app/code/Magento/Store/App/Config/Source/RuntimeConfigSource.php +++ b/app/code/Magento/Store/App/Config/Source/RuntimeConfigSource.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\App\Config\Source; diff --git a/app/code/Magento/Store/App/Config/Type/Scopes.php b/app/code/Magento/Store/App/Config/Type/Scopes.php index 1c9ac594421..2c3271e5eff 100644 --- a/app/code/Magento/Store/App/Config/Type/Scopes.php +++ b/app/code/Magento/Store/App/Config/Type/Scopes.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\App\Config\Type; diff --git a/app/code/Magento/Store/App/FrontController/Plugin/DefaultStore.php b/app/code/Magento/Store/App/FrontController/Plugin/DefaultStore.php index ac2400ca474..ca10e73f88b 100644 --- a/app/code/Magento/Store/App/FrontController/Plugin/DefaultStore.php +++ b/app/code/Magento/Store/App/FrontController/Plugin/DefaultStore.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\App\FrontController\Plugin; diff --git a/app/code/Magento/Store/App/FrontController/Plugin/RequestPreprocessor.php b/app/code/Magento/Store/App/FrontController/Plugin/RequestPreprocessor.php index 406737d99ae..a740a4de875 100644 --- a/app/code/Magento/Store/App/FrontController/Plugin/RequestPreprocessor.php +++ b/app/code/Magento/Store/App/FrontController/Plugin/RequestPreprocessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\App\FrontController\Plugin; diff --git a/app/code/Magento/Store/App/Request/PathInfoProcessor.php b/app/code/Magento/Store/App/Request/PathInfoProcessor.php index 6d785ea963c..043576ed22a 100644 --- a/app/code/Magento/Store/App/Request/PathInfoProcessor.php +++ b/app/code/Magento/Store/App/Request/PathInfoProcessor.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\App\Request; diff --git a/app/code/Magento/Store/App/Response/Redirect.php b/app/code/Magento/Store/App/Response/Redirect.php index f214d9ce436..97420f58f12 100644 --- a/app/code/Magento/Store/App/Response/Redirect.php +++ b/app/code/Magento/Store/App/Response/Redirect.php @@ -2,7 +2,7 @@ /** * Response redirector * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\App\Response; diff --git a/app/code/Magento/Store/Block/Store/Switcher.php b/app/code/Magento/Store/Block/Store/Switcher.php index 1b1c78e3248..843395e9332 100644 --- a/app/code/Magento/Store/Block/Store/Switcher.php +++ b/app/code/Magento/Store/Block/Store/Switcher.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Block/Switcher.php b/app/code/Magento/Store/Block/Switcher.php index d5560b857a2..4ad26c0ef6f 100644 --- a/app/code/Magento/Store/Block/Switcher.php +++ b/app/code/Magento/Store/Block/Switcher.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Controller/Store/SwitchAction.php b/app/code/Magento/Store/Controller/Store/SwitchAction.php index 5ccd61fe610..266d7eb92f3 100644 --- a/app/code/Magento/Store/Controller/Store/SwitchAction.php +++ b/app/code/Magento/Store/Controller/Store/SwitchAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Controller\Store; diff --git a/app/code/Magento/Store/Model/Address/Renderer.php b/app/code/Magento/Store/Model/Address/Renderer.php index 3ebc8d398b5..97e8abb6947 100644 --- a/app/code/Magento/Store/Model/Address/Renderer.php +++ b/app/code/Magento/Store/Model/Address/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/App/Emulation.php b/app/code/Magento/Store/Model/App/Emulation.php index 69cf3eedb02..dafe5ea0aad 100644 --- a/app/code/Magento/Store/Model/App/Emulation.php +++ b/app/code/Magento/Store/Model/App/Emulation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/BaseUrlChecker.php b/app/code/Magento/Store/Model/BaseUrlChecker.php index 5df78cdc1c6..a4640daad40 100644 --- a/app/code/Magento/Store/Model/BaseUrlChecker.php +++ b/app/code/Magento/Store/Model/BaseUrlChecker.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/Config/Converter.php b/app/code/Magento/Store/Model/Config/Converter.php index 939544399d5..d5514250dc1 100644 --- a/app/code/Magento/Store/Model/Config/Converter.php +++ b/app/code/Magento/Store/Model/Config/Converter.php @@ -2,7 +2,7 @@ /** * DB configuration data converter. Converts associative array to tree array * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Config; diff --git a/app/code/Magento/Store/Model/Config/Placeholder.php b/app/code/Magento/Store/Model/Config/Placeholder.php index af313c82b94..88aacc7be41 100644 --- a/app/code/Magento/Store/Model/Config/Placeholder.php +++ b/app/code/Magento/Store/Model/Config/Placeholder.php @@ -2,7 +2,7 @@ /** * Placeholder configuration values processor. Replace placeholders in configuration with config values * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Config; diff --git a/app/code/Magento/Store/Model/Config/Processor/Fallback.php b/app/code/Magento/Store/Model/Config/Processor/Fallback.php index 612f0514e77..f0d4f065c03 100644 --- a/app/code/Magento/Store/Model/Config/Processor/Fallback.php +++ b/app/code/Magento/Store/Model/Config/Processor/Fallback.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Config\Processor; diff --git a/app/code/Magento/Store/Model/Config/Processor/Placeholder.php b/app/code/Magento/Store/Model/Config/Processor/Placeholder.php index 3695a9a9d66..ce270b384c1 100644 --- a/app/code/Magento/Store/Model/Config/Processor/Placeholder.php +++ b/app/code/Magento/Store/Model/Config/Processor/Placeholder.php @@ -2,7 +2,7 @@ /** * Placeholder configuration values processor. Replace placeholders in configuration with config values * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Config\Processor; diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/DefaultScope.php b/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/DefaultScope.php index 1f25a29856a..6251a1bf084 100644 --- a/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/DefaultScope.php +++ b/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/DefaultScope.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Config\Reader\Source\Dynamic; diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Store.php b/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Store.php index e1d0eaf51e0..41d5b3b4706 100644 --- a/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Store.php +++ b/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Config\Reader\Source\Dynamic; diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Website.php b/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Website.php index 0edd12fd280..f5ccaa12103 100644 --- a/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Website.php +++ b/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Config\Reader\Source\Dynamic; diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Initial/DefaultScope.php b/app/code/Magento/Store/Model/Config/Reader/Source/Initial/DefaultScope.php index 071599d2df5..ee227fee1be 100644 --- a/app/code/Magento/Store/Model/Config/Reader/Source/Initial/DefaultScope.php +++ b/app/code/Magento/Store/Model/Config/Reader/Source/Initial/DefaultScope.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Config\Reader\Source\Initial; diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Store.php b/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Store.php index 8a36fa76ed3..650ca37737d 100644 --- a/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Store.php +++ b/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Config\Reader\Source\Initial; diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Website.php b/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Website.php index efd85e83a59..f6225d68534 100644 --- a/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Website.php +++ b/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Config\Reader\Source\Initial; diff --git a/app/code/Magento/Store/Model/Config/StoreView.php b/app/code/Magento/Store/Model/Config/StoreView.php index f26c3297987..4e8085a75f9 100644 --- a/app/code/Magento/Store/Model/Config/StoreView.php +++ b/app/code/Magento/Store/Model/Config/StoreView.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Config; diff --git a/app/code/Magento/Store/Model/Data/StoreConfig.php b/app/code/Magento/Store/Model/Data/StoreConfig.php index 85936a34af1..ed789a8af65 100644 --- a/app/code/Magento/Store/Model/Data/StoreConfig.php +++ b/app/code/Magento/Store/Model/Data/StoreConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Data; diff --git a/app/code/Magento/Store/Model/DefaultStoreScopeProvider.php b/app/code/Magento/Store/Model/DefaultStoreScopeProvider.php index 74e4c9c957a..705aa142a0b 100644 --- a/app/code/Magento/Store/Model/DefaultStoreScopeProvider.php +++ b/app/code/Magento/Store/Model/DefaultStoreScopeProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/Group.php b/app/code/Magento/Store/Model/Group.php index f95d0aaded3..e042ddea213 100644 --- a/app/code/Magento/Store/Model/Group.php +++ b/app/code/Magento/Store/Model/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/GroupRepository.php b/app/code/Magento/Store/Model/GroupRepository.php index dadcc6fb24e..fa42b742831 100644 --- a/app/code/Magento/Store/Model/GroupRepository.php +++ b/app/code/Magento/Store/Model/GroupRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/HeaderProvider/Hsts.php b/app/code/Magento/Store/Model/HeaderProvider/Hsts.php index bdaf88cb396..0f17c021e02 100644 --- a/app/code/Magento/Store/Model/HeaderProvider/Hsts.php +++ b/app/code/Magento/Store/Model/HeaderProvider/Hsts.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/HeaderProvider/UpgradeInsecure.php b/app/code/Magento/Store/Model/HeaderProvider/UpgradeInsecure.php index eb1bf93b245..0406b6c4a21 100644 --- a/app/code/Magento/Store/Model/HeaderProvider/UpgradeInsecure.php +++ b/app/code/Magento/Store/Model/HeaderProvider/UpgradeInsecure.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/Information.php b/app/code/Magento/Store/Model/Information.php index 39ba0f7a944..dcbb6981199 100644 --- a/app/code/Magento/Store/Model/Information.php +++ b/app/code/Magento/Store/Model/Information.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/PathConfig.php b/app/code/Magento/Store/Model/PathConfig.php index 0de769c43d1..d5490bcf7ff 100644 --- a/app/code/Magento/Store/Model/PathConfig.php +++ b/app/code/Magento/Store/Model/PathConfig.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/Plugin/StoreCookie.php b/app/code/Magento/Store/Model/Plugin/StoreCookie.php index b503b8b4385..7409721123b 100644 --- a/app/code/Magento/Store/Model/Plugin/StoreCookie.php +++ b/app/code/Magento/Store/Model/Plugin/StoreCookie.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/Resolver/Group.php b/app/code/Magento/Store/Model/Resolver/Group.php index c405ee792b0..2cba369e69b 100644 --- a/app/code/Magento/Store/Model/Resolver/Group.php +++ b/app/code/Magento/Store/Model/Resolver/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Resolver; diff --git a/app/code/Magento/Store/Model/Resolver/Store.php b/app/code/Magento/Store/Model/Resolver/Store.php index 55ad7a6d2fb..a7b2df84d55 100644 --- a/app/code/Magento/Store/Model/Resolver/Store.php +++ b/app/code/Magento/Store/Model/Resolver/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Resolver; diff --git a/app/code/Magento/Store/Model/Resolver/Website.php b/app/code/Magento/Store/Model/Resolver/Website.php index d1f6c21e219..8ac2f4a5d56 100644 --- a/app/code/Magento/Store/Model/Resolver/Website.php +++ b/app/code/Magento/Store/Model/Resolver/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Resolver; diff --git a/app/code/Magento/Store/Model/ResourceModel/Config/Collection/Scoped.php b/app/code/Magento/Store/Model/ResourceModel/Config/Collection/Scoped.php index 1dc8910bc0b..c7f276fb655 100644 --- a/app/code/Magento/Store/Model/ResourceModel/Config/Collection/Scoped.php +++ b/app/code/Magento/Store/Model/ResourceModel/Config/Collection/Scoped.php @@ -2,7 +2,7 @@ /** * Scoped config data collection * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\ResourceModel\Config\Collection; diff --git a/app/code/Magento/Store/Model/ResourceModel/Group.php b/app/code/Magento/Store/Model/ResourceModel/Group.php index 0052b8e8eed..585079eb835 100644 --- a/app/code/Magento/Store/Model/ResourceModel/Group.php +++ b/app/code/Magento/Store/Model/ResourceModel/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\ResourceModel; diff --git a/app/code/Magento/Store/Model/ResourceModel/Group/Collection.php b/app/code/Magento/Store/Model/ResourceModel/Group/Collection.php index 68564e7cf54..65ffa563f86 100644 --- a/app/code/Magento/Store/Model/ResourceModel/Group/Collection.php +++ b/app/code/Magento/Store/Model/ResourceModel/Group/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\ResourceModel\Group; diff --git a/app/code/Magento/Store/Model/ResourceModel/Store.php b/app/code/Magento/Store/Model/ResourceModel/Store.php index 86bfc3e00b2..6d6b6d7bc8f 100644 --- a/app/code/Magento/Store/Model/ResourceModel/Store.php +++ b/app/code/Magento/Store/Model/ResourceModel/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\ResourceModel; diff --git a/app/code/Magento/Store/Model/ResourceModel/Store/Collection.php b/app/code/Magento/Store/Model/ResourceModel/Store/Collection.php index 260ca73052a..fe3b4a28060 100644 --- a/app/code/Magento/Store/Model/ResourceModel/Store/Collection.php +++ b/app/code/Magento/Store/Model/ResourceModel/Store/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\ResourceModel\Store; diff --git a/app/code/Magento/Store/Model/ResourceModel/StoreWebsiteRelation.php b/app/code/Magento/Store/Model/ResourceModel/StoreWebsiteRelation.php index 7b8302578c2..c50e5253bb1 100644 --- a/app/code/Magento/Store/Model/ResourceModel/StoreWebsiteRelation.php +++ b/app/code/Magento/Store/Model/ResourceModel/StoreWebsiteRelation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\ResourceModel; diff --git a/app/code/Magento/Store/Model/ResourceModel/Website.php b/app/code/Magento/Store/Model/ResourceModel/Website.php index 47d71427c9b..e34f5e78567 100644 --- a/app/code/Magento/Store/Model/ResourceModel/Website.php +++ b/app/code/Magento/Store/Model/ResourceModel/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/ResourceModel/Website/Collection.php b/app/code/Magento/Store/Model/ResourceModel/Website/Collection.php index 0d02016580f..ed3807a40cb 100644 --- a/app/code/Magento/Store/Model/ResourceModel/Website/Collection.php +++ b/app/code/Magento/Store/Model/ResourceModel/Website/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\ResourceModel\Website; diff --git a/app/code/Magento/Store/Model/ResourceModel/Website/Grid/Collection.php b/app/code/Magento/Store/Model/ResourceModel/Website/Grid/Collection.php index 667dc0be7aa..3497eb4d237 100644 --- a/app/code/Magento/Store/Model/ResourceModel/Website/Grid/Collection.php +++ b/app/code/Magento/Store/Model/ResourceModel/Website/Grid/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\ResourceModel\Website\Grid; diff --git a/app/code/Magento/Store/Model/ScopeFallbackResolver.php b/app/code/Magento/Store/Model/ScopeFallbackResolver.php index 41493234296..1f93d853b40 100644 --- a/app/code/Magento/Store/Model/ScopeFallbackResolver.php +++ b/app/code/Magento/Store/Model/ScopeFallbackResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/ScopeInterface.php b/app/code/Magento/Store/Model/ScopeInterface.php index a511eecfe86..9fc8bd3d7c8 100644 --- a/app/code/Magento/Store/Model/ScopeInterface.php +++ b/app/code/Magento/Store/Model/ScopeInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/ScopeTreeProvider.php b/app/code/Magento/Store/Model/ScopeTreeProvider.php index 4de5b6b2a10..29f5e945bc5 100644 --- a/app/code/Magento/Store/Model/ScopeTreeProvider.php +++ b/app/code/Magento/Store/Model/ScopeTreeProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/ScopeValidator.php b/app/code/Magento/Store/Model/ScopeValidator.php index 7f26f4f445a..d6b20096a5f 100644 --- a/app/code/Magento/Store/Model/ScopeValidator.php +++ b/app/code/Magento/Store/Model/ScopeValidator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/Service/StoreConfigManager.php b/app/code/Magento/Store/Model/Service/StoreConfigManager.php index 7223236b9e4..1c7b92afba9 100644 --- a/app/code/Magento/Store/Model/Service/StoreConfigManager.php +++ b/app/code/Magento/Store/Model/Service/StoreConfigManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\Service; diff --git a/app/code/Magento/Store/Model/Store.php b/app/code/Magento/Store/Model/Store.php index ccd1aed947d..b57d7111b13 100644 --- a/app/code/Magento/Store/Model/Store.php +++ b/app/code/Magento/Store/Model/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/StoreCookieManager.php b/app/code/Magento/Store/Model/StoreCookieManager.php index b9be73386bf..60453b4b444 100644 --- a/app/code/Magento/Store/Model/StoreCookieManager.php +++ b/app/code/Magento/Store/Model/StoreCookieManager.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/StoreIsInactiveException.php b/app/code/Magento/Store/Model/StoreIsInactiveException.php index ae686d3e876..29e42563a62 100644 --- a/app/code/Magento/Store/Model/StoreIsInactiveException.php +++ b/app/code/Magento/Store/Model/StoreIsInactiveException.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/StoreManagement.php b/app/code/Magento/Store/Model/StoreManagement.php index f58bb03d023..27358827616 100644 --- a/app/code/Magento/Store/Model/StoreManagement.php +++ b/app/code/Magento/Store/Model/StoreManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/StoreManager.php b/app/code/Magento/Store/Model/StoreManager.php index f64f2fe84a8..1226dbff40e 100644 --- a/app/code/Magento/Store/Model/StoreManager.php +++ b/app/code/Magento/Store/Model/StoreManager.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/StoreManagerInterface.php b/app/code/Magento/Store/Model/StoreManagerInterface.php index 385578bd753..22637bbe1c6 100644 --- a/app/code/Magento/Store/Model/StoreManagerInterface.php +++ b/app/code/Magento/Store/Model/StoreManagerInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/StoreRepository.php b/app/code/Magento/Store/Model/StoreRepository.php index c9e7a0ebc9d..528e3f8e5ad 100644 --- a/app/code/Magento/Store/Model/StoreRepository.php +++ b/app/code/Magento/Store/Model/StoreRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/StoreResolver.php b/app/code/Magento/Store/Model/StoreResolver.php index cfb57849f25..9da5ffbd457 100644 --- a/app/code/Magento/Store/Model/StoreResolver.php +++ b/app/code/Magento/Store/Model/StoreResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/StoreResolver/Group.php b/app/code/Magento/Store/Model/StoreResolver/Group.php index 24b3b33126a..d125c053228 100644 --- a/app/code/Magento/Store/Model/StoreResolver/Group.php +++ b/app/code/Magento/Store/Model/StoreResolver/Group.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\StoreResolver; diff --git a/app/code/Magento/Store/Model/StoreResolver/ReaderInterface.php b/app/code/Magento/Store/Model/StoreResolver/ReaderInterface.php index fee232f8bf5..c37680e5f80 100644 --- a/app/code/Magento/Store/Model/StoreResolver/ReaderInterface.php +++ b/app/code/Magento/Store/Model/StoreResolver/ReaderInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\StoreResolver; diff --git a/app/code/Magento/Store/Model/StoreResolver/ReaderList.php b/app/code/Magento/Store/Model/StoreResolver/ReaderList.php index bd88ffba9ed..44232be873b 100644 --- a/app/code/Magento/Store/Model/StoreResolver/ReaderList.php +++ b/app/code/Magento/Store/Model/StoreResolver/ReaderList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\StoreResolver; diff --git a/app/code/Magento/Store/Model/StoreResolver/Store.php b/app/code/Magento/Store/Model/StoreResolver/Store.php index 7783174d98c..79f5dd6c18d 100644 --- a/app/code/Magento/Store/Model/StoreResolver/Store.php +++ b/app/code/Magento/Store/Model/StoreResolver/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\StoreResolver; diff --git a/app/code/Magento/Store/Model/StoreResolver/Website.php b/app/code/Magento/Store/Model/StoreResolver/Website.php index d9d2b3af9a9..ff7965ef214 100644 --- a/app/code/Magento/Store/Model/StoreResolver/Website.php +++ b/app/code/Magento/Store/Model/StoreResolver/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\StoreResolver; diff --git a/app/code/Magento/Store/Model/StoreScopeProvider.php b/app/code/Magento/Store/Model/StoreScopeProvider.php index 1054b6bca41..875b7ae0e5b 100644 --- a/app/code/Magento/Store/Model/StoreScopeProvider.php +++ b/app/code/Magento/Store/Model/StoreScopeProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/StoresConfig.php b/app/code/Magento/Store/Model/StoresConfig.php index dae72a595b3..03c0da7e70e 100644 --- a/app/code/Magento/Store/Model/StoresConfig.php +++ b/app/code/Magento/Store/Model/StoresConfig.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Model/System/Store.php b/app/code/Magento/Store/Model/System/Store.php index ccc433ee9e9..e7bb6b4f8b8 100644 --- a/app/code/Magento/Store/Model/System/Store.php +++ b/app/code/Magento/Store/Model/System/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model\System; diff --git a/app/code/Magento/Store/Model/Website.php b/app/code/Magento/Store/Model/Website.php index a3a6b6dbc3f..f3c16c971de 100644 --- a/app/code/Magento/Store/Model/Website.php +++ b/app/code/Magento/Store/Model/Website.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/WebsiteManagement.php b/app/code/Magento/Store/Model/WebsiteManagement.php index db9b72fc6f1..2a22fc61dee 100644 --- a/app/code/Magento/Store/Model/WebsiteManagement.php +++ b/app/code/Magento/Store/Model/WebsiteManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Model/WebsiteRepository.php b/app/code/Magento/Store/Model/WebsiteRepository.php index dffcef921bc..b30e288f220 100644 --- a/app/code/Magento/Store/Model/WebsiteRepository.php +++ b/app/code/Magento/Store/Model/WebsiteRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Model; diff --git a/app/code/Magento/Store/Setup/InstallSchema.php b/app/code/Magento/Store/Setup/InstallSchema.php index b6f97993f3b..8c7935d8d18 100644 --- a/app/code/Magento/Store/Setup/InstallSchema.php +++ b/app/code/Magento/Store/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/App/Action/Plugin/ContextTest.php b/app/code/Magento/Store/Test/Unit/App/Action/Plugin/ContextTest.php index 2411475b203..a24711cac96 100644 --- a/app/code/Magento/Store/Test/Unit/App/Action/Plugin/ContextTest.php +++ b/app/code/Magento/Store/Test/Unit/App/Action/Plugin/ContextTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\App\Action\Plugin; diff --git a/app/code/Magento/Store/Test/Unit/App/Action/Plugin/StoreCheckTest.php b/app/code/Magento/Store/Test/Unit/App/Action/Plugin/StoreCheckTest.php index 7e443a05c1b..db0175725f2 100644 --- a/app/code/Magento/Store/Test/Unit/App/Action/Plugin/StoreCheckTest.php +++ b/app/code/Magento/Store/Test/Unit/App/Action/Plugin/StoreCheckTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\App\Action\Plugin; diff --git a/app/code/Magento/Store/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php b/app/code/Magento/Store/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php index 8b3ffeafd8b..5bb154a6dd3 100644 --- a/app/code/Magento/Store/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php +++ b/app/code/Magento/Store/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\App\Config\Source; diff --git a/app/code/Magento/Store/Test/Unit/App/FrontController/Plugin/RequestPreprocessorTest.php b/app/code/Magento/Store/Test/Unit/App/FrontController/Plugin/RequestPreprocessorTest.php index 008dfb86ca6..e9332e58189 100644 --- a/app/code/Magento/Store/Test/Unit/App/FrontController/Plugin/RequestPreprocessorTest.php +++ b/app/code/Magento/Store/Test/Unit/App/FrontController/Plugin/RequestPreprocessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\App\FrontController\Plugin; diff --git a/app/code/Magento/Store/Test/Unit/App/Request/PathInfoProcessorTest.php b/app/code/Magento/Store/Test/Unit/App/Request/PathInfoProcessorTest.php index 7e805e7c3c9..a3e24405500 100644 --- a/app/code/Magento/Store/Test/Unit/App/Request/PathInfoProcessorTest.php +++ b/app/code/Magento/Store/Test/Unit/App/Request/PathInfoProcessorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\App\Request; diff --git a/app/code/Magento/Store/Test/Unit/App/Response/RedirectTest.php b/app/code/Magento/Store/Test/Unit/App/Response/RedirectTest.php index c8568003903..aa1d2339592 100644 --- a/app/code/Magento/Store/Test/Unit/App/Response/RedirectTest.php +++ b/app/code/Magento/Store/Test/Unit/App/Response/RedirectTest.php @@ -2,7 +2,7 @@ /** * Response redirector tests * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\App\Response; diff --git a/app/code/Magento/Store/Test/Unit/Block/Store/SwitcherTest.php b/app/code/Magento/Store/Test/Unit/Block/Store/SwitcherTest.php index a83cf9d60af..d0f4c78b0d2 100644 --- a/app/code/Magento/Store/Test/Unit/Block/Store/SwitcherTest.php +++ b/app/code/Magento/Store/Test/Unit/Block/Store/SwitcherTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Block/SwitcherTest.php b/app/code/Magento/Store/Test/Unit/Block/SwitcherTest.php index a75178fec3d..4c9408e16d8 100644 --- a/app/code/Magento/Store/Test/Unit/Block/SwitcherTest.php +++ b/app/code/Magento/Store/Test/Unit/Block/SwitcherTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Controller/Store/SwitchActionTest.php b/app/code/Magento/Store/Test/Unit/Controller/Store/SwitchActionTest.php index 7ef08d151b1..a35caee1470 100644 --- a/app/code/Magento/Store/Test/Unit/Controller/Store/SwitchActionTest.php +++ b/app/code/Magento/Store/Test/Unit/Controller/Store/SwitchActionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Controller\Store; diff --git a/app/code/Magento/Store/Test/Unit/Model/Address/RendererTest.php b/app/code/Magento/Store/Test/Unit/Model/Address/RendererTest.php index e7173d6e682..d9720cebc4f 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Address/RendererTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Address/RendererTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/App/EmulationTest.php b/app/code/Magento/Store/Test/Unit/Model/App/EmulationTest.php index e8017d84fb4..cc2ce5ecef9 100644 --- a/app/code/Magento/Store/Test/Unit/Model/App/EmulationTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/App/EmulationTest.php @@ -2,7 +2,7 @@ /** * Tests Magento\Store\Model\App\Emulation * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/ConverterTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/ConverterTest.php index 2a154bcea34..7b691919866 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Config/ConverterTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Config/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Config; diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/PlaceholderTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/PlaceholderTest.php index 7b952dd84fb..d955bc1c087 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Config/PlaceholderTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Config/PlaceholderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Config; diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Processor/PlaceholderTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Processor/PlaceholderTest.php index 7a258fe41a5..e24d7bc9d54 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Config/Processor/PlaceholderTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Config/Processor/PlaceholderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Config\Processor; diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/DefaultScopeTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/DefaultScopeTest.php index 2680bde4c00..0d8387973fc 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/DefaultScopeTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/DefaultScopeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Config\Reader\Source\Dynamic; diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/StoreTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/StoreTest.php index 3fef89f4c22..c4e879793ab 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/StoreTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/StoreTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Config\Reader\Source\Dynamic; diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/WebsiteTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/WebsiteTest.php index b07dafd2fe6..1a30a8cc7b2 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/WebsiteTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/WebsiteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Config\Reader\Source\Dynamic; diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/DefaultScopeTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/DefaultScopeTest.php index d0b68c59749..9471994e96d 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/DefaultScopeTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/DefaultScopeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Config\Reader\Source\Initial; diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/StoreTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/StoreTest.php index 14531490cf4..dd3ff75968c 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/StoreTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/StoreTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Config\Reader\Source\Initial; diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/WebsiteTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/WebsiteTest.php index 6a4f3dd189e..939f4c97a8b 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/WebsiteTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/WebsiteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Config\Reader\Source\Initial; diff --git a/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/HstsTest.php b/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/HstsTest.php index fc8e5d59c04..38c0dc74bca 100644 --- a/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/HstsTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/HstsTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/UpgradeInsecureTest.php b/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/UpgradeInsecureTest.php index 920d782c613..b532f421e48 100644 --- a/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/UpgradeInsecureTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/UpgradeInsecureTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/InformationTest.php b/app/code/Magento/Store/Test/Unit/Model/InformationTest.php index c28dc27cd49..55b9f70ffc3 100644 --- a/app/code/Magento/Store/Test/Unit/Model/InformationTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/InformationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/PathConfigTest.php b/app/code/Magento/Store/Test/Unit/Model/PathConfigTest.php index 5d68355844b..fb53564ea6e 100644 --- a/app/code/Magento/Store/Test/Unit/Model/PathConfigTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/PathConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/Plugin/StoreCookieTest.php b/app/code/Magento/Store/Test/Unit/Model/Plugin/StoreCookieTest.php index 23df5aad918..87a2f93a50b 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Plugin/StoreCookieTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Plugin/StoreCookieTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/Resolver/GroupTest.php b/app/code/Magento/Store/Test/Unit/Model/Resolver/GroupTest.php index 293fc7de088..e9a0d056188 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Resolver/GroupTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Resolver/GroupTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Resolver; diff --git a/app/code/Magento/Store/Test/Unit/Model/Resolver/StoreTest.php b/app/code/Magento/Store/Test/Unit/Model/Resolver/StoreTest.php index 5b8aeec6469..4666cdca4f9 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Resolver/StoreTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Resolver/StoreTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Resolver; diff --git a/app/code/Magento/Store/Test/Unit/Model/Resolver/WebsiteTest.php b/app/code/Magento/Store/Test/Unit/Model/Resolver/WebsiteTest.php index 4e5598aea63..9b43d98df41 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Resolver/WebsiteTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Resolver/WebsiteTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model\Resolver; diff --git a/app/code/Magento/Store/Test/Unit/Model/ResourceModel/StoreWebsiteRelationTest.php b/app/code/Magento/Store/Test/Unit/Model/ResourceModel/StoreWebsiteRelationTest.php index fbf8f5aa3d8..02cea017232 100644 --- a/app/code/Magento/Store/Test/Unit/Model/ResourceModel/StoreWebsiteRelationTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/ResourceModel/StoreWebsiteRelationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/ScopeFallbackResolverTest.php b/app/code/Magento/Store/Test/Unit/Model/ScopeFallbackResolverTest.php index cb2ce253eb0..e77976a11fd 100644 --- a/app/code/Magento/Store/Test/Unit/Model/ScopeFallbackResolverTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/ScopeFallbackResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model; diff --git a/app/code/Magento/Store/Test/Unit/Model/ScopeTreeProviderTest.php b/app/code/Magento/Store/Test/Unit/Model/ScopeTreeProviderTest.php index 8d321875969..60c11eed10a 100644 --- a/app/code/Magento/Store/Test/Unit/Model/ScopeTreeProviderTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/ScopeTreeProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model; diff --git a/app/code/Magento/Store/Test/Unit/Model/ScopeValidatorTest.php b/app/code/Magento/Store/Test/Unit/Model/ScopeValidatorTest.php index 9f915cc17dc..efe743a1267 100644 --- a/app/code/Magento/Store/Test/Unit/Model/ScopeValidatorTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/ScopeValidatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model; diff --git a/app/code/Magento/Store/Test/Unit/Model/Service/StoreConfigManagerTest.php b/app/code/Magento/Store/Test/Unit/Model/Service/StoreConfigManagerTest.php index 5d9e10390bf..4c03eef6a86 100644 --- a/app/code/Magento/Store/Test/Unit/Model/Service/StoreConfigManagerTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/Service/StoreConfigManagerTest.php @@ -2,7 +2,7 @@ /** * Test class for \Magento\Store\Model\Store\Service\StoreConfigManager * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/StoreManagementTest.php b/app/code/Magento/Store/Test/Unit/Model/StoreManagementTest.php index 32dba1b0e60..b904b5e2c71 100644 --- a/app/code/Magento/Store/Test/Unit/Model/StoreManagementTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/StoreManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model; diff --git a/app/code/Magento/Store/Test/Unit/Model/StoreManagerTest.php b/app/code/Magento/Store/Test/Unit/Model/StoreManagerTest.php index f9d11035989..056f8419c6c 100644 --- a/app/code/Magento/Store/Test/Unit/Model/StoreManagerTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/StoreManagerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/StoreRepositoryTest.php b/app/code/Magento/Store/Test/Unit/Model/StoreRepositoryTest.php index 43bb331c017..b16d31cdfa1 100644 --- a/app/code/Magento/Store/Test/Unit/Model/StoreRepositoryTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/StoreRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/StoreTest.php b/app/code/Magento/Store/Test/Unit/Model/StoreTest.php index 5b2691d2e4b..672622c78d6 100644 --- a/app/code/Magento/Store/Test/Unit/Model/StoreTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/StoreTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/StoresConfigTest.php b/app/code/Magento/Store/Test/Unit/Model/StoresConfigTest.php index 6752291a3e1..ce01ab02153 100644 --- a/app/code/Magento/Store/Test/Unit/Model/StoresConfigTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/StoresConfigTest.php @@ -2,7 +2,7 @@ /** * Test class for \Magento\Store\Model\Store\StoresConfig * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/System/StoreTest.php b/app/code/Magento/Store/Test/Unit/Model/System/StoreTest.php index 3294f735336..9208967ac8d 100644 --- a/app/code/Magento/Store/Test/Unit/Model/System/StoreTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/System/StoreTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/WebsiteManagementTest.php b/app/code/Magento/Store/Test/Unit/Model/WebsiteManagementTest.php index fb9a4d4c4e7..68dd72a084d 100644 --- a/app/code/Magento/Store/Test/Unit/Model/WebsiteManagementTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/WebsiteManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model; diff --git a/app/code/Magento/Store/Test/Unit/Model/WebsiteRepositoryTest.php b/app/code/Magento/Store/Test/Unit/Model/WebsiteRepositoryTest.php index fdb2e4530bf..ecfaa649d89 100644 --- a/app/code/Magento/Store/Test/Unit/Model/WebsiteRepositoryTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/WebsiteRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Model/WebsiteTest.php b/app/code/Magento/Store/Test/Unit/Model/WebsiteTest.php index 310fd0471b9..d0c7e5329e1 100644 --- a/app/code/Magento/Store/Test/Unit/Model/WebsiteTest.php +++ b/app/code/Magento/Store/Test/Unit/Model/WebsiteTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Model; diff --git a/app/code/Magento/Store/Test/Unit/Ui/Component/Listing/Column/StoreTest.php b/app/code/Magento/Store/Test/Unit/Ui/Component/Listing/Column/StoreTest.php index 895f10d2e13..86d484aab28 100644 --- a/app/code/Magento/Store/Test/Unit/Ui/Component/Listing/Column/StoreTest.php +++ b/app/code/Magento/Store/Test/Unit/Ui/Component/Listing/Column/StoreTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/Test/Unit/Url/Plugin/RouteParamsResolverTest.php b/app/code/Magento/Store/Test/Unit/Url/Plugin/RouteParamsResolverTest.php index 959f9efd033..4c201444444 100644 --- a/app/code/Magento/Store/Test/Unit/Url/Plugin/RouteParamsResolverTest.php +++ b/app/code/Magento/Store/Test/Unit/Url/Plugin/RouteParamsResolverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Url\Plugin; diff --git a/app/code/Magento/Store/Test/Unit/Url/Plugin/SecurityInfoTest.php b/app/code/Magento/Store/Test/Unit/Url/Plugin/SecurityInfoTest.php index b83127721d1..af254ac3031 100644 --- a/app/code/Magento/Store/Test/Unit/Url/Plugin/SecurityInfoTest.php +++ b/app/code/Magento/Store/Test/Unit/Url/Plugin/SecurityInfoTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Test\Unit\Url\Plugin; diff --git a/app/code/Magento/Store/Ui/Component/Form/Fieldset/Websites.php b/app/code/Magento/Store/Ui/Component/Form/Fieldset/Websites.php index 9f92c18cc41..355c316b2bc 100644 --- a/app/code/Magento/Store/Ui/Component/Form/Fieldset/Websites.php +++ b/app/code/Magento/Store/Ui/Component/Form/Fieldset/Websites.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Ui\Component\Form\Fieldset; diff --git a/app/code/Magento/Store/Ui/Component/Listing/Column/Store.php b/app/code/Magento/Store/Ui/Component/Listing/Column/Store.php index d01bdc1f456..faf722ca82c 100644 --- a/app/code/Magento/Store/Ui/Component/Listing/Column/Store.php +++ b/app/code/Magento/Store/Ui/Component/Listing/Column/Store.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Ui\Component\Listing\Column; diff --git a/app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php b/app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php index ecc3cc6ac5d..91a4dede7d8 100644 --- a/app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php +++ b/app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Ui\Component\Listing\Column\Store; diff --git a/app/code/Magento/Store/Url/Plugin/RouteParamsResolver.php b/app/code/Magento/Store/Url/Plugin/RouteParamsResolver.php index 8ef0420a23c..766f743fb2c 100644 --- a/app/code/Magento/Store/Url/Plugin/RouteParamsResolver.php +++ b/app/code/Magento/Store/Url/Plugin/RouteParamsResolver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Url\Plugin; diff --git a/app/code/Magento/Store/Url/Plugin/SecurityInfo.php b/app/code/Magento/Store/Url/Plugin/SecurityInfo.php index 8d4e012fe31..de437b95eae 100644 --- a/app/code/Magento/Store/Url/Plugin/SecurityInfo.php +++ b/app/code/Magento/Store/Url/Plugin/SecurityInfo.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Store\Url\Plugin; diff --git a/app/code/Magento/Store/etc/adminhtml/di.xml b/app/code/Magento/Store/etc/adminhtml/di.xml index e4373f2b6c5..1ee5db69e2e 100644 --- a/app/code/Magento/Store/etc/adminhtml/di.xml +++ b/app/code/Magento/Store/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Store/etc/cache.xml b/app/code/Magento/Store/etc/cache.xml index ff1664c920b..d291a2c953e 100644 --- a/app/code/Magento/Store/etc/cache.xml +++ b/app/code/Magento/Store/etc/cache.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Store/etc/config.xml b/app/code/Magento/Store/etc/config.xml index 6bcc78be7ba..21275effba6 100644 --- a/app/code/Magento/Store/etc/config.xml +++ b/app/code/Magento/Store/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Store/etc/config.xsd b/app/code/Magento/Store/etc/config.xsd index 8ce6dc55baa..5332a2eb60e 100644 --- a/app/code/Magento/Store/etc/config.xsd +++ b/app/code/Magento/Store/etc/config.xsd @@ -3,7 +3,7 @@ /** * This schema must be used to validate config.xml files * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Store/etc/data_source/website.xml b/app/code/Magento/Store/etc/data_source/website.xml index bed2f68732b..5c7ce3f15d7 100644 --- a/app/code/Magento/Store/etc/data_source/website.xml +++ b/app/code/Magento/Store/etc/data_source/website.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -12,4 +12,4 @@ <field name="name" dataType="text"/> </fields> </dataSource> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Store/etc/di.xml b/app/code/Magento/Store/etc/di.xml index 7307493cefb..48a37dec7d7 100644 --- a/app/code/Magento/Store/etc/di.xml +++ b/app/code/Magento/Store/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Store/etc/frontend/di.xml b/app/code/Magento/Store/etc/frontend/di.xml index 598cedbe6f9..3e3ee0f1c5c 100644 --- a/app/code/Magento/Store/etc/frontend/di.xml +++ b/app/code/Magento/Store/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Store/etc/frontend/routes.xml b/app/code/Magento/Store/etc/frontend/routes.xml index f11b0803834..e5caeb8d443 100644 --- a/app/code/Magento/Store/etc/frontend/routes.xml +++ b/app/code/Magento/Store/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Store/etc/frontend/sections.xml b/app/code/Magento/Store/etc/frontend/sections.xml index 8a5558c6594..310634efec9 100644 --- a/app/code/Magento/Store/etc/frontend/sections.xml +++ b/app/code/Magento/Store/etc/frontend/sections.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Store/etc/module.xml b/app/code/Magento/Store/etc/module.xml index 82a723a0f37..39dbe9a198f 100644 --- a/app/code/Magento/Store/etc/module.xml +++ b/app/code/Magento/Store/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Store/etc/webapi.xml b/app/code/Magento/Store/etc/webapi.xml index a344ea26a0b..2fa39f41100 100644 --- a/app/code/Magento/Store/etc/webapi.xml +++ b/app/code/Magento/Store/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Store/registration.php b/app/code/Magento/Store/registration.php index 57765f30853..fcace508c61 100644 --- a/app/code/Magento/Store/registration.php +++ b/app/code/Magento/Store/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/view/frontend/templates/switch/flags.phtml b/app/code/Magento/Store/view/frontend/templates/switch/flags.phtml index cb151bded68..2b7d7aa18f8 100644 --- a/app/code/Magento/Store/view/frontend/templates/switch/flags.phtml +++ b/app/code/Magento/Store/view/frontend/templates/switch/flags.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/view/frontend/templates/switch/languages.phtml b/app/code/Magento/Store/view/frontend/templates/switch/languages.phtml index 3b55304b280..7e990ed0a05 100644 --- a/app/code/Magento/Store/view/frontend/templates/switch/languages.phtml +++ b/app/code/Magento/Store/view/frontend/templates/switch/languages.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Store/view/frontend/templates/switch/stores.phtml b/app/code/Magento/Store/view/frontend/templates/switch/stores.phtml index 38c187aa273..bef5832cb03 100644 --- a/app/code/Magento/Store/view/frontend/templates/switch/stores.phtml +++ b/app/code/Magento/Store/view/frontend/templates/switch/stores.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swagger/Controller/Index/Index.php b/app/code/Magento/Swagger/Controller/Index/Index.php index cbe952803ca..0cf65e29ac2 100644 --- a/app/code/Magento/Swagger/Controller/Index/Index.php +++ b/app/code/Magento/Swagger/Controller/Index/Index.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swagger\Controller\Index; diff --git a/app/code/Magento/Swagger/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Swagger/Test/Unit/Controller/Index/IndexTest.php index 81e9212dc8f..b1d6e2623e5 100644 --- a/app/code/Magento/Swagger/Test/Unit/Controller/Index/IndexTest.php +++ b/app/code/Magento/Swagger/Test/Unit/Controller/Index/IndexTest.php @@ -1,6 +1,6 @@ <?php /*** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swagger/etc/frontend/routes.xml b/app/code/Magento/Swagger/etc/frontend/routes.xml index ce34c7d0fef..9f3073a6ebc 100644 --- a/app/code/Magento/Swagger/etc/frontend/routes.xml +++ b/app/code/Magento/Swagger/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swagger/etc/module.xml b/app/code/Magento/Swagger/etc/module.xml index 5d44fa84987..e153eade29e 100644 --- a/app/code/Magento/Swagger/etc/module.xml +++ b/app/code/Magento/Swagger/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swagger/registration.php b/app/code/Magento/Swagger/registration.php index e1b1babb012..00f77a19fa9 100644 --- a/app/code/Magento/Swagger/registration.php +++ b/app/code/Magento/Swagger/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swagger/view/frontend/layout/swagger_index_index.xml b/app/code/Magento/Swagger/view/frontend/layout/swagger_index_index.xml index 7b52fcd8339..1675e86080c 100644 --- a/app/code/Magento/Swagger/view/frontend/layout/swagger_index_index.xml +++ b/app/code/Magento/Swagger/view/frontend/layout/swagger_index_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/magento-swagger.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/magento-swagger.js index bca824c58a0..315b52c1871 100644 --- a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/magento-swagger.js +++ b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/magento-swagger.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ $(function () { diff --git a/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatch.php b/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatch.php index 63d55a9c033..a8655007f60 100644 --- a/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatch.php +++ b/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatch.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Block\Adminhtml\Attribute\Edit\Options; diff --git a/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Text.php b/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Text.php index cc79746573a..f9c387bff4b 100644 --- a/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Text.php +++ b/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Text.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Block\Adminhtml\Attribute\Edit\Options; diff --git a/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Visual.php b/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Visual.php index e9e99ec1926..af44349a940 100644 --- a/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Visual.php +++ b/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Visual.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Block\Adminhtml\Attribute\Edit\Options; diff --git a/app/code/Magento/Swatches/Block/Adminhtml/Product/Attribute/Edit/Form.php b/app/code/Magento/Swatches/Block/Adminhtml/Product/Attribute/Edit/Form.php index 1f130a89f1f..2b4e7bc030c 100644 --- a/app/code/Magento/Swatches/Block/Adminhtml/Product/Attribute/Edit/Form.php +++ b/app/code/Magento/Swatches/Block/Adminhtml/Product/Attribute/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/Block/LayeredNavigation/RenderLayered.php b/app/code/Magento/Swatches/Block/LayeredNavigation/RenderLayered.php index 49a15798463..890090a7a75 100644 --- a/app/code/Magento/Swatches/Block/LayeredNavigation/RenderLayered.php +++ b/app/code/Magento/Swatches/Block/LayeredNavigation/RenderLayered.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Block\LayeredNavigation; diff --git a/app/code/Magento/Swatches/Block/Product/Renderer/Configurable.php b/app/code/Magento/Swatches/Block/Product/Renderer/Configurable.php index efb0a3ff9ba..50ab7894532 100644 --- a/app/code/Magento/Swatches/Block/Product/Renderer/Configurable.php +++ b/app/code/Magento/Swatches/Block/Product/Renderer/Configurable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Block\Product\Renderer; diff --git a/app/code/Magento/Swatches/Block/Product/Renderer/Listing/Configurable.php b/app/code/Magento/Swatches/Block/Product/Renderer/Listing/Configurable.php index 1cf97d1a278..40f556c19c9 100644 --- a/app/code/Magento/Swatches/Block/Product/Renderer/Listing/Configurable.php +++ b/app/code/Magento/Swatches/Block/Product/Renderer/Listing/Configurable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Block\Product\Renderer\Listing; diff --git a/app/code/Magento/Swatches/Controller/Adminhtml/Iframe/Show.php b/app/code/Magento/Swatches/Controller/Adminhtml/Iframe/Show.php index 12bf996280b..8397ebd28b1 100644 --- a/app/code/Magento/Swatches/Controller/Adminhtml/Iframe/Show.php +++ b/app/code/Magento/Swatches/Controller/Adminhtml/Iframe/Show.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Controller\Adminhtml\Iframe; diff --git a/app/code/Magento/Swatches/Controller/Adminhtml/Product/Attribute/Plugin/Save.php b/app/code/Magento/Swatches/Controller/Adminhtml/Product/Attribute/Plugin/Save.php index 295de557ce0..b61e5332f0f 100644 --- a/app/code/Magento/Swatches/Controller/Adminhtml/Product/Attribute/Plugin/Save.php +++ b/app/code/Magento/Swatches/Controller/Adminhtml/Product/Attribute/Plugin/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/Controller/Ajax/Media.php b/app/code/Magento/Swatches/Controller/Ajax/Media.php index 8379ea7adc6..3bb03403d3a 100644 --- a/app/code/Magento/Swatches/Controller/Ajax/Media.php +++ b/app/code/Magento/Swatches/Controller/Ajax/Media.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Controller\Ajax; diff --git a/app/code/Magento/Swatches/Helper/Data.php b/app/code/Magento/Swatches/Helper/Data.php index d80aaaf73cc..da43aba39c2 100644 --- a/app/code/Magento/Swatches/Helper/Data.php +++ b/app/code/Magento/Swatches/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Helper; diff --git a/app/code/Magento/Swatches/Helper/Media.php b/app/code/Magento/Swatches/Helper/Media.php index 851938571c0..9356b2c1384 100644 --- a/app/code/Magento/Swatches/Helper/Media.php +++ b/app/code/Magento/Swatches/Helper/Media.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Helper; diff --git a/app/code/Magento/Swatches/Model/AttributesList.php b/app/code/Magento/Swatches/Model/AttributesList.php index d6834f564da..9b0a9edab19 100644 --- a/app/code/Magento/Swatches/Model/AttributesList.php +++ b/app/code/Magento/Swatches/Model/AttributesList.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Model; diff --git a/app/code/Magento/Swatches/Model/Form/Element/AbstractSwatch.php b/app/code/Magento/Swatches/Model/Form/Element/AbstractSwatch.php index a4621d3609d..63a38d6d741 100644 --- a/app/code/Magento/Swatches/Model/Form/Element/AbstractSwatch.php +++ b/app/code/Magento/Swatches/Model/Form/Element/AbstractSwatch.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Model\Form\Element; diff --git a/app/code/Magento/Swatches/Model/Form/Element/SwatchText.php b/app/code/Magento/Swatches/Model/Form/Element/SwatchText.php index 235a6e32760..bc8d873245b 100644 --- a/app/code/Magento/Swatches/Model/Form/Element/SwatchText.php +++ b/app/code/Magento/Swatches/Model/Form/Element/SwatchText.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Model\Form\Element; diff --git a/app/code/Magento/Swatches/Model/Form/Element/SwatchVisual.php b/app/code/Magento/Swatches/Model/Form/Element/SwatchVisual.php index e358d31bba6..04ae06cfa84 100644 --- a/app/code/Magento/Swatches/Model/Form/Element/SwatchVisual.php +++ b/app/code/Magento/Swatches/Model/Form/Element/SwatchVisual.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Model\Form\Element; diff --git a/app/code/Magento/Swatches/Model/Plugin/Configurable.php b/app/code/Magento/Swatches/Model/Plugin/Configurable.php index a67e488d8f1..b25358d7c86 100644 --- a/app/code/Magento/Swatches/Model/Plugin/Configurable.php +++ b/app/code/Magento/Swatches/Model/Plugin/Configurable.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Model\Plugin; diff --git a/app/code/Magento/Swatches/Model/Plugin/EavAttribute.php b/app/code/Magento/Swatches/Model/Plugin/EavAttribute.php index 72b07518190..c1079dd8c19 100644 --- a/app/code/Magento/Swatches/Model/Plugin/EavAttribute.php +++ b/app/code/Magento/Swatches/Model/Plugin/EavAttribute.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Model\Plugin; diff --git a/app/code/Magento/Swatches/Model/Plugin/FilterRenderer.php b/app/code/Magento/Swatches/Model/Plugin/FilterRenderer.php index 7468285cab1..cc4ca117212 100644 --- a/app/code/Magento/Swatches/Model/Plugin/FilterRenderer.php +++ b/app/code/Magento/Swatches/Model/Plugin/FilterRenderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Model\Plugin; diff --git a/app/code/Magento/Swatches/Model/Plugin/Product.php b/app/code/Magento/Swatches/Model/Plugin/Product.php index aad5dd7a56f..e99f640ca5c 100644 --- a/app/code/Magento/Swatches/Model/Plugin/Product.php +++ b/app/code/Magento/Swatches/Model/Plugin/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Model\Plugin; diff --git a/app/code/Magento/Swatches/Model/Plugin/ProductImage.php b/app/code/Magento/Swatches/Model/Plugin/ProductImage.php index 0e998bcfa8e..225b63ec91b 100644 --- a/app/code/Magento/Swatches/Model/Plugin/ProductImage.php +++ b/app/code/Magento/Swatches/Model/Plugin/ProductImage.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Model\Plugin; diff --git a/app/code/Magento/Swatches/Model/ResourceModel/Swatch.php b/app/code/Magento/Swatches/Model/ResourceModel/Swatch.php index 776b18aae79..fbf9cc53eac 100644 --- a/app/code/Magento/Swatches/Model/ResourceModel/Swatch.php +++ b/app/code/Magento/Swatches/Model/ResourceModel/Swatch.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/Model/ResourceModel/Swatch/Collection.php b/app/code/Magento/Swatches/Model/ResourceModel/Swatch/Collection.php index 08f79cfb2ee..4da2cb58da0 100644 --- a/app/code/Magento/Swatches/Model/ResourceModel/Swatch/Collection.php +++ b/app/code/Magento/Swatches/Model/ResourceModel/Swatch/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Model\ResourceModel\Swatch; diff --git a/app/code/Magento/Swatches/Model/Swatch.php b/app/code/Magento/Swatches/Model/Swatch.php index fff0b5e6e64..d4b84e631a0 100644 --- a/app/code/Magento/Swatches/Model/Swatch.php +++ b/app/code/Magento/Swatches/Model/Swatch.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Model; diff --git a/app/code/Magento/Swatches/Observer/AddFieldsToAttributeObserver.php b/app/code/Magento/Swatches/Observer/AddFieldsToAttributeObserver.php index bd263edf9c3..95fd4d5bbcb 100644 --- a/app/code/Magento/Swatches/Observer/AddFieldsToAttributeObserver.php +++ b/app/code/Magento/Swatches/Observer/AddFieldsToAttributeObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Observer; diff --git a/app/code/Magento/Swatches/Observer/AddSwatchAttributeTypeObserver.php b/app/code/Magento/Swatches/Observer/AddSwatchAttributeTypeObserver.php index 8b01d7d53f8..8d5ede3e974 100644 --- a/app/code/Magento/Swatches/Observer/AddSwatchAttributeTypeObserver.php +++ b/app/code/Magento/Swatches/Observer/AddSwatchAttributeTypeObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Observer; diff --git a/app/code/Magento/Swatches/Plugin/Catalog/CacheInvalidate.php b/app/code/Magento/Swatches/Plugin/Catalog/CacheInvalidate.php index 9d241db792c..f9c9380c95f 100644 --- a/app/code/Magento/Swatches/Plugin/Catalog/CacheInvalidate.php +++ b/app/code/Magento/Swatches/Plugin/Catalog/CacheInvalidate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Plugin\Catalog; diff --git a/app/code/Magento/Swatches/Setup/InstallData.php b/app/code/Magento/Swatches/Setup/InstallData.php index 082d5107099..e44b78dcbd3 100644 --- a/app/code/Magento/Swatches/Setup/InstallData.php +++ b/app/code/Magento/Swatches/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Setup; diff --git a/app/code/Magento/Swatches/Setup/InstallSchema.php b/app/code/Magento/Swatches/Setup/InstallSchema.php index a0741f9f2dd..245ba5c75b7 100644 --- a/app/code/Magento/Swatches/Setup/InstallSchema.php +++ b/app/code/Magento/Swatches/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/Setup/UpgradeData.php b/app/code/Magento/Swatches/Setup/UpgradeData.php index ae39e158f2a..2495b457435 100644 --- a/app/code/Magento/Swatches/Setup/UpgradeData.php +++ b/app/code/Magento/Swatches/Setup/UpgradeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Setup; diff --git a/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatchTest.php b/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatchTest.php index 5c0818cb7eb..b0b7b6fdc56 100644 --- a/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatchTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatchTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Block\Adminhtml\Attribute\Edit\Options; diff --git a/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/FormTest.php b/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/FormTest.php index bfdc5f86cdb..c505084299a 100644 --- a/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/FormTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/FormTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/Test/Unit/Block/LayeredNavigation/RenderLayeredTest.php b/app/code/Magento/Swatches/Test/Unit/Block/LayeredNavigation/RenderLayeredTest.php index b680e7d8f7d..e70357e6250 100644 --- a/app/code/Magento/Swatches/Test/Unit/Block/LayeredNavigation/RenderLayeredTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Block/LayeredNavigation/RenderLayeredTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Block\LayeredNavigation; diff --git a/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/ConfigurableTest.php b/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/ConfigurableTest.php index 6d03cd51979..efc26bb2155 100644 --- a/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/ConfigurableTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Block\Product\Renderer; diff --git a/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/Listing/ConfigurableTest.php b/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/Listing/ConfigurableTest.php index d76a92ac54e..5d0bfbf6a0c 100644 --- a/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/Listing/ConfigurableTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/Listing/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Block\Product\Renderer\Listing; diff --git a/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Iframe/ShowTest.php b/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Iframe/ShowTest.php index 274b3fcb6d2..2e80798d32b 100644 --- a/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Iframe/ShowTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Iframe/ShowTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Controller\Adminhtml\Iframe; diff --git a/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Product/Attribute/Plugin/SaveTest.php b/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Product/Attribute/Plugin/SaveTest.php index fd8d593f2f2..361e0d042e6 100644 --- a/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Product/Attribute/Plugin/SaveTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Product/Attribute/Plugin/SaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/Test/Unit/Controller/Ajax/MediaTest.php b/app/code/Magento/Swatches/Test/Unit/Controller/Ajax/MediaTest.php index b677e1ab063..b0dc487030b 100644 --- a/app/code/Magento/Swatches/Test/Unit/Controller/Ajax/MediaTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Controller/Ajax/MediaTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Controller\Ajax; diff --git a/app/code/Magento/Swatches/Test/Unit/Helper/DataTest.php b/app/code/Magento/Swatches/Test/Unit/Helper/DataTest.php index 10f26acfc25..e922e190aea 100644 --- a/app/code/Magento/Swatches/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Helper; diff --git a/app/code/Magento/Swatches/Test/Unit/Helper/MediaTest.php b/app/code/Magento/Swatches/Test/Unit/Helper/MediaTest.php index 873f2a4fcba..52c38967e93 100644 --- a/app/code/Magento/Swatches/Test/Unit/Helper/MediaTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Helper/MediaTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Helper; diff --git a/app/code/Magento/Swatches/Test/Unit/Model/AttributesListTest.php b/app/code/Magento/Swatches/Test/Unit/Model/AttributesListTest.php index 8e0ef8209ec..23dc8f26109 100644 --- a/app/code/Magento/Swatches/Test/Unit/Model/AttributesListTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Model/AttributesListTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Form/Element/AbstractSwatchTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Form/Element/AbstractSwatchTest.php index 9dbf51bc084..a98f5593d42 100644 --- a/app/code/Magento/Swatches/Test/Unit/Model/Form/Element/AbstractSwatchTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Model/Form/Element/AbstractSwatchTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ConfigurableTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ConfigurableTest.php index 80e9c2292dd..2cd1fbb71df 100644 --- a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ConfigurableTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ConfigurableTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/EavAttributeTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/EavAttributeTest.php index bf1e159aefc..7040d7302a7 100644 --- a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/EavAttributeTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/EavAttributeTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/FilterRendererTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/FilterRendererTest.php index fe646626f9e..3b2d2126f23 100644 --- a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/FilterRendererTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/FilterRendererTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductImageTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductImageTest.php index 545d8bf626f..a7339db3921 100644 --- a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductImageTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductImageTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductTest.php index 846382e8869..0f093c1382d 100644 --- a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Model\Plugin; diff --git a/app/code/Magento/Swatches/Test/Unit/Observer/AddFieldsToAttributeObserverTest.php b/app/code/Magento/Swatches/Test/Unit/Observer/AddFieldsToAttributeObserverTest.php index 01adbdd0693..f4054572753 100644 --- a/app/code/Magento/Swatches/Test/Unit/Observer/AddFieldsToAttributeObserverTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Observer/AddFieldsToAttributeObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Observer; diff --git a/app/code/Magento/Swatches/Test/Unit/Observer/AddSwatchAttributeTypeObserverTest.php b/app/code/Magento/Swatches/Test/Unit/Observer/AddSwatchAttributeTypeObserverTest.php index c6cd6bf1b0f..6a609d599cc 100644 --- a/app/code/Magento/Swatches/Test/Unit/Observer/AddSwatchAttributeTypeObserverTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Observer/AddSwatchAttributeTypeObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Observer; diff --git a/app/code/Magento/Swatches/Test/Unit/Plugin/Catalog/CacheInvalidateTest.php b/app/code/Magento/Swatches/Test/Unit/Plugin/Catalog/CacheInvalidateTest.php index cdbb1d72d3f..01a7a523890 100644 --- a/app/code/Magento/Swatches/Test/Unit/Plugin/Catalog/CacheInvalidateTest.php +++ b/app/code/Magento/Swatches/Test/Unit/Plugin/Catalog/CacheInvalidateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Plugin\Catalog; diff --git a/app/code/Magento/Swatches/etc/adminhtml/di.xml b/app/code/Magento/Swatches/etc/adminhtml/di.xml index e24b4aa534d..052ad187dd1 100644 --- a/app/code/Magento/Swatches/etc/adminhtml/di.xml +++ b/app/code/Magento/Swatches/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/etc/adminhtml/events.xml b/app/code/Magento/Swatches/etc/adminhtml/events.xml index 16f053bd13f..74e8dfa2796 100644 --- a/app/code/Magento/Swatches/etc/adminhtml/events.xml +++ b/app/code/Magento/Swatches/etc/adminhtml/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/etc/adminhtml/routes.xml b/app/code/Magento/Swatches/etc/adminhtml/routes.xml index 2016bd77ed5..a5f95cdb055 100644 --- a/app/code/Magento/Swatches/etc/adminhtml/routes.xml +++ b/app/code/Magento/Swatches/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/etc/adminhtml/system.xml b/app/code/Magento/Swatches/etc/adminhtml/system.xml index e41eaab6e0d..a36fb39c8c5 100644 --- a/app/code/Magento/Swatches/etc/adminhtml/system.xml +++ b/app/code/Magento/Swatches/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/etc/config.xml b/app/code/Magento/Swatches/etc/config.xml index 7a968c2ff94..ab9f7d10239 100644 --- a/app/code/Magento/Swatches/etc/config.xml +++ b/app/code/Magento/Swatches/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/etc/di.xml b/app/code/Magento/Swatches/etc/di.xml index 525456d1f9e..dff3b487140 100644 --- a/app/code/Magento/Swatches/etc/di.xml +++ b/app/code/Magento/Swatches/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/etc/frontend/routes.xml b/app/code/Magento/Swatches/etc/frontend/routes.xml index f4d626cd64a..aa2e6c9811e 100644 --- a/app/code/Magento/Swatches/etc/frontend/routes.xml +++ b/app/code/Magento/Swatches/etc/frontend/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Swatches" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Swatches/etc/module.xml b/app/code/Magento/Swatches/etc/module.xml index 83d761a4996..11499cf6654 100644 --- a/app/code/Magento/Swatches/etc/module.xml +++ b/app/code/Magento/Swatches/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** -* Copyright © 2016 Magento. All rights reserved. +* Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/etc/view.xml b/app/code/Magento/Swatches/etc/view.xml index a4589ad7a89..7533718b919 100644 --- a/app/code/Magento/Swatches/etc/view.xml +++ b/app/code/Magento/Swatches/etc/view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** -* Copyright © 2016 Magento. All rights reserved. +* Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/registration.php b/app/code/Magento/Swatches/registration.php index fea11fdda25..024952430be 100644 --- a/app/code/Magento/Swatches/registration.php +++ b/app/code/Magento/Swatches/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_attribute_edit.xml b/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_attribute_edit.xml index ccedd36d6be..bd8ba89bd22 100644 --- a/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_attribute_edit.xml +++ b/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_attribute_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -21,4 +21,4 @@ </action> </referenceBlock> </body> -</page> \ No newline at end of file +</page> diff --git a/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_attribute_edit_popup.xml b/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_attribute_edit_popup.xml index 3e420e0818a..f9ffab2fa5c 100755 --- a/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_attribute_edit_popup.xml +++ b/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_attribute_edit_popup.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_form.xml b/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_form.xml index 76405c54734..50431ad7c04 100644 --- a/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_form.xml +++ b/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_superconfig_config.xml b/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_superconfig_config.xml index 59f50792575..575fee5707d 100644 --- a/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_superconfig_config.xml +++ b/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_superconfig_config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/adminhtml/requirejs-config.js b/app/code/Magento/Swatches/view/adminhtml/requirejs-config.js index 32675d81ae1..903c90b8bd3 100644 --- a/app/code/Magento/Swatches/view/adminhtml/requirejs-config.js +++ b/app/code/Magento/Swatches/view/adminhtml/requirejs-config.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/js.phtml b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/js.phtml index 8dc4f5cf21d..ede7db90068 100644 --- a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/js.phtml +++ b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/text.phtml b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/text.phtml index 1a15f4194d4..d1efda5e341 100644 --- a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/text.phtml +++ b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/text.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/visual.phtml b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/visual.phtml index f83df3ad4da..a5f96e8d27c 100644 --- a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/visual.phtml +++ b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/visual.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml index ad17bc1cb5c..0f9b16f95c6 100644 --- a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml +++ b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/adminhtml/ui_component/design_config_form.xml b/app/code/Magento/Swatches/view/adminhtml/ui_component/design_config_form.xml index 0891fb35183..311bda65874 100644 --- a/app/code/Magento/Swatches/view/adminhtml/ui_component/design_config_form.xml +++ b/app/code/Magento/Swatches/view/adminhtml/ui_component/design_config_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/adminhtml/ui_component/product_attribute_add_form.xml b/app/code/Magento/Swatches/view/adminhtml/ui_component/product_attribute_add_form.xml index d9762963155..54de75697a8 100644 --- a/app/code/Magento/Swatches/view/adminhtml/ui_component/product_attribute_add_form.xml +++ b/app/code/Magento/Swatches/view/adminhtml/ui_component/product_attribute_add_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/adminhtml/web/css/swatches.css b/app/code/Magento/Swatches/view/adminhtml/web/css/swatches.css index f52668f65f4..5bdb5d1b654 100644 --- a/app/code/Magento/Swatches/view/adminhtml/web/css/swatches.css +++ b/app/code/Magento/Swatches/view/adminhtml/web/css/swatches.css @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/adminhtml/web/js/form/element/swatch-visual.js b/app/code/Magento/Swatches/view/adminhtml/web/js/form/element/swatch-visual.js index 165a8cf8e1e..bda847bf837 100644 --- a/app/code/Magento/Swatches/view/adminhtml/web/js/form/element/swatch-visual.js +++ b/app/code/Magento/Swatches/view/adminhtml/web/js/form/element/swatch-visual.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/adminhtml/web/js/product-attributes.js b/app/code/Magento/Swatches/view/adminhtml/web/js/product-attributes.js index 17f52b5d5f6..4ea9bc01f89 100644 --- a/app/code/Magento/Swatches/view/adminhtml/web/js/product-attributes.js +++ b/app/code/Magento/Swatches/view/adminhtml/web/js/product-attributes.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ diff --git a/app/code/Magento/Swatches/view/adminhtml/web/js/text.js b/app/code/Magento/Swatches/view/adminhtml/web/js/text.js index ac7d7ab642c..eb061870135 100644 --- a/app/code/Magento/Swatches/view/adminhtml/web/js/text.js +++ b/app/code/Magento/Swatches/view/adminhtml/web/js/text.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/adminhtml/web/js/type-change.js b/app/code/Magento/Swatches/view/adminhtml/web/js/type-change.js index 8172d6d9a5f..adf30c500da 100644 --- a/app/code/Magento/Swatches/view/adminhtml/web/js/type-change.js +++ b/app/code/Magento/Swatches/view/adminhtml/web/js/type-change.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ require([ diff --git a/app/code/Magento/Swatches/view/adminhtml/web/js/visual.js b/app/code/Magento/Swatches/view/adminhtml/web/js/visual.js index e8291d810d5..e769989497b 100644 --- a/app/code/Magento/Swatches/view/adminhtml/web/js/visual.js +++ b/app/code/Magento/Swatches/view/adminhtml/web/js/visual.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/adminhtml/web/template/swatch-visual.html b/app/code/Magento/Swatches/view/adminhtml/web/template/swatch-visual.html index fc20cfd77ca..6351283b4bc 100644 --- a/app/code/Magento/Swatches/view/adminhtml/web/template/swatch-visual.html +++ b/app/code/Magento/Swatches/view/adminhtml/web/template/swatch-visual.html @@ -1,6 +1,6 @@ <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Swatches/view/frontend/layout/catalog_category_view.xml index 3b17bac8e15..c8d243a3af9 100644 --- a/app/code/Magento/Swatches/view/frontend/layout/catalog_category_view.xml +++ b/app/code/Magento/Swatches/view/frontend/layout/catalog_category_view.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/frontend/layout/catalog_product_view_type_configurable.xml b/app/code/Magento/Swatches/view/frontend/layout/catalog_product_view_type_configurable.xml index 6ba9c47382f..c5f6df9eb11 100755 --- a/app/code/Magento/Swatches/view/frontend/layout/catalog_product_view_type_configurable.xml +++ b/app/code/Magento/Swatches/view/frontend/layout/catalog_product_view_type_configurable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_advanced_result.xml b/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_advanced_result.xml index 3b17bac8e15..c8d243a3af9 100644 --- a/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_advanced_result.xml +++ b/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_advanced_result.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_result_index.xml b/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_result_index.xml index 3b17bac8e15..c8d243a3af9 100644 --- a/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_result_index.xml +++ b/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_result_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/frontend/layout/checkout_cart_configure_type_configurable.xml b/app/code/Magento/Swatches/view/frontend/layout/checkout_cart_configure_type_configurable.xml index a48b093d7ab..eb157e3443d 100644 --- a/app/code/Magento/Swatches/view/frontend/layout/checkout_cart_configure_type_configurable.xml +++ b/app/code/Magento/Swatches/view/frontend/layout/checkout_cart_configure_type_configurable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/frontend/layout/wishlist_index_configure_type_configurable.xml b/app/code/Magento/Swatches/view/frontend/layout/wishlist_index_configure_type_configurable.xml index 9b77cab3a1d..175d63bde3b 100644 --- a/app/code/Magento/Swatches/view/frontend/layout/wishlist_index_configure_type_configurable.xml +++ b/app/code/Magento/Swatches/view/frontend/layout/wishlist_index_configure_type_configurable.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Swatches/view/frontend/templates/product/layered/renderer.phtml b/app/code/Magento/Swatches/view/frontend/templates/product/layered/renderer.phtml index c8842b5b5be..1a352d7d850 100644 --- a/app/code/Magento/Swatches/view/frontend/templates/product/layered/renderer.phtml +++ b/app/code/Magento/Swatches/view/frontend/templates/product/layered/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/frontend/templates/product/listing/renderer.phtml b/app/code/Magento/Swatches/view/frontend/templates/product/listing/renderer.phtml index 9c3274627b9..16c7fd88c37 100644 --- a/app/code/Magento/Swatches/view/frontend/templates/product/listing/renderer.phtml +++ b/app/code/Magento/Swatches/view/frontend/templates/product/listing/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Swatches/view/frontend/templates/product/view/renderer.phtml b/app/code/Magento/Swatches/view/frontend/templates/product/view/renderer.phtml index 478d6da720a..dbed0abbc8f 100644 --- a/app/code/Magento/Swatches/view/frontend/templates/product/view/renderer.phtml +++ b/app/code/Magento/Swatches/view/frontend/templates/product/view/renderer.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ //"swatchRenderer": { diff --git a/app/code/Magento/Swatches/view/frontend/web/css/swatches.css b/app/code/Magento/Swatches/view/frontend/web/css/swatches.css index 3899a663788..a054cecd5c2 100644 --- a/app/code/Magento/Swatches/view/frontend/web/css/swatches.css +++ b/app/code/Magento/Swatches/view/frontend/web/css/swatches.css @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Swatches/view/frontend/web/js/catalog-add-to-cart.js b/app/code/Magento/Swatches/view/frontend/web/js/catalog-add-to-cart.js index 7900ff67b09..0e0c94b4ad6 100644 --- a/app/code/Magento/Swatches/view/frontend/web/js/catalog-add-to-cart.js +++ b/app/code/Magento/Swatches/view/frontend/web/js/catalog-add-to-cart.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ require([ diff --git a/app/code/Magento/Swatches/view/frontend/web/js/swatch-renderer.js b/app/code/Magento/Swatches/view/frontend/web/js/swatch-renderer.js index cd9794dc175..ed0933c77e8 100644 --- a/app/code/Magento/Swatches/view/frontend/web/js/swatch-renderer.js +++ b/app/code/Magento/Swatches/view/frontend/web/js/swatch-renderer.js @@ -1,5 +1,5 @@ /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SwatchesLayeredNavigation/etc/module.xml b/app/code/Magento/SwatchesLayeredNavigation/etc/module.xml index 1b91e7da1e5..403b13a54ed 100644 --- a/app/code/Magento/SwatchesLayeredNavigation/etc/module.xml +++ b/app/code/Magento/SwatchesLayeredNavigation/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/SwatchesLayeredNavigation/registration.php b/app/code/Magento/SwatchesLayeredNavigation/registration.php index 164603e6b53..ea1540b617d 100644 --- a/app/code/Magento/SwatchesLayeredNavigation/registration.php +++ b/app/code/Magento/SwatchesLayeredNavigation/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/SwatchesLayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml b/app/code/Magento/SwatchesLayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml index d3fdafb73de..09d80d6213b 100644 --- a/app/code/Magento/SwatchesLayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml +++ b/app/code/Magento/SwatchesLayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/Api/Data/AppliedTaxInterface.php b/app/code/Magento/Tax/Api/Data/AppliedTaxInterface.php index cbab5a59d34..1860097fec1 100644 --- a/app/code/Magento/Tax/Api/Data/AppliedTaxInterface.php +++ b/app/code/Magento/Tax/Api/Data/AppliedTaxInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Api\Data; diff --git a/app/code/Magento/Tax/Api/Data/AppliedTaxRateInterface.php b/app/code/Magento/Tax/Api/Data/AppliedTaxRateInterface.php index a7da7d697a2..9038777bfc8 100644 --- a/app/code/Magento/Tax/Api/Data/AppliedTaxRateInterface.php +++ b/app/code/Magento/Tax/Api/Data/AppliedTaxRateInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/GrandTotalDetailsInterface.php b/app/code/Magento/Tax/Api/Data/GrandTotalDetailsInterface.php index 781813d504a..4e2457d7805 100644 --- a/app/code/Magento/Tax/Api/Data/GrandTotalDetailsInterface.php +++ b/app/code/Magento/Tax/Api/Data/GrandTotalDetailsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Api\Data; diff --git a/app/code/Magento/Tax/Api/Data/GrandTotalRatesInterface.php b/app/code/Magento/Tax/Api/Data/GrandTotalRatesInterface.php index 84dd9c7c25d..07ad8d6bd12 100644 --- a/app/code/Magento/Tax/Api/Data/GrandTotalRatesInterface.php +++ b/app/code/Magento/Tax/Api/Data/GrandTotalRatesInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Api\Data; diff --git a/app/code/Magento/Tax/Api/Data/OrderTaxDetailsAppliedTaxInterface.php b/app/code/Magento/Tax/Api/Data/OrderTaxDetailsAppliedTaxInterface.php index bd1b9c464b2..775218a5152 100644 --- a/app/code/Magento/Tax/Api/Data/OrderTaxDetailsAppliedTaxInterface.php +++ b/app/code/Magento/Tax/Api/Data/OrderTaxDetailsAppliedTaxInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/OrderTaxDetailsInterface.php b/app/code/Magento/Tax/Api/Data/OrderTaxDetailsInterface.php index 08f1fae3fff..aafbb08df01 100644 --- a/app/code/Magento/Tax/Api/Data/OrderTaxDetailsInterface.php +++ b/app/code/Magento/Tax/Api/Data/OrderTaxDetailsInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/OrderTaxDetailsItemInterface.php b/app/code/Magento/Tax/Api/Data/OrderTaxDetailsItemInterface.php index ec8c89bf941..2c033f4fcf9 100644 --- a/app/code/Magento/Tax/Api/Data/OrderTaxDetailsItemInterface.php +++ b/app/code/Magento/Tax/Api/Data/OrderTaxDetailsItemInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/QuoteDetailsInterface.php b/app/code/Magento/Tax/Api/Data/QuoteDetailsInterface.php index b4685de6936..8813acccf19 100644 --- a/app/code/Magento/Tax/Api/Data/QuoteDetailsInterface.php +++ b/app/code/Magento/Tax/Api/Data/QuoteDetailsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/QuoteDetailsItemInterface.php b/app/code/Magento/Tax/Api/Data/QuoteDetailsItemInterface.php index 78ced2b22e9..498a1614787 100644 --- a/app/code/Magento/Tax/Api/Data/QuoteDetailsItemInterface.php +++ b/app/code/Magento/Tax/Api/Data/QuoteDetailsItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Api\Data; diff --git a/app/code/Magento/Tax/Api/Data/TaxClassInterface.php b/app/code/Magento/Tax/Api/Data/TaxClassInterface.php index ee518428b94..d520e59f5d3 100644 --- a/app/code/Magento/Tax/Api/Data/TaxClassInterface.php +++ b/app/code/Magento/Tax/Api/Data/TaxClassInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/TaxClassKeyInterface.php b/app/code/Magento/Tax/Api/Data/TaxClassKeyInterface.php index d37f6bb6530..e9632f433d8 100644 --- a/app/code/Magento/Tax/Api/Data/TaxClassKeyInterface.php +++ b/app/code/Magento/Tax/Api/Data/TaxClassKeyInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/TaxClassSearchResultsInterface.php b/app/code/Magento/Tax/Api/Data/TaxClassSearchResultsInterface.php index 90130135970..9c480debf23 100644 --- a/app/code/Magento/Tax/Api/Data/TaxClassSearchResultsInterface.php +++ b/app/code/Magento/Tax/Api/Data/TaxClassSearchResultsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/TaxDetailsInterface.php b/app/code/Magento/Tax/Api/Data/TaxDetailsInterface.php index 075cb5ee1b5..75fa5ee84f4 100644 --- a/app/code/Magento/Tax/Api/Data/TaxDetailsInterface.php +++ b/app/code/Magento/Tax/Api/Data/TaxDetailsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/TaxDetailsItemInterface.php b/app/code/Magento/Tax/Api/Data/TaxDetailsItemInterface.php index 0897c2d6a0b..859edaebc33 100644 --- a/app/code/Magento/Tax/Api/Data/TaxDetailsItemInterface.php +++ b/app/code/Magento/Tax/Api/Data/TaxDetailsItemInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/TaxRateInterface.php b/app/code/Magento/Tax/Api/Data/TaxRateInterface.php index 70e6a3b9c19..056cb724c89 100644 --- a/app/code/Magento/Tax/Api/Data/TaxRateInterface.php +++ b/app/code/Magento/Tax/Api/Data/TaxRateInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/TaxRateSearchResultsInterface.php b/app/code/Magento/Tax/Api/Data/TaxRateSearchResultsInterface.php index 51a1ed3f6a9..e384a4cc41a 100644 --- a/app/code/Magento/Tax/Api/Data/TaxRateSearchResultsInterface.php +++ b/app/code/Magento/Tax/Api/Data/TaxRateSearchResultsInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/TaxRateTitleInterface.php b/app/code/Magento/Tax/Api/Data/TaxRateTitleInterface.php index 063f0522abb..1262bfb8d5a 100644 --- a/app/code/Magento/Tax/Api/Data/TaxRateTitleInterface.php +++ b/app/code/Magento/Tax/Api/Data/TaxRateTitleInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/TaxRuleInterface.php b/app/code/Magento/Tax/Api/Data/TaxRuleInterface.php index a6a3abdf1e4..5647c715dd4 100644 --- a/app/code/Magento/Tax/Api/Data/TaxRuleInterface.php +++ b/app/code/Magento/Tax/Api/Data/TaxRuleInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/Data/TaxRuleSearchResultsInterface.php b/app/code/Magento/Tax/Api/Data/TaxRuleSearchResultsInterface.php index fabdc8e7b3c..68c8b5d1284 100644 --- a/app/code/Magento/Tax/Api/Data/TaxRuleSearchResultsInterface.php +++ b/app/code/Magento/Tax/Api/Data/TaxRuleSearchResultsInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/OrderTaxManagementInterface.php b/app/code/Magento/Tax/Api/OrderTaxManagementInterface.php index b6be557bbbb..320fb434d69 100644 --- a/app/code/Magento/Tax/Api/OrderTaxManagementInterface.php +++ b/app/code/Magento/Tax/Api/OrderTaxManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Api; diff --git a/app/code/Magento/Tax/Api/TaxCalculationInterface.php b/app/code/Magento/Tax/Api/TaxCalculationInterface.php index 805bc4ecacc..393f1d3e285 100644 --- a/app/code/Magento/Tax/Api/TaxCalculationInterface.php +++ b/app/code/Magento/Tax/Api/TaxCalculationInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/TaxClassManagementInterface.php b/app/code/Magento/Tax/Api/TaxClassManagementInterface.php index 4cd70156b2d..3b5c3d91ae8 100644 --- a/app/code/Magento/Tax/Api/TaxClassManagementInterface.php +++ b/app/code/Magento/Tax/Api/TaxClassManagementInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/TaxClassRepositoryInterface.php b/app/code/Magento/Tax/Api/TaxClassRepositoryInterface.php index af08e14325e..d86b6d78bbe 100644 --- a/app/code/Magento/Tax/Api/TaxClassRepositoryInterface.php +++ b/app/code/Magento/Tax/Api/TaxClassRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/TaxRateManagementInterface.php b/app/code/Magento/Tax/Api/TaxRateManagementInterface.php index 466b07c3b9b..d547b4457eb 100644 --- a/app/code/Magento/Tax/Api/TaxRateManagementInterface.php +++ b/app/code/Magento/Tax/Api/TaxRateManagementInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/TaxRateRepositoryInterface.php b/app/code/Magento/Tax/Api/TaxRateRepositoryInterface.php index b4fa0d9ef64..fb2a7592a01 100644 --- a/app/code/Magento/Tax/Api/TaxRateRepositoryInterface.php +++ b/app/code/Magento/Tax/Api/TaxRateRepositoryInterface.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Api/TaxRuleRepositoryInterface.php b/app/code/Magento/Tax/Api/TaxRuleRepositoryInterface.php index 5f477f33bae..09be4d2fd74 100644 --- a/app/code/Magento/Tax/Api/TaxRuleRepositoryInterface.php +++ b/app/code/Magento/Tax/Api/TaxRuleRepositoryInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Block/Adminhtml/Frontend/Region/Updater.php b/app/code/Magento/Tax/Block/Adminhtml/Frontend/Region/Updater.php index c1a90ab8466..d27ffa59409 100644 --- a/app/code/Magento/Tax/Block/Adminhtml/Frontend/Region/Updater.php +++ b/app/code/Magento/Tax/Block/Adminhtml/Frontend/Region/Updater.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Block\Adminhtml\Frontend\Region; diff --git a/app/code/Magento/Tax/Block/Adminhtml/Items/Price/Renderer.php b/app/code/Magento/Tax/Block/Adminhtml/Items/Price/Renderer.php index b9fca22254b..c768cb5cb0c 100644 --- a/app/code/Magento/Tax/Block/Adminhtml/Items/Price/Renderer.php +++ b/app/code/Magento/Tax/Block/Adminhtml/Items/Price/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Block\Adminhtml\Items\Price; diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Form.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Form.php index 3adf8eb4fae..bc1b4b491b5 100644 --- a/app/code/Magento/Tax/Block/Adminhtml/Rate/Form.php +++ b/app/code/Magento/Tax/Block/Adminhtml/Rate/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Grid/Renderer/Data.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Grid/Renderer/Data.php index d4614e6fa81..bb0f39a5e8c 100644 --- a/app/code/Magento/Tax/Block/Adminhtml/Rate/Grid/Renderer/Data.php +++ b/app/code/Magento/Tax/Block/Adminhtml/Rate/Grid/Renderer/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Title.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Title.php index 1d7f1a02acb..171c8ad6476 100644 --- a/app/code/Magento/Tax/Block/Adminhtml/Rate/Title.php +++ b/app/code/Magento/Tax/Block/Adminhtml/Rate/Title.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Title/Fieldset.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Title/Fieldset.php index 78e8717fd37..e2e553d2d40 100644 --- a/app/code/Magento/Tax/Block/Adminhtml/Rate/Title/Fieldset.php +++ b/app/code/Magento/Tax/Block/Adminhtml/Rate/Title/Fieldset.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Add.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Add.php index fa6d25687bd..6ca3a22a743 100644 --- a/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Add.php +++ b/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Add.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Save.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Save.php index 24c9f1ccd6c..3b2beb26f51 100644 --- a/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Save.php +++ b/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Save.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rule.php b/app/code/Magento/Tax/Block/Adminhtml/Rule.php index 7492573962e..2f9c4998b91 100644 --- a/app/code/Magento/Tax/Block/Adminhtml/Rule.php +++ b/app/code/Magento/Tax/Block/Adminhtml/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit.php b/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit.php index 8086b7cbc26..0a70b4f8ecf 100644 --- a/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit.php +++ b/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit/Form.php b/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit/Form.php index 7077ca6cffe..55e3dd78efa 100644 --- a/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit/Form.php +++ b/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit/Form.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Block/Checkout/Discount.php b/app/code/Magento/Tax/Block/Checkout/Discount.php index 2b0d80bc0dc..b7972e7b26e 100644 --- a/app/code/Magento/Tax/Block/Checkout/Discount.php +++ b/app/code/Magento/Tax/Block/Checkout/Discount.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Block\Checkout; diff --git a/app/code/Magento/Tax/Block/Checkout/Grandtotal.php b/app/code/Magento/Tax/Block/Checkout/Grandtotal.php index a27e641c2af..8417ed2b979 100644 --- a/app/code/Magento/Tax/Block/Checkout/Grandtotal.php +++ b/app/code/Magento/Tax/Block/Checkout/Grandtotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Block\Checkout; diff --git a/app/code/Magento/Tax/Block/Checkout/Shipping.php b/app/code/Magento/Tax/Block/Checkout/Shipping.php index 6f5dcaaec2e..362ca25433b 100644 --- a/app/code/Magento/Tax/Block/Checkout/Shipping.php +++ b/app/code/Magento/Tax/Block/Checkout/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Block\Checkout; diff --git a/app/code/Magento/Tax/Block/Checkout/Shipping/Price.php b/app/code/Magento/Tax/Block/Checkout/Shipping/Price.php index 47712fe4894..a3914273c38 100644 --- a/app/code/Magento/Tax/Block/Checkout/Shipping/Price.php +++ b/app/code/Magento/Tax/Block/Checkout/Shipping/Price.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Block\Checkout\Shipping; diff --git a/app/code/Magento/Tax/Block/Checkout/Subtotal.php b/app/code/Magento/Tax/Block/Checkout/Subtotal.php index 43077907be6..beff23175bd 100644 --- a/app/code/Magento/Tax/Block/Checkout/Subtotal.php +++ b/app/code/Magento/Tax/Block/Checkout/Subtotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Block\Checkout; diff --git a/app/code/Magento/Tax/Block/Checkout/Tax.php b/app/code/Magento/Tax/Block/Checkout/Tax.php index 2f2e9561fe0..85ad725c3a4 100644 --- a/app/code/Magento/Tax/Block/Checkout/Tax.php +++ b/app/code/Magento/Tax/Block/Checkout/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Block/Item/Price/Renderer.php b/app/code/Magento/Tax/Block/Item/Price/Renderer.php index 56b0c95145b..82dad0627a3 100644 --- a/app/code/Magento/Tax/Block/Item/Price/Renderer.php +++ b/app/code/Magento/Tax/Block/Item/Price/Renderer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Block\Item\Price; diff --git a/app/code/Magento/Tax/Block/Sales/Order/Tax.php b/app/code/Magento/Tax/Block/Sales/Order/Tax.php index 1d1f1cfb8f0..d4ebcb75bb1 100644 --- a/app/code/Magento/Tax/Block/Sales/Order/Tax.php +++ b/app/code/Magento/Tax/Block/Sales/Order/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate.php index 1ff10c5b382..1879b392507 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rate.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Add.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Add.php index 6a1a22b7fd4..9dc821f8b98 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Add.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Add.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rate; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxDelete.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxDelete.php index 0b41b425c2f..ea74ab3af5d 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxDelete.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxDelete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rate; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxLoad.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxLoad.php index f699998fe98..444729d380d 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxLoad.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxLoad.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rate; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxSave.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxSave.php index 4b6884f3727..2c59dc050e9 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxSave.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxSave.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rate; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Delete.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Delete.php index 3fac4fa9b02..3282007fc01 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Delete.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rate; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Edit.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Edit.php index 173be3c492e..c61b7e0e8e5 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Edit.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rate; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Index.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Index.php index b9187fb0a24..6a07265e4df 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Index.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rate; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Save.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Save.php index 7fa365f9a70..272389f2cae 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Save.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rate; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule.php index 3adeac26b13..7ac05096a42 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rule.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Delete.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Delete.php index 2bad35cc6d7..ddb22048fe1 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Delete.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Delete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rule; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Edit.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Edit.php index eaa4279049e..9ff193a2983 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Edit.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Edit.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rule; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Index.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Index.php index 8df64c5d67f..9776c0cb64d 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Index.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Index.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rule; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule/NewAction.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule/NewAction.php index 0d8f0aa57f6..0f4674e63ee 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rule/NewAction.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rule/NewAction.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rule; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Save.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Save.php index ad7ba6cc3c5..0eeac7fee42 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Save.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Save.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Rule; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Tax.php b/app/code/Magento/Tax/Controller/Adminhtml/Tax.php index ecf21502e4b..411a811cf29 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Tax.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxDelete.php b/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxDelete.php index e0a4ac1f8d4..1074ab249fa 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxDelete.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxDelete.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Tax; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxSave.php b/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxSave.php index 32a9b7bd1aa..c9b77def3f6 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxSave.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxSave.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Tax; diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Tax/IgnoreTaxNotification.php b/app/code/Magento/Tax/Controller/Adminhtml/Tax/IgnoreTaxNotification.php index 90c107fea8c..da9653ae8f0 100644 --- a/app/code/Magento/Tax/Controller/Adminhtml/Tax/IgnoreTaxNotification.php +++ b/app/code/Magento/Tax/Controller/Adminhtml/Tax/IgnoreTaxNotification.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller\Adminhtml\Tax; diff --git a/app/code/Magento/Tax/Controller/RegistryConstants.php b/app/code/Magento/Tax/Controller/RegistryConstants.php index 1b104af3b72..4438ac06500 100644 --- a/app/code/Magento/Tax/Controller/RegistryConstants.php +++ b/app/code/Magento/Tax/Controller/RegistryConstants.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Controller; diff --git a/app/code/Magento/Tax/CustomerData/CheckoutTotalsJsLayoutDataProvider.php b/app/code/Magento/Tax/CustomerData/CheckoutTotalsJsLayoutDataProvider.php index 37e0cb287aa..8af33ab11b1 100644 --- a/app/code/Magento/Tax/CustomerData/CheckoutTotalsJsLayoutDataProvider.php +++ b/app/code/Magento/Tax/CustomerData/CheckoutTotalsJsLayoutDataProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Helper/Data.php b/app/code/Magento/Tax/Helper/Data.php index 3f9d9648b4b..b3bc8d3e525 100644 --- a/app/code/Magento/Tax/Helper/Data.php +++ b/app/code/Magento/Tax/Helper/Data.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/AggregateSalesReportTaxData.php b/app/code/Magento/Tax/Model/AggregateSalesReportTaxData.php index b12fe5d1514..05de4592d26 100644 --- a/app/code/Magento/Tax/Model/AggregateSalesReportTaxData.php +++ b/app/code/Magento/Tax/Model/AggregateSalesReportTaxData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CalculationData.php b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CalculationData.php index ccbc5876146..e7496d13d1a 100644 --- a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CalculationData.php +++ b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CalculationData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Api\SearchCriteria\JoinProcessor; diff --git a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CustomerTaxClass.php b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CustomerTaxClass.php index d7ea765b81e..380384baa4f 100644 --- a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CustomerTaxClass.php +++ b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CustomerTaxClass.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Api\SearchCriteria\JoinProcessor; diff --git a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/ProductTaxClass.php b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/ProductTaxClass.php index 4245013599e..c3990e3691f 100644 --- a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/ProductTaxClass.php +++ b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/ProductTaxClass.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Api\SearchCriteria\JoinProcessor; diff --git a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/Rate.php b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/Rate.php index f77ad5fd86b..d617422a4da 100644 --- a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/Rate.php +++ b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/Rate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Api\SearchCriteria\JoinProcessor; diff --git a/app/code/Magento/Tax/Model/App/Action/ContextPlugin.php b/app/code/Magento/Tax/Model/App/Action/ContextPlugin.php index 03927aed968..8275e2ff2d6 100644 --- a/app/code/Magento/Tax/Model/App/Action/ContextPlugin.php +++ b/app/code/Magento/Tax/Model/App/Action/ContextPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Calculation.php b/app/code/Magento/Tax/Model/Calculation.php index b2d1b6c276d..27df9fd01cd 100644 --- a/app/code/Magento/Tax/Model/Calculation.php +++ b/app/code/Magento/Tax/Model/Calculation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model; diff --git a/app/code/Magento/Tax/Model/Calculation/AbstractAggregateCalculator.php b/app/code/Magento/Tax/Model/Calculation/AbstractAggregateCalculator.php index 1276e3e599d..ca4b81bc52d 100644 --- a/app/code/Magento/Tax/Model/Calculation/AbstractAggregateCalculator.php +++ b/app/code/Magento/Tax/Model/Calculation/AbstractAggregateCalculator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Calculation; diff --git a/app/code/Magento/Tax/Model/Calculation/AbstractCalculator.php b/app/code/Magento/Tax/Model/Calculation/AbstractCalculator.php index 6780eba17ad..31dfb6547c8 100644 --- a/app/code/Magento/Tax/Model/Calculation/AbstractCalculator.php +++ b/app/code/Magento/Tax/Model/Calculation/AbstractCalculator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Calculation; diff --git a/app/code/Magento/Tax/Model/Calculation/CalculatorFactory.php b/app/code/Magento/Tax/Model/Calculation/CalculatorFactory.php index dd3cbe5de53..974b1b55af8 100644 --- a/app/code/Magento/Tax/Model/Calculation/CalculatorFactory.php +++ b/app/code/Magento/Tax/Model/Calculation/CalculatorFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Calculation/GrandTotalDetails.php b/app/code/Magento/Tax/Model/Calculation/GrandTotalDetails.php index c50bda8a562..9383a9825eb 100644 --- a/app/code/Magento/Tax/Model/Calculation/GrandTotalDetails.php +++ b/app/code/Magento/Tax/Model/Calculation/GrandTotalDetails.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Calculation/GrandTotalRates.php b/app/code/Magento/Tax/Model/Calculation/GrandTotalRates.php index 08662b22064..684363127d7 100644 --- a/app/code/Magento/Tax/Model/Calculation/GrandTotalRates.php +++ b/app/code/Magento/Tax/Model/Calculation/GrandTotalRates.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Calculation/Rate.php b/app/code/Magento/Tax/Model/Calculation/Rate.php index 5e7338b4703..d8bec3e00a7 100644 --- a/app/code/Magento/Tax/Model/Calculation/Rate.php +++ b/app/code/Magento/Tax/Model/Calculation/Rate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Calculation/Rate/Converter.php b/app/code/Magento/Tax/Model/Calculation/Rate/Converter.php index 243a5531938..36a7595cadd 100644 --- a/app/code/Magento/Tax/Model/Calculation/Rate/Converter.php +++ b/app/code/Magento/Tax/Model/Calculation/Rate/Converter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Calculation\Rate; diff --git a/app/code/Magento/Tax/Model/Calculation/Rate/Title.php b/app/code/Magento/Tax/Model/Calculation/Rate/Title.php index 822e77cf636..69832938ce1 100644 --- a/app/code/Magento/Tax/Model/Calculation/Rate/Title.php +++ b/app/code/Magento/Tax/Model/Calculation/Rate/Title.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Calculation/RateFactory.php b/app/code/Magento/Tax/Model/Calculation/RateFactory.php index 860fe8cd1e8..d6f8b64a0bf 100644 --- a/app/code/Magento/Tax/Model/Calculation/RateFactory.php +++ b/app/code/Magento/Tax/Model/Calculation/RateFactory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Calculation/RateRegistry.php b/app/code/Magento/Tax/Model/Calculation/RateRegistry.php index 7872eb060fb..a0c1cf1e916 100644 --- a/app/code/Magento/Tax/Model/Calculation/RateRegistry.php +++ b/app/code/Magento/Tax/Model/Calculation/RateRegistry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Calculation/RateRepository.php b/app/code/Magento/Tax/Model/Calculation/RateRepository.php index 7dede7589bc..a6d7b50e2aa 100644 --- a/app/code/Magento/Tax/Model/Calculation/RateRepository.php +++ b/app/code/Magento/Tax/Model/Calculation/RateRepository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Calculation/RowBaseCalculator.php b/app/code/Magento/Tax/Model/Calculation/RowBaseCalculator.php index 39a3b83d690..9085aab9bcd 100644 --- a/app/code/Magento/Tax/Model/Calculation/RowBaseCalculator.php +++ b/app/code/Magento/Tax/Model/Calculation/RowBaseCalculator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Calculation; diff --git a/app/code/Magento/Tax/Model/Calculation/Rule.php b/app/code/Magento/Tax/Model/Calculation/Rule.php index 3ad6cc2a201..dc0284b424f 100644 --- a/app/code/Magento/Tax/Model/Calculation/Rule.php +++ b/app/code/Magento/Tax/Model/Calculation/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Calculation; diff --git a/app/code/Magento/Tax/Model/Calculation/Rule/Validator.php b/app/code/Magento/Tax/Model/Calculation/Rule/Validator.php index 0cf8d016323..cb73bc96135 100644 --- a/app/code/Magento/Tax/Model/Calculation/Rule/Validator.php +++ b/app/code/Magento/Tax/Model/Calculation/Rule/Validator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Calculation/TaxRuleRegistry.php b/app/code/Magento/Tax/Model/Calculation/TaxRuleRegistry.php index c21f4aea16d..ef6cc2f60cc 100644 --- a/app/code/Magento/Tax/Model/Calculation/TaxRuleRegistry.php +++ b/app/code/Magento/Tax/Model/Calculation/TaxRuleRegistry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Calculation/TotalBaseCalculator.php b/app/code/Magento/Tax/Model/Calculation/TotalBaseCalculator.php index 1c8aaebe222..da2bdeba24f 100644 --- a/app/code/Magento/Tax/Model/Calculation/TotalBaseCalculator.php +++ b/app/code/Magento/Tax/Model/Calculation/TotalBaseCalculator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Calculation; diff --git a/app/code/Magento/Tax/Model/Calculation/UnitBaseCalculator.php b/app/code/Magento/Tax/Model/Calculation/UnitBaseCalculator.php index e78533046b8..6ba1578f25b 100644 --- a/app/code/Magento/Tax/Model/Calculation/UnitBaseCalculator.php +++ b/app/code/Magento/Tax/Model/Calculation/UnitBaseCalculator.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Calculation; diff --git a/app/code/Magento/Tax/Model/ClassModel.php b/app/code/Magento/Tax/Model/ClassModel.php index 65f853abee4..83fa6218c06 100644 --- a/app/code/Magento/Tax/Model/ClassModel.php +++ b/app/code/Magento/Tax/Model/ClassModel.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/ClassModelRegistry.php b/app/code/Magento/Tax/Model/ClassModelRegistry.php index 77d3c269374..05979ac6c2d 100644 --- a/app/code/Magento/Tax/Model/ClassModelRegistry.php +++ b/app/code/Magento/Tax/Model/ClassModelRegistry.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Config.php b/app/code/Magento/Tax/Model/Config.php index 09d68cdd3ea..2baad1caac8 100644 --- a/app/code/Magento/Tax/Model/Config.php +++ b/app/code/Magento/Tax/Model/Config.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Config/Notification.php b/app/code/Magento/Tax/Model/Config/Notification.php index fc7edf677e8..135f0aafb23 100644 --- a/app/code/Magento/Tax/Model/Config/Notification.php +++ b/app/code/Magento/Tax/Model/Config/Notification.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Config; diff --git a/app/code/Magento/Tax/Model/Config/Price/IncludePrice.php b/app/code/Magento/Tax/Model/Config/Price/IncludePrice.php index 40030a70e62..16b427367a0 100644 --- a/app/code/Magento/Tax/Model/Config/Price/IncludePrice.php +++ b/app/code/Magento/Tax/Model/Config/Price/IncludePrice.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Config\Price; diff --git a/app/code/Magento/Tax/Model/Config/Source/Apply/On.php b/app/code/Magento/Tax/Model/Config/Source/Apply/On.php index 811de081583..71de5b61d70 100644 --- a/app/code/Magento/Tax/Model/Config/Source/Apply/On.php +++ b/app/code/Magento/Tax/Model/Config/Source/Apply/On.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Config\Source\Apply; diff --git a/app/code/Magento/Tax/Model/Config/Source/Basedon.php b/app/code/Magento/Tax/Model/Config/Source/Basedon.php index 79978b873d5..172bf81b8f2 100644 --- a/app/code/Magento/Tax/Model/Config/Source/Basedon.php +++ b/app/code/Magento/Tax/Model/Config/Source/Basedon.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Config\Source; diff --git a/app/code/Magento/Tax/Model/Config/Source/Catalog.php b/app/code/Magento/Tax/Model/Config/Source/Catalog.php index 0923364c19e..27019295f29 100644 --- a/app/code/Magento/Tax/Model/Config/Source/Catalog.php +++ b/app/code/Magento/Tax/Model/Config/Source/Catalog.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Config\Source; diff --git a/app/code/Magento/Tax/Model/Config/TaxClass.php b/app/code/Magento/Tax/Model/Config/TaxClass.php index 1799c66a5f6..4add5dd254c 100644 --- a/app/code/Magento/Tax/Model/Config/TaxClass.php +++ b/app/code/Magento/Tax/Model/Config/TaxClass.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Config; diff --git a/app/code/Magento/Tax/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/Tax/Model/Layout/DepersonalizePlugin.php index 15212ff1297..2f3273b2ac7 100644 --- a/app/code/Magento/Tax/Model/Layout/DepersonalizePlugin.php +++ b/app/code/Magento/Tax/Model/Layout/DepersonalizePlugin.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Layout; diff --git a/app/code/Magento/Tax/Model/Plugin/OrderSave.php b/app/code/Magento/Tax/Model/Plugin/OrderSave.php index 0aafb69723a..2cbb2cd3474 100644 --- a/app/code/Magento/Tax/Model/Plugin/OrderSave.php +++ b/app/code/Magento/Tax/Model/Plugin/OrderSave.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php index a727beef10b..f3d86bcddb8 100644 --- a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php +++ b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Quote; diff --git a/app/code/Magento/Tax/Model/Quote/ToOrderConverter.php b/app/code/Magento/Tax/Model/Quote/ToOrderConverter.php index 858838b84c8..17763dbdc5d 100644 --- a/app/code/Magento/Tax/Model/Quote/ToOrderConverter.php +++ b/app/code/Magento/Tax/Model/Quote/ToOrderConverter.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Quote; diff --git a/app/code/Magento/Tax/Model/Rate/Source.php b/app/code/Magento/Tax/Model/Rate/Source.php index 8280f4d4c42..63f4fa1684b 100644 --- a/app/code/Magento/Tax/Model/Rate/Source.php +++ b/app/code/Magento/Tax/Model/Rate/Source.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation.php index 2dff03dcbe5..08769cebf62 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Calculation.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Calculation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Collection.php index d3d6508e0b2..94aeda5c24c 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Collection.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\ResourceModel\Calculation; diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate.php index 5f278a363f1..6a8c79e1d26 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Collection.php index 4f748ec1331..1036faefe7d 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Collection.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title.php index 1272baae042..c025421dc28 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\ResourceModel\Calculation\Rate; diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title/Collection.php index a177e6f55e3..e584db625cf 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title/Collection.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\ResourceModel\Calculation\Rate\Title; diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule.php index 3f158fb44bb..f6b2f2a3e9b 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\ResourceModel\Calculation; diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule/Collection.php index af910f904fe..22ce9d3cbee 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule/Collection.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\ResourceModel\Calculation\Rule; diff --git a/app/code/Magento/Tax/Model/ResourceModel/Report/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Report/Collection.php index 0c76e7a283e..94943bbfbcc 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Report/Collection.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Report/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/ResourceModel/Report/Tax.php b/app/code/Magento/Tax/Model/ResourceModel/Report/Tax.php index 99c937c8a64..a210c570a2c 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Report/Tax.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Report/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Createdat.php b/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Createdat.php index 8b3b5d6ce7c..215d4ba20b6 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Createdat.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Createdat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Updatedat.php b/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Updatedat.php index 9f2d327bec1..c9235b70289 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Updatedat.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Updatedat.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/ResourceModel/Report/Updatedat/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Report/Updatedat/Collection.php index 5741c565126..d939d5538c8 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Report/Updatedat/Collection.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Report/Updatedat/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax.php b/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax.php index 8e030b479ec..14b89d08e9d 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\ResourceModel\Sales\Order; diff --git a/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax/Collection.php index aa4df054d1c..fb231d0b25f 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax/Collection.php +++ b/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\ResourceModel\Sales\Order\Tax; diff --git a/app/code/Magento/Tax/Model/ResourceModel/TaxClass.php b/app/code/Magento/Tax/Model/ResourceModel/TaxClass.php index c3bc25ac5db..24b7df282ef 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/TaxClass.php +++ b/app/code/Magento/Tax/Model/ResourceModel/TaxClass.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\ResourceModel; diff --git a/app/code/Magento/Tax/Model/ResourceModel/TaxClass/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/TaxClass/Collection.php index 7e1305b3a56..2de4a243dd1 100644 --- a/app/code/Magento/Tax/Model/ResourceModel/TaxClass/Collection.php +++ b/app/code/Magento/Tax/Model/ResourceModel/TaxClass/Collection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Sales/Order/Details.php b/app/code/Magento/Tax/Model/Sales/Order/Details.php index 70cf01d30d9..3699669ff80 100644 --- a/app/code/Magento/Tax/Model/Sales/Order/Details.php +++ b/app/code/Magento/Tax/Model/Sales/Order/Details.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Sales/Order/Tax.php b/app/code/Magento/Tax/Model/Sales/Order/Tax.php index e8a21819dba..b7d896b8539 100644 --- a/app/code/Magento/Tax/Model/Sales/Order/Tax.php +++ b/app/code/Magento/Tax/Model/Sales/Order/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Sales\Order; diff --git a/app/code/Magento/Tax/Model/Sales/Order/TaxManagement.php b/app/code/Magento/Tax/Model/Sales/Order/TaxManagement.php index 9d2d8357257..fd208f80733 100644 --- a/app/code/Magento/Tax/Model/Sales/Order/TaxManagement.php +++ b/app/code/Magento/Tax/Model/Sales/Order/TaxManagement.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Sales/Pdf/Grandtotal.php b/app/code/Magento/Tax/Model/Sales/Pdf/Grandtotal.php index 5283ab2a722..65c57e863b7 100644 --- a/app/code/Magento/Tax/Model/Sales/Pdf/Grandtotal.php +++ b/app/code/Magento/Tax/Model/Sales/Pdf/Grandtotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Sales\Pdf; diff --git a/app/code/Magento/Tax/Model/Sales/Pdf/Shipping.php b/app/code/Magento/Tax/Model/Sales/Pdf/Shipping.php index 0a42498fd0a..4d1d721b410 100644 --- a/app/code/Magento/Tax/Model/Sales/Pdf/Shipping.php +++ b/app/code/Magento/Tax/Model/Sales/Pdf/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Sales\Pdf; diff --git a/app/code/Magento/Tax/Model/Sales/Pdf/Subtotal.php b/app/code/Magento/Tax/Model/Sales/Pdf/Subtotal.php index 5d065d8921a..dd9b99bf583 100644 --- a/app/code/Magento/Tax/Model/Sales/Pdf/Subtotal.php +++ b/app/code/Magento/Tax/Model/Sales/Pdf/Subtotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Sales\Pdf; diff --git a/app/code/Magento/Tax/Model/Sales/Pdf/Tax.php b/app/code/Magento/Tax/Model/Sales/Pdf/Tax.php index 024ea10a970..616880af34e 100644 --- a/app/code/Magento/Tax/Model/Sales/Pdf/Tax.php +++ b/app/code/Magento/Tax/Model/Sales/Pdf/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Sales\Pdf; diff --git a/app/code/Magento/Tax/Model/Sales/Quote/ItemDetails.php b/app/code/Magento/Tax/Model/Sales/Quote/ItemDetails.php index 9d346c0b111..2420f074dba 100644 --- a/app/code/Magento/Tax/Model/Sales/Quote/ItemDetails.php +++ b/app/code/Magento/Tax/Model/Sales/Quote/ItemDetails.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Sales\Quote; diff --git a/app/code/Magento/Tax/Model/Sales/Quote/QuoteDetails.php b/app/code/Magento/Tax/Model/Sales/Quote/QuoteDetails.php index 27c73292226..09afe75060b 100644 --- a/app/code/Magento/Tax/Model/Sales/Quote/QuoteDetails.php +++ b/app/code/Magento/Tax/Model/Sales/Quote/QuoteDetails.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Sales\Quote; diff --git a/app/code/Magento/Tax/Model/Sales/Total/Quote/CommonTaxCollector.php b/app/code/Magento/Tax/Model/Sales/Total/Quote/CommonTaxCollector.php index c2c53a3d775..18a08c17fc4 100644 --- a/app/code/Magento/Tax/Model/Sales/Total/Quote/CommonTaxCollector.php +++ b/app/code/Magento/Tax/Model/Sales/Total/Quote/CommonTaxCollector.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Sales/Total/Quote/Shipping.php b/app/code/Magento/Tax/Model/Sales/Total/Quote/Shipping.php index 29ff55ca270..5460f6e3a58 100644 --- a/app/code/Magento/Tax/Model/Sales/Total/Quote/Shipping.php +++ b/app/code/Magento/Tax/Model/Sales/Total/Quote/Shipping.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Sales\Total\Quote; diff --git a/app/code/Magento/Tax/Model/Sales/Total/Quote/Subtotal.php b/app/code/Magento/Tax/Model/Sales/Total/Quote/Subtotal.php index 570ddbff371..5bd6c954747 100644 --- a/app/code/Magento/Tax/Model/Sales/Total/Quote/Subtotal.php +++ b/app/code/Magento/Tax/Model/Sales/Total/Quote/Subtotal.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php b/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php index da3b86958eb..41bd722c98f 100755 --- a/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php +++ b/app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\Sales\Total\Quote; diff --git a/app/code/Magento/Tax/Model/System/Config/Source/Algorithm.php b/app/code/Magento/Tax/Model/System/Config/Source/Algorithm.php index d0815302d37..60a004ed8a9 100644 --- a/app/code/Magento/Tax/Model/System/Config/Source/Algorithm.php +++ b/app/code/Magento/Tax/Model/System/Config/Source/Algorithm.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\System\Config\Source; diff --git a/app/code/Magento/Tax/Model/System/Config/Source/Apply.php b/app/code/Magento/Tax/Model/System/Config/Source/Apply.php index 5b1f6dd02cf..b152dbbb778 100644 --- a/app/code/Magento/Tax/Model/System/Config/Source/Apply.php +++ b/app/code/Magento/Tax/Model/System/Config/Source/Apply.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\System\Config\Source; diff --git a/app/code/Magento/Tax/Model/System/Config/Source/PriceType.php b/app/code/Magento/Tax/Model/System/Config/Source/PriceType.php index 6ad234ce82d..be67994791e 100644 --- a/app/code/Magento/Tax/Model/System/Config/Source/PriceType.php +++ b/app/code/Magento/Tax/Model/System/Config/Source/PriceType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\System\Config\Source; diff --git a/app/code/Magento/Tax/Model/System/Config/Source/Tax/Country.php b/app/code/Magento/Tax/Model/System/Config/Source/Tax/Country.php index da1df8f8680..13d33a767a2 100644 --- a/app/code/Magento/Tax/Model/System/Config/Source/Tax/Country.php +++ b/app/code/Magento/Tax/Model/System/Config/Source/Tax/Country.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\System\Config\Source\Tax; diff --git a/app/code/Magento/Tax/Model/System/Config/Source/Tax/Display/Type.php b/app/code/Magento/Tax/Model/System/Config/Source/Tax/Display/Type.php index 70994475ff6..ca1bf256760 100644 --- a/app/code/Magento/Tax/Model/System/Config/Source/Tax/Display/Type.php +++ b/app/code/Magento/Tax/Model/System/Config/Source/Tax/Display/Type.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/System/Config/Source/Tax/Region.php b/app/code/Magento/Tax/Model/System/Config/Source/Tax/Region.php index 55bdc3f4b8e..f1655fdfef3 100644 --- a/app/code/Magento/Tax/Model/System/Config/Source/Tax/Region.php +++ b/app/code/Magento/Tax/Model/System/Config/Source/Tax/Region.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\System\Config\Source\Tax; diff --git a/app/code/Magento/Tax/Model/System/Message/Notifications.php b/app/code/Magento/Tax/Model/System/Message/Notifications.php index 1f2044c0aad..1f172858973 100644 --- a/app/code/Magento/Tax/Model/System/Message/Notifications.php +++ b/app/code/Magento/Tax/Model/System/Message/Notifications.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\System\Message; diff --git a/app/code/Magento/Tax/Model/TaxCalculation.php b/app/code/Magento/Tax/Model/TaxCalculation.php index 4edcfaa7aa3..59ec3b060ac 100644 --- a/app/code/Magento/Tax/Model/TaxCalculation.php +++ b/app/code/Magento/Tax/Model/TaxCalculation.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxClass/AbstractType.php b/app/code/Magento/Tax/Model/TaxClass/AbstractType.php index 8c44599ede1..fd02df9a661 100644 --- a/app/code/Magento/Tax/Model/TaxClass/AbstractType.php +++ b/app/code/Magento/Tax/Model/TaxClass/AbstractType.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxClass/Factory.php b/app/code/Magento/Tax/Model/TaxClass/Factory.php index 78f7f76664b..dc9ad64d28a 100644 --- a/app/code/Magento/Tax/Model/TaxClass/Factory.php +++ b/app/code/Magento/Tax/Model/TaxClass/Factory.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxClass/Key.php b/app/code/Magento/Tax/Model/TaxClass/Key.php index 56ed297ee7a..aeca7635aed 100644 --- a/app/code/Magento/Tax/Model/TaxClass/Key.php +++ b/app/code/Magento/Tax/Model/TaxClass/Key.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\TaxClass; diff --git a/app/code/Magento/Tax/Model/TaxClass/Management.php b/app/code/Magento/Tax/Model/TaxClass/Management.php index 2d3f2596af6..8ef118fbd7f 100644 --- a/app/code/Magento/Tax/Model/TaxClass/Management.php +++ b/app/code/Magento/Tax/Model/TaxClass/Management.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxClass/Repository.php b/app/code/Magento/Tax/Model/TaxClass/Repository.php index 2eb8b1757f4..ca7547fd811 100644 --- a/app/code/Magento/Tax/Model/TaxClass/Repository.php +++ b/app/code/Magento/Tax/Model/TaxClass/Repository.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxClass/Source/Customer.php b/app/code/Magento/Tax/Model/TaxClass/Source/Customer.php index ab67d30fd3c..fb1107716da 100644 --- a/app/code/Magento/Tax/Model/TaxClass/Source/Customer.php +++ b/app/code/Magento/Tax/Model/TaxClass/Source/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxClass/Source/Product.php b/app/code/Magento/Tax/Model/TaxClass/Source/Product.php index de4a3c14138..9d65d76a50b 100644 --- a/app/code/Magento/Tax/Model/TaxClass/Source/Product.php +++ b/app/code/Magento/Tax/Model/TaxClass/Source/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxClass/Type/Customer.php b/app/code/Magento/Tax/Model/TaxClass/Type/Customer.php index 85b11956c77..f2eef2bad8c 100644 --- a/app/code/Magento/Tax/Model/TaxClass/Type/Customer.php +++ b/app/code/Magento/Tax/Model/TaxClass/Type/Customer.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\TaxClass\Type; diff --git a/app/code/Magento/Tax/Model/TaxClass/Type/Product.php b/app/code/Magento/Tax/Model/TaxClass/Type/Product.php index aca50cb4aa0..c4682063004 100644 --- a/app/code/Magento/Tax/Model/TaxClass/Type/Product.php +++ b/app/code/Magento/Tax/Model/TaxClass/Type/Product.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxClass/Type/TypeInterface.php b/app/code/Magento/Tax/Model/TaxClass/Type/TypeInterface.php index d176863bfdc..8adc679c351 100644 --- a/app/code/Magento/Tax/Model/TaxClass/Type/TypeInterface.php +++ b/app/code/Magento/Tax/Model/TaxClass/Type/TypeInterface.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxConfigProvider.php b/app/code/Magento/Tax/Model/TaxConfigProvider.php index 95f371da172..3467ba4ae6e 100644 --- a/app/code/Magento/Tax/Model/TaxConfigProvider.php +++ b/app/code/Magento/Tax/Model/TaxConfigProvider.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model; diff --git a/app/code/Magento/Tax/Model/TaxDetails/AppliedTax.php b/app/code/Magento/Tax/Model/TaxDetails/AppliedTax.php index 1ec720eb208..a199d3325c0 100644 --- a/app/code/Magento/Tax/Model/TaxDetails/AppliedTax.php +++ b/app/code/Magento/Tax/Model/TaxDetails/AppliedTax.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\TaxDetails; diff --git a/app/code/Magento/Tax/Model/TaxDetails/AppliedTaxRate.php b/app/code/Magento/Tax/Model/TaxDetails/AppliedTaxRate.php index 9c70badb0b5..f2575ac0b14 100644 --- a/app/code/Magento/Tax/Model/TaxDetails/AppliedTaxRate.php +++ b/app/code/Magento/Tax/Model/TaxDetails/AppliedTaxRate.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\TaxDetails; diff --git a/app/code/Magento/Tax/Model/TaxDetails/ItemDetails.php b/app/code/Magento/Tax/Model/TaxDetails/ItemDetails.php index e834b1ad652..cd172e2cd7a 100644 --- a/app/code/Magento/Tax/Model/TaxDetails/ItemDetails.php +++ b/app/code/Magento/Tax/Model/TaxDetails/ItemDetails.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\TaxDetails; diff --git a/app/code/Magento/Tax/Model/TaxDetails/TaxDetails.php b/app/code/Magento/Tax/Model/TaxDetails/TaxDetails.php index 942bbae2c2b..dcb4daa3fa9 100644 --- a/app/code/Magento/Tax/Model/TaxDetails/TaxDetails.php +++ b/app/code/Magento/Tax/Model/TaxDetails/TaxDetails.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Model\TaxDetails; diff --git a/app/code/Magento/Tax/Model/TaxRateCollection.php b/app/code/Magento/Tax/Model/TaxRateCollection.php index 7c153cd3244..cee657c98b2 100644 --- a/app/code/Magento/Tax/Model/TaxRateCollection.php +++ b/app/code/Magento/Tax/Model/TaxRateCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxRateManagement.php b/app/code/Magento/Tax/Model/TaxRateManagement.php index ef8c734326c..e7774d9c4dc 100644 --- a/app/code/Magento/Tax/Model/TaxRateManagement.php +++ b/app/code/Magento/Tax/Model/TaxRateManagement.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxRuleCollection.php b/app/code/Magento/Tax/Model/TaxRuleCollection.php index 0075b026f98..5a5badc3c54 100644 --- a/app/code/Magento/Tax/Model/TaxRuleCollection.php +++ b/app/code/Magento/Tax/Model/TaxRuleCollection.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Model/TaxRuleRepository.php b/app/code/Magento/Tax/Model/TaxRuleRepository.php index 312fca035f0..5fd8e31ba79 100644 --- a/app/code/Magento/Tax/Model/TaxRuleRepository.php +++ b/app/code/Magento/Tax/Model/TaxRuleRepository.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Observer/AfterAddressSaveObserver.php b/app/code/Magento/Tax/Observer/AfterAddressSaveObserver.php index a2fab35f353..7f8ddd80cc1 100644 --- a/app/code/Magento/Tax/Observer/AfterAddressSaveObserver.php +++ b/app/code/Magento/Tax/Observer/AfterAddressSaveObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Observer; diff --git a/app/code/Magento/Tax/Observer/CustomerLoggedInObserver.php b/app/code/Magento/Tax/Observer/CustomerLoggedInObserver.php index d1dab6f068e..77b78db8806 100644 --- a/app/code/Magento/Tax/Observer/CustomerLoggedInObserver.php +++ b/app/code/Magento/Tax/Observer/CustomerLoggedInObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Observer; diff --git a/app/code/Magento/Tax/Observer/GetPriceConfigurationObserver.php b/app/code/Magento/Tax/Observer/GetPriceConfigurationObserver.php index 379b93fff16..6d08644cef3 100644 --- a/app/code/Magento/Tax/Observer/GetPriceConfigurationObserver.php +++ b/app/code/Magento/Tax/Observer/GetPriceConfigurationObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Observer; diff --git a/app/code/Magento/Tax/Observer/UpdateProductOptionsObserver.php b/app/code/Magento/Tax/Observer/UpdateProductOptionsObserver.php index 0ba7c4eb904..72fc878caf2 100644 --- a/app/code/Magento/Tax/Observer/UpdateProductOptionsObserver.php +++ b/app/code/Magento/Tax/Observer/UpdateProductOptionsObserver.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php b/app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php index e1e321e6c9c..260d56a893f 100644 --- a/app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php +++ b/app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Pricing/Adjustment.php b/app/code/Magento/Tax/Pricing/Adjustment.php index 967c286e5f7..a63377a7f30 100644 --- a/app/code/Magento/Tax/Pricing/Adjustment.php +++ b/app/code/Magento/Tax/Pricing/Adjustment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Pricing/Render/Adjustment.php b/app/code/Magento/Tax/Pricing/Render/Adjustment.php index a8a753e8fa9..f0a66822690 100644 --- a/app/code/Magento/Tax/Pricing/Render/Adjustment.php +++ b/app/code/Magento/Tax/Pricing/Render/Adjustment.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Setup/InstallData.php b/app/code/Magento/Tax/Setup/InstallData.php index 7cc244e47e8..ce1013d16c8 100644 --- a/app/code/Magento/Tax/Setup/InstallData.php +++ b/app/code/Magento/Tax/Setup/InstallData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Setup/InstallSchema.php b/app/code/Magento/Tax/Setup/InstallSchema.php index 78b9087c4d2..140044a0cd8 100644 --- a/app/code/Magento/Tax/Setup/InstallSchema.php +++ b/app/code/Magento/Tax/Setup/InstallSchema.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Setup/TaxSetup.php b/app/code/Magento/Tax/Setup/TaxSetup.php index ec267a39478..76909826819 100644 --- a/app/code/Magento/Tax/Setup/TaxSetup.php +++ b/app/code/Magento/Tax/Setup/TaxSetup.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Setup; diff --git a/app/code/Magento/Tax/Setup/UpgradeData.php b/app/code/Magento/Tax/Setup/UpgradeData.php index c8bfe979924..4d6c4af220e 100644 --- a/app/code/Magento/Tax/Setup/UpgradeData.php +++ b/app/code/Magento/Tax/Setup/UpgradeData.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/App/Action/ContextPluginTest.php b/app/code/Magento/Tax/Test/Unit/App/Action/ContextPluginTest.php index a95ead9efe3..c3d3bc74c47 100644 --- a/app/code/Magento/Tax/Test/Unit/App/Action/ContextPluginTest.php +++ b/app/code/Magento/Tax/Test/Unit/App/Action/ContextPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\App\Action; diff --git a/app/code/Magento/Tax/Test/Unit/Block/Adminhtml/Items/Price/RendererTest.php b/app/code/Magento/Tax/Test/Unit/Block/Adminhtml/Items/Price/RendererTest.php index 47096dd660a..f0cbe12785f 100644 --- a/app/code/Magento/Tax/Test/Unit/Block/Adminhtml/Items/Price/RendererTest.php +++ b/app/code/Magento/Tax/Test/Unit/Block/Adminhtml/Items/Price/RendererTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Block\Adminhtml\Items\Price; diff --git a/app/code/Magento/Tax/Test/Unit/Block/Checkout/Shipping/PriceTest.php b/app/code/Magento/Tax/Test/Unit/Block/Checkout/Shipping/PriceTest.php index 71cde72ed0d..7d9cf86f33f 100644 --- a/app/code/Magento/Tax/Test/Unit/Block/Checkout/Shipping/PriceTest.php +++ b/app/code/Magento/Tax/Test/Unit/Block/Checkout/Shipping/PriceTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Block\Checkout\Shipping; diff --git a/app/code/Magento/Tax/Test/Unit/Block/Checkout/ShippingTest.php b/app/code/Magento/Tax/Test/Unit/Block/Checkout/ShippingTest.php index 3f8d50dfb57..5a89a4695ac 100644 --- a/app/code/Magento/Tax/Test/Unit/Block/Checkout/ShippingTest.php +++ b/app/code/Magento/Tax/Test/Unit/Block/Checkout/ShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Block\Checkout; diff --git a/app/code/Magento/Tax/Test/Unit/Block/Item/Price/RendererTest.php b/app/code/Magento/Tax/Test/Unit/Block/Item/Price/RendererTest.php index 3108482b963..120b250e3c1 100644 --- a/app/code/Magento/Tax/Test/Unit/Block/Item/Price/RendererTest.php +++ b/app/code/Magento/Tax/Test/Unit/Block/Item/Price/RendererTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Block\Item\Price; diff --git a/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Rate/AjaxLoadTest.php b/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Rate/AjaxLoadTest.php index cc5cb0dbc29..2589c89b46b 100644 --- a/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Rate/AjaxLoadTest.php +++ b/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Rate/AjaxLoadTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Controller\Adminhtml\Rate; diff --git a/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Tax/IgnoreTaxNotificationTest.php b/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Tax/IgnoreTaxNotificationTest.php index 6d2b351fe78..c5809329381 100644 --- a/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Tax/IgnoreTaxNotificationTest.php +++ b/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Tax/IgnoreTaxNotificationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Controller\Adminhtml\Tax; diff --git a/app/code/Magento/Tax/Test/Unit/GetterSetterTest.php b/app/code/Magento/Tax/Test/Unit/GetterSetterTest.php index 114262d8b46..653bce33661 100644 --- a/app/code/Magento/Tax/Test/Unit/GetterSetterTest.php +++ b/app/code/Magento/Tax/Test/Unit/GetterSetterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit; diff --git a/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php b/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php index ea716a0c474..f980d1c751f 100644 --- a/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php +++ b/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/CalculatorFactoryTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/CalculatorFactoryTest.php index 725b35a485c..8841df70bf6 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Calculation/CalculatorFactoryTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Calculation/CalculatorFactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\Calculation; diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/Rate/ConverterTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/Rate/ConverterTest.php index 14084c6eea0..fae5df3c7e0 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Calculation/Rate/ConverterTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Calculation/Rate/ConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\Calculation\Rate; diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRegistryTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRegistryTest.php index 0880f6514e8..702ccbaaf2a 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRegistryTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRegistryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRepositoryTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRepositoryTest.php index 4a5a60a52e5..35d1a0f4ff4 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRepositoryTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\Calculation; diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateTest.php index 1677b4964e2..dfdf1f700df 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\Calculation; diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseAndTotalBaseCalculatorTestCase.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseAndTotalBaseCalculatorTestCase.php index e1ad4d3855e..70914b194ef 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseAndTotalBaseCalculatorTestCase.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseAndTotalBaseCalculatorTestCase.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseCalculatorTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseCalculatorTest.php index c5f9efecce1..5aa8bf57c86 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseCalculatorTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseCalculatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/TaxRuleRegistryTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/TaxRuleRegistryTest.php index f0e09487107..4d64a749778 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Calculation/TaxRuleRegistryTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Calculation/TaxRuleRegistryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/TotalBaseCalculatorTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/TotalBaseCalculatorTest.php index 0bb0384ac45..00d5e709944 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Calculation/TotalBaseCalculatorTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Calculation/TotalBaseCalculatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/UnitBaseCalculatorTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/UnitBaseCalculatorTest.php index e3a143c6f81..f7e75af867b 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Calculation/UnitBaseCalculatorTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Calculation/UnitBaseCalculatorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/ClassModelRegistryTest.php b/app/code/Magento/Tax/Test/Unit/Model/ClassModelRegistryTest.php index be5c8b0c013..7659fb6190c 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/ClassModelRegistryTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/ClassModelRegistryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Config/TaxClassTest.php b/app/code/Magento/Tax/Test/Unit/Model/Config/TaxClassTest.php index 901253d5fbb..21596dea560 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Config/TaxClassTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Config/TaxClassTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Tax/Test/Unit/Model/ConfigTest.php index 66c8f39040b..2950b74196f 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/ConfigTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/ConfigTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Plugin/OrderSaveTest.php b/app/code/Magento/Tax/Test/Unit/Model/Plugin/OrderSaveTest.php index 472b8ea0a70..492867ac68d 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Plugin/OrderSaveTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Plugin/OrderSaveTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php b/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php index 693b0d437af..147baf776a5 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Quote/ToOrderConverterTest.php b/app/code/Magento/Tax/Test/Unit/Model/Quote/ToOrderConverterTest.php index d276c5fb534..892f50930a4 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Quote/ToOrderConverterTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Quote/ToOrderConverterTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/ResourceModel/CalculationTest.php b/app/code/Magento/Tax/Test/Unit/Model/ResourceModel/CalculationTest.php index 87befe04065..3d17a969eee 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/ResourceModel/CalculationTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/ResourceModel/CalculationTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\ResourceModel; diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Order/TaxManagementTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Order/TaxManagementTest.php index dd278be802f..355b06357d5 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Sales/Order/TaxManagementTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Sales/Order/TaxManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\Sales\Order; diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/CommonTaxCollectorTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/CommonTaxCollectorTest.php index 08bb0038b3b..1231466a72f 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/CommonTaxCollectorTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/CommonTaxCollectorTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/ShippingTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/ShippingTest.php index d337dcbe76e..bd7faecfb6a 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/ShippingTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/ShippingTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/SubtotalTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/SubtotalTest.php index ab15b503308..9cc17cd33be 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/SubtotalTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/SubtotalTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\Sales\Total\Quote; diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php index a74b5fe13ec..43e1a3182f0 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxCalculationTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxCalculationTest.php index 6d468c686e0..f32b3cfcda0 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxCalculationTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxCalculationTest.php @@ -1,7 +1,7 @@ <?php /** * - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model; diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/FactoryTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/FactoryTest.php index b8573f02245..69ea4b9b74c 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/FactoryTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/FactoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\TaxClass; diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/ManagementTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/ManagementTest.php index ea54fbd5747..adf8e1a3e15 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/ManagementTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/ManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/RepositoryTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/RepositoryTest.php index 11a4fd40b56..0ab8d8709a2 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/RepositoryTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/RepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/CustomerTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/CustomerTest.php index fdb8fa9bb22..bcc8fa6fe5e 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/CustomerTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/CustomerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\TaxClass\Source; diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/ProductTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/ProductTest.php index 297bb809d09..915411ed333 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/ProductTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\TaxClass\Source; diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/CustomerTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/CustomerTest.php index f2051b0dca4..8d86e446946 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/CustomerTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/CustomerTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\TaxClass\Type; diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/ProductTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/ProductTest.php index 7e12b36104f..5b4a59e596f 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/ProductTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/ProductTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model\TaxClass\Type; diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxConfigProviderTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxConfigProviderTest.php index 0ce7a40a5d1..3533d14fbf2 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxConfigProviderTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxConfigProviderTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model; diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxRateCollectionTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxRateCollectionTest.php index 7addc61b320..9b72893e487 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxRateCollectionTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxRateCollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model; diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxRateManagementTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxRateManagementTest.php index 91aefa38d33..3ef7abca405 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxRateManagementTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxRateManagementTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model; diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxRuleCollectionTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxRuleCollectionTest.php index 5890a8f2dc4..98fa48808ef 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxRuleCollectionTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxRuleCollectionTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model; diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxRuleRepositoryTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxRuleRepositoryTest.php index a0f53d82923..561741ef8da 100644 --- a/app/code/Magento/Tax/Test/Unit/Model/TaxRuleRepositoryTest.php +++ b/app/code/Magento/Tax/Test/Unit/Model/TaxRuleRepositoryTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Model; diff --git a/app/code/Magento/Tax/Test/Unit/Observer/AfterAddressSaveObserverTest.php b/app/code/Magento/Tax/Test/Unit/Observer/AfterAddressSaveObserverTest.php index 22ce6afb8d5..110bc593541 100644 --- a/app/code/Magento/Tax/Test/Unit/Observer/AfterAddressSaveObserverTest.php +++ b/app/code/Magento/Tax/Test/Unit/Observer/AfterAddressSaveObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Observer; diff --git a/app/code/Magento/Tax/Test/Unit/Observer/CustomerLoggedInObserverTest.php b/app/code/Magento/Tax/Test/Unit/Observer/CustomerLoggedInObserverTest.php index 1825f6a0b47..f5509b242c8 100644 --- a/app/code/Magento/Tax/Test/Unit/Observer/CustomerLoggedInObserverTest.php +++ b/app/code/Magento/Tax/Test/Unit/Observer/CustomerLoggedInObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Observer; diff --git a/app/code/Magento/Tax/Test/Unit/Observer/GetPriceConfigurationObserverTest.php b/app/code/Magento/Tax/Test/Unit/Observer/GetPriceConfigurationObserverTest.php index 0a28e18a4c4..19d7381f878 100644 --- a/app/code/Magento/Tax/Test/Unit/Observer/GetPriceConfigurationObserverTest.php +++ b/app/code/Magento/Tax/Test/Unit/Observer/GetPriceConfigurationObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Observer; diff --git a/app/code/Magento/Tax/Test/Unit/Observer/UpdateProductOptionsObserverTest.php b/app/code/Magento/Tax/Test/Unit/Observer/UpdateProductOptionsObserverTest.php index 033a9921072..352761caa44 100644 --- a/app/code/Magento/Tax/Test/Unit/Observer/UpdateProductOptionsObserverTest.php +++ b/app/code/Magento/Tax/Test/Unit/Observer/UpdateProductOptionsObserverTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Plugin/Checkout/CustomerData/CartTest.php b/app/code/Magento/Tax/Test/Unit/Plugin/Checkout/CustomerData/CartTest.php index 428a3c6d935..6ec9295dd88 100644 --- a/app/code/Magento/Tax/Test/Unit/Plugin/Checkout/CustomerData/CartTest.php +++ b/app/code/Magento/Tax/Test/Unit/Plugin/Checkout/CustomerData/CartTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Plugin\Checkout\CustomerData; diff --git a/app/code/Magento/Tax/Test/Unit/Pricing/AdjustmentTest.php b/app/code/Magento/Tax/Test/Unit/Pricing/AdjustmentTest.php index a09e10e9226..d6b154d7555 100644 --- a/app/code/Magento/Tax/Test/Unit/Pricing/AdjustmentTest.php +++ b/app/code/Magento/Tax/Test/Unit/Pricing/AdjustmentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Pricing/Render/AdjustmentTest.php b/app/code/Magento/Tax/Test/Unit/Pricing/Render/AdjustmentTest.php index 639519df894..f5de4c4934a 100644 --- a/app/code/Magento/Tax/Test/Unit/Pricing/Render/AdjustmentTest.php +++ b/app/code/Magento/Tax/Test/Unit/Pricing/Render/AdjustmentTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/Test/Unit/Setup/TaxSetupTest.php b/app/code/Magento/Tax/Test/Unit/Setup/TaxSetupTest.php index 5dd11b174d4..bb3e9fb5d96 100644 --- a/app/code/Magento/Tax/Test/Unit/Setup/TaxSetupTest.php +++ b/app/code/Magento/Tax/Test/Unit/Setup/TaxSetupTest.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Tax\Test\Unit\Setup; diff --git a/app/code/Magento/Tax/etc/acl.xml b/app/code/Magento/Tax/etc/acl.xml index a4043a109c1..29f1a65062c 100644 --- a/app/code/Magento/Tax/etc/acl.xml +++ b/app/code/Magento/Tax/etc/acl.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/adminhtml/di.xml b/app/code/Magento/Tax/etc/adminhtml/di.xml index 120c6f9054e..b14c61d5abb 100644 --- a/app/code/Magento/Tax/etc/adminhtml/di.xml +++ b/app/code/Magento/Tax/etc/adminhtml/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/adminhtml/menu.xml b/app/code/Magento/Tax/etc/adminhtml/menu.xml index 601f419cfef..624aef2e7fa 100644 --- a/app/code/Magento/Tax/etc/adminhtml/menu.xml +++ b/app/code/Magento/Tax/etc/adminhtml/menu.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/adminhtml/routes.xml b/app/code/Magento/Tax/etc/adminhtml/routes.xml index 3e9c0201009..531019d5f33 100644 --- a/app/code/Magento/Tax/etc/adminhtml/routes.xml +++ b/app/code/Magento/Tax/etc/adminhtml/routes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> @@ -11,4 +11,4 @@ <module name="Magento_Tax" /> </route> </router> -</config> \ No newline at end of file +</config> diff --git a/app/code/Magento/Tax/etc/adminhtml/system.xml b/app/code/Magento/Tax/etc/adminhtml/system.xml index 87b553dbba5..5dedc5da967 100644 --- a/app/code/Magento/Tax/etc/adminhtml/system.xml +++ b/app/code/Magento/Tax/etc/adminhtml/system.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/catalog_attributes.xml b/app/code/Magento/Tax/etc/catalog_attributes.xml index 932edde5564..9628274563d 100644 --- a/app/code/Magento/Tax/etc/catalog_attributes.xml +++ b/app/code/Magento/Tax/etc/catalog_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/config.xml b/app/code/Magento/Tax/etc/config.xml index 0bf9428b7b5..2346b1e6b6d 100644 --- a/app/code/Magento/Tax/etc/config.xml +++ b/app/code/Magento/Tax/etc/config.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/crontab.xml b/app/code/Magento/Tax/etc/crontab.xml index ada862a7184..1060c426cb2 100644 --- a/app/code/Magento/Tax/etc/crontab.xml +++ b/app/code/Magento/Tax/etc/crontab.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/di.xml b/app/code/Magento/Tax/etc/di.xml index 81127204031..336ef019f7c 100644 --- a/app/code/Magento/Tax/etc/di.xml +++ b/app/code/Magento/Tax/etc/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/events.xml b/app/code/Magento/Tax/etc/events.xml index 0fcfbdb2b95..6d4a4ff94ae 100644 --- a/app/code/Magento/Tax/etc/events.xml +++ b/app/code/Magento/Tax/etc/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/extension_attributes.xml b/app/code/Magento/Tax/etc/extension_attributes.xml index 488da4b2efc..61c5eefcd62 100644 --- a/app/code/Magento/Tax/etc/extension_attributes.xml +++ b/app/code/Magento/Tax/etc/extension_attributes.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/fieldset.xml b/app/code/Magento/Tax/etc/fieldset.xml index 97495eb4fa8..37ec0cd6c57 100644 --- a/app/code/Magento/Tax/etc/fieldset.xml +++ b/app/code/Magento/Tax/etc/fieldset.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/frontend/di.xml b/app/code/Magento/Tax/etc/frontend/di.xml index d7e3b6efe72..a7b1c766c72 100644 --- a/app/code/Magento/Tax/etc/frontend/di.xml +++ b/app/code/Magento/Tax/etc/frontend/di.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/frontend/events.xml b/app/code/Magento/Tax/etc/frontend/events.xml index ad8b2e18441..206edaf93c7 100644 --- a/app/code/Magento/Tax/etc/frontend/events.xml +++ b/app/code/Magento/Tax/etc/frontend/events.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/module.xml b/app/code/Magento/Tax/etc/module.xml index 3094aa2a117..b816eec92ce 100644 --- a/app/code/Magento/Tax/etc/module.xml +++ b/app/code/Magento/Tax/etc/module.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/pdf.xml b/app/code/Magento/Tax/etc/pdf.xml index 9deba5e8272..a06265d4782 100644 --- a/app/code/Magento/Tax/etc/pdf.xml +++ b/app/code/Magento/Tax/etc/pdf.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/sales.xml b/app/code/Magento/Tax/etc/sales.xml index 8b283fa3357..3d437252cbd 100644 --- a/app/code/Magento/Tax/etc/sales.xml +++ b/app/code/Magento/Tax/etc/sales.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/etc/webapi.xml b/app/code/Magento/Tax/etc/webapi.xml index 87dce6fc4e6..a67bc2dcb41 100644 --- a/app/code/Magento/Tax/etc/webapi.xml +++ b/app/code/Magento/Tax/etc/webapi.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/registration.php b/app/code/Magento/Tax/registration.php index 7bf35ebbe66..7e5d1ea05d9 100644 --- a/app/code/Magento/Tax/registration.php +++ b/app/code/Magento/Tax/registration.php @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/view/adminhtml/layout/sales_creditmemo_item_price.xml b/app/code/Magento/Tax/view/adminhtml/layout/sales_creditmemo_item_price.xml index 3ad65a989c2..daf298e4847 100644 --- a/app/code/Magento/Tax/view/adminhtml/layout/sales_creditmemo_item_price.xml +++ b/app/code/Magento/Tax/view/adminhtml/layout/sales_creditmemo_item_price.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/view/adminhtml/layout/sales_invoice_item_price.xml b/app/code/Magento/Tax/view/adminhtml/layout/sales_invoice_item_price.xml index fb62d5fd05d..3d7663f8536 100644 --- a/app/code/Magento/Tax/view/adminhtml/layout/sales_invoice_item_price.xml +++ b/app/code/Magento/Tax/view/adminhtml/layout/sales_invoice_item_price.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/view/adminhtml/layout/sales_order_create_item_price.xml b/app/code/Magento/Tax/view/adminhtml/layout/sales_order_create_item_price.xml index c69ccec0bb5..375b300e468 100644 --- a/app/code/Magento/Tax/view/adminhtml/layout/sales_order_create_item_price.xml +++ b/app/code/Magento/Tax/view/adminhtml/layout/sales_order_create_item_price.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/view/adminhtml/layout/sales_order_item_price.xml b/app/code/Magento/Tax/view/adminhtml/layout/sales_order_item_price.xml index 7d213aca53b..9d2fce3b765 100644 --- a/app/code/Magento/Tax/view/adminhtml/layout/sales_order_item_price.xml +++ b/app/code/Magento/Tax/view/adminhtml/layout/sales_order_item_price.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_block.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_block.xml index 4d33b0ad065..d900a7c9570 100644 --- a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_block.xml +++ b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportcsv.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportcsv.xml index 75aff061bb2..89c857f569f 100644 --- a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportcsv.xml +++ b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportcsv.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportxml.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportxml.xml index 75aff061bb2..89c857f569f 100644 --- a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportxml.xml +++ b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportxml.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_index.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_index.xml index cbf1a995756..270004a498b 100644 --- a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_index.xml +++ b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_block.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_block.xml index 72979563ac4..4a58a9894f4 100644 --- a/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_block.xml +++ b/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_block.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_edit.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_edit.xml index 25e59aaf787..0a9e6e3c59b 100644 --- a/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_edit.xml +++ b/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_edit.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_index.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_index.xml index 56d94615ce8..83a60910ae3 100644 --- a/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_index.xml +++ b/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_index.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <!-- /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> diff --git a/app/code/Magento/Tax/view/adminhtml/templates/class/page/edit.phtml b/app/code/Magento/Tax/view/adminhtml/templates/class/page/edit.phtml index 92e57f57c8a..23bcbfbb434 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/class/page/edit.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/class/page/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Tax/view/adminhtml/templates/items/price/row.phtml b/app/code/Magento/Tax/view/adminhtml/templates/items/price/row.phtml index 55c24a64171..cba78caa5b2 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/items/price/row.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/items/price/row.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/view/adminhtml/templates/items/price/total.phtml b/app/code/Magento/Tax/view/adminhtml/templates/items/price/total.phtml index 207ef9cee3b..121948fba84 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/items/price/total.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/items/price/total.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/view/adminhtml/templates/items/price/unit.phtml b/app/code/Magento/Tax/view/adminhtml/templates/items/price/unit.phtml index 73153adcb1e..be1da4894a8 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/items/price/unit.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/items/price/unit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/row.phtml b/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/row.phtml index 3457afbe8e6..9cbc6998202 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/row.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/row.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/total.phtml b/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/total.phtml index f8938fd7b7c..61ef507d77c 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/total.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/total.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/unit.phtml b/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/unit.phtml index 2eeefe119b0..33b8bced22a 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/unit.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/unit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/view/adminhtml/templates/rate/form.phtml b/app/code/Magento/Tax/view/adminhtml/templates/rate/form.phtml index fd26503cf58..16b4986fd83 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/rate/form.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/rate/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/view/adminhtml/templates/rate/js.phtml b/app/code/Magento/Tax/view/adminhtml/templates/rate/js.phtml index 1a09e602856..fa3e5c1ac27 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/rate/js.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/rate/js.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/view/adminhtml/templates/rate/title.phtml b/app/code/Magento/Tax/view/adminhtml/templates/rate/title.phtml index e7f470c2bea..13f357751f6 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/rate/title.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/rate/title.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/view/adminhtml/templates/rule/edit.phtml b/app/code/Magento/Tax/view/adminhtml/templates/rule/edit.phtml index fcd45cf786f..6d7473e6049 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/rule/edit.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/rule/edit.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ diff --git a/app/code/Magento/Tax/view/adminhtml/templates/rule/rate/form.phtml b/app/code/Magento/Tax/view/adminhtml/templates/rule/rate/form.phtml index a259e41d2d5..ab9ba563db1 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/rule/rate/form.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/rule/rate/form.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /* @var $block \Magento\Tax\Block\Adminhtml\Rate\Form */ diff --git a/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/add.phtml b/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/add.phtml index 231866771c5..0d29deec7fc 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/add.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/add.phtml @@ -1,6 +1,6 @@ <?php /** - * Copyright © 2016 Magento. All rights reserved. + * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> diff --git a/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/save.phtml b/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/save.phtml index 1701323e532..23068fd57de 100644 --- a/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/save.phtml +++ b/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/save.phtml @@ -1,6 +1,6 @@ <