Skip to content

Commit 5e6c346

Browse files
committed
Merge branch 'develop' of github.corp.ebay.com:magento2/magento2ce into pull-request
2 parents 066dcce + 0247336 commit 5e6c346

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

app/code/Magento/Sales/etc/adminhtml/system.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@
348348
<label>PDF Print-outs</label>
349349
<tab>sales</tab>
350350
<resource>Magento_Sales::sales_pdf</resource>
351-
<group id="invoice" translate="label" type="text" sortOrder="1" showInDefault="10" showInWebsite="1" showInStore="1">
351+
<group id="invoice" translate="label" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
352352
<label>Invoice</label>
353353
<field id="put_order_id" translate="label" type="select" sortOrder="1" showInDefault="1" showInWebsite="1" showInStore="1">
354354
<label>Display Order ID in Header</label>

app/code/Magento/SalesSequence/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"require": {
55
"php": "~5.5.0|~5.6.0",
66
"magento/framework": "0.74.0-beta4",
7-
"magento/magento-composer-installer": "0.74.0-beta4"
7+
"magento/magento-composer-installer": "*"
88
},
99
"type": "magento2-module",
1010
"version": "0.74.0-beta4",

app/code/Magento/Theme/Test/Unit/Model/Favicon/FaviconTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function testGetFaviconFileNegative()
8585
public function testGetFaviconFile()
8686
{
8787
$scopeConfigValue = 'path';
88-
$urlToMediaDir = 'http://magneto.url/pub/media/';
88+
$urlToMediaDir = 'http://magento.url/pub/media/';
8989
$expectedFile = ImageFavicon::UPLOAD_DIR . '/' . $scopeConfigValue;
9090
$expectedUrl = $urlToMediaDir . $expectedFile;
9191

lib/internal/Magento/Framework/Less/Test/Unit/File/Collector/LibraryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public function testGetFiles($libraryFiles, $themeFiles)
120120
$this->libraryDirectoryMock->expects($this->any())->method('search')->will($this->returnValue($libraryFiles));
121121
$this->libraryDirectoryMock->expects($this->any())->method('getAbsolutePath')->will($this->returnCallback(
122122
function ($file) {
123-
return '/opt/Magneto/lib/' . $file;
123+
return '/opt/Magento/lib/' . $file;
124124
}
125125
));
126126
$themePath = '/var/Magento/ATheme';

lib/internal/Magento/Framework/View/Element/BlockFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function createBlock($blockName, array $arguments = [])
4242
$blockName = ltrim($blockName, '\\');
4343
$block = $this->objectManager->create($blockName, $arguments);
4444
if (!$block instanceof BlockInterface) {
45-
throw new \LogicException($blockName . ' does not implemented BlockInterface');
45+
throw new \LogicException($blockName . ' does not implement BlockInterface');
4646
}
4747
if ($block instanceof Template) {
4848
$block->setTemplateContext($block);

0 commit comments

Comments
 (0)