Skip to content

Commit 920c030

Browse files
author
Magento CICD
authored
Merge 16bbf9d into MAGETWO-63641
2 parents 17b8282 + 16bbf9d commit 920c030

File tree

972 files changed

+2814
-2868
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

972 files changed

+2814
-2868
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@ cache:
2626
directories: $HOME/.composer/cache
2727
matrix:
2828
exclude:
29-
- php: 7.0
29+
- php: 5.6.29
3030
env: TEST_SUITE=static
3131
before_install: ./dev/travis/before_install.sh
3232
install: composer install --no-interaction --prefer-dist
3333
before_script: ./dev/travis/before_script.sh
3434
script:
35-
- cd dev/tests/$TEST_SUITE
3635
- test $TEST_SUITE = "static" && TEST_FILTER='--filter "Magento\\Test\\Php\\LiveCodeTest"' || true
37-
- phpunit $TEST_FILTER
36+
- phpunit -c dev/tests/$TEST_SUITE $TEST_FILTER

app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Magento\Store\Model\Store;
1010

1111
/**
12-
* @deprecated
12+
* @deprecated
1313
*/
1414
class Baseurl implements \Magento\Framework\Notification\MessageInterface
1515
{

app/code/Magento/AdminNotification/Setup/InstallSchema.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,5 @@ public function install(SchemaSetupInterface $setup, ModuleContextInterface $con
120120
$installer->getConnection()->createTable($table);
121121

122122
$installer->endSetup();
123-
124123
}
125124
}

app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/WebsiteTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class WebsiteTest extends \PHPUnit_Framework_TestCase
1313
/**
1414
* @var \Magento\Store\Model\WebSite|\PHPUnit_Framework_MockObject_MockObject
1515
*/
16-
protected $webSiteModel;
16+
protected $webSiteModel;
1717

1818
/**
1919
* @var \Magento\CatalogImportExport\Model\Import\Product\StoreResolver|\PHPUnit_Framework_MockObject_MockObject

app/code/Magento/Analytics/Controller/Adminhtml/Subscription/Postpone.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ public function __construct(
5555
$this->notificationTime = $notificationTime;
5656
$this->logger = $logger;
5757
parent::__construct($context);
58-
5958
}
6059

6160
/**

app/code/Magento/Analytics/Model/FileRecorder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ public function recordNewFile(EncodedContext $encodedContext)
7878
$this->removeOldFile($fileInfo, $directory);
7979

8080
return true;
81-
8281
}
8382

8483
/**

app/code/Magento/Analytics/Model/ReportWriter.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ public function write(WriteInterface $directory, $path)
8080
if (!$headers) {
8181
$headers = array_keys($row);
8282
$stream->writeCsv($headers);
83-
8483
}
8584
$stream->writeCsv($row);
8685
}

app/code/Magento/Analytics/ReportXml/Config/Mapper.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ public function execute($configData)
3131
$entityData = array_shift($queryData['source']);
3232
$queries[$queryData['name']] = $queryData;
3333
$queries[$queryData['name']]['source'] = $entityData;
34-
3534
}
3635
return $queries;
3736
}

app/code/Magento/Analytics/ReportXml/DB/ColumnsResolver.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ public function getColumns(SelectBuilder $selectBuilder, $entityConfig)
6363
if (isset($attributeData['group'])) {
6464
$group[$columnAlias] = $expression;
6565
}
66-
6766
}
6867
$selectBuilder->setGroup(array_merge($selectBuilder->getGroup(), $group));
6968
return $columns;

app/code/Magento/Analytics/ReportXml/Query.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Query implements \JsonSerializable
2525
private $selectHydrator;
2626

2727
/**
28-
* @var string
28+
* @var string
2929
*/
3030
private $connectionName;
3131

0 commit comments

Comments
 (0)