Skip to content

Commit 5f0140d

Browse files
author
Cari Spruiell
committed
MAGETWO-52865: \Magento\Directory\Model\Currency\Import\YahooFinance causes compile failure
- remove concatenation from local variable definition
1 parent fc9cb7e commit 5f0140d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/code/Magento/Directory/Model/Currency/Import/YahooFinance.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ class YahooFinance extends \Magento\Directory\Model\Currency\Import\AbstractImpo
1515
*
1616
* @var string
1717
*/
18-
private $currencyConverterUrl = 'http://query.yahooapis.com/v1/public/yql?format=json&q={{YQL_STRING}}'
19-
.'&env=store://datatables.org/alltableswithkeys';
18+
// @codingStandardsIgnoreStart
19+
private $currencyConverterUrl = 'http://query.yahooapis.com/v1/public/yql?format=json&q={{YQL_STRING}}&env=store://datatables.org/alltableswithkeys';
20+
// @codingStandardsIgnoreEnd
2021

2122
/**
2223
* Config path for service timeout

0 commit comments

Comments
 (0)