File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
Tax/Test/Unit/Model/Plugin Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Use the following table to verify you have the correct prerequisites to install
33
33
<td><a href="http://devdocs.magento.com/guides/v2.0/install-gde/prereq/apache.html">Apache</a></td>
34
34
</tr>
35
35
<tr>
36
- <td>PHP 5.6.x, 7.0.2 or 7.0.6</td>
36
+ <td>PHP 5.6.x, 7.0.2, 7.0.4 or 7.0.6</td>
37
37
<td><code>php -v</code></td>
38
38
<td><a href="http://devdocs.magento.com/guides/v2.0/install-gde/prereq/php-ubuntu.html">PHP Ubuntu</a><br><a href="http://devdocs.magento.com/guides/v2.0/install-gde/prereq/php-centos.html">PHP CentOS</a></td>
39
39
</tr>
Original file line number Diff line number Diff line change 11
11
use Magento \Catalog \Model \ResourceModel \Product \Gallery ;
12
12
13
13
/**
14
- * Class InstallSchema adds new table `eav_attribute_option_swatch `
14
+ * Class InstallSchema adds new table `catalog_product_entity_media_gallery_value_video `
15
15
*/
16
16
class InstallSchema implements InstallSchemaInterface
17
17
{
Original file line number Diff line number Diff line change @@ -98,7 +98,6 @@ protected function setupExtensionAttributeMock()
98
98
protected function verifyOrderTaxes ($ expectedTaxes )
99
99
{
100
100
$ index = 0 ;
101
- $ orderTaxes = [];
102
101
foreach ($ expectedTaxes as $ orderTaxId => $ orderTaxData ) {
103
102
$ orderTaxMock = $ this ->getMockBuilder (\Magento \Tax \Model \Sales \Order \Tax::class)
104
103
->disableOriginalConstructor ()
@@ -122,15 +121,13 @@ protected function verifyOrderTaxes($expectedTaxes)
122
121
$ this ->orderTaxFactoryMock ->expects ($ this ->at ($ index ))
123
122
->method ('create ' )
124
123
->willReturn ($ orderTaxMock );
125
- $ orderTaxes [] = $ orderTaxMock ;
126
124
$ index ++;
127
125
}
128
126
}
129
127
130
128
public function verifyItemTaxes ($ expectedItemTaxes )
131
129
{
132
130
$ index = 0 ;
133
- $ itemTaxes = [];
134
131
foreach ($ expectedItemTaxes as $ itemTax ) {
135
132
$ itemTaxMock = $ this ->getMockBuilder (\Magento \Sales \Model \Order \Tax \Item::class)
136
133
->disableOriginalConstructor ()
@@ -150,7 +147,6 @@ public function verifyItemTaxes($expectedItemTaxes)
150
147
$ this ->taxItemFactoryMock ->expects ($ this ->at ($ index ))
151
148
->method ('create ' )
152
149
->willReturn ($ itemTaxMock );
153
- $ itemTaxes [] = $ itemTaxMock ;
154
150
$ index ++;
155
151
}
156
152
}
You can’t perform that action at this time.
0 commit comments